cp-tree.h (CPTI_ATEXIT): New macro.
[gcc.git] / gcc / cp / decl.c
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)
4
5 This file is part of GNU CC.
6
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.
11
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.
16
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. */
21
22
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. */
26
27 /* ??? not all decl nodes are given the most useful possible
28 line numbers. For example, the CONST_DECLs for enum values. */
29
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"
47
48 #define obstack_chunk_alloc xmalloc
49 #define obstack_chunk_free free
50
51 extern struct obstack permanent_obstack;
52 extern struct obstack* saveable_obstack;
53
54 extern int current_class_depth;
55
56 extern tree static_ctors, static_dtors;
57
58 extern tree global_namespace;
59
60 extern int (*valid_lang_attribute) PROTO ((tree, tree, tree, tree));
61
62 /* Use garbage collection. */
63
64 int ggc_p = 1;
65
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;
71
72 #ifndef CHAR_TYPE_SIZE
73 #define CHAR_TYPE_SIZE BITS_PER_UNIT
74 #endif
75
76 #ifndef SHORT_TYPE_SIZE
77 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
78 #endif
79
80 #ifndef INT_TYPE_SIZE
81 #define INT_TYPE_SIZE BITS_PER_WORD
82 #endif
83
84 #ifndef LONG_TYPE_SIZE
85 #define LONG_TYPE_SIZE BITS_PER_WORD
86 #endif
87
88 #ifndef LONG_LONG_TYPE_SIZE
89 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
90 #endif
91
92 #ifndef WCHAR_UNSIGNED
93 #define WCHAR_UNSIGNED 0
94 #endif
95
96 #ifndef FLOAT_TYPE_SIZE
97 #define FLOAT_TYPE_SIZE BITS_PER_WORD
98 #endif
99
100 #ifndef DOUBLE_TYPE_SIZE
101 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
102 #endif
103
104 #ifndef LONG_DOUBLE_TYPE_SIZE
105 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
106 #endif
107
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
115
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. */
121
122 #ifndef SIZE_TYPE
123 #define SIZE_TYPE "long unsigned int"
124 #endif
125
126 #ifndef PTRDIFF_TYPE
127 #define PTRDIFF_TYPE "long int"
128 #endif
129
130 #ifndef WCHAR_TYPE
131 #define WCHAR_TYPE "int"
132 #endif
133
134 static tree grokparms PROTO((tree, int));
135 static const char *redeclaration_error_message PROTO((tree, tree));
136
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 *));
208 static void check_function_type PROTO((tree));
209 static void destroy_local_static PROTO((tree));
210
211 #if defined (DEBUG_CP_BINDING_LEVELS)
212 static void indent PROTO((void));
213 #endif
214
215 /* A node which has tree code ERROR_MARK, and whose type is itself.
216 All erroneous expressions are replaced with this node. All functions
217 that accept nodes as arguments should avoid generating error messages
218 if this node is one of the arguments, since it is undesirable to get
219 multiple error messages from one error in the input. */
220
221 tree error_mark_node;
222
223 /* Erroneous argument lists can use this *IFF* they do not modify it. */
224 tree error_mark_list;
225
226 /* The following symbols are subsumed in the cp_global_trees array, and
227 listed here individually for documentation purposes.
228
229 C++ extensions
230 tree wchar_decl_node;
231 tree void_zero_node;
232
233 tree vtable_entry_type;
234 tree delta_type_node;
235 #if 0
236 Old rtti stuff.
237 tree __baselist_desc_type_node;
238 tree __i_desc_type_node, __m_desc_type_node;
239 tree __t_desc_array_type, __i_desc_array_type, __m_desc_array_type;
240 #endif
241 tree __t_desc_type_node;
242 #if 0
243 tree __tp_desc_type_node;
244 #endif
245 tree __access_mode_type_node;
246 tree __bltn_desc_type_node, __user_desc_type_node, __class_desc_type_node;
247 tree __ptr_desc_type_node, __attr_desc_type_node, __func_desc_type_node;
248 tree __ptmf_desc_type_node, __ptmd_desc_type_node;
249 #if 0
250 Not needed yet? May be needed one day?
251 tree __bltn_desc_array_type, __user_desc_array_type, __class_desc_array_type;
252 tree __ptr_desc_array_type, __attr_dec_array_type, __func_desc_array_type;
253 tree __ptmf_desc_array_type, __ptmd_desc_array_type;
254 #endif
255
256 tree class_star_type_node;
257 tree class_type_node, record_type_node, union_type_node, enum_type_node;
258 tree unknown_type_node;
259
260 Array type `vtable_entry_type[]'
261
262 tree vtbl_type_node;
263 tree vtbl_ptr_type_node;
264
265 Nnamespace std
266
267 tree std_node;
268
269 A FUNCTION_DECL which can call `abort'. Not necessarily the
270 one that the user will declare, but sufficient to be called
271 by routines that want to abort the program.
272
273 tree abort_fndecl;
274
275 The FUNCTION_DECL for the default `::operator delete'.
276
277 tree global_delete_fndecl;
278
279 Used by RTTI
280 tree type_info_type_node, tinfo_fn_id, tinfo_fn_type;
281
282 */
283
284 tree cp_global_trees[CPTI_MAX];
285
286 /* These can't be part of the above array, since they are declared
287 individually in tree.h, and used by the debug output routines. */
288
289 tree void_type_node;
290 tree char_type_node;
291 tree integer_type_node;
292 tree unsigned_type_node;
293
294 /* These can't be part of the above array, since they are declared
295 individially in tree.h and used by the target routines. */
296
297 tree ptr_type_node;
298 tree va_list_type_node;
299 tree null_pointer_node;
300
301 /* Indicates that there is a type value in some namespace, although
302 that is not necessarily in scope at the moment. */
303
304 static tree global_type_node;
305
306 /* Namespace std. */
307 int in_std;
308
309 /* Expect only namespace names now. */
310 static int only_namespace_names;
311
312 /* In a destructor, the last insn emitted after the start of the
313 function and the parms. */
314
315 #define last_dtor_insn cp_function_chain->x_last_dtor_insn
316
317 /* In a constructor, the last insn emitted after the start of the
318 function and the parms, the exception specification and any
319 function-try-block. The constructor initializers are emitted after
320 this insn. */
321
322 #define last_parm_cleanup_insn cp_function_chain->x_last_parm_cleanup_insn
323
324 /* If original DECL_RESULT of current function was a register,
325 but due to being an addressable named return value, would up
326 on the stack, this variable holds the named return value's
327 original location. */
328
329 #define original_result_rtx cp_function_chain->x_result_rtx
330
331 struct named_label_list
332 {
333 struct binding_level *binding_level;
334 tree names_in_scope;
335 tree label_decl;
336 const char *filename_o_goto;
337 int lineno_o_goto;
338 struct named_label_list *next;
339 };
340
341 /* A list (chain of TREE_LIST nodes) of named label uses.
342 The TREE_PURPOSE field is the list of variables defined
343 in the label's scope defined at the point of use.
344 The TREE_VALUE field is the LABEL_DECL used.
345 The TREE_TYPE field holds `current_binding_level' at the
346 point of the label's use.
347
348 BWAHAHAAHAHahhahahahaah. No, no, no, said the little chicken.
349
350 Look at the pretty struct named_label_list. See the pretty struct
351 with the pretty named fields that describe what they do. See the
352 pretty lack of gratuitous casts. Notice the code got a lot cleaner.
353
354 Used only for jumps to as-yet undefined labels, since
355 jumps to defined labels can have their validity checked
356 by stmt.c. */
357
358 #define named_label_uses cp_function_chain->named_label_uses
359
360 /* A list of objects which have constructors or destructors
361 which reside in the global scope. The decl is stored in
362 the TREE_VALUE slot and the initializer is stored
363 in the TREE_PURPOSE slot. */
364 tree static_aggregates;
365
366 /* -- end of C++ */
367
368 /* An expression of type `int' for the constant zero. */
369
370 tree integer_zero_node;
371
372 /* A node for the integer constants 1, 2, and 3. */
373
374 tree integer_one_node, integer_two_node, integer_three_node;
375
376 /* While defining an enum type, this is 1 plus the last enumerator
377 constant value. */
378
379 static tree enum_next_value;
380
381 /* Nonzero means that there was overflow computing enum_next_value. */
382
383 static int enum_overflow;
384
385 /* Parsing a function declarator leaves here a chain of structure
386 and enum types declared in the parmlist. */
387
388 static tree last_function_parm_tags;
389
390 /* Similar, for last_function_parm_tags. */
391 tree last_function_parms;
392 static tree current_function_parm_tags;
393
394 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
395 that have names. Here so we can clear out their names' definitions
396 at the end of the function. The TREE_VALUE is a LABEL_DECL; the
397 TREE_PURPOSE is the previous binding of the label. */
398
399 #define named_labels cp_function_chain->x_named_labels
400
401 /* The FUNCTION_DECL for the function currently being compiled,
402 or 0 if between functions. */
403 tree current_function_decl;
404
405 /* Set to 0 at beginning of a function definition, and whenever
406 a label (case or named) is defined. Set to value of expression
407 returned from function when that value can be transformed into
408 a named return value. */
409
410 tree current_function_return_value;
411
412 /* Nonzero means give `double' the same size as `float'. */
413
414 extern int flag_short_double;
415
416 /* Nonzero means don't recognize any builtin functions. */
417
418 extern int flag_no_builtin;
419
420 /* Nonzero means don't recognize the non-ANSI builtin functions.
421 -ansi sets this. */
422
423 extern int flag_no_nonansi_builtin;
424
425 /* Nonzero means enable obscure ANSI features and disable GNU extensions
426 that might cause ANSI-compliant code to be miscompiled. */
427
428 extern int flag_ansi;
429
430 /* Nonzero if we want to support huge (> 2^(sizeof(short)*8-1) bytes)
431 objects. */
432 extern int flag_huge_objects;
433
434 /* Nonzero if we want to conserve space in the .o files. We do this
435 by putting uninitialized data and runtime initialized data into
436 .common instead of .data at the expense of not flagging multiple
437 definitions. */
438 extern int flag_conserve_space;
439 \f
440 /* C and C++ flags are in decl2.c. */
441
442 /* Set to 0 at beginning of a constructor, set to 1
443 if that function does an allocation before referencing its
444 instance variable. */
445 #define current_function_assigns_this cp_function_chain->assigns_this
446 #define current_function_just_assigned_this \
447 cp_function_chain->just_assigned_this
448
449 /* Flag used when debugging spew.c */
450
451 extern int spew_debug;
452
453 /* A expression of value 0 with the same precision as a sizetype
454 node, but signed. */
455 tree signed_size_zero_node;
456
457 /* The name of the anonymous namespace, throughout this translation
458 unit. */
459 tree anonymous_namespace_name;
460
461 \f
462 /* Allocate a level of searching. */
463
464 static
465 struct stack_level *
466 push_decl_level (stack, obstack)
467 struct stack_level *stack;
468 struct obstack *obstack;
469 {
470 struct stack_level tem;
471 tem.prev = stack;
472
473 return push_stack_level (obstack, (char *)&tem, sizeof (tem));
474 }
475 \f
476 /* For each binding contour we allocate a binding_level structure
477 which records the names defined in that contour.
478 Contours include:
479 0) the global one
480 1) one for each function definition,
481 where internal declarations of the parameters appear.
482 2) one for each compound statement,
483 to record its declarations.
484
485 The current meaning of a name can be found by searching the levels
486 from the current one out to the global one.
487
488 Off to the side, may be the class_binding_level. This exists only
489 to catch class-local declarations. It is otherwise nonexistent.
490
491 Also there may be binding levels that catch cleanups that must be
492 run when exceptions occur. Thus, to see whether a name is bound in
493 the current scope, it is not enough to look in the
494 CURRENT_BINDING_LEVEL. You should use lookup_name_current_level
495 instead. */
496
497 /* Note that the information in the `names' component of the global contour
498 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
499
500 struct binding_level
501 {
502 /* A chain of _DECL nodes for all variables, constants, functions,
503 and typedef types. These are in the reverse of the order
504 supplied. There may be OVERLOADs on this list, too, but they
505 are wrapped in TREE_LISTs; the TREE_VALUE is the OVERLOAD. */
506 tree names;
507
508 /* A list of structure, union and enum definitions, for looking up
509 tag names.
510 It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
511 or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
512 or ENUMERAL_TYPE node.
513
514 C++: the TREE_VALUE nodes can be simple types for
515 component_bindings. */
516 tree tags;
517
518 /* A list of USING_DECL nodes. */
519 tree usings;
520
521 /* A list of used namespaces. PURPOSE is the namespace,
522 VALUE the common ancestor with this binding_level's namespace. */
523 tree using_directives;
524
525 /* If this binding level is the binding level for a class, then
526 class_shadowed is a TREE_LIST. The TREE_PURPOSE of each node
527 is the name of an entity bound in the class; the TREE_VALUE is
528 the IDENTIFIER_CLASS_VALUE before we entered the class. Thus,
529 when leaving class scope, we can restore the
530 IDENTIFIER_CLASS_VALUE by walking this list. The TREE_TYPE is
531 the DECL bound by this name in the class. */
532 tree class_shadowed;
533
534 /* Similar to class_shadowed, but for IDENTIFIER_TYPE_VALUE, and
535 is used for all binding levels. */
536 tree type_shadowed;
537
538 /* A TREE_LIST. Each TREE_VALUE is the LABEL_DECL for a local
539 label in this scope. The TREE_PURPOSE is the previous value of
540 the IDENTIFIER_LABEL VALUE. */
541 tree shadowed_labels;
542
543 /* For each level (except not the global one),
544 a chain of BLOCK nodes for all the levels
545 that were entered and exited one level down. */
546 tree blocks;
547
548 /* The BLOCK node for this level, if one has been preallocated.
549 If 0, the BLOCK is allocated (if needed) when the level is popped. */
550 tree this_block;
551
552 /* The binding level which this one is contained in (inherits from). */
553 struct binding_level *level_chain;
554
555 /* List of decls in `names' that have incomplete
556 structure or union types. */
557 tree incomplete;
558
559 /* List of VAR_DECLS saved from a previous for statement.
560 These would be dead in ANSI-conforming code, but might
561 be referenced in ARM-era code. These are stored in a
562 TREE_LIST; the TREE_VALUE is the actual declaration. */
563 tree dead_vars_from_for;
564
565 /* 1 for the level that holds the parameters of a function.
566 2 for the level that holds a class declaration.
567 3 for levels that hold parameter declarations. */
568 unsigned parm_flag : 4;
569
570 /* 1 means make a BLOCK for this level regardless of all else.
571 2 for temporary binding contours created by the compiler. */
572 unsigned keep : 3;
573
574 /* Nonzero if this level "doesn't exist" for tags. */
575 unsigned tag_transparent : 1;
576
577 /* Nonzero if this level can safely have additional
578 cleanup-needing variables added to it. */
579 unsigned more_cleanups_ok : 1;
580 unsigned have_cleanups : 1;
581
582 /* Nonzero if this level is for storing the decls for template
583 parameters and generic decls; these decls will be discarded and
584 replaced with a TEMPLATE_DECL. */
585 unsigned pseudo_global : 1;
586
587 /* This is set for a namespace binding level. */
588 unsigned namespace_p : 1;
589
590 /* True if this level is that of a for-statement where we need to
591 worry about ambiguous (ARM or ANSI) scope rules. */
592 unsigned is_for_scope : 1;
593
594 /* True if this level corresponds to an EH region, as for a try block. */
595 unsigned eh_region : 1;
596
597 /* One bit left for this word. */
598
599 #if defined(DEBUG_CP_BINDING_LEVELS)
600 /* Binding depth at which this level began. */
601 unsigned binding_depth;
602 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
603 };
604
605 #define NULL_BINDING_LEVEL ((struct binding_level *) NULL)
606
607 /* The binding level currently in effect. */
608
609 #define current_binding_level \
610 (current_function \
611 ? cp_function_chain->bindings \
612 : scope_chain->bindings)
613
614 /* The binding level of the current class, if any. */
615
616 #define class_binding_level scope_chain->class_bindings
617
618 /* A chain of binding_level structures awaiting reuse. */
619
620 static struct binding_level *free_binding_level;
621
622 /* The outermost binding level, for names of file scope.
623 This is created when the compiler is started and exists
624 through the entire run. */
625
626 static struct binding_level *global_binding_level;
627
628 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
629
630 static int keep_next_level_flag;
631
632 #if defined(DEBUG_CP_BINDING_LEVELS)
633 static int binding_depth = 0;
634 static int is_class_level = 0;
635
636 static void
637 indent ()
638 {
639 register unsigned i;
640
641 for (i = 0; i < binding_depth*2; i++)
642 putc (' ', stderr);
643 }
644 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
645
646 static tree pushdecl_with_scope PROTO((tree, struct binding_level *));
647
648 static void
649 push_binding_level (newlevel, tag_transparent, keep)
650 struct binding_level *newlevel;
651 int tag_transparent, keep;
652 {
653 /* Add this level to the front of the chain (stack) of levels that
654 are active. */
655 bzero ((char*) newlevel, sizeof (struct binding_level));
656 newlevel->level_chain = current_binding_level;
657 current_binding_level = newlevel;
658 newlevel->tag_transparent = tag_transparent;
659 newlevel->more_cleanups_ok = 1;
660
661 /* We are called before expand_start_bindings, but after
662 expand_eh_region_start for a try block; so we check this now,
663 before the EH block is covered up. */
664 newlevel->eh_region = is_eh_region ();
665
666 newlevel->keep = keep;
667 #if defined(DEBUG_CP_BINDING_LEVELS)
668 newlevel->binding_depth = binding_depth;
669 indent ();
670 fprintf (stderr, "push %s level 0x%08x line %d\n",
671 (is_class_level) ? "class" : "block", newlevel, lineno);
672 is_class_level = 0;
673 binding_depth++;
674 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
675 }
676
677 /* Find the innermost enclosing class scope, and reset
678 CLASS_BINDING_LEVEL appropriately. */
679
680 static void
681 find_class_binding_level ()
682 {
683 struct binding_level *level = current_binding_level;
684
685 while (level && level->parm_flag != 2)
686 level = level->level_chain;
687 if (level && level->parm_flag == 2)
688 class_binding_level = level;
689 else
690 class_binding_level = 0;
691 }
692
693 static void
694 pop_binding_level ()
695 {
696 if (global_binding_level)
697 {
698 /* Cannot pop a level, if there are none left to pop. */
699 if (current_binding_level == global_binding_level)
700 my_friendly_abort (123);
701 }
702 /* Pop the current level, and free the structure for reuse. */
703 #if defined(DEBUG_CP_BINDING_LEVELS)
704 binding_depth--;
705 indent ();
706 fprintf (stderr, "pop %s level 0x%08x line %d\n",
707 (is_class_level) ? "class" : "block",
708 current_binding_level, lineno);
709 if (is_class_level != (current_binding_level == class_binding_level))
710 {
711 indent ();
712 fprintf (stderr, "XXX is_class_level != (current_binding_level == class_binding_level)\n");
713 }
714 is_class_level = 0;
715 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
716 {
717 register struct binding_level *level = current_binding_level;
718 current_binding_level = current_binding_level->level_chain;
719 level->level_chain = free_binding_level;
720 #if 0 /* defined(DEBUG_CP_BINDING_LEVELS) */
721 if (level->binding_depth != binding_depth)
722 abort ();
723 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
724 free_binding_level = level;
725 find_class_binding_level ();
726 }
727 }
728
729 static void
730 suspend_binding_level ()
731 {
732 if (class_binding_level)
733 current_binding_level = class_binding_level;
734
735 if (global_binding_level)
736 {
737 /* Cannot suspend a level, if there are none left to suspend. */
738 if (current_binding_level == global_binding_level)
739 my_friendly_abort (123);
740 }
741 /* Suspend the current level. */
742 #if defined(DEBUG_CP_BINDING_LEVELS)
743 binding_depth--;
744 indent ();
745 fprintf (stderr, "suspend %s level 0x%08x line %d\n",
746 (is_class_level) ? "class" : "block",
747 current_binding_level, lineno);
748 if (is_class_level != (current_binding_level == class_binding_level))
749 {
750 indent ();
751 fprintf (stderr, "XXX is_class_level != (current_binding_level == class_binding_level)\n");
752 }
753 is_class_level = 0;
754 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
755 current_binding_level = current_binding_level->level_chain;
756 find_class_binding_level ();
757 }
758
759 static void
760 resume_binding_level (b)
761 struct binding_level *b;
762 {
763 /* Resuming binding levels is meant only for namespaces,
764 and those cannot nest into classes. */
765 my_friendly_assert(!class_binding_level, 386);
766 /* Also, resuming a non-directly nested namespace is a no-no. */
767 my_friendly_assert(b->level_chain == current_binding_level, 386);
768 current_binding_level = b;
769 #if defined(DEBUG_CP_BINDING_LEVELS)
770 b->binding_depth = binding_depth;
771 indent ();
772 fprintf (stderr, "resume %s level 0x%08x line %d\n",
773 (is_class_level) ? "class" : "block", b, lineno);
774 is_class_level = 0;
775 binding_depth++;
776 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
777 }
778 \f
779 /* Create a new `struct binding_level'. */
780
781 static
782 struct binding_level *
783 make_binding_level ()
784 {
785 /* NOSTRICT */
786 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
787 }
788
789 /* Nonzero if we are currently in the global binding level. */
790
791 int
792 global_bindings_p ()
793 {
794 return current_binding_level == global_binding_level;
795 }
796
797 /* Return the innermost binding level that is not for a class scope. */
798
799 static struct binding_level *
800 innermost_nonclass_level ()
801 {
802 struct binding_level *b;
803
804 b = current_binding_level;
805 while (b->parm_flag == 2)
806 b = b->level_chain;
807
808 return b;
809 }
810
811 /* Nonzero if we are currently in a toplevel binding level. This
812 means either the global binding level or a namespace in a toplevel
813 binding level. Since there are no non-toplevel namespace levels,
814 this really means any namespace or pseudo-global level. We also
815 include a class whose context is toplevel. */
816
817 int
818 toplevel_bindings_p ()
819 {
820 struct binding_level *b = innermost_nonclass_level ();
821
822 return b->namespace_p || b->pseudo_global;
823 }
824
825 /* Nonzero if this is a namespace scope, or if we are defining a class
826 which is itself at namespace scope, or whose enclosing class is
827 such a class, etc. */
828
829 int
830 namespace_bindings_p ()
831 {
832 struct binding_level *b = innermost_nonclass_level ();
833
834 return b->namespace_p;
835 }
836
837 /* If KEEP is non-zero, make a BLOCK node for the next binding level,
838 unconditionally. Otherwise, use the normal logic to decide whether
839 or not to create a BLOCK. */
840
841 void
842 keep_next_level (keep)
843 int keep;
844 {
845 keep_next_level_flag = keep;
846 }
847
848 /* Nonzero if the current level needs to have a BLOCK made. */
849
850 int
851 kept_level_p ()
852 {
853 return (current_binding_level->blocks != NULL_TREE
854 || current_binding_level->keep
855 || current_binding_level->names != NULL_TREE
856 || (current_binding_level->tags != NULL_TREE
857 && !current_binding_level->tag_transparent));
858 }
859
860 /* Identify this binding level as a level of parameters. */
861
862 void
863 declare_parm_level ()
864 {
865 current_binding_level->parm_flag = 1;
866 }
867
868 void
869 declare_pseudo_global_level ()
870 {
871 current_binding_level->pseudo_global = 1;
872 }
873
874 static void
875 declare_namespace_level ()
876 {
877 current_binding_level->namespace_p = 1;
878 }
879
880 int
881 pseudo_global_level_p ()
882 {
883 return current_binding_level->pseudo_global;
884 }
885
886 void
887 set_class_shadows (shadows)
888 tree shadows;
889 {
890 class_binding_level->class_shadowed = shadows;
891 }
892
893 /* Enter a new binding level.
894 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
895 not for that of tags. */
896
897 void
898 pushlevel (tag_transparent)
899 int tag_transparent;
900 {
901 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
902
903 /* Reuse or create a struct for this binding level. */
904
905 #if defined(DEBUG_CP_BINDING_LEVELS)
906 if (0)
907 #else /* !defined(DEBUG_CP_BINDING_LEVELS) */
908 if (free_binding_level)
909 #endif /* !defined(DEBUG_CP_BINDING_LEVELS) */
910 {
911 newlevel = free_binding_level;
912 free_binding_level = free_binding_level->level_chain;
913 }
914 else
915 newlevel = make_binding_level ();
916
917 push_binding_level (newlevel, tag_transparent, keep_next_level_flag);
918 GNU_xref_start_scope ((HOST_WIDE_INT) newlevel);
919 keep_next_level_flag = 0;
920 }
921
922 void
923 note_level_for_for ()
924 {
925 current_binding_level->is_for_scope = 1;
926 }
927
928 void
929 pushlevel_temporary (tag_transparent)
930 int tag_transparent;
931 {
932 pushlevel (tag_transparent);
933 current_binding_level->keep = 2;
934 clear_last_expr ();
935
936 /* Note we don't call push_momentary() here. Otherwise, it would cause
937 cleanups to be allocated on the momentary obstack, and they will be
938 overwritten by the next statement. */
939
940 expand_start_bindings (0);
941 }
942
943 /* For a binding between a name and an entity at a block scope,
944 this is the `struct binding_level' for the block. */
945 #define BINDING_LEVEL(NODE) \
946 (((struct tree_binding*)NODE)->scope.level)
947
948 /* Make DECL the innermost binding for ID. The LEVEL is the binding
949 level at which this declaration is being bound. */
950
951 static void
952 push_binding (id, decl, level)
953 tree id;
954 tree decl;
955 struct binding_level* level;
956 {
957 tree binding;
958
959 binding = make_node (CPLUS_BINDING);
960
961 /* Now, fill in the binding information. */
962 BINDING_VALUE (binding) = decl;
963 BINDING_TYPE (binding) = NULL_TREE;
964 BINDING_LEVEL (binding) = level;
965 INHERITED_VALUE_BINDING_P (binding) = 0;
966 LOCAL_BINDING_P (binding) = (level != class_binding_level);
967 BINDING_HAS_LEVEL_P (binding) = 1;
968
969 /* And put it on the front of the list of bindings for ID. */
970 TREE_CHAIN (binding) = IDENTIFIER_BINDING (id);
971 IDENTIFIER_BINDING (id) = binding;
972 }
973
974 /* ID is already bound in the current scope. But, DECL is an
975 additional binding for ID in the same scope. This is the `struct
976 stat' hack whereby a non-typedef class-name or enum-name can be
977 bound at the same level as some other kind of entity. It's the
978 responsibility of the caller to check that inserting this name is
979 legal here. Returns nonzero if the new binding was successful. */
980 static int
981 add_binding (id, decl)
982 tree id;
983 tree decl;
984 {
985 tree binding = IDENTIFIER_BINDING (id);
986 int ok = 1;
987
988 if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
989 /* The new name is the type name. */
990 BINDING_TYPE (binding) = decl;
991 else if (!BINDING_VALUE (binding))
992 /* This situation arises when push_class_level_binding moves an
993 inherited type-binding out of the way to make room for a new
994 value binding. */
995 BINDING_VALUE (binding) = decl;
996 else if (TREE_CODE (BINDING_VALUE (binding)) == TYPE_DECL
997 && DECL_ARTIFICIAL (BINDING_VALUE (binding)))
998 {
999 /* The old binding was a type name. It was placed in
1000 BINDING_VALUE because it was thought, at the point it was
1001 declared, to be the only entity with such a name. Move the
1002 type name into the type slot; it is now hidden by the new
1003 binding. */
1004 BINDING_TYPE (binding) = BINDING_VALUE (binding);
1005 BINDING_VALUE (binding) = decl;
1006 INHERITED_VALUE_BINDING_P (binding) = 0;
1007 }
1008 else if (TREE_CODE (BINDING_VALUE (binding)) == TYPE_DECL
1009 && TREE_CODE (decl) == TYPE_DECL
1010 && DECL_NAME (decl) == DECL_NAME (BINDING_VALUE (binding))
1011 && same_type_p (TREE_TYPE (decl),
1012 TREE_TYPE (BINDING_VALUE (binding))))
1013 /* We have two typedef-names, both naming the same type to have
1014 the same name. This is OK because of:
1015
1016 [dcl.typedef]
1017
1018 In a given scope, a typedef specifier can be used to redefine
1019 the name of any type declared in that scope to refer to the
1020 type to which it already refers. */
1021 ok = 0;
1022 else
1023 {
1024 cp_error ("declaration of `%#D'", decl);
1025 cp_error_at ("conflicts with previous declaration `%#D'",
1026 BINDING_VALUE (binding));
1027 ok = 0;
1028 }
1029
1030 return ok;
1031 }
1032
1033 /* Add DECL to the list of things declared in B. */
1034
1035 static void
1036 add_decl_to_level (decl, b)
1037 tree decl;
1038 struct binding_level *b;
1039 {
1040 /* Only things that will live forever should go in the global
1041 binding level. */
1042 my_friendly_assert (!(b == global_binding_level
1043 && !TREE_PERMANENT (decl)),
1044 19990817);
1045
1046 /* We build up the list in reverse order, and reverse it later if
1047 necessary. */
1048 TREE_CHAIN (decl) = b->names;
1049 b->names = decl;
1050 }
1051
1052 /* Bind DECL to ID in the current_binding_level, assumed to be a local
1053 binding level. If PUSH_USING is set in FLAGS, we know that DECL
1054 doesn't really belong to this binding level, that it got here
1055 through a using-declaration. */
1056
1057 void
1058 push_local_binding (id, decl, flags)
1059 tree id;
1060 tree decl;
1061 int flags;
1062 {
1063 struct binding_level *b;
1064
1065 /* Skip over any local classes. This makes sense if we call
1066 push_local_binding with a friend decl of a local class. */
1067 b = current_binding_level;
1068 while (b->parm_flag == 2)
1069 b = b->level_chain;
1070
1071 if (lookup_name_current_level (id))
1072 {
1073 /* Supplement the existing binding. */
1074 if (!add_binding (id, decl))
1075 /* It didn't work. Something else must be bound at this
1076 level. Do not add DECL to the list of things to pop
1077 later. */
1078 return;
1079 }
1080 else
1081 /* Create a new binding. */
1082 push_binding (id, decl, b);
1083
1084 if (TREE_CODE (decl) == OVERLOAD || (flags & PUSH_USING))
1085 /* We must put the OVERLOAD into a TREE_LIST since the
1086 TREE_CHAIN of an OVERLOAD is already used. Similarly for
1087 decls that got here through a using-declaration. */
1088 decl = build_tree_list (NULL_TREE, decl);
1089
1090 /* And put DECL on the list of things declared by the current
1091 binding level. */
1092 add_decl_to_level (decl, b);
1093 }
1094
1095 /* Bind DECL to ID in the class_binding_level. Returns nonzero if the
1096 binding was successful. */
1097
1098 int
1099 push_class_binding (id, decl)
1100 tree id;
1101 tree decl;
1102 {
1103 int result = 1;
1104 tree binding = IDENTIFIER_BINDING (id);
1105 tree context;
1106
1107 /* Note that we declared this value so that we can issue an error if
1108 this an illegal redeclaration of a name already used for some
1109 other purpose. */
1110 note_name_declared_in_class (id, decl);
1111
1112 if (binding && BINDING_LEVEL (binding) == class_binding_level)
1113 /* Supplement the existing binding. */
1114 result = add_binding (id, decl);
1115 else
1116 /* Create a new binding. */
1117 push_binding (id, decl, class_binding_level);
1118
1119 /* Update the IDENTIFIER_CLASS_VALUE for this ID to be the
1120 class-level declaration. Note that we do not use DECL here
1121 because of the possibility of the `struct stat' hack; if DECL is
1122 a class-name or enum-name we might prefer a field-name, or some
1123 such. */
1124 IDENTIFIER_CLASS_VALUE (id) = BINDING_VALUE (IDENTIFIER_BINDING (id));
1125
1126 /* If this is a binding from a base class, mark it as such. */
1127 binding = IDENTIFIER_BINDING (id);
1128 if (BINDING_VALUE (binding) == decl && TREE_CODE (decl) != TREE_LIST)
1129 {
1130 /* Any implicit typename must be from a base-class. The
1131 context for an implicit typename declaration is always
1132 the derived class in which the lookup was done, so the checks
1133 based on the context of DECL below will not trigger. */
1134 if (IMPLICIT_TYPENAME_TYPE_DECL_P (decl))
1135 INHERITED_VALUE_BINDING_P (binding) = 1;
1136 else
1137 {
1138 if (TREE_CODE (decl) == OVERLOAD)
1139 context = DECL_REAL_CONTEXT (OVL_CURRENT (decl));
1140 else
1141 {
1142 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd',
1143 0);
1144 context = DECL_REAL_CONTEXT (decl);
1145 }
1146
1147 if (is_properly_derived_from (current_class_type, context))
1148 INHERITED_VALUE_BINDING_P (binding) = 1;
1149 else
1150 INHERITED_VALUE_BINDING_P (binding) = 0;
1151 }
1152 }
1153 else if (BINDING_VALUE (binding) == decl)
1154 /* We only encounter a TREE_LIST when push_class_decls detects an
1155 ambiguity. Such an ambiguity can be overridden by a definition
1156 in this class. */
1157 INHERITED_VALUE_BINDING_P (binding) = 1;
1158
1159 return result;
1160 }
1161
1162 /* Remove the binding for DECL which should be the innermost binding
1163 for ID. */
1164
1165 static void
1166 pop_binding (id, decl)
1167 tree id;
1168 tree decl;
1169 {
1170 tree binding;
1171
1172 if (id == NULL_TREE)
1173 /* It's easiest to write the loops that call this function without
1174 checking whether or not the entities involved have names. We
1175 get here for such an entity. */
1176 return;
1177
1178 /* Get the innermost binding for ID. */
1179 binding = IDENTIFIER_BINDING (id);
1180
1181 /* The name should be bound. */
1182 my_friendly_assert (binding != NULL_TREE, 0);
1183
1184 /* The DECL will be either the ordinary binding or the type
1185 binding for this identifier. Remove that binding. */
1186 if (BINDING_VALUE (binding) == decl)
1187 BINDING_VALUE (binding) = NULL_TREE;
1188 else if (BINDING_TYPE (binding) == decl)
1189 BINDING_TYPE (binding) = NULL_TREE;
1190 else
1191 my_friendly_abort (0);
1192
1193 if (!BINDING_VALUE (binding) && !BINDING_TYPE (binding))
1194 /* We're completely done with the innermost binding for this
1195 identifier. Unhook it from the list of bindings. */
1196 IDENTIFIER_BINDING (id) = TREE_CHAIN (binding);
1197 }
1198
1199 /* When a label goes out of scope, check to see if that label was used
1200 in a valid manner, and issue any appropriate warnings or errors. */
1201
1202 static void
1203 pop_label (link)
1204 tree link;
1205 {
1206 tree label = TREE_VALUE (link);
1207
1208 if (DECL_INITIAL (label) == NULL_TREE)
1209 {
1210 cp_error_at ("label `%D' used but not defined", label);
1211 /* Avoid crashing later. */
1212 define_label (input_filename, 1, DECL_NAME (label));
1213 }
1214 else if (warn_unused && !TREE_USED (label))
1215 cp_warning_at ("label `%D' defined but not used", label);
1216
1217 SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), TREE_PURPOSE (link));
1218 }
1219
1220 /* At the end of a function, all labels declared within the fucntion
1221 go out of scope. BLOCK is the top-level block for the
1222 function. */
1223
1224 static void
1225 pop_labels (block)
1226 tree block;
1227 {
1228 tree link;
1229
1230 /* Clear out the definitions of all label names, since their scopes
1231 end here. */
1232 for (link = named_labels; link; link = TREE_CHAIN (link))
1233 {
1234 pop_label (link);
1235 /* Put the labels into the "variables" of the top-level block,
1236 so debugger can see them. */
1237 TREE_CHAIN (TREE_VALUE (link)) = BLOCK_VARS (block);
1238 BLOCK_VARS (block) = TREE_VALUE (link);
1239 }
1240
1241 named_labels = NULL_TREE;
1242 }
1243
1244 /* Exit a binding level.
1245 Pop the level off, and restore the state of the identifier-decl mappings
1246 that were in effect when this level was entered.
1247
1248 If KEEP == 1, this level had explicit declarations, so
1249 and create a "block" (a BLOCK node) for the level
1250 to record its declarations and subblocks for symbol table output.
1251
1252 If FUNCTIONBODY is nonzero, this level is the body of a function,
1253 so create a block as if KEEP were set and also clear out all
1254 label names.
1255
1256 If REVERSE is nonzero, reverse the order of decls before putting
1257 them into the BLOCK. */
1258
1259 tree
1260 poplevel (keep, reverse, functionbody)
1261 int keep;
1262 int reverse;
1263 int functionbody;
1264 {
1265 register tree link;
1266 /* The chain of decls was accumulated in reverse order.
1267 Put it into forward order, just for cleanliness. */
1268 tree decls;
1269 int tmp = functionbody;
1270 int real_functionbody = current_binding_level->keep == 2
1271 ? ((functionbody = 0), tmp) : functionbody;
1272 tree tags = functionbody >= 0 ? current_binding_level->tags : 0;
1273 tree subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
1274 tree block = NULL_TREE;
1275 tree decl;
1276 int block_previously_created;
1277 int leaving_for_scope;
1278
1279 if (current_binding_level->parm_flag == 2)
1280 return poplevel_class ();
1281
1282 my_friendly_assert (!current_binding_level->class_shadowed,
1283 19990414);
1284
1285 /* We used to use KEEP == 2 to indicate that the new block should go
1286 at the beginning of the list of blocks at this binding level,
1287 rather than the end. This hack is no longer used. */
1288 my_friendly_assert (keep == 0 || keep == 1, 0);
1289
1290 GNU_xref_end_scope ((HOST_WIDE_INT) current_binding_level,
1291 (HOST_WIDE_INT) current_binding_level->level_chain,
1292 current_binding_level->parm_flag,
1293 current_binding_level->keep);
1294
1295 if (current_binding_level->keep == 1)
1296 keep = 1;
1297
1298 /* Get the decls in the order they were written.
1299 Usually current_binding_level->names is in reverse order.
1300 But parameter decls were previously put in forward order. */
1301
1302 if (reverse)
1303 current_binding_level->names
1304 = decls = nreverse (current_binding_level->names);
1305 else
1306 decls = current_binding_level->names;
1307
1308 /* Output any nested inline functions within this block
1309 if they weren't already output. */
1310
1311 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1312 if (TREE_CODE (decl) == FUNCTION_DECL
1313 && ! TREE_ASM_WRITTEN (decl)
1314 && DECL_INITIAL (decl) != NULL_TREE
1315 && TREE_ADDRESSABLE (decl)
1316 && decl_function_context (decl) == current_function_decl)
1317 {
1318 /* If this decl was copied from a file-scope decl
1319 on account of a block-scope extern decl,
1320 propagate TREE_ADDRESSABLE to the file-scope decl. */
1321 if (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE)
1322 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1323 else
1324 {
1325 push_function_context ();
1326 output_inline_function (decl);
1327 pop_function_context ();
1328 }
1329 }
1330
1331 /* If there were any declarations or structure tags in that level,
1332 or if this level is a function body,
1333 create a BLOCK to record them for the life of this function. */
1334
1335 block = NULL_TREE;
1336 block_previously_created = (current_binding_level->this_block != NULL_TREE);
1337 if (block_previously_created)
1338 block = current_binding_level->this_block;
1339 else if (keep == 1 || functionbody)
1340 block = make_node (BLOCK);
1341 if (block != NULL_TREE)
1342 {
1343 if (block_previously_created)
1344 {
1345 if (decls || tags || subblocks)
1346 {
1347 if (BLOCK_VARS (block) || BLOCK_TYPE_TAGS (block))
1348 warning ("internal compiler error: debugging info corrupted");
1349
1350 BLOCK_VARS (block) = decls;
1351 BLOCK_TYPE_TAGS (block) = tags;
1352
1353 /* We can have previous subblocks and new subblocks when
1354 doing fixup_gotos with complex cleanups. We chain the new
1355 subblocks onto the end of any pre-existing subblocks. */
1356 BLOCK_SUBBLOCKS (block) = chainon (BLOCK_SUBBLOCKS (block),
1357 subblocks);
1358 }
1359 /* If we created the block earlier on, and we are just
1360 diddling it now, then it already should have a proper
1361 BLOCK_END_NOTE value associated with it. */
1362 }
1363 else
1364 {
1365 BLOCK_VARS (block) = decls;
1366 BLOCK_TYPE_TAGS (block) = tags;
1367 BLOCK_SUBBLOCKS (block) = subblocks;
1368 /* Otherwise, for a new block, install a new BLOCK_END_NOTE
1369 value. */
1370 remember_end_note (block);
1371 }
1372 }
1373
1374 /* In each subblock, record that this is its superior. */
1375
1376 if (keep >= 0)
1377 for (link = subblocks; link; link = TREE_CHAIN (link))
1378 BLOCK_SUPERCONTEXT (link) = block;
1379
1380 /* We still support the old for-scope rules, whereby the variables
1381 in a for-init statement were in scope after the for-statement
1382 ended. We only use the new rules in flag_new_for_scope is
1383 nonzero. */
1384 leaving_for_scope
1385 = current_binding_level->is_for_scope && flag_new_for_scope == 1;
1386
1387 /* Remove declarations for all the DECLs in this level. */
1388 for (link = decls; link; link = TREE_CHAIN (link))
1389 {
1390 if (leaving_for_scope && TREE_CODE (link) == VAR_DECL)
1391 {
1392 tree outer_binding
1393 = TREE_CHAIN (IDENTIFIER_BINDING (DECL_NAME (link)));
1394 tree ns_binding;
1395
1396 if (!outer_binding)
1397 ns_binding = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (link));
1398 else
1399 ns_binding = NULL_TREE;
1400
1401 if (outer_binding
1402 && (BINDING_LEVEL (outer_binding)
1403 == current_binding_level->level_chain))
1404 /* We have something like:
1405
1406 int i;
1407 for (int i; ;);
1408
1409 and we are leaving the `for' scope. There's no reason to
1410 keep the binding of the inner `i' in this case. */
1411 pop_binding (DECL_NAME (link), link);
1412 else if ((outer_binding
1413 && (TREE_CODE (BINDING_VALUE (outer_binding))
1414 == TYPE_DECL))
1415 || (ns_binding
1416 && TREE_CODE (ns_binding) == TYPE_DECL))
1417 /* Here, we have something like:
1418
1419 typedef int I;
1420
1421 void f () {
1422 for (int I; ;);
1423 }
1424
1425 We must pop the for-scope binding so we know what's a
1426 type and what isn't. */
1427 pop_binding (DECL_NAME (link), link);
1428 else
1429 {
1430 /* Mark this VAR_DECL as dead so that we can tell we left it
1431 there only for backward compatibility. */
1432 DECL_DEAD_FOR_LOCAL (link) = 1;
1433
1434 /* Keep track of what should of have happenned when we
1435 popped the binding. */
1436 if (outer_binding && BINDING_VALUE (outer_binding))
1437 DECL_SHADOWED_FOR_VAR (link)
1438 = BINDING_VALUE (outer_binding);
1439
1440 /* Add it to the list of dead variables in the next
1441 outermost binding to that we can remove these when we
1442 leave that binding. */
1443 current_binding_level->level_chain->dead_vars_from_for
1444 = tree_cons (NULL_TREE, link,
1445 current_binding_level->level_chain->
1446 dead_vars_from_for);
1447
1448 /* Although we don't pop the CPLUS_BINDING, we do clear
1449 its BINDING_LEVEL since the level is going away now. */
1450 BINDING_LEVEL (IDENTIFIER_BINDING (DECL_NAME (link)))
1451 = 0;
1452 }
1453 }
1454 else
1455 {
1456 /* Remove the binding. */
1457 decl = link;
1458 if (TREE_CODE (decl) == TREE_LIST)
1459 decl = TREE_VALUE (decl);
1460 if (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd')
1461 pop_binding (DECL_NAME (decl), decl);
1462 else if (TREE_CODE (decl) == OVERLOAD)
1463 pop_binding (DECL_NAME (OVL_FUNCTION (decl)), decl);
1464 else
1465 my_friendly_abort (0);
1466 }
1467 }
1468
1469 /* Remove declarations for any `for' variables from inner scopes
1470 that we kept around. */
1471 for (link = current_binding_level->dead_vars_from_for;
1472 link; link = TREE_CHAIN (link))
1473 pop_binding (DECL_NAME (TREE_VALUE (link)), TREE_VALUE (link));
1474
1475 /* Restore the IDENTIFIER_TYPE_VALUEs. */
1476 for (link = current_binding_level->type_shadowed;
1477 link; link = TREE_CHAIN (link))
1478 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
1479
1480 /* Restore the IDENTIFIER_LABEL_VALUEs for local labels. */
1481 for (link = current_binding_level->shadowed_labels;
1482 link;
1483 link = TREE_CHAIN (link))
1484 pop_label (link);
1485
1486 /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
1487 list if a `using' declaration put them there. The debugging
1488 back-ends won't understand OVERLOAD, so we remove them here.
1489 Because the BLOCK_VARS are (temporarily) shared with
1490 CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
1491 popped all the bindings. */
1492 if (block)
1493 {
1494 tree* d;
1495
1496 for (d = &BLOCK_VARS (block); *d; )
1497 {
1498 if (TREE_CODE (*d) == TREE_LIST)
1499 *d = TREE_CHAIN (*d);
1500 else
1501 d = &TREE_CHAIN (*d);
1502 }
1503 }
1504
1505 /* If the level being exited is the top level of a function,
1506 check over all the labels. */
1507 if (functionbody)
1508 {
1509 /* Since this is the top level block of a function, the vars are
1510 the function's parameters. Don't leave them in the BLOCK
1511 because they are found in the FUNCTION_DECL instead. */
1512 BLOCK_VARS (block) = 0;
1513 pop_labels (block);
1514 }
1515
1516 /* Any uses of undefined labels now operate under constraints
1517 of next binding contour. */
1518 if (current_function)
1519 {
1520 struct binding_level *level_chain;
1521 level_chain = current_binding_level->level_chain;
1522 if (level_chain)
1523 {
1524 struct named_label_list *labels;
1525 for (labels = named_label_uses; labels; labels = labels->next)
1526 if (labels->binding_level == current_binding_level)
1527 {
1528 labels->binding_level = level_chain;
1529 labels->names_in_scope = level_chain->names;
1530 }
1531 }
1532 }
1533
1534 tmp = current_binding_level->keep;
1535
1536 pop_binding_level ();
1537 if (functionbody)
1538 DECL_INITIAL (current_function_decl) = block;
1539 else if (block)
1540 {
1541 if (!block_previously_created)
1542 current_binding_level->blocks
1543 = chainon (current_binding_level->blocks, block);
1544 }
1545 /* If we did not make a block for the level just exited,
1546 any blocks made for inner levels
1547 (since they cannot be recorded as subblocks in that level)
1548 must be carried forward so they will later become subblocks
1549 of something else. */
1550 else if (subblocks)
1551 current_binding_level->blocks
1552 = chainon (current_binding_level->blocks, subblocks);
1553
1554 /* Take care of compiler's internal binding structures. */
1555 if (tmp == 2)
1556 {
1557 expand_end_bindings (getdecls (), keep, 1);
1558 /* Each and every BLOCK node created here in `poplevel' is important
1559 (e.g. for proper debugging information) so if we created one
1560 earlier, mark it as "used". */
1561 if (block)
1562 TREE_USED (block) = 1;
1563 block = poplevel (keep, reverse, real_functionbody);
1564 }
1565
1566 /* Each and every BLOCK node created here in `poplevel' is important
1567 (e.g. for proper debugging information) so if we created one
1568 earlier, mark it as "used". */
1569 if (block)
1570 TREE_USED (block) = 1;
1571 return block;
1572 }
1573
1574 /* Delete the node BLOCK from the current binding level.
1575 This is used for the block inside a stmt expr ({...})
1576 so that the block can be reinserted where appropriate. */
1577
1578 void
1579 delete_block (block)
1580 tree block;
1581 {
1582 tree t;
1583 if (current_binding_level->blocks == block)
1584 current_binding_level->blocks = TREE_CHAIN (block);
1585 for (t = current_binding_level->blocks; t;)
1586 {
1587 if (TREE_CHAIN (t) == block)
1588 TREE_CHAIN (t) = TREE_CHAIN (block);
1589 else
1590 t = TREE_CHAIN (t);
1591 }
1592 TREE_CHAIN (block) = NULL_TREE;
1593 /* Clear TREE_USED which is always set by poplevel.
1594 The flag is set again if insert_block is called. */
1595 TREE_USED (block) = 0;
1596 }
1597
1598 /* Insert BLOCK at the end of the list of subblocks of the
1599 current binding level. This is used when a BIND_EXPR is expanded,
1600 to handle the BLOCK node inside the BIND_EXPR. */
1601
1602 void
1603 insert_block (block)
1604 tree block;
1605 {
1606 TREE_USED (block) = 1;
1607 current_binding_level->blocks
1608 = chainon (current_binding_level->blocks, block);
1609 }
1610
1611 /* Set the BLOCK node for the innermost scope
1612 (the one we are currently in). */
1613
1614 void
1615 set_block (block)
1616 register tree block;
1617 {
1618 current_binding_level->this_block = block;
1619 }
1620
1621 /* Do a pushlevel for class declarations. */
1622
1623 void
1624 pushlevel_class ()
1625 {
1626 register struct binding_level *newlevel;
1627
1628 /* Reuse or create a struct for this binding level. */
1629 #if defined(DEBUG_CP_BINDING_LEVELS)
1630 if (0)
1631 #else /* !defined(DEBUG_CP_BINDING_LEVELS) */
1632 if (free_binding_level)
1633 #endif /* !defined(DEBUG_CP_BINDING_LEVELS) */
1634 {
1635 newlevel = free_binding_level;
1636 free_binding_level = free_binding_level->level_chain;
1637 }
1638 else
1639 newlevel = make_binding_level ();
1640
1641 #if defined(DEBUG_CP_BINDING_LEVELS)
1642 is_class_level = 1;
1643 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
1644
1645 push_binding_level (newlevel, 0, 0);
1646
1647 decl_stack = push_decl_level (decl_stack, &decl_obstack);
1648 class_binding_level = current_binding_level;
1649 class_binding_level->parm_flag = 2;
1650 }
1651
1652 /* ...and a poplevel for class declarations. */
1653
1654 static tree
1655 poplevel_class ()
1656 {
1657 register struct binding_level *level = class_binding_level;
1658 tree shadowed;
1659
1660 my_friendly_assert (level != 0, 354);
1661
1662 decl_stack = pop_stack_level (decl_stack);
1663 /* If we're leaving a toplevel class, don't bother to do the setting
1664 of IDENTIFIER_CLASS_VALUE to NULL_TREE, since first of all this slot
1665 shouldn't even be used when current_class_type isn't set, and second,
1666 if we don't touch it here, we're able to use the cache effect if the
1667 next time we're entering a class scope, it is the same class. */
1668 if (current_class_depth != 1)
1669 {
1670 struct binding_level* b;
1671
1672 /* Clear out our IDENTIFIER_CLASS_VALUEs. */
1673 for (shadowed = level->class_shadowed;
1674 shadowed;
1675 shadowed = TREE_CHAIN (shadowed))
1676 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed)) = NULL_TREE;
1677
1678 /* Find the next enclosing class, and recreate
1679 IDENTIFIER_CLASS_VALUEs appropriate for that class. */
1680 b = level->level_chain;
1681 while (b && b->parm_flag != 2)
1682 b = b->level_chain;
1683
1684 if (b)
1685 for (shadowed = b->class_shadowed;
1686 shadowed;
1687 shadowed = TREE_CHAIN (shadowed))
1688 {
1689 tree t;
1690
1691 t = IDENTIFIER_BINDING (TREE_PURPOSE (shadowed));
1692 while (t && BINDING_LEVEL (t) != b)
1693 t = TREE_CHAIN (t);
1694
1695 if (t)
1696 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed))
1697 = BINDING_VALUE (t);
1698 }
1699 }
1700 else
1701 /* Remember to save what IDENTIFIER's were bound in this scope so we
1702 can recover from cache misses. */
1703 {
1704 previous_class_type = current_class_type;
1705 previous_class_values = class_binding_level->class_shadowed;
1706 }
1707 for (shadowed = level->type_shadowed;
1708 shadowed;
1709 shadowed = TREE_CHAIN (shadowed))
1710 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed), TREE_VALUE (shadowed));
1711
1712 /* Remove the bindings for all of the class-level declarations. */
1713 for (shadowed = level->class_shadowed;
1714 shadowed;
1715 shadowed = TREE_CHAIN (shadowed))
1716 pop_binding (TREE_PURPOSE (shadowed), TREE_TYPE (shadowed));
1717
1718 GNU_xref_end_scope ((HOST_WIDE_INT) class_binding_level,
1719 (HOST_WIDE_INT) class_binding_level->level_chain,
1720 class_binding_level->parm_flag,
1721 class_binding_level->keep);
1722
1723 /* Now, pop out of the binding level which we created up in the
1724 `pushlevel_class' routine. */
1725 #if defined(DEBUG_CP_BINDING_LEVELS)
1726 is_class_level = 1;
1727 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
1728
1729 pop_binding_level ();
1730
1731 return NULL_TREE;
1732 }
1733
1734 /* We are entering the scope of a class. Clear IDENTIFIER_CLASS_VALUE
1735 for any names in enclosing classes. */
1736
1737 void
1738 clear_identifier_class_values ()
1739 {
1740 tree t;
1741
1742 if (!class_binding_level)
1743 return;
1744
1745 for (t = class_binding_level->class_shadowed;
1746 t;
1747 t = TREE_CHAIN (t))
1748 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (t)) = NULL_TREE;
1749 }
1750
1751 /* Returns non-zero if T is a virtual function table. */
1752
1753 int
1754 vtable_decl_p (t, data)
1755 tree t;
1756 void *data ATTRIBUTE_UNUSED;
1757 {
1758 return (TREE_CODE (t) == VAR_DECL && DECL_VIRTUAL_P (t));
1759 }
1760
1761 /* Returns non-zero if T is a TYPE_DECL for a type with virtual
1762 functions. */
1763
1764 int
1765 vtype_decl_p (t, data)
1766 tree t;
1767 void *data ATTRIBUTE_UNUSED;
1768 {
1769 return (TREE_CODE (t) == TYPE_DECL
1770 && TREE_TYPE (t) != error_mark_node
1771 && TYPE_LANG_SPECIFIC (TREE_TYPE (t))
1772 && CLASSTYPE_VSIZE (TREE_TYPE (t)));
1773 }
1774
1775 /* Return the declarations that are members of the namespace NS. */
1776
1777 tree
1778 cp_namespace_decls (ns)
1779 tree ns;
1780 {
1781 return NAMESPACE_LEVEL (ns)->names;
1782 }
1783
1784 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
1785 itself, calling F for each. The DATA is passed to F as well. */
1786
1787 static int
1788 walk_namespaces_r (namespace, f, data)
1789 tree namespace;
1790 walk_namespaces_fn f;
1791 void *data;
1792 {
1793 tree current;
1794 int result = 0;
1795
1796 result |= (*f) (namespace, data);
1797
1798 for (current = cp_namespace_decls (namespace);
1799 current;
1800 current = TREE_CHAIN (current))
1801 {
1802 if (TREE_CODE (current) != NAMESPACE_DECL
1803 || DECL_NAMESPACE_ALIAS (current))
1804 continue;
1805 if (!DECL_LANG_SPECIFIC (current))
1806 {
1807 /* Hmm. std. */
1808 my_friendly_assert (current == std_node, 393);
1809 continue;
1810 }
1811
1812 /* We found a namespace. */
1813 result |= walk_namespaces_r (current, f, data);
1814 }
1815
1816 return result;
1817 }
1818
1819 /* Walk all the namespaces, calling F for each. The DATA is passed to
1820 F as well. */
1821
1822 int
1823 walk_namespaces (f, data)
1824 walk_namespaces_fn f;
1825 void *data;
1826 {
1827 return walk_namespaces_r (global_namespace, f, data);
1828 }
1829
1830 struct walk_globals_data {
1831 walk_globals_pred p;
1832 walk_globals_fn f;
1833 void *data;
1834 };
1835
1836 /* Walk the global declarations in NAMESPACE. Whenever one is found
1837 for which P returns non-zero, call F with its address. If any call
1838 to F returns a non-zero value, return a non-zero value. */
1839
1840 static int
1841 walk_globals_r (namespace, data)
1842 tree namespace;
1843 void *data;
1844 {
1845 struct walk_globals_data* wgd = (struct walk_globals_data *) data;
1846 walk_globals_pred p = wgd->p;
1847 walk_globals_fn f = wgd->f;
1848 void *d = wgd->data;
1849 tree *t;
1850 int result = 0;
1851
1852 t = &NAMESPACE_LEVEL (namespace)->names;
1853
1854 while (*t)
1855 {
1856 tree glbl = *t;
1857
1858 if ((*p) (glbl, d))
1859 result |= (*f) (t, d);
1860
1861 /* If F changed *T, then *T still points at the next item to
1862 examine. */
1863 if (*t == glbl)
1864 t = &TREE_CHAIN (*t);
1865 }
1866
1867 return result;
1868 }
1869
1870 /* Walk the global declarations. Whenever one is found for which P
1871 returns non-zero, call F with its address. If any call to F
1872 returns a non-zero value, return a non-zero value. */
1873
1874 int
1875 walk_globals (p, f, data)
1876 walk_globals_pred p;
1877 walk_globals_fn f;
1878 void *data;
1879 {
1880 struct walk_globals_data wgd;
1881 wgd.p = p;
1882 wgd.f = f;
1883 wgd.data = data;
1884
1885 return walk_namespaces (walk_globals_r, &wgd);
1886 }
1887
1888 /* Call wrapup_globals_declarations for the globals in NAMESPACE. If
1889 DATA is non-NULL, this is the last time we will call
1890 wrapup_global_declarations for this NAMESPACE. */
1891
1892 int
1893 wrapup_globals_for_namespace (namespace, data)
1894 tree namespace;
1895 void *data;
1896 {
1897 tree globals = cp_namespace_decls (namespace);
1898 int len = list_length (globals);
1899 tree *vec = (tree *) alloca (sizeof (tree) * len);
1900 int i;
1901 int result;
1902 tree decl;
1903 int last_time = (data != 0);
1904
1905 if (last_time && namespace == global_namespace)
1906 /* Let compile_file handle the global namespace. */
1907 return 0;
1908
1909 /* Process the decls in reverse order--earliest first.
1910 Put them into VEC from back to front, then take out from front. */
1911
1912 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
1913 vec[len - i - 1] = decl;
1914
1915 if (last_time)
1916 {
1917 check_global_declarations (vec, len);
1918 return 0;
1919 }
1920
1921 /* Temporarily mark vtables as external. That prevents
1922 wrapup_global_declarations from writing them out; we must process
1923 them ourselves in finish_vtable_vardecl. */
1924 for (i = 0; i < len; ++i)
1925 if (vtable_decl_p (vec[i], /*data=*/0) && !DECL_EXTERNAL (vec[i]))
1926 {
1927 DECL_NOT_REALLY_EXTERN (vec[i]) = 1;
1928 DECL_EXTERNAL (vec[i]) = 1;
1929 }
1930
1931 /* Write out any globals that need to be output. */
1932 result = wrapup_global_declarations (vec, len);
1933
1934 /* Undo the hack to DECL_EXTERNAL above. */
1935 for (i = 0; i < len; ++i)
1936 if (vtable_decl_p (vec[i], /*data=*/0)
1937 && DECL_NOT_REALLY_EXTERN (vec[i]))
1938 {
1939 DECL_NOT_REALLY_EXTERN (vec[i]) = 0;
1940 DECL_EXTERNAL (vec[i]) = 0;
1941 }
1942
1943 return result;
1944 }
1945
1946 \f
1947 /* Mark ARG (which is really a struct binding_level **) for GC. */
1948
1949 static void
1950 mark_binding_level (arg)
1951 void *arg;
1952 {
1953 struct binding_level *lvl = *(struct binding_level **)arg;
1954
1955 while (lvl)
1956 {
1957 ggc_mark_tree (lvl->names);
1958 ggc_mark_tree (lvl->tags);
1959 ggc_mark_tree (lvl->usings);
1960 ggc_mark_tree (lvl->using_directives);
1961 ggc_mark_tree (lvl->class_shadowed);
1962 ggc_mark_tree (lvl->type_shadowed);
1963 ggc_mark_tree (lvl->shadowed_labels);
1964 ggc_mark_tree (lvl->blocks);
1965 ggc_mark_tree (lvl->this_block);
1966 ggc_mark_tree (lvl->incomplete);
1967 ggc_mark_tree (lvl->dead_vars_from_for);
1968
1969 lvl = lvl->level_chain;
1970 }
1971 }
1972 \f
1973 /* For debugging. */
1974 static int no_print_functions = 0;
1975 static int no_print_builtins = 0;
1976
1977 void
1978 print_binding_level (lvl)
1979 struct binding_level *lvl;
1980 {
1981 tree t;
1982 int i = 0, len;
1983 fprintf (stderr, " blocks=");
1984 fprintf (stderr, HOST_PTR_PRINTF, lvl->blocks);
1985 fprintf (stderr, " n_incomplete=%d parm_flag=%d keep=%d",
1986 list_length (lvl->incomplete), lvl->parm_flag, lvl->keep);
1987 if (lvl->tag_transparent)
1988 fprintf (stderr, " tag-transparent");
1989 if (lvl->more_cleanups_ok)
1990 fprintf (stderr, " more-cleanups-ok");
1991 if (lvl->have_cleanups)
1992 fprintf (stderr, " have-cleanups");
1993 fprintf (stderr, "\n");
1994 if (lvl->names)
1995 {
1996 fprintf (stderr, " names:\t");
1997 /* We can probably fit 3 names to a line? */
1998 for (t = lvl->names; t; t = TREE_CHAIN (t))
1999 {
2000 if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL))
2001 continue;
2002 if (no_print_builtins
2003 && (TREE_CODE (t) == TYPE_DECL)
2004 && (!strcmp (DECL_SOURCE_FILE (t),"<built-in>")))
2005 continue;
2006
2007 /* Function decls tend to have longer names. */
2008 if (TREE_CODE (t) == FUNCTION_DECL)
2009 len = 3;
2010 else
2011 len = 2;
2012 i += len;
2013 if (i > 6)
2014 {
2015 fprintf (stderr, "\n\t");
2016 i = len;
2017 }
2018 print_node_brief (stderr, "", t, 0);
2019 if (t == error_mark_node)
2020 break;
2021 }
2022 if (i)
2023 fprintf (stderr, "\n");
2024 }
2025 if (lvl->tags)
2026 {
2027 fprintf (stderr, " tags:\t");
2028 i = 0;
2029 for (t = lvl->tags; t; t = TREE_CHAIN (t))
2030 {
2031 if (TREE_PURPOSE (t) == NULL_TREE)
2032 len = 3;
2033 else if (TREE_PURPOSE (t) == TYPE_IDENTIFIER (TREE_VALUE (t)))
2034 len = 2;
2035 else
2036 len = 4;
2037 i += len;
2038 if (i > 5)
2039 {
2040 fprintf (stderr, "\n\t");
2041 i = len;
2042 }
2043 if (TREE_PURPOSE (t) == NULL_TREE)
2044 {
2045 print_node_brief (stderr, "<unnamed-typedef", TREE_VALUE (t), 0);
2046 fprintf (stderr, ">");
2047 }
2048 else if (TREE_PURPOSE (t) == TYPE_IDENTIFIER (TREE_VALUE (t)))
2049 print_node_brief (stderr, "", TREE_VALUE (t), 0);
2050 else
2051 {
2052 print_node_brief (stderr, "<typedef", TREE_PURPOSE (t), 0);
2053 print_node_brief (stderr, "", TREE_VALUE (t), 0);
2054 fprintf (stderr, ">");
2055 }
2056 }
2057 if (i)
2058 fprintf (stderr, "\n");
2059 }
2060 if (lvl->class_shadowed)
2061 {
2062 fprintf (stderr, " class-shadowed:");
2063 for (t = lvl->class_shadowed; t; t = TREE_CHAIN (t))
2064 {
2065 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
2066 }
2067 fprintf (stderr, "\n");
2068 }
2069 if (lvl->type_shadowed)
2070 {
2071 fprintf (stderr, " type-shadowed:");
2072 for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
2073 {
2074 fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
2075 }
2076 fprintf (stderr, "\n");
2077 }
2078 }
2079
2080 void
2081 print_other_binding_stack (stack)
2082 struct binding_level *stack;
2083 {
2084 struct binding_level *level;
2085 for (level = stack; level != global_binding_level; level = level->level_chain)
2086 {
2087 fprintf (stderr, "binding level ");
2088 fprintf (stderr, HOST_PTR_PRINTF, level);
2089 fprintf (stderr, "\n");
2090 print_binding_level (level);
2091 }
2092 }
2093
2094 void
2095 print_binding_stack ()
2096 {
2097 struct binding_level *b;
2098 fprintf (stderr, "current_binding_level=");
2099 fprintf (stderr, HOST_PTR_PRINTF, current_binding_level);
2100 fprintf (stderr, "\nclass_binding_level=");
2101 fprintf (stderr, HOST_PTR_PRINTF, class_binding_level);
2102 fprintf (stderr, "\nglobal_binding_level=");
2103 fprintf (stderr, HOST_PTR_PRINTF, global_binding_level);
2104 fprintf (stderr, "\n");
2105 if (class_binding_level)
2106 {
2107 for (b = class_binding_level; b; b = b->level_chain)
2108 if (b == current_binding_level)
2109 break;
2110 if (b)
2111 b = class_binding_level;
2112 else
2113 b = current_binding_level;
2114 }
2115 else
2116 b = current_binding_level;
2117 print_other_binding_stack (b);
2118 fprintf (stderr, "global:\n");
2119 print_binding_level (global_binding_level);
2120 }
2121
2122 /* Namespace binding access routines: The namespace_bindings field of
2123 the identifier is polymorphic, with three possible values:
2124 NULL_TREE, a list of CPLUS_BINDINGS, or any other tree_node
2125 indicating the BINDING_VALUE of global_namespace. */
2126
2127 /* Check whether the a binding for the name to scope is known.
2128 Assumes that the bindings of the name are already a list
2129 of bindings. Returns the binding found, or NULL_TREE. */
2130
2131 static tree
2132 find_binding (name, scope)
2133 tree name;
2134 tree scope;
2135 {
2136 tree iter, prev = NULL_TREE;
2137
2138 scope = ORIGINAL_NAMESPACE (scope);
2139
2140 for (iter = IDENTIFIER_NAMESPACE_BINDINGS (name); iter;
2141 iter = TREE_CHAIN (iter))
2142 {
2143 my_friendly_assert (TREE_CODE (iter) == CPLUS_BINDING, 374);
2144 if (BINDING_SCOPE (iter) == scope)
2145 {
2146 /* Move binding found to the front of the list, so
2147 subsequent lookups will find it faster. */
2148 if (prev)
2149 {
2150 TREE_CHAIN (prev) = TREE_CHAIN (iter);
2151 TREE_CHAIN (iter) = IDENTIFIER_NAMESPACE_BINDINGS (name);
2152 IDENTIFIER_NAMESPACE_BINDINGS (name) = iter;
2153 }
2154 return iter;
2155 }
2156 prev = iter;
2157 }
2158 return NULL_TREE;
2159 }
2160
2161 /* Always returns a binding for name in scope. If the
2162 namespace_bindings is not a list, convert it to one first.
2163 If no binding is found, make a new one. */
2164
2165 tree
2166 binding_for_name (name, scope)
2167 tree name;
2168 tree scope;
2169 {
2170 tree b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2171 tree result;
2172
2173 scope = ORIGINAL_NAMESPACE (scope);
2174
2175 if (b && TREE_CODE (b) != CPLUS_BINDING)
2176 {
2177 /* Get rid of optimization for global scope. */
2178 IDENTIFIER_NAMESPACE_BINDINGS (name) = NULL_TREE;
2179 BINDING_VALUE (binding_for_name (name, global_namespace)) = b;
2180 b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2181 }
2182 if (b && (result = find_binding (name, scope)))
2183 return result;
2184 /* Not found, make a new permanent one. */
2185 push_obstacks (&permanent_obstack, &permanent_obstack);
2186 result = make_node (CPLUS_BINDING);
2187 TREE_CHAIN (result) = b;
2188 IDENTIFIER_NAMESPACE_BINDINGS (name) = result;
2189 BINDING_SCOPE (result) = scope;
2190 BINDING_TYPE (result) = NULL_TREE;
2191 BINDING_VALUE (result) = NULL_TREE;
2192 pop_obstacks ();
2193 return result;
2194 }
2195
2196 /* Return the binding value for name in scope, considering that
2197 namespace_binding may or may not be a list of CPLUS_BINDINGS. */
2198
2199 tree
2200 namespace_binding (name, scope)
2201 tree name;
2202 tree scope;
2203 {
2204 tree b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2205 if (b == NULL_TREE)
2206 return NULL_TREE;
2207 if (scope == NULL_TREE)
2208 scope = global_namespace;
2209 if (TREE_CODE (b) != CPLUS_BINDING)
2210 return (scope == global_namespace) ? b : NULL_TREE;
2211 name = find_binding (name,scope);
2212 if (name == NULL_TREE)
2213 return name;
2214 return BINDING_VALUE (name);
2215 }
2216
2217 /* Set the binding value for name in scope. If modifying the binding
2218 of global_namespace is attempted, try to optimize it. */
2219
2220 void
2221 set_namespace_binding (name, scope, val)
2222 tree name;
2223 tree scope;
2224 tree val;
2225 {
2226 tree b;
2227
2228 if (scope == NULL_TREE)
2229 scope = global_namespace;
2230
2231 if (scope == global_namespace)
2232 {
2233 b = IDENTIFIER_NAMESPACE_BINDINGS (name);
2234 if (b == NULL_TREE || TREE_CODE (b) != CPLUS_BINDING)
2235 {
2236 IDENTIFIER_NAMESPACE_BINDINGS (name) = val;
2237 return;
2238 }
2239 }
2240 b = binding_for_name (name, scope);
2241 BINDING_VALUE (b) = val;
2242 }
2243
2244 /* Push into the scope of the NAME namespace. If NAME is NULL_TREE, then we
2245 select a name that is unique to this compilation unit. */
2246
2247 void
2248 push_namespace (name)
2249 tree name;
2250 {
2251 tree d = NULL_TREE;
2252 int need_new = 1;
2253 int implicit_use = 0;
2254 int global = 0;
2255 if (!global_namespace)
2256 {
2257 /* This must be ::. */
2258 my_friendly_assert (name == get_identifier ("::"), 377);
2259 global = 1;
2260 }
2261 else if (!name)
2262 {
2263 /* The name of anonymous namespace is unique for the translation
2264 unit. */
2265 if (!anonymous_namespace_name)
2266 anonymous_namespace_name = get_file_function_name ('N');
2267 name = anonymous_namespace_name;
2268 d = IDENTIFIER_NAMESPACE_VALUE (name);
2269 if (d)
2270 /* Reopening anonymous namespace. */
2271 need_new = 0;
2272 implicit_use = 1;
2273 }
2274 else if (current_namespace == global_namespace
2275 && name == DECL_NAME (std_node))
2276 {
2277 in_std++;
2278 return;
2279 }
2280 else
2281 {
2282 /* Check whether this is an extended namespace definition. */
2283 d = IDENTIFIER_NAMESPACE_VALUE (name);
2284 if (d != NULL_TREE && TREE_CODE (d) == NAMESPACE_DECL)
2285 {
2286 need_new = 0;
2287 if (DECL_NAMESPACE_ALIAS (d))
2288 {
2289 cp_error ("namespace alias `%D' not allowed here, assuming `%D'",
2290 d, DECL_NAMESPACE_ALIAS (d));
2291 d = DECL_NAMESPACE_ALIAS (d);
2292 }
2293 }
2294 }
2295
2296 if (need_new)
2297 {
2298 /* Make a new namespace, binding the name to it. */
2299 d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
2300 /* The global namespace is not pushed, and the global binding
2301 level is set elsewhere. */
2302 if (!global)
2303 {
2304 d = pushdecl (d);
2305 pushlevel (0);
2306 declare_namespace_level ();
2307 NAMESPACE_LEVEL (d) = current_binding_level;
2308 }
2309 }
2310 else
2311 resume_binding_level (NAMESPACE_LEVEL (d));
2312
2313 if (implicit_use)
2314 do_using_directive (d);
2315 /* Enter the name space. */
2316 current_namespace = d;
2317 }
2318
2319 /* Pop from the scope of the current namespace. */
2320
2321 void
2322 pop_namespace ()
2323 {
2324 if (current_namespace == global_namespace)
2325 {
2326 my_friendly_assert (in_std>0, 980421);
2327 in_std--;
2328 return;
2329 }
2330 current_namespace = CP_DECL_CONTEXT (current_namespace);
2331 /* The binding level is not popped, as it might be re-opened later. */
2332 suspend_binding_level ();
2333 }
2334
2335 /* Push into the scope of the namespace NS, even if it is deeply
2336 nested within another namespace. */
2337
2338 void
2339 push_nested_namespace (ns)
2340 tree ns;
2341 {
2342 if (ns == global_namespace)
2343 push_to_top_level ();
2344 else
2345 {
2346 push_nested_namespace (CP_DECL_CONTEXT (ns));
2347 push_namespace (DECL_NAME (ns));
2348 }
2349 }
2350
2351 /* Pop back from the scope of the namespace NS, which was previously
2352 entered with push_nested_namespace. */
2353
2354 void
2355 pop_nested_namespace (ns)
2356 tree ns;
2357 {
2358 while (ns != global_namespace)
2359 {
2360 pop_namespace ();
2361 ns = CP_DECL_CONTEXT (ns);
2362 }
2363
2364 pop_from_top_level ();
2365 }
2366
2367 \f
2368 /* Subroutines for reverting temporarily to top-level for instantiation
2369 of templates and such. We actually need to clear out the class- and
2370 local-value slots of all identifiers, so that only the global values
2371 are at all visible. Simply setting current_binding_level to the global
2372 scope isn't enough, because more binding levels may be pushed. */
2373 struct saved_scope *scope_chain;
2374
2375 /* Mark ARG (which is really a struct saved_scope **) for GC. */
2376
2377 static void
2378 mark_saved_scope (arg)
2379 void *arg;
2380 {
2381 struct saved_scope *t = *(struct saved_scope **)arg;
2382 while (t)
2383 {
2384 mark_binding_level (&t->class_bindings);
2385 ggc_mark_tree (t->old_bindings);
2386 ggc_mark_tree (t->old_namespace);
2387 ggc_mark_tree (t->class_name);
2388 ggc_mark_tree (t->class_type);
2389 ggc_mark_tree (t->access_specifier);
2390 ggc_mark_tree (t->function_decl);
2391 if (t->lang_base)
2392 ggc_mark_tree_varray (t->lang_base);
2393 ggc_mark_tree (t->lang_name);
2394 ggc_mark_tree (t->x_function_parms);
2395 ggc_mark_tree (t->template_parms);
2396 ggc_mark_tree (t->x_previous_class_type);
2397 ggc_mark_tree (t->x_previous_class_values);
2398 mark_binding_level (&t->bindings);
2399 t = t->prev;
2400 }
2401 }
2402
2403 static tree
2404 store_bindings (names, old_bindings)
2405 tree names, old_bindings;
2406 {
2407 tree t;
2408 for (t = names; t; t = TREE_CHAIN (t))
2409 {
2410 tree binding, t1, id;
2411
2412 if (TREE_CODE (t) == TREE_LIST)
2413 id = TREE_PURPOSE (t);
2414 else
2415 id = DECL_NAME (t);
2416
2417 if (!id
2418 /* Note that we may have an IDENTIFIER_CLASS_VALUE even when
2419 we have no IDENTIFIER_BINDING if we have left the class
2420 scope, but cached the class-level declarations. */
2421 || !(IDENTIFIER_BINDING (id) || IDENTIFIER_CLASS_VALUE (id)))
2422 continue;
2423
2424 for (t1 = old_bindings; t1; t1 = TREE_CHAIN (t1))
2425 if (TREE_VEC_ELT (t1, 0) == id)
2426 goto skip_it;
2427
2428 binding = make_tree_vec (4);
2429
2430 if (id)
2431 {
2432 my_friendly_assert (TREE_CODE (id) == IDENTIFIER_NODE, 135);
2433 TREE_VEC_ELT (binding, 0) = id;
2434 TREE_VEC_ELT (binding, 1) = REAL_IDENTIFIER_TYPE_VALUE (id);
2435 TREE_VEC_ELT (binding, 2) = IDENTIFIER_BINDING (id);
2436 TREE_VEC_ELT (binding, 3) = IDENTIFIER_CLASS_VALUE (id);
2437 IDENTIFIER_BINDING (id) = NULL_TREE;
2438 IDENTIFIER_CLASS_VALUE (id) = NULL_TREE;
2439 }
2440 TREE_CHAIN (binding) = old_bindings;
2441 old_bindings = binding;
2442 skip_it:
2443 ;
2444 }
2445 return old_bindings;
2446 }
2447
2448 void
2449 maybe_push_to_top_level (pseudo)
2450 int pseudo;
2451 {
2452 struct saved_scope *s;
2453 struct binding_level *b;
2454 tree old_bindings;
2455 int need_pop;
2456
2457 s = (struct saved_scope *) xcalloc (1, sizeof (struct saved_scope));
2458
2459 b = scope_chain ? current_binding_level : 0;
2460
2461 /* If we're in the middle of some function, save our state. */
2462 if (current_function)
2463 {
2464 need_pop = 1;
2465 push_function_context_to (NULL_TREE);
2466 }
2467 else
2468 need_pop = 0;
2469
2470 old_bindings = NULL_TREE;
2471 if (scope_chain && previous_class_type)
2472 old_bindings = store_bindings (previous_class_values, old_bindings);
2473
2474 /* Have to include global_binding_level, because class-level decls
2475 aren't listed anywhere useful. */
2476 for (; b; b = b->level_chain)
2477 {
2478 tree t;
2479
2480 /* Template IDs are inserted into the global level. If they were
2481 inserted into namespace level, finish_file wouldn't find them
2482 when doing pending instantiations. Therefore, don't stop at
2483 namespace level, but continue until :: . */
2484 if (b == global_binding_level || (pseudo && b->pseudo_global))
2485 break;
2486
2487 old_bindings = store_bindings (b->names, old_bindings);
2488 /* We also need to check class_shadowed to save class-level type
2489 bindings, since pushclass doesn't fill in b->names. */
2490 if (b->parm_flag == 2)
2491 old_bindings = store_bindings (b->class_shadowed, old_bindings);
2492
2493 /* Unwind type-value slots back to top level. */
2494 for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
2495 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
2496 }
2497 s->prev = scope_chain;
2498 s->old_bindings = old_bindings;
2499 s->bindings = b;
2500 s->need_pop_function_context = need_pop;
2501 s->function_decl = current_function_decl;
2502
2503 scope_chain = s;
2504 current_function_decl = NULL_TREE;
2505 VARRAY_TREE_INIT (current_lang_base, 10, "current_lang_base");
2506 current_lang_stack = &VARRAY_TREE (current_lang_base, 0);
2507 current_lang_name = lang_name_cplusplus;
2508 strict_prototype = strict_prototypes_lang_cplusplus;
2509 current_namespace = global_namespace;
2510
2511 push_obstacks (&permanent_obstack, &permanent_obstack);
2512 }
2513
2514 void
2515 push_to_top_level ()
2516 {
2517 maybe_push_to_top_level (0);
2518 }
2519
2520 void
2521 pop_from_top_level ()
2522 {
2523 struct saved_scope *s = scope_chain;
2524 tree t;
2525
2526 /* Clear out class-level bindings cache. */
2527 if (previous_class_type)
2528 invalidate_class_lookup_cache ();
2529
2530 pop_obstacks ();
2531
2532 VARRAY_FREE (current_lang_base);
2533
2534 scope_chain = s->prev;
2535 for (t = s->old_bindings; t; t = TREE_CHAIN (t))
2536 {
2537 tree id = TREE_VEC_ELT (t, 0);
2538 if (id)
2539 {
2540 SET_IDENTIFIER_TYPE_VALUE (id, TREE_VEC_ELT (t, 1));
2541 IDENTIFIER_BINDING (id) = TREE_VEC_ELT (t, 2);
2542 IDENTIFIER_CLASS_VALUE (id) = TREE_VEC_ELT (t, 3);
2543 }
2544 }
2545
2546 if (current_lang_name == lang_name_cplusplus)
2547 strict_prototype = strict_prototypes_lang_cplusplus;
2548 else if (current_lang_name == lang_name_c)
2549 strict_prototype = strict_prototypes_lang_c;
2550
2551 /* If we were in the middle of compiling a function, restore our
2552 state. */
2553 if (s->need_pop_function_context)
2554 pop_function_context_from (NULL_TREE);
2555 current_function_decl = s->function_decl;
2556
2557 free (s);
2558 }
2559 \f
2560 /* Push a definition of struct, union or enum tag "name".
2561 into binding_level "b". "type" should be the type node,
2562 We assume that the tag "name" is not already defined.
2563
2564 Note that the definition may really be just a forward reference.
2565 In that case, the TYPE_SIZE will be a NULL_TREE.
2566
2567 C++ gratuitously puts all these tags in the name space. */
2568
2569 /* When setting the IDENTIFIER_TYPE_VALUE field of an identifier ID,
2570 record the shadowed value for this binding contour. TYPE is
2571 the type that ID maps to. */
2572
2573 static void
2574 set_identifier_type_value_with_scope (id, type, b)
2575 tree id;
2576 tree type;
2577 struct binding_level *b;
2578 {
2579 if (!b->namespace_p)
2580 {
2581 /* Shadow the marker, not the real thing, so that the marker
2582 gets restored later. */
2583 tree old_type_value = REAL_IDENTIFIER_TYPE_VALUE (id);
2584 b->type_shadowed
2585 = tree_cons (id, old_type_value, b->type_shadowed);
2586 }
2587 else
2588 {
2589 tree binding = binding_for_name (id, current_namespace);
2590 BINDING_TYPE (binding) = type;
2591 /* Store marker instead of real type. */
2592 type = global_type_node;
2593 }
2594 SET_IDENTIFIER_TYPE_VALUE (id, type);
2595 }
2596
2597 /* As set_identifier_type_value_with_scope, but using current_binding_level. */
2598
2599 void
2600 set_identifier_type_value (id, type)
2601 tree id;
2602 tree type;
2603 {
2604 set_identifier_type_value_with_scope (id, type, current_binding_level);
2605 }
2606
2607 /* Return the type associated with id. */
2608
2609 tree
2610 identifier_type_value (id)
2611 tree id;
2612 {
2613 /* There is no type with that name, anywhere. */
2614 if (REAL_IDENTIFIER_TYPE_VALUE (id) == NULL_TREE)
2615 return NULL_TREE;
2616 /* This is not the type marker, but the real thing. */
2617 if (REAL_IDENTIFIER_TYPE_VALUE (id) != global_type_node)
2618 return REAL_IDENTIFIER_TYPE_VALUE (id);
2619 /* Have to search for it. It must be on the global level, now.
2620 Ask lookup_name not to return non-types. */
2621 id = lookup_name_real (id, 2, 1, 0);
2622 if (id)
2623 return TREE_TYPE (id);
2624 return NULL_TREE;
2625 }
2626
2627 /* Pop off extraneous binding levels left over due to syntax errors.
2628
2629 We don't pop past namespaces, as they might be valid. */
2630
2631 void
2632 pop_everything ()
2633 {
2634 #ifdef DEBUG_CP_BINDING_LEVELS
2635 fprintf (stderr, "XXX entering pop_everything ()\n");
2636 #endif
2637 while (!toplevel_bindings_p ())
2638 {
2639 if (current_binding_level->parm_flag == 2)
2640 pop_nested_class ();
2641 else
2642 poplevel (0, 0, 0);
2643 }
2644 #ifdef DEBUG_CP_BINDING_LEVELS
2645 fprintf (stderr, "XXX leaving pop_everything ()\n");
2646 #endif
2647 }
2648
2649 /* The type TYPE is being declared. If it is a class template, or a
2650 specialization of a class template, do any processing required and
2651 perform error-checking. If IS_FRIEND is non-zero, this TYPE is
2652 being declared a friend. B is the binding level at which this TYPE
2653 should be bound.
2654
2655 Returns the TYPE_DECL for TYPE, which may have been altered by this
2656 processing. */
2657
2658 static tree
2659 maybe_process_template_type_declaration (type, globalize, b)
2660 tree type;
2661 int globalize;
2662 struct binding_level* b;
2663 {
2664 tree decl = TYPE_NAME (type);
2665
2666 if (processing_template_parmlist)
2667 /* You can't declare a new template type in a template parameter
2668 list. But, you can declare a non-template type:
2669
2670 template <class A*> struct S;
2671
2672 is a forward-declaration of `A'. */
2673 ;
2674 else
2675 {
2676 maybe_check_template_type (type);
2677
2678 my_friendly_assert (IS_AGGR_TYPE (type)
2679 || TREE_CODE (type) == ENUMERAL_TYPE, 0);
2680
2681
2682 if (processing_template_decl)
2683 {
2684 /* This may change after the call to
2685 push_template_decl_real, but we want the original value. */
2686 tree name = DECL_NAME (decl);
2687
2688 decl = push_template_decl_real (decl, globalize);
2689 /* If the current binding level is the binding level for the
2690 template parameters (see the comment in
2691 begin_template_parm_list) and the enclosing level is a class
2692 scope, and we're not looking at a friend, push the
2693 declaration of the member class into the class scope. In the
2694 friend case, push_template_decl will already have put the
2695 friend into global scope, if appropriate. */
2696 if (TREE_CODE (type) != ENUMERAL_TYPE
2697 && !globalize && b->pseudo_global
2698 && b->level_chain->parm_flag == 2)
2699 {
2700 finish_member_declaration (CLASSTYPE_TI_TEMPLATE (type));
2701 /* Put this tag on the list of tags for the class, since
2702 that won't happen below because B is not the class
2703 binding level, but is instead the pseudo-global level. */
2704 b->level_chain->tags =
2705 tree_cons (name, type, b->level_chain->tags);
2706 if (TYPE_SIZE (current_class_type) == NULL_TREE)
2707 CLASSTYPE_TAGS (current_class_type) = b->level_chain->tags;
2708 }
2709 }
2710 }
2711
2712 return decl;
2713 }
2714
2715 /* In C++, you don't have to write `struct S' to refer to `S'; you
2716 can just use `S'. We accomplish this by creating a TYPE_DECL as
2717 if the user had written `typedef struct S S'. Create and return
2718 the TYPE_DECL for TYPE. */
2719
2720 tree
2721 create_implicit_typedef (name, type)
2722 tree name;
2723 tree type;
2724 {
2725 tree decl;
2726
2727 decl = build_decl (TYPE_DECL, name, type);
2728 SET_DECL_ARTIFICIAL (decl);
2729 /* There are other implicit type declarations, like the one *within*
2730 a class that allows you to write `S::S'. We must distinguish
2731 amongst these. */
2732 SET_DECL_IMPLICIT_TYPEDEF_P (decl);
2733 TYPE_NAME (type) = decl;
2734
2735 return decl;
2736 }
2737
2738 /* Push a tag name NAME for struct/class/union/enum type TYPE.
2739 Normally put it into the inner-most non-tag-transparent scope,
2740 but if GLOBALIZE is true, put it in the inner-most non-class scope.
2741 The latter is needed for implicit declarations. */
2742
2743 void
2744 pushtag (name, type, globalize)
2745 tree name, type;
2746 int globalize;
2747 {
2748 register struct binding_level *b;
2749
2750 b = current_binding_level;
2751 while (b->tag_transparent
2752 || (globalize && b->parm_flag == 2))
2753 b = b->level_chain;
2754
2755 b->tags = tree_cons (name, type, b->tags);
2756
2757 if (name)
2758 {
2759 /* Do C++ gratuitous typedefing. */
2760 if (IDENTIFIER_TYPE_VALUE (name) != type)
2761 {
2762 register tree d = NULL_TREE;
2763 int in_class = 0;
2764 tree context = TYPE_CONTEXT (type);
2765
2766 if (! context)
2767 {
2768 tree cs = current_scope ();
2769
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));
2778 }
2779 if (!context)
2780 context = current_namespace;
2781
2782 if ((b->pseudo_global && b->level_chain->parm_flag == 2)
2783 || b->parm_flag == 2)
2784 in_class = 1;
2785
2786 if (current_lang_name == lang_name_java)
2787 TYPE_FOR_JAVA (type) = 1;
2788
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);
2793
2794 d = maybe_process_template_type_declaration (type,
2795 globalize, b);
2796
2797 if (b->parm_flag == 2)
2798 {
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);
2807 }
2808 else
2809 d = pushdecl_with_scope (d, b);
2810
2811 if (ANON_AGGRNAME_P (name))
2812 DECL_IGNORED_P (d) = 1;
2813
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));
2819 }
2820 if (b->parm_flag == 2)
2821 {
2822 if (TYPE_SIZE (current_class_type) == NULL_TREE)
2823 CLASSTYPE_TAGS (current_class_type) = b->tags;
2824 }
2825 }
2826
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
2831 {
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. */
2839
2840 tree d = build_decl (TYPE_DECL, NULL_TREE, type);
2841 TYPE_STUB_DECL (type) = pushdecl_with_scope (d, b);
2842 }
2843 }
2844
2845 /* Counter used to create anonymous type names. */
2846
2847 static int anon_cnt = 0;
2848
2849 /* Return an IDENTIFIER which can be used as a name for
2850 anonymous structs and unions. */
2851
2852 tree
2853 make_anon_name ()
2854 {
2855 char buf[32];
2856
2857 sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
2858 return get_identifier (buf);
2859 }
2860
2861 /* Clear the TREE_PURPOSE slot of tags which have anonymous typenames.
2862 This keeps dbxout from getting confused. */
2863
2864 void
2865 clear_anon_tags ()
2866 {
2867 register struct binding_level *b;
2868 register tree tags;
2869 static int last_cnt = 0;
2870
2871 /* Fast out if no new anon names were declared. */
2872 if (last_cnt == anon_cnt)
2873 return;
2874
2875 b = current_binding_level;
2876 while (b->tag_transparent)
2877 b = b->level_chain;
2878 tags = b->tags;
2879 while (tags)
2880 {
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);
2888 }
2889 last_cnt = anon_cnt;
2890 }
2891 \f
2892 /* Subroutine of duplicate_decls: return truthvalue of whether
2893 or not types of these decls match.
2894
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&'. */
2898
2899 int
2900 decls_match (newdecl, olddecl)
2901 tree newdecl, olddecl;
2902 {
2903 int types_match;
2904
2905 if (newdecl == olddecl)
2906 return 1;
2907
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;
2912
2913 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2914 {
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);
2919
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;
2924
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);
2934
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))
2940 {
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;
2946 }
2947
2948 if (same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
2949 {
2950 if (! strict_prototypes_lang_c && DECL_LANGUAGE (olddecl) == lang_c
2951 && p2 == NULL_TREE)
2952 {
2953 types_match = self_promoting_args_p (p1);
2954 if (p1 == void_list_node)
2955 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
2956 }
2957 else if (!strict_prototypes_lang_c && DECL_LANGUAGE (olddecl)==lang_c
2958 && DECL_LANGUAGE (newdecl) == lang_c && p1 == NULL_TREE)
2959 {
2960 types_match = self_promoting_args_p (p2);
2961 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
2962 }
2963 else
2964 types_match = compparms (p1, p2);
2965 }
2966 else
2967 types_match = 0;
2968 }
2969 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2970 {
2971 if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
2972 DECL_TEMPLATE_PARMS (olddecl)))
2973 return 0;
2974
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));
2980 }
2981 else
2982 {
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);
2993 }
2994
2995 return types_match;
2996 }
2997
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'.)
3001
3002 Note that this does not apply to the C++ case of declaring
3003 a variable `extern const' and then later `const'.
3004
3005 Don't complain about built-in functions, since they are beyond
3006 the user's control. */
3007
3008 static void
3009 warn_extern_redeclared_static (newdecl, olddecl)
3010 tree newdecl, olddecl;
3011 {
3012 tree name;
3013
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'";
3018
3019 if (TREE_CODE (newdecl) == TYPE_DECL)
3020 return;
3021
3022 name = DECL_ASSEMBLER_NAME (newdecl);
3023 if (TREE_PUBLIC (name) && DECL_THIS_STATIC (newdecl))
3024 {
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)))
3031 {
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);
3037 }
3038 }
3039 }
3040
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.
3044
3045 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
3046 Otherwise, return 0. */
3047
3048 int
3049 duplicate_decls (newdecl, olddecl)
3050 tree newdecl, olddecl;
3051 {
3052 unsigned olddecl_uid = DECL_UID (olddecl);
3053 int olddecl_friend = 0, types_match = 0;
3054 int new_defines_function = 0;
3055
3056 if (newdecl == olddecl)
3057 return 1;
3058
3059 types_match = decls_match (newdecl, olddecl);
3060
3061 /* If either the type of the new decl or the type of the old decl is an
3062 error_mark_node, then that implies that we have already issued an
3063 error (earlier) for some bogus type specification, and in that case,
3064 it is rather pointless to harass the user with yet more error message
3065 about the same declaration, so just pretend the types match here. */
3066 if (TREE_TYPE (newdecl) == error_mark_node
3067 || TREE_TYPE (olddecl) == error_mark_node)
3068 types_match = 1;
3069
3070 /* Check for redeclaration and other discrepancies. */
3071 if (TREE_CODE (olddecl) == FUNCTION_DECL
3072 && DECL_ARTIFICIAL (olddecl))
3073 {
3074 if (TREE_CODE (newdecl) != FUNCTION_DECL)
3075 {
3076 /* If you declare a built-in or predefined function name as static,
3077 the old definition is overridden, but optionally warn this was a
3078 bad choice of name. */
3079 if (! TREE_PUBLIC (newdecl))
3080 {
3081 if (warn_shadow)
3082 cp_warning ("shadowing %s function `%#D'",
3083 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
3084 olddecl);
3085 /* Discard the old built-in function. */
3086 return 0;
3087 }
3088 /* If the built-in is not ansi, then programs can override
3089 it even globally without an error. */
3090 else if (! DECL_BUILT_IN (olddecl))
3091 cp_warning ("library function `%#D' redeclared as non-function `%#D'",
3092 olddecl, newdecl);
3093 else
3094 {
3095 cp_error ("declaration of `%#D'", newdecl);
3096 cp_error ("conflicts with built-in declaration `%#D'",
3097 olddecl);
3098 }
3099 return 0;
3100 }
3101 else if (!types_match)
3102 {
3103 if ((DECL_LANGUAGE (newdecl) == lang_c
3104 && DECL_LANGUAGE (olddecl) == lang_c)
3105 || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
3106 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
3107 {
3108 /* A near match; override the builtin. */
3109
3110 if (TREE_PUBLIC (newdecl))
3111 {
3112 cp_warning ("new declaration `%#D'", newdecl);
3113 cp_warning ("ambiguates built-in declaration `%#D'",
3114 olddecl);
3115 }
3116 else if (warn_shadow)
3117 cp_warning ("shadowing %s function `%#D'",
3118 DECL_BUILT_IN (olddecl) ? "built-in" : "library",
3119 olddecl);
3120 }
3121 else
3122 /* Discard the old built-in function. */
3123 return 0;
3124 }
3125 }
3126 else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
3127 {
3128 if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
3129 && TREE_CODE (newdecl) != TYPE_DECL
3130 && ! (TREE_CODE (newdecl) == TEMPLATE_DECL
3131 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL))
3132 || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
3133 && TREE_CODE (olddecl) != TYPE_DECL
3134 && ! (TREE_CODE (olddecl) == TEMPLATE_DECL
3135 && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
3136 == TYPE_DECL))))
3137 {
3138 /* We do nothing special here, because C++ does such nasty
3139 things with TYPE_DECLs. Instead, just let the TYPE_DECL
3140 get shadowed, and know that if we need to find a TYPE_DECL
3141 for a given name, we can look in the IDENTIFIER_TYPE_VALUE
3142 slot of the identifier. */
3143 return 0;
3144 }
3145
3146 if ((TREE_CODE (newdecl) == FUNCTION_DECL
3147 && DECL_FUNCTION_TEMPLATE_P (olddecl))
3148 || (TREE_CODE (olddecl) == FUNCTION_DECL
3149 && DECL_FUNCTION_TEMPLATE_P (newdecl)))
3150 return 0;
3151
3152 cp_error ("`%#D' redeclared as different kind of symbol", newdecl);
3153 if (TREE_CODE (olddecl) == TREE_LIST)
3154 olddecl = TREE_VALUE (olddecl);
3155 cp_error_at ("previous declaration of `%#D'", olddecl);
3156
3157 /* New decl is completely inconsistent with the old one =>
3158 tell caller to replace the old one. */
3159
3160 return 0;
3161 }
3162 else if (!types_match)
3163 {
3164 if (DECL_REAL_CONTEXT (newdecl) != DECL_REAL_CONTEXT (olddecl))
3165 /* These are certainly not duplicate declarations; they're
3166 from different scopes. */
3167 return 0;
3168
3169 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
3170 {
3171 /* The name of a class template may not be declared to refer to
3172 any other template, class, function, object, namespace, value,
3173 or type in the same scope. */
3174 if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
3175 || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
3176 {
3177 cp_error ("declaration of template `%#D'", newdecl);
3178 cp_error_at ("conflicts with previous declaration `%#D'",
3179 olddecl);
3180 }
3181 else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
3182 && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
3183 && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
3184 TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
3185 && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
3186 DECL_TEMPLATE_PARMS (olddecl)))
3187 {
3188 cp_error ("new declaration `%#D'", newdecl);
3189 cp_error_at ("ambiguates old declaration `%#D'", olddecl);
3190 }
3191 return 0;
3192 }
3193 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3194 {
3195 if (DECL_LANGUAGE (newdecl) == lang_c
3196 && DECL_LANGUAGE (olddecl) == lang_c)
3197 {
3198 cp_error ("declaration of C function `%#D' conflicts with",
3199 newdecl);
3200 cp_error_at ("previous declaration `%#D' here", olddecl);
3201 }
3202 else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
3203 TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
3204 {
3205 cp_error ("new declaration `%#D'", newdecl);
3206 cp_error_at ("ambiguates old declaration `%#D'", olddecl);
3207 }
3208 else
3209 return 0;
3210 }
3211
3212 /* Already complained about this, so don't do so again. */
3213 else if (current_class_type == NULL_TREE
3214 || IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (newdecl)) != current_class_type)
3215 {
3216 cp_error ("conflicting types for `%#D'", newdecl);
3217 cp_error_at ("previous declaration as `%#D'", olddecl);
3218 }
3219 }
3220 else if (TREE_CODE (newdecl) == FUNCTION_DECL
3221 && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
3222 && (!DECL_TEMPLATE_INFO (newdecl)
3223 || (DECL_TI_TEMPLATE (newdecl)
3224 != DECL_TI_TEMPLATE (olddecl))))
3225 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
3226 && (!DECL_TEMPLATE_INFO (olddecl)
3227 || (DECL_TI_TEMPLATE (olddecl)
3228 != DECL_TI_TEMPLATE (newdecl))))))
3229 /* It's OK to have a template specialization and a non-template
3230 with the same type, or to have specializations of two
3231 different templates with the same type. Note that if one is a
3232 specialization, and the other is an instantiation of the same
3233 template, that we do not exit at this point. That situation
3234 can occur if we instantiate a template class, and then
3235 specialize one of its methods. This situation is legal, but
3236 the declarations must be merged in the usual way. */
3237 return 0;
3238 else if (TREE_CODE (newdecl) == FUNCTION_DECL
3239 && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
3240 && !DECL_USE_TEMPLATE (newdecl))
3241 || (DECL_TEMPLATE_INSTANTIATION (newdecl)
3242 && !DECL_USE_TEMPLATE (olddecl))))
3243 /* One of the declarations is a template instantiation, and the
3244 other is not a template at all. That's OK. */
3245 return 0;
3246 else if (TREE_CODE (newdecl) == NAMESPACE_DECL
3247 && DECL_NAMESPACE_ALIAS (newdecl)
3248 && DECL_NAMESPACE_ALIAS (newdecl) == DECL_NAMESPACE_ALIAS (olddecl))
3249 /* Redeclaration of namespace alias, ignore it. */
3250 return 1;
3251 else
3252 {
3253 const char *errmsg = redeclaration_error_message (newdecl, olddecl);
3254 if (errmsg)
3255 {
3256 cp_error (errmsg, newdecl);
3257 if (DECL_NAME (olddecl) != NULL_TREE)
3258 cp_error_at ((DECL_INITIAL (olddecl)
3259 && namespace_bindings_p ())
3260 ? "`%#D' previously defined here"
3261 : "`%#D' previously declared here", olddecl);
3262 }
3263 else if (TREE_CODE (olddecl) == FUNCTION_DECL
3264 && DECL_INITIAL (olddecl) != NULL_TREE
3265 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
3266 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
3267 {
3268 /* Prototype decl follows defn w/o prototype. */
3269 cp_warning_at ("prototype for `%#D'", newdecl);
3270 cp_warning_at ("follows non-prototype definition here", olddecl);
3271 }
3272 else if (TREE_CODE (olddecl) == FUNCTION_DECL
3273 && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
3274 {
3275 /* extern "C" int foo ();
3276 int foo () { bar (); }
3277 is OK. */
3278 if (current_lang_stack
3279 == &VARRAY_TREE (current_lang_base, 0))
3280 DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
3281 else
3282 {
3283 cp_error_at ("previous declaration of `%#D' with %L linkage",
3284 olddecl, DECL_LANGUAGE (olddecl));
3285 cp_error ("conflicts with new declaration with %L linkage",
3286 DECL_LANGUAGE (newdecl));
3287 }
3288 }
3289
3290 if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
3291 ;
3292 else if (TREE_CODE (olddecl) == FUNCTION_DECL)
3293 {
3294 tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
3295 tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
3296 int i = 1;
3297
3298 if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
3299 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
3300
3301 for (; t1 && t1 != void_list_node;
3302 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
3303 if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
3304 {
3305 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
3306 TREE_PURPOSE (t2)))
3307 {
3308 if (pedantic)
3309 {
3310 cp_pedwarn ("default argument given for parameter %d of `%#D'",
3311 i, newdecl);
3312 cp_pedwarn_at ("after previous specification in `%#D'",
3313 olddecl);
3314 }
3315 }
3316 else
3317 {
3318 cp_error ("default argument given for parameter %d of `%#D'",
3319 i, newdecl);
3320 cp_error_at ("after previous specification in `%#D'",
3321 olddecl);
3322 }
3323 }
3324
3325 if (DECL_THIS_INLINE (newdecl) && ! DECL_THIS_INLINE (olddecl)
3326 && TREE_ADDRESSABLE (olddecl) && warn_inline)
3327 {
3328 cp_warning ("`%#D' was used before it was declared inline",
3329 newdecl);
3330 cp_warning_at ("previous non-inline declaration here",
3331 olddecl);
3332 }
3333 }
3334 }
3335
3336 /* If new decl is `static' and an `extern' was seen previously,
3337 warn about it. */
3338 warn_extern_redeclared_static (newdecl, olddecl);
3339
3340 /* We have committed to returning 1 at this point. */
3341 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3342 {
3343 /* Now that functions must hold information normally held
3344 by field decls, there is extra work to do so that
3345 declaration information does not get destroyed during
3346 definition. */
3347 if (DECL_VINDEX (olddecl))
3348 DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
3349 if (DECL_CONTEXT (olddecl))
3350 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
3351 if (DECL_CLASS_CONTEXT (olddecl))
3352 DECL_CLASS_CONTEXT (newdecl) = DECL_CLASS_CONTEXT (olddecl);
3353 if (DECL_PENDING_INLINE_INFO (newdecl) == (struct pending_inline *)0)
3354 DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
3355 DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
3356 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
3357 DECL_ABSTRACT_VIRTUAL_P (newdecl) |= DECL_ABSTRACT_VIRTUAL_P (olddecl);
3358 DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
3359 DECL_NEEDS_FINAL_OVERRIDER_P (newdecl) |= DECL_NEEDS_FINAL_OVERRIDER_P (olddecl);
3360 new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
3361
3362 /* Optionally warn about more than one declaration for the same
3363 name, but don't warn about a function declaration followed by a
3364 definition. */
3365 if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
3366 && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
3367 /* Don't warn about extern decl followed by definition. */
3368 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
3369 /* Don't warn about friends, let add_friend take care of it. */
3370 && ! DECL_FRIEND_P (newdecl))
3371 {
3372 cp_warning ("redundant redeclaration of `%D' in same scope", newdecl);
3373 cp_warning_at ("previous declaration of `%D'", olddecl);
3374 }
3375 }
3376
3377 /* Deal with C++: must preserve virtual function table size. */
3378 if (TREE_CODE (olddecl) == TYPE_DECL)
3379 {
3380 register tree newtype = TREE_TYPE (newdecl);
3381 register tree oldtype = TREE_TYPE (olddecl);
3382
3383 if (newtype != error_mark_node && oldtype != error_mark_node
3384 && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
3385 {
3386 CLASSTYPE_VSIZE (newtype) = CLASSTYPE_VSIZE (oldtype);
3387 CLASSTYPE_FRIEND_CLASSES (newtype)
3388 = CLASSTYPE_FRIEND_CLASSES (oldtype);
3389 }
3390 }
3391
3392 /* Copy all the DECL_... slots specified in the new decl
3393 except for any that we copy here from the old type. */
3394 DECL_MACHINE_ATTRIBUTES (newdecl)
3395 = merge_machine_decl_attributes (olddecl, newdecl);
3396
3397 if (TREE_CODE (newdecl) == TEMPLATE_DECL)
3398 {
3399 if (! duplicate_decls (DECL_TEMPLATE_RESULT (newdecl),
3400 DECL_TEMPLATE_RESULT (olddecl)))
3401 cp_error ("invalid redeclaration of %D", newdecl);
3402 TREE_TYPE (olddecl) = TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl));
3403 DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
3404 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
3405 DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
3406
3407 return 1;
3408 }
3409
3410 if (types_match)
3411 {
3412 /* Automatically handles default parameters. */
3413 tree oldtype = TREE_TYPE (olddecl);
3414 tree newtype;
3415
3416 /* Make sure we put the new type in the same obstack as the old one. */
3417 if (oldtype)
3418 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
3419 else
3420 push_permanent_obstack ();
3421
3422 /* Merge the data types specified in the two decls. */
3423 newtype = common_type (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
3424
3425 if (TREE_CODE (newdecl) == VAR_DECL)
3426 DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
3427 /* Do this after calling `common_type' so that default
3428 parameters don't confuse us. */
3429 else if (TREE_CODE (newdecl) == FUNCTION_DECL
3430 && (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl))
3431 != TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl))))
3432 {
3433 TREE_TYPE (newdecl) = build_exception_variant (newtype,
3434 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)));
3435 TREE_TYPE (olddecl) = build_exception_variant (newtype,
3436 TYPE_RAISES_EXCEPTIONS (oldtype));
3437
3438 if ((pedantic || ! DECL_IN_SYSTEM_HEADER (olddecl))
3439 && DECL_SOURCE_LINE (olddecl) != 0
3440 && flag_exceptions
3441 && !comp_except_specs (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)),
3442 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl)), 1))
3443 {
3444 cp_error ("declaration of `%F' throws different exceptions",
3445 newdecl);
3446 cp_error_at ("to previous declaration `%F'", olddecl);
3447 }
3448 }
3449 TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
3450
3451 /* Lay the type out, unless already done. */
3452 if (! same_type_p (newtype, oldtype)
3453 && TREE_TYPE (newdecl) != error_mark_node
3454 && !(processing_template_decl && uses_template_parms (newdecl)))
3455 layout_type (TREE_TYPE (newdecl));
3456
3457 if ((TREE_CODE (newdecl) == VAR_DECL
3458 || TREE_CODE (newdecl) == PARM_DECL
3459 || TREE_CODE (newdecl) == RESULT_DECL
3460 || TREE_CODE (newdecl) == FIELD_DECL
3461 || TREE_CODE (newdecl) == TYPE_DECL)
3462 && !(processing_template_decl && uses_template_parms (newdecl)))
3463 layout_decl (newdecl, 0);
3464
3465 /* Merge the type qualifiers. */
3466 if (TREE_READONLY (newdecl))
3467 TREE_READONLY (olddecl) = 1;
3468 if (TREE_THIS_VOLATILE (newdecl))
3469 TREE_THIS_VOLATILE (olddecl) = 1;
3470
3471 /* Merge the initialization information. */
3472 if (DECL_INITIAL (newdecl) == NULL_TREE
3473 && DECL_INITIAL (olddecl) != NULL_TREE)
3474 {
3475 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
3476 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
3477 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
3478 if (CAN_HAVE_FULL_LANG_DECL_P (newdecl)
3479 && DECL_LANG_SPECIFIC (newdecl)
3480 && DECL_LANG_SPECIFIC (olddecl))
3481 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
3482 }
3483
3484 /* Merge the section attribute.
3485 We want to issue an error if the sections conflict but that must be
3486 done later in decl_attributes since we are called before attributes
3487 are assigned. */
3488 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
3489 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
3490
3491 /* Keep the old rtl since we can safely use it, unless it's the
3492 call to abort() used for abstract virtuals. */
3493 if ((DECL_LANG_SPECIFIC (olddecl)
3494 && !DECL_ABSTRACT_VIRTUAL_P (olddecl))
3495 || DECL_RTL (olddecl) != DECL_RTL (abort_fndecl))
3496 DECL_RTL (newdecl) = DECL_RTL (olddecl);
3497
3498 pop_obstacks ();
3499 }
3500 /* If cannot merge, then use the new type and qualifiers,
3501 and don't preserve the old rtl. */
3502 else
3503 {
3504 /* Clean out any memory we had of the old declaration. */
3505 tree oldstatic = value_member (olddecl, static_aggregates);
3506 if (oldstatic)
3507 TREE_VALUE (oldstatic) = error_mark_node;
3508
3509 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
3510 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
3511 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
3512 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
3513 }
3514
3515 /* Merge the storage class information. */
3516 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
3517 DECL_ONE_ONLY (newdecl) |= DECL_ONE_ONLY (olddecl);
3518 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
3519 TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
3520 if (! DECL_EXTERNAL (olddecl))
3521 DECL_EXTERNAL (newdecl) = 0;
3522
3523 if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
3524 {
3525 DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
3526 DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
3527 DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
3528 DECL_TEMPLATE_INSTANTIATED (newdecl)
3529 |= DECL_TEMPLATE_INSTANTIATED (olddecl);
3530 /* Don't really know how much of the language-specific
3531 values we should copy from old to new. */
3532 DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
3533 DECL_ACCESS (newdecl) = DECL_ACCESS (olddecl);
3534 DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
3535 DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
3536 olddecl_friend = DECL_FRIEND_P (olddecl);
3537
3538 /* Only functions have DECL_BEFRIENDING_CLASSES. */
3539 if (TREE_CODE (newdecl) == FUNCTION_DECL
3540 || DECL_FUNCTION_TEMPLATE_P (newdecl))
3541 DECL_BEFRIENDING_CLASSES (newdecl)
3542 = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
3543 DECL_BEFRIENDING_CLASSES (olddecl));
3544 }
3545
3546 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3547 {
3548 if (DECL_TEMPLATE_INSTANTIATION (olddecl)
3549 && !DECL_TEMPLATE_INSTANTIATION (newdecl))
3550 {
3551 /* If newdecl is not a specialization, then it is not a
3552 template-related function at all. And that means that we
3553 shoud have exited above, returning 0. */
3554 my_friendly_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl),
3555 0);
3556
3557 if (TREE_USED (olddecl))
3558 /* From [temp.expl.spec]:
3559
3560 If a template, a member template or the member of a class
3561 template is explicitly specialized then that
3562 specialization shall be declared before the first use of
3563 that specialization that would cause an implicit
3564 instantiation to take place, in every translation unit in
3565 which such a use occurs. */
3566 cp_error ("explicit specialization of %D after first use",
3567 olddecl);
3568
3569 SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
3570 }
3571 DECL_THIS_INLINE (newdecl) |= DECL_THIS_INLINE (olddecl);
3572
3573 /* If either decl says `inline', this fn is inline, unless its
3574 definition was passed already. */
3575 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == NULL_TREE)
3576 DECL_INLINE (olddecl) = 1;
3577 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
3578
3579 if (! types_match)
3580 {
3581 DECL_LANGUAGE (olddecl) = DECL_LANGUAGE (newdecl);
3582 DECL_ASSEMBLER_NAME (olddecl) = DECL_ASSEMBLER_NAME (newdecl);
3583 DECL_RTL (olddecl) = DECL_RTL (newdecl);
3584 }
3585 if (! types_match || new_defines_function)
3586 {
3587 /* These need to be copied so that the names are available.
3588 Note that if the types do match, we'll preserve inline
3589 info and other bits, but if not, we won't. */
3590 DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
3591 DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
3592 }
3593 if (new_defines_function)
3594 /* If defining a function declared with other language
3595 linkage, use the previously declared language linkage. */
3596 DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
3597 else if (types_match)
3598 {
3599 /* If redeclaring a builtin function, and not a definition,
3600 it stays built in. */
3601 if (DECL_BUILT_IN (olddecl))
3602 {
3603 DECL_BUILT_IN (newdecl) = 1;
3604 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
3605 /* If we're keeping the built-in definition, keep the rtl,
3606 regardless of declaration matches. */
3607 DECL_RTL (newdecl) = DECL_RTL (olddecl);
3608 }
3609 else
3610 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
3611
3612 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
3613 if ((DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl)))
3614 /* Previously saved insns go together with
3615 the function's previous definition. */
3616 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
3617 /* Don't clear out the arguments if we're redefining a function. */
3618 if (DECL_ARGUMENTS (olddecl))
3619 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
3620 }
3621 if (DECL_LANG_SPECIFIC (olddecl))
3622 DECL_MAIN_VARIANT (newdecl) = DECL_MAIN_VARIANT (olddecl);
3623 }
3624
3625 if (TREE_CODE (newdecl) == NAMESPACE_DECL)
3626 {
3627 NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
3628 }
3629
3630 /* Now preserve various other info from the definition. */
3631 TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
3632 TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
3633 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
3634 DECL_ASSEMBLER_NAME (newdecl) = DECL_ASSEMBLER_NAME (olddecl);
3635
3636 if (TREE_CODE (newdecl) == FUNCTION_DECL)
3637 {
3638 int function_size;
3639
3640 function_size = sizeof (struct tree_decl);
3641
3642 bcopy ((char *) newdecl + sizeof (struct tree_common),
3643 (char *) olddecl + sizeof (struct tree_common),
3644 function_size - sizeof (struct tree_common));
3645
3646 if (DECL_TEMPLATE_INSTANTIATION (newdecl))
3647 {
3648 /* If newdecl is a template instantiation, it is possible that
3649 the following sequence of events has occurred:
3650
3651 o A friend function was declared in a class template. The
3652 class template was instantiated.
3653
3654 o The instantiation of the friend declaration was
3655 recorded on the instantiation list, and is newdecl.
3656
3657 o Later, however, instantiate_class_template called pushdecl
3658 on the newdecl to perform name injection. But, pushdecl in
3659 turn called duplicate_decls when it discovered that another
3660 declaration of a global function with the same name already
3661 existed.
3662
3663 o Here, in duplicate_decls, we decided to clobber newdecl.
3664
3665 If we're going to do that, we'd better make sure that
3666 olddecl, and not newdecl, is on the list of
3667 instantiations so that if we try to do the instantiation
3668 again we won't get the clobbered declaration. */
3669
3670 tree tmpl = DECL_TI_TEMPLATE (newdecl);
3671 tree decls = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
3672
3673 for (; decls; decls = TREE_CHAIN (decls))
3674 if (TREE_VALUE (decls) == newdecl)
3675 TREE_VALUE (decls) = olddecl;
3676 }
3677 }
3678 else
3679 {
3680 bcopy ((char *) newdecl + sizeof (struct tree_common),
3681 (char *) olddecl + sizeof (struct tree_common),
3682 sizeof (struct tree_decl) - sizeof (struct tree_common)
3683 + tree_code_length [(int)TREE_CODE (newdecl)] * sizeof (char *));
3684 }
3685
3686 DECL_UID (olddecl) = olddecl_uid;
3687 if (olddecl_friend)
3688 DECL_FRIEND_P (olddecl) = 1;
3689
3690 /* NEWDECL contains the merged attribute lists.
3691 Update OLDDECL to be the same. */
3692 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
3693
3694 return 1;
3695 }
3696
3697 /* Record a decl-node X as belonging to the current lexical scope.
3698 Check for errors (such as an incompatible declaration for the same
3699 name already seen in the same scope).
3700
3701 Returns either X or an old decl for the same name.
3702 If an old decl is returned, it may have been smashed
3703 to agree with what X says. */
3704
3705 tree
3706 pushdecl (x)
3707 tree x;
3708 {
3709 register tree t;
3710 register tree name = DECL_ASSEMBLER_NAME (x);
3711 int need_new_binding = 1;
3712
3713 if (DECL_TEMPLATE_PARM_P (x))
3714 /* Template parameters have no context; they are not X::T even
3715 when declared within a class or namespace. */
3716 ;
3717 else
3718 {
3719 if (current_function_decl && x != current_function_decl
3720 /* A local declaration for a function doesn't constitute
3721 nesting. */
3722 && (TREE_CODE (x) != FUNCTION_DECL || DECL_INITIAL (x))
3723 /* Don't change DECL_CONTEXT of virtual methods. */
3724 && (TREE_CODE (x) != FUNCTION_DECL || !DECL_VIRTUAL_P (x))
3725 && !DECL_CONTEXT (x))
3726 DECL_CONTEXT (x) = current_function_decl;
3727 if (!DECL_CONTEXT (x))
3728 DECL_CONTEXT (x) = FROB_CONTEXT (current_namespace);
3729 }
3730
3731 /* Type are looked up using the DECL_NAME, as that is what the rest of the
3732 compiler wants to use. */
3733 if (TREE_CODE (x) == TYPE_DECL || TREE_CODE (x) == VAR_DECL
3734 || TREE_CODE (x) == NAMESPACE_DECL)
3735 name = DECL_NAME (x);
3736
3737 if (name)
3738 {
3739 #if 0
3740 /* Not needed...see below. */
3741 char *file;
3742 int line;
3743 #endif
3744 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
3745 name = TREE_OPERAND (name, 0);
3746
3747 /* Namespace-scoped variables are not found in the current level. */
3748 if (TREE_CODE (x) == VAR_DECL && DECL_NAMESPACE_SCOPE_P (x))
3749 t = namespace_binding (name, DECL_CONTEXT (x));
3750 else
3751 t = lookup_name_current_level (name);
3752 if (t == error_mark_node)
3753 {
3754 /* error_mark_node is 0 for a while during initialization! */
3755 t = NULL_TREE;
3756 cp_error_at ("`%#D' used prior to declaration", x);
3757 }
3758
3759 else if (t != NULL_TREE)
3760 {
3761 #if 0
3762 /* This is turned off until I have time to do it right (bpk). */
3763 /* With the code below that uses it... */
3764 file = DECL_SOURCE_FILE (t);
3765 line = DECL_SOURCE_LINE (t);
3766 #endif
3767 if (TREE_CODE (t) == PARM_DECL)
3768 {
3769 if (DECL_CONTEXT (t) == NULL_TREE)
3770 fatal ("parse errors have confused me too much");
3771
3772 /* Check for duplicate params. */
3773 if (duplicate_decls (x, t))
3774 return t;
3775 }
3776 else if (((TREE_CODE (x) == FUNCTION_DECL && DECL_LANGUAGE (x) == lang_c)
3777 || DECL_FUNCTION_TEMPLATE_P (x))
3778 && is_overloaded_fn (t))
3779 /* Don't do anything just yet. */;
3780 else if (t == wchar_decl_node)
3781 {
3782 if (pedantic && ! DECL_IN_SYSTEM_HEADER (x))
3783 cp_pedwarn ("redeclaration of wchar_t as `%T'", TREE_TYPE (x));
3784
3785 /* Throw away the redeclaration. */
3786 return t;
3787 }
3788 else if (TREE_CODE (t) != TREE_CODE (x))
3789 {
3790 if (duplicate_decls (x, t))
3791 return t;
3792 }
3793 else if (duplicate_decls (x, t))
3794 {
3795 #if 0
3796 /* This is turned off until I have time to do it right (bpk). */
3797
3798 /* Also warn if they did a prototype with `static' on it, but
3799 then later left the `static' off. */
3800 if (! TREE_PUBLIC (name) && TREE_PUBLIC (x))
3801 {
3802 if (DECL_LANG_SPECIFIC (t) && DECL_FRIEND_P (t))
3803 return t;
3804
3805 if (extra_warnings)
3806 {
3807 cp_warning ("`static' missing from declaration of `%D'",
3808 t);
3809 warning_with_file_and_line (file, line,
3810 "previous declaration of `%s'",
3811 decl_as_string (t, 0));
3812 }
3813
3814 /* Now fix things so it'll do what they expect. */
3815 if (current_function_decl)
3816 TREE_PUBLIC (current_function_decl) = 0;
3817 }
3818 /* Due to interference in memory reclamation (X may be
3819 obstack-deallocated at this point), we must guard against
3820 one really special case. [jason: This should be handled
3821 by start_function] */
3822 if (current_function_decl == x)
3823 current_function_decl = t;
3824 #endif
3825 if (TREE_CODE (t) == TYPE_DECL)
3826 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
3827 else if (TREE_CODE (t) == FUNCTION_DECL)
3828 check_default_args (t);
3829
3830 return t;
3831 }
3832 else if (DECL_MAIN_P (x))
3833 {
3834 /* A redeclaration of main, but not a duplicate of the
3835 previous one.
3836
3837 [basic.start.main]
3838
3839 This function shall not be overloaded. */
3840 cp_error_at ("invalid redeclaration of `%D'", t);
3841 cp_error ("as `%D'", x);
3842 /* We don't try to push this declaration since that
3843 causes a crash. */
3844 return x;
3845 }
3846 }
3847
3848 check_template_shadow (x);
3849
3850 /* If this is a function conjured up by the backend, massage it
3851 so it looks friendly. */
3852 if (TREE_CODE (x) == FUNCTION_DECL
3853 && ! DECL_LANG_SPECIFIC (x))
3854 {
3855 retrofit_lang_decl (x);
3856 DECL_LANGUAGE (x) = lang_c;
3857 }
3858
3859 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_FUNCTION_MEMBER_P (x))
3860 {
3861 t = push_overloaded_decl (x, PUSH_LOCAL);
3862 if (t != x || DECL_LANGUAGE (x) == lang_c)
3863 return t;
3864 if (!namespace_bindings_p ())
3865 /* We do not need to create a binding for this name;
3866 push_overloaded_decl will have already done so if
3867 necessary. */
3868 need_new_binding = 0;
3869 }
3870 else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_NAMESPACE_SCOPE_P (x))
3871 {
3872 t = push_overloaded_decl (x, PUSH_GLOBAL);
3873 if (t == x)
3874 add_decl_to_level (x, NAMESPACE_LEVEL (CP_DECL_CONTEXT (t)));
3875 return t;
3876 }
3877
3878 /* If declaring a type as a typedef, copy the type (unless we're
3879 at line 0), and install this TYPE_DECL as the new type's typedef
3880 name. See the extensive comment in ../c-decl.c (pushdecl). */
3881 if (TREE_CODE (x) == TYPE_DECL)
3882 {
3883 tree type = TREE_TYPE (x);
3884 if (DECL_SOURCE_LINE (x) == 0)
3885 {
3886 if (TYPE_NAME (type) == 0)
3887 TYPE_NAME (type) = x;
3888 }
3889 else if (type != error_mark_node && TYPE_NAME (type) != x
3890 /* We don't want to copy the type when all we're
3891 doing is making a TYPE_DECL for the purposes of
3892 inlining. */
3893 && (!TYPE_NAME (type)
3894 || TYPE_NAME (type) != DECL_ABSTRACT_ORIGIN (x)))
3895 {
3896 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
3897
3898 DECL_ORIGINAL_TYPE (x) = type;
3899 type = build_type_copy (type);
3900 TYPE_STUB_DECL (type) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
3901 TYPE_NAME (type) = x;
3902 TREE_TYPE (x) = type;
3903
3904 pop_obstacks ();
3905 }
3906
3907 if (type != error_mark_node
3908 && TYPE_NAME (type)
3909 && TYPE_IDENTIFIER (type))
3910 set_identifier_type_value_with_scope (DECL_NAME (x), type,
3911 current_binding_level);
3912
3913 }
3914
3915 /* Multiple external decls of the same identifier ought to match.
3916
3917 We get warnings about inline functions where they are defined.
3918 We get warnings about other functions from push_overloaded_decl.
3919
3920 Avoid duplicate warnings where they are used. */
3921 if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
3922 {
3923 tree decl;
3924
3925 if (IDENTIFIER_NAMESPACE_VALUE (name) != NULL_TREE
3926 && (DECL_EXTERNAL (IDENTIFIER_NAMESPACE_VALUE (name))
3927 || TREE_PUBLIC (IDENTIFIER_NAMESPACE_VALUE (name))))
3928 decl = IDENTIFIER_NAMESPACE_VALUE (name);
3929 else
3930 decl = NULL_TREE;
3931
3932 if (decl
3933 /* If different sort of thing, we already gave an error. */
3934 && TREE_CODE (decl) == TREE_CODE (x)
3935 && !same_type_p (TREE_TYPE (x), TREE_TYPE (decl)))
3936 {
3937 cp_pedwarn ("type mismatch with previous external decl", x);
3938 cp_pedwarn_at ("previous external decl of `%#D'", decl);
3939 }
3940 }
3941
3942 /* This name is new in its binding level.
3943 Install the new declaration and return it. */
3944 if (namespace_bindings_p ())
3945 {
3946 /* Install a global value. */
3947
3948 /* If the first global decl has external linkage,
3949 warn if we later see static one. */
3950 if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && TREE_PUBLIC (x))
3951 TREE_PUBLIC (name) = 1;
3952
3953 if (!(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
3954 && t != NULL_TREE))
3955 {
3956 if (TREE_CODE (x) == FUNCTION_DECL)
3957 my_friendly_assert
3958 ((IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE)
3959 || (IDENTIFIER_GLOBAL_VALUE (name) == x), 378);
3960 SET_IDENTIFIER_NAMESPACE_VALUE (name, x);
3961 }
3962
3963 /* Don't forget if the function was used via an implicit decl. */
3964 if (IDENTIFIER_IMPLICIT_DECL (name)
3965 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
3966 TREE_USED (x) = 1;
3967
3968 /* Don't forget if its address was taken in that way. */
3969 if (IDENTIFIER_IMPLICIT_DECL (name)
3970 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
3971 TREE_ADDRESSABLE (x) = 1;
3972
3973 /* Warn about mismatches against previous implicit decl. */
3974 if (IDENTIFIER_IMPLICIT_DECL (name) != NULL_TREE
3975 /* If this real decl matches the implicit, don't complain. */
3976 && ! (TREE_CODE (x) == FUNCTION_DECL
3977 && TREE_TYPE (TREE_TYPE (x)) == integer_type_node))
3978 cp_warning
3979 ("`%D' was previously implicitly declared to return `int'", x);
3980
3981 /* If new decl is `static' and an `extern' was seen previously,
3982 warn about it. */
3983 if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
3984 warn_extern_redeclared_static (x, t);
3985 }
3986 else
3987 {
3988 /* Here to install a non-global value. */
3989 tree oldlocal = IDENTIFIER_VALUE (name);
3990 tree oldglobal = IDENTIFIER_NAMESPACE_VALUE (name);
3991
3992 if (need_new_binding)
3993 {
3994 push_local_binding (name, x, 0);
3995 /* Because push_local_binding will hook X on to the
3996 current_binding_level's name list, we don't want to
3997 do that again below. */
3998 need_new_binding = 0;
3999 }
4000
4001 /* If this is a TYPE_DECL, push it into the type value slot. */
4002 if (TREE_CODE (x) == TYPE_DECL)
4003 set_identifier_type_value_with_scope (name, TREE_TYPE (x),
4004 current_binding_level);
4005
4006 /* Clear out any TYPE_DECL shadowed by a namespace so that
4007 we won't think this is a type. The C struct hack doesn't
4008 go through namespaces. */
4009 if (TREE_CODE (x) == NAMESPACE_DECL)
4010 set_identifier_type_value_with_scope (name, NULL_TREE,
4011 current_binding_level);
4012
4013 /* If this is an extern function declaration, see if we
4014 have a global definition or declaration for the function. */
4015 if (oldlocal == NULL_TREE
4016 && DECL_EXTERNAL (x)
4017 && oldglobal != NULL_TREE
4018 && TREE_CODE (x) == FUNCTION_DECL
4019 && TREE_CODE (oldglobal) == FUNCTION_DECL)
4020 {
4021 /* We have one. Their types must agree. */
4022 if (decls_match (x, oldglobal))
4023 /* OK */;
4024 else
4025 {
4026 cp_warning ("extern declaration of `%#D' doesn't match", x);
4027 cp_warning_at ("global declaration `%#D'", oldglobal);
4028 }
4029 }
4030 /* If we have a local external declaration,
4031 and no file-scope declaration has yet been seen,
4032 then if we later have a file-scope decl it must not be static. */
4033 if (oldlocal == NULL_TREE
4034 && oldglobal == NULL_TREE
4035 && DECL_EXTERNAL (x)
4036 && TREE_PUBLIC (x))
4037 TREE_PUBLIC (name) = 1;
4038
4039 if (DECL_FROM_INLINE (x))
4040 /* Inline decls shadow nothing. */;
4041
4042 /* Warn if shadowing an argument at the top level of the body. */
4043 else if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
4044 && TREE_CODE (oldlocal) == PARM_DECL
4045 /* Don't complain if it's from an enclosing function. */
4046 && DECL_CONTEXT (oldlocal) == current_function_decl
4047 && TREE_CODE (x) != PARM_DECL)
4048 {
4049 /* Go to where the parms should be and see if we
4050 find them there. */
4051 struct binding_level *b = current_binding_level->level_chain;
4052
4053 if (cleanup_label)
4054 b = b->level_chain;
4055
4056 /* ARM $8.3 */
4057 if (b->parm_flag == 1)
4058 cp_error ("declaration of `%#D' shadows a parameter", name);
4059 }
4060 else if (warn_shadow && oldlocal != NULL_TREE
4061 && current_binding_level->is_for_scope
4062 && !DECL_DEAD_FOR_LOCAL (oldlocal))
4063 {
4064 warning ("variable `%s' shadows local",
4065 IDENTIFIER_POINTER (name));
4066 cp_warning_at (" this is the shadowed declaration", oldlocal);
4067 }
4068 /* Maybe warn if shadowing something else. */
4069 else if (warn_shadow && !DECL_EXTERNAL (x)
4070 /* No shadow warnings for internally generated vars. */
4071 && ! DECL_ARTIFICIAL (x)
4072 /* No shadow warnings for vars made for inlining. */
4073 && ! DECL_FROM_INLINE (x))
4074 {
4075 const char *warnstring = NULL;
4076
4077 if (oldlocal != NULL_TREE && TREE_CODE (oldlocal) == PARM_DECL)
4078 warnstring = "declaration of `%s' shadows a parameter";
4079 else if (IDENTIFIER_CLASS_VALUE (name) != NULL_TREE
4080 && current_class_ptr
4081 && !TREE_STATIC (name))
4082 warnstring = "declaration of `%s' shadows a member of `this'";
4083 else if (oldlocal != NULL_TREE)
4084 warnstring = "declaration of `%s' shadows previous local";
4085 else if (oldglobal != NULL_TREE)
4086 /* XXX shadow warnings in outer-more namespaces */
4087 warnstring = "declaration of `%s' shadows global declaration";
4088
4089 if (warnstring)
4090 warning (warnstring, IDENTIFIER_POINTER (name));
4091 }
4092 }
4093
4094 if (TREE_CODE (x) == FUNCTION_DECL)
4095 check_default_args (x);
4096
4097 /* Keep count of variables in this level with incomplete type. */
4098 if (TREE_CODE (x) == VAR_DECL
4099 && TREE_TYPE (x) != error_mark_node
4100 && ((TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4101 && PROMOTES_TO_AGGR_TYPE (TREE_TYPE (x), ARRAY_TYPE))
4102 /* RTTI TD entries are created while defining the type_info. */
4103 || (TYPE_LANG_SPECIFIC (TREE_TYPE (x))
4104 && TYPE_BEING_DEFINED (TREE_TYPE (x)))))
4105 current_binding_level->incomplete
4106 = tree_cons (NULL_TREE, x, current_binding_level->incomplete);
4107 }
4108
4109 if (need_new_binding)
4110 add_decl_to_level (x, current_binding_level);
4111
4112 return x;
4113 }
4114
4115 /* Same as pushdecl, but define X in binding-level LEVEL. We rely on the
4116 caller to set DECL_CONTEXT properly. */
4117
4118 static tree
4119 pushdecl_with_scope (x, level)
4120 tree x;
4121 struct binding_level *level;
4122 {
4123 register struct binding_level *b;
4124 tree function_decl = current_function_decl;
4125
4126 current_function_decl = NULL_TREE;
4127 if (level->parm_flag == 2)
4128 {
4129 b = class_binding_level;
4130 class_binding_level = level;
4131 pushdecl_class_level (x);
4132 class_binding_level = b;
4133 }
4134 else
4135 {
4136 b = current_binding_level;
4137 current_binding_level = level;
4138 x = pushdecl (x);
4139 current_binding_level = b;
4140 }
4141 current_function_decl = function_decl;
4142 return x;
4143 }
4144
4145 /* Like pushdecl, only it places X in the current namespace,
4146 if appropriate. */
4147
4148 tree
4149 pushdecl_namespace_level (x)
4150 tree x;
4151 {
4152 register struct binding_level *b = current_binding_level;
4153 register tree t;
4154
4155 t = pushdecl_with_scope (x, NAMESPACE_LEVEL (current_namespace));
4156
4157 /* Now, the type_shadowed stack may screw us. Munge it so it does
4158 what we want. */
4159 if (TREE_CODE (x) == TYPE_DECL)
4160 {
4161 tree name = DECL_NAME (x);
4162 tree newval;
4163 tree *ptr = (tree *)0;
4164 for (; b != global_binding_level; b = b->level_chain)
4165 {
4166 tree shadowed = b->type_shadowed;
4167 for (; shadowed; shadowed = TREE_CHAIN (shadowed))
4168 if (TREE_PURPOSE (shadowed) == name)
4169 {
4170 ptr = &TREE_VALUE (shadowed);
4171 /* Can't break out of the loop here because sometimes
4172 a binding level will have duplicate bindings for
4173 PT names. It's gross, but I haven't time to fix it. */
4174 }
4175 }
4176 newval = TREE_TYPE (x);
4177 if (ptr == (tree *)0)
4178 {
4179 /* @@ This shouldn't be needed. My test case "zstring.cc" trips
4180 up here if this is changed to an assertion. --KR */
4181 SET_IDENTIFIER_TYPE_VALUE (name, newval);
4182 }
4183 else
4184 {
4185 *ptr = newval;
4186 }
4187 }
4188 return t;
4189 }
4190
4191 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL,
4192 if appropriate. */
4193
4194 tree
4195 pushdecl_top_level (x)
4196 tree x;
4197 {
4198 tree cur_namespace = current_namespace;
4199 current_namespace = global_namespace;
4200 x = pushdecl_namespace_level (x);
4201 current_namespace = cur_namespace;
4202 return x;
4203 }
4204
4205 /* Make the declaration of X appear in CLASS scope. */
4206
4207 void
4208 pushdecl_class_level (x)
4209 tree x;
4210 {
4211 /* Don't use DECL_ASSEMBLER_NAME here! Everything that looks in class
4212 scope looks for the pre-mangled name. */
4213 register tree name;
4214
4215 if (TREE_CODE (x) == OVERLOAD)
4216 x = OVL_CURRENT (x);
4217 name = DECL_NAME (x);
4218
4219 if (name)
4220 {
4221 push_class_level_binding (name, x);
4222 if (TREE_CODE (x) == TYPE_DECL)
4223 set_identifier_type_value (name, TREE_TYPE (x));
4224 }
4225 else if (ANON_AGGR_TYPE_P (TREE_TYPE (x)))
4226 {
4227 tree f;
4228
4229 for (f = TYPE_FIELDS (TREE_TYPE (x));
4230 f;
4231 f = TREE_CHAIN (f))
4232 pushdecl_class_level (f);
4233 }
4234 }
4235
4236 /* Enter DECL into the symbol table, if that's appropriate. Returns
4237 DECL, or a modified version thereof. */
4238
4239 tree
4240 maybe_push_decl (decl)
4241 tree decl;
4242 {
4243 tree type = TREE_TYPE (decl);
4244
4245 /* Add this decl to the current binding level, but not if it comes
4246 from another scope, e.g. a static member variable. TEM may equal
4247 DECL or it may be a previous decl of the same name. */
4248 if ((TREE_CODE (decl) != PARM_DECL
4249 && DECL_CONTEXT (decl) != NULL_TREE
4250 /* Definitions of namespace members outside their namespace are
4251 possible. */
4252 && TREE_CODE (DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4253 || (TREE_CODE (decl) == TEMPLATE_DECL && !namespace_bindings_p ())
4254 || TREE_CODE (type) == UNKNOWN_TYPE
4255 /* The declaration of a template specialization does not affect
4256 the functions available for overload resolution, so we do not
4257 call pushdecl. */
4258 || (TREE_CODE (decl) == FUNCTION_DECL
4259 && DECL_TEMPLATE_SPECIALIZATION (decl)))
4260 return decl;
4261 else
4262 return pushdecl (decl);
4263 }
4264
4265 #if 0
4266 /* This function is used to push the mangled decls for nested types into
4267 the appropriate scope. Previously pushdecl_top_level was used, but that
4268 is incorrect for members of local classes. */
4269
4270 void
4271 pushdecl_nonclass_level (x)
4272 tree x;
4273 {
4274 struct binding_level *b = current_binding_level;
4275
4276 my_friendly_assert (b->parm_flag != 2, 180);
4277
4278 #if 0
4279 /* Get out of template binding levels */
4280 while (b->pseudo_global)
4281 b = b->level_chain;
4282 #endif
4283
4284 pushdecl_with_scope (x, b);
4285 }
4286 #endif
4287
4288 /* Make the declaration(s) of X appear in CLASS scope
4289 under the name NAME. */
4290
4291 void
4292 push_class_level_binding (name, x)
4293 tree name;
4294 tree x;
4295 {
4296 tree binding;
4297 /* The class_binding_level will be NULL if x is a template
4298 parameter name in a member template. */
4299 if (!class_binding_level)
4300 return;
4301
4302 /* Make sure that this new member does not have the same name
4303 as a template parameter. */
4304 if (TYPE_BEING_DEFINED (current_class_type))
4305 check_template_shadow (x);
4306
4307 /* If this declaration shadows a declaration from an enclosing
4308 class, then we will need to restore IDENTIFIER_CLASS_VALUE when
4309 we leave this class. Record the shadowed declaration here. */
4310 binding = IDENTIFIER_BINDING (name);
4311 if (binding
4312 && ((TREE_CODE (x) == OVERLOAD
4313 && BINDING_VALUE (binding)
4314 && is_overloaded_fn (BINDING_VALUE (binding)))
4315 || INHERITED_VALUE_BINDING_P (binding)))
4316 {
4317 tree shadow;
4318 tree old_decl;
4319
4320 /* If the old binding was from a base class, and was for a tag
4321 name, slide it over to make room for the new binding. The
4322 old binding is still visible if explicitly qualified with a
4323 class-key. */
4324 if (INHERITED_VALUE_BINDING_P (binding)
4325 && BINDING_VALUE (binding)
4326 && TREE_CODE (BINDING_VALUE (binding)) == TYPE_DECL
4327 && DECL_ARTIFICIAL (BINDING_VALUE (binding))
4328 && !(TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)))
4329 {
4330 old_decl = BINDING_TYPE (binding);
4331 BINDING_TYPE (binding) = BINDING_VALUE (binding);
4332 BINDING_VALUE (binding) = NULL_TREE;
4333 INHERITED_VALUE_BINDING_P (binding) = 0;
4334 }
4335 else
4336 old_decl = BINDING_VALUE (binding);
4337
4338 /* There was already a binding for X containing fewer
4339 functions than are named in X. Find the previous
4340 declaration of X on the class-shadowed list, and update it. */
4341 for (shadow = class_binding_level->class_shadowed;
4342 shadow;
4343 shadow = TREE_CHAIN (shadow))
4344 if (TREE_PURPOSE (shadow) == name
4345 && TREE_TYPE (shadow) == old_decl)
4346 {
4347 BINDING_VALUE (binding) = x;
4348 INHERITED_VALUE_BINDING_P (binding) = 0;
4349 TREE_TYPE (shadow) = x;
4350 return;
4351 }
4352 }
4353
4354 /* If we didn't replace an existing binding, put the binding on the
4355 stack of bindings for the identifier, and update
4356 IDENTIFIER_CLASS_VALUE. */
4357 if (push_class_binding (name, x))
4358 {
4359 push_cache_obstack ();
4360 class_binding_level->class_shadowed
4361 = tree_cons (name, IDENTIFIER_CLASS_VALUE (name),
4362 class_binding_level->class_shadowed);
4363 pop_obstacks ();
4364 /* Record the value we are binding NAME to so that we can know
4365 what to pop later. */
4366 TREE_TYPE (class_binding_level->class_shadowed) = x;
4367 }
4368 }
4369
4370 /* Insert another USING_DECL into the current binding level,
4371 returning this declaration. If this is a redeclaration,
4372 do nothing and return NULL_TREE. */
4373
4374 tree
4375 push_using_decl (scope, name)
4376 tree scope;
4377 tree name;
4378 {
4379 tree decl;
4380
4381 my_friendly_assert (TREE_CODE (scope) == NAMESPACE_DECL, 383);
4382 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 384);
4383 for (decl = current_binding_level->usings; decl; decl = TREE_CHAIN (decl))
4384 if (DECL_INITIAL (decl) == scope && DECL_NAME (decl) == name)
4385 break;
4386 if (decl)
4387 return NULL_TREE;
4388 decl = build_lang_decl (USING_DECL, name, void_type_node);
4389 DECL_INITIAL (decl) = scope;
4390 TREE_CHAIN (decl) = current_binding_level->usings;
4391 current_binding_level->usings = decl;
4392 return decl;
4393 }
4394
4395 /* Add namespace to using_directives. Return NULL_TREE if nothing was
4396 changed (i.e. there was already a directive), or the fresh
4397 TREE_LIST otherwise. */
4398
4399 tree
4400 push_using_directive (used)
4401 tree used;
4402 {
4403 tree ud = current_binding_level->using_directives;
4404 tree iter, ancestor;
4405
4406 /* Check if we already have this. */
4407 if (purpose_member (used, ud) != NULL_TREE)
4408 return NULL_TREE;
4409
4410 /* Recursively add all namespaces used. */
4411 for (iter = DECL_NAMESPACE_USING (used); iter; iter = TREE_CHAIN (iter))
4412 push_using_directive (TREE_PURPOSE (iter));
4413
4414 ancestor = namespace_ancestor (current_decl_namespace (), used);
4415 ud = current_binding_level->using_directives;
4416 ud = tree_cons (used, ancestor, ud);
4417 current_binding_level->using_directives = ud;
4418 return ud;
4419 }
4420
4421 /* DECL is a FUNCTION_DECL for a non-member function, which may have
4422 other definitions already in place. We get around this by making
4423 the value of the identifier point to a list of all the things that
4424 want to be referenced by that name. It is then up to the users of
4425 that name to decide what to do with that list.
4426
4427 DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its DECL_RESULT
4428 slot. It is dealt with the same way.
4429
4430 FLAGS is a bitwise-or of the following values:
4431 PUSH_LOCAL: Bind DECL in the current scope, rather than at
4432 namespace scope.
4433 PUSH_USING: DECL is being pushed as the result of a using
4434 declaration.
4435
4436 The value returned may be a previous declaration if we guessed wrong
4437 about what language DECL should belong to (C or C++). Otherwise,
4438 it's always DECL (and never something that's not a _DECL). */
4439
4440 tree
4441 push_overloaded_decl (decl, flags)
4442 tree decl;
4443 int flags;
4444 {
4445 tree name = DECL_NAME (decl);
4446 tree old;
4447 tree new_binding;
4448 int doing_global = (namespace_bindings_p () || !(flags & PUSH_LOCAL));
4449
4450 if (doing_global)
4451 old = namespace_binding (name, DECL_CONTEXT (decl));
4452 else
4453 old = lookup_name_current_level (name);
4454
4455 if (old)
4456 {
4457 if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
4458 {
4459 tree t = TREE_TYPE (old);
4460 if (IS_AGGR_TYPE (t) && warn_shadow
4461 && (! DECL_IN_SYSTEM_HEADER (decl)
4462 || ! DECL_IN_SYSTEM_HEADER (old)))
4463 cp_warning ("`%#D' hides constructor for `%#T'", decl, t);
4464 old = NULL_TREE;
4465 }
4466 else if (is_overloaded_fn (old))
4467 {
4468 tree tmp;
4469
4470 for (tmp = old; tmp; tmp = OVL_NEXT (tmp))
4471 {
4472 tree fn = OVL_CURRENT (tmp);
4473
4474 if (TREE_CODE (tmp) == OVERLOAD && OVL_USED (tmp)
4475 && !(flags & PUSH_USING)
4476 && compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
4477 TYPE_ARG_TYPES (TREE_TYPE (decl))))
4478 cp_error ("`%#D' conflicts with previous using declaration `%#D'",
4479 decl, fn);
4480
4481 if (duplicate_decls (decl, fn))
4482 return fn;
4483 }
4484 }
4485 else
4486 {
4487 cp_error_at ("previous non-function declaration `%#D'", old);
4488 cp_error ("conflicts with function declaration `%#D'", decl);
4489 return decl;
4490 }
4491 }
4492
4493 if (old || TREE_CODE (decl) == TEMPLATE_DECL)
4494 {
4495 if (old && TREE_CODE (old) != OVERLOAD)
4496 new_binding = ovl_cons (decl, ovl_cons (old, NULL_TREE));
4497 else
4498 new_binding = ovl_cons (decl, old);
4499 if (flags & PUSH_USING)
4500 OVL_USED (new_binding) = 1;
4501 }
4502 else
4503 /* NAME is not ambiguous. */
4504 new_binding = decl;
4505
4506 if (doing_global)
4507 set_namespace_binding (name, current_namespace, new_binding);
4508 else
4509 {
4510 /* We only create an OVERLOAD if there was a previous binding at
4511 this level, or if decl is a template. In the former case, we
4512 need to remove the old binding and replace it with the new
4513 binding. We must also run through the NAMES on the binding
4514 level where the name was bound to update the chain. */
4515
4516 if (TREE_CODE (new_binding) == OVERLOAD && old)
4517 {
4518 tree *d;
4519
4520 for (d = &BINDING_LEVEL (IDENTIFIER_BINDING (name))->names;
4521 *d;
4522 d = &TREE_CHAIN (*d))
4523 if (*d == old
4524 || (TREE_CODE (*d) == TREE_LIST
4525 && TREE_VALUE (*d) == old))
4526 {
4527 if (TREE_CODE (*d) == TREE_LIST)
4528 /* Just replace the old binding with the new. */
4529 TREE_VALUE (*d) = new_binding;
4530 else
4531 /* Build a TREE_LIST to wrap the OVERLOAD. */
4532 *d = build_tree_list (NULL_TREE, new_binding);
4533
4534 /* And update the CPLUS_BINDING node. */
4535 BINDING_VALUE (IDENTIFIER_BINDING (name))
4536 = new_binding;
4537 return decl;
4538 }
4539
4540 /* We should always find a previous binding in this case. */
4541 my_friendly_abort (0);
4542 }
4543
4544 /* Install the new binding. */
4545 push_local_binding (name, new_binding, flags);
4546 }
4547
4548 return decl;
4549 }
4550 \f
4551 /* Generate an implicit declaration for identifier FUNCTIONID
4552 as a function of type int (). Print a warning if appropriate. */
4553
4554 tree
4555 implicitly_declare (functionid)
4556 tree functionid;
4557 {
4558 register tree decl;
4559 int temp = allocation_temporary_p ();
4560
4561 push_obstacks_nochange ();
4562
4563 /* Save the decl permanently so we can warn if definition follows.
4564 In ANSI C, warn_implicit is usually false, so the saves little space.
4565 But in C++, it's usually true, hence the extra code. */
4566 if (temp && (! warn_implicit || toplevel_bindings_p ()))
4567 end_temporary_allocation ();
4568
4569 /* We used to reuse an old implicit decl here,
4570 but this loses with inline functions because it can clobber
4571 the saved decl chains. */
4572 decl = build_lang_decl (FUNCTION_DECL, functionid, default_function_type);
4573
4574 DECL_EXTERNAL (decl) = 1;
4575 TREE_PUBLIC (decl) = 1;
4576
4577 /* ANSI standard says implicit declarations are in the innermost block.
4578 So we record the decl in the standard fashion. */
4579 pushdecl (decl);
4580 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
4581
4582 if (warn_implicit
4583 /* Only one warning per identifier. */
4584 && IDENTIFIER_IMPLICIT_DECL (functionid) == NULL_TREE)
4585 {
4586 cp_pedwarn ("implicit declaration of function `%#D'", decl);
4587 }
4588
4589 SET_IDENTIFIER_IMPLICIT_DECL (functionid, decl);
4590
4591 pop_obstacks ();
4592
4593 return decl;
4594 }
4595
4596 /* Return zero if the declaration NEWDECL is valid
4597 when the declaration OLDDECL (assumed to be for the same name)
4598 has already been seen.
4599 Otherwise return an error message format string with a %s
4600 where the identifier should go. */
4601
4602 static const char *
4603 redeclaration_error_message (newdecl, olddecl)
4604 tree newdecl, olddecl;
4605 {
4606 if (TREE_CODE (newdecl) == TYPE_DECL)
4607 {
4608 /* Because C++ can put things into name space for free,
4609 constructs like "typedef struct foo { ... } foo"
4610 would look like an erroneous redeclaration. */
4611 if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
4612 return 0;
4613 else
4614 return "redefinition of `%#D'";
4615 }
4616 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
4617 {
4618 /* If this is a pure function, its olddecl will actually be
4619 the original initialization to `0' (which we force to call
4620 abort()). Don't complain about redefinition in this case. */
4621 if (DECL_LANG_SPECIFIC (olddecl) && DECL_ABSTRACT_VIRTUAL_P (olddecl))
4622 return 0;
4623
4624 /* If both functions come from different namespaces, this is not
4625 a redeclaration - this is a conflict with a used function. */
4626 if (DECL_NAMESPACE_SCOPE_P (olddecl)
4627 && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl))
4628 return "`%D' conflicts with used function";
4629
4630 /* We'll complain about linkage mismatches in
4631 warn_extern_redeclared_static. */
4632
4633 /* Defining the same name twice is no good. */
4634 if (DECL_INITIAL (olddecl) != NULL_TREE
4635 && DECL_INITIAL (newdecl) != NULL_TREE)
4636 {
4637 if (DECL_NAME (olddecl) == NULL_TREE)
4638 return "`%#D' not declared in class";
4639 else
4640 return "redefinition of `%#D'";
4641 }
4642 return 0;
4643 }
4644 else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
4645 {
4646 if ((TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
4647 && DECL_INITIAL (DECL_TEMPLATE_RESULT (newdecl))
4648 && DECL_INITIAL (DECL_TEMPLATE_RESULT (olddecl)))
4649 || (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL
4650 && TYPE_SIZE (TREE_TYPE (newdecl))
4651 && TYPE_SIZE (TREE_TYPE (olddecl))))
4652 return "redefinition of `%#D'";
4653 return 0;
4654 }
4655 else if (toplevel_bindings_p ())
4656 {
4657 /* Objects declared at top level: */
4658 /* If at least one is a reference, it's ok. */
4659 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
4660 return 0;
4661 /* Reject two definitions. */
4662 return "redefinition of `%#D'";
4663 }
4664 else
4665 {
4666 /* Objects declared with block scope: */
4667 /* Reject two definitions, and reject a definition
4668 together with an external reference. */
4669 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
4670 return "redeclaration of `%#D'";
4671 return 0;
4672 }
4673 }
4674 \f
4675 /* Create a new label, named ID. */
4676
4677 static tree
4678 make_label_decl (id, local_p)
4679 tree id;
4680 int local_p;
4681 {
4682 tree decl;
4683
4684 if (building_stmt_tree ())
4685 push_permanent_obstack ();
4686 decl = build_decl (LABEL_DECL, id, void_type_node);
4687 if (building_stmt_tree ())
4688 pop_obstacks ();
4689 else
4690 /* Make sure every label has an rtx. */
4691 label_rtx (decl);
4692
4693 DECL_CONTEXT (decl) = current_function_decl;
4694 DECL_MODE (decl) = VOIDmode;
4695 C_DECLARED_LABEL_FLAG (decl) = local_p;
4696
4697 /* Say where one reference is to the label, for the sake of the
4698 error if it is not defined. */
4699 DECL_SOURCE_LINE (decl) = lineno;
4700 DECL_SOURCE_FILE (decl) = input_filename;
4701
4702 /* Record the fact that this identifier is bound to this label. */
4703 SET_IDENTIFIER_LABEL_VALUE (id, decl);
4704
4705 /* Record this label on the list of used labels so that we can check
4706 at the end of the function to see whether or not the label was
4707 actually defined. */
4708 if ((named_label_uses == NULL || named_label_uses->label_decl != decl)
4709 && (named_label_uses == NULL
4710 || named_label_uses->names_in_scope != current_binding_level->names
4711 || named_label_uses->label_decl != decl))
4712 {
4713 struct named_label_list *new_ent;
4714 new_ent
4715 = (struct named_label_list*)oballoc (sizeof (struct named_label_list));
4716 new_ent->label_decl = decl;
4717 new_ent->names_in_scope = current_binding_level->names;
4718 new_ent->binding_level = current_binding_level;
4719 new_ent->lineno_o_goto = lineno;
4720 new_ent->filename_o_goto = input_filename;
4721 new_ent->next = named_label_uses;
4722 named_label_uses = new_ent;
4723 }
4724
4725 return decl;
4726 }
4727
4728 /* Look for a label named ID in the current function. If one cannot
4729 be found, create one. (We keep track of used, but undefined,
4730 labels, and complain about them at the end of a function.) */
4731
4732 tree
4733 lookup_label (id)
4734 tree id;
4735 {
4736 tree decl;
4737
4738 /* You can't use labels at global scope. */
4739 if (current_function_decl == NULL_TREE)
4740 {
4741 error ("label `%s' referenced outside of any function",
4742 IDENTIFIER_POINTER (id));
4743 return NULL_TREE;
4744 }
4745
4746 /* See if we've already got this label. */
4747 decl = IDENTIFIER_LABEL_VALUE (id);
4748 if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
4749 return decl;
4750
4751 /* Record this label on the list of labels used in this function.
4752 We do this before calling make_label_decl so that we get the
4753 IDENTIFIER_LABEL_VALUE before the new label is declared. */
4754 named_labels = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
4755 named_labels);
4756 /* We need a new label. */
4757 decl = make_label_decl (id, /*local_p=*/0);
4758 /* Now fill in the information we didn't have before. */
4759 TREE_VALUE (named_labels) = decl;
4760
4761 return decl;
4762 }
4763
4764 /* Declare a local label named ID. */
4765
4766 tree
4767 declare_local_label (id)
4768 tree id;
4769 {
4770 tree decl;
4771
4772 /* Add a new entry to the SHADOWED_LABELS list so that when we leave
4773 this scope we can restore the old value of
4774 IDENTIFIER_TYPE_VALUE. */
4775 current_binding_level->shadowed_labels
4776 = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
4777 current_binding_level->shadowed_labels);
4778 /* Look for the label. */
4779 decl = make_label_decl (id, /*local_p=*/1);
4780 /* Now fill in the information we didn't have before. */
4781 TREE_VALUE (current_binding_level->shadowed_labels) = decl;
4782
4783 return decl;
4784 }
4785
4786 /* Define a label, specifying the location in the source file.
4787 Return the LABEL_DECL node for the label, if the definition is valid.
4788 Otherwise return 0. */
4789
4790 tree
4791 define_label (filename, line, name)
4792 char *filename;
4793 int line;
4794 tree name;
4795 {
4796 tree decl = lookup_label (name);
4797
4798 /* After labels, make any new cleanups go into their
4799 own new (temporary) binding contour. */
4800 current_binding_level->more_cleanups_ok = 0;
4801
4802 if (name == get_identifier ("wchar_t"))
4803 cp_pedwarn ("label named wchar_t");
4804
4805 if (DECL_INITIAL (decl) != NULL_TREE)
4806 {
4807 cp_error ("duplicate label `%D'", decl);
4808 return 0;
4809 }
4810 else
4811 {
4812 struct named_label_list *uses, *prev;
4813 int identified = 0;
4814 int saw_eh = 0;
4815
4816 /* Mark label as having been defined. */
4817 DECL_INITIAL (decl) = error_mark_node;
4818 /* Say where in the source. */
4819 DECL_SOURCE_FILE (decl) = filename;
4820 DECL_SOURCE_LINE (decl) = line;
4821
4822 prev = NULL;
4823 uses = named_label_uses;
4824 while (uses != NULL)
4825 if (uses->label_decl == decl)
4826 {
4827 struct binding_level *b = current_binding_level;
4828 while (b)
4829 {
4830 tree new_decls = b->names;
4831 tree old_decls = (b == uses->binding_level)
4832 ? uses->names_in_scope : NULL_TREE;
4833 while (new_decls != old_decls)
4834 {
4835 if (TREE_CODE (new_decls) == VAR_DECL
4836 /* Don't complain about crossing initialization
4837 of internal entities. They can't be accessed,
4838 and they should be cleaned up
4839 by the time we get to the label. */
4840 && ! DECL_ARTIFICIAL (new_decls)
4841 && !(DECL_INITIAL (new_decls) == NULL_TREE
4842 && pod_type_p (TREE_TYPE (new_decls))))
4843 {
4844 /* This is really only important if we're crossing
4845 an initialization. The POD stuff is just
4846 pedantry; why should it matter if the class
4847 contains a field of pointer to member type? */
4848 int problem = (DECL_INITIAL (new_decls)
4849 || (TYPE_NEEDS_CONSTRUCTING
4850 (TREE_TYPE (new_decls))));
4851
4852 if (! identified)
4853 {
4854 if (problem)
4855 {
4856 cp_error ("jump to label `%D'", decl);
4857 error_with_file_and_line
4858 (uses->filename_o_goto,
4859 uses->lineno_o_goto, " from here");
4860 }
4861 else
4862 {
4863 cp_pedwarn ("jump to label `%D'", decl);
4864 pedwarn_with_file_and_line
4865 (uses->filename_o_goto,
4866 uses->lineno_o_goto, " from here");
4867 }
4868 identified = 1;
4869 }
4870
4871 if (problem)
4872 cp_error_at (" crosses initialization of `%#D'",
4873 new_decls);
4874 else
4875 cp_pedwarn_at (" enters scope of non-POD `%#D'",
4876 new_decls);
4877 }
4878 new_decls = TREE_CHAIN (new_decls);
4879 }
4880 if (b == uses->binding_level)
4881 break;
4882 if (b->eh_region && ! saw_eh)
4883 {
4884 if (! identified)
4885 {
4886 cp_error ("jump to label `%D'", decl);
4887 error_with_file_and_line
4888 (uses->filename_o_goto,
4889 uses->lineno_o_goto, " from here");
4890 identified = 1;
4891 }
4892 error (" enters exception handling block");
4893 saw_eh = 1;
4894 }
4895 b = b->level_chain;
4896 }
4897
4898 if (prev != NULL)
4899 prev->next = uses->next;
4900 else
4901 named_label_uses = uses->next;
4902
4903 uses = uses->next;
4904 }
4905 else
4906 {
4907 prev = uses;
4908 uses = uses->next;
4909 }
4910 current_function_return_value = NULL_TREE;
4911 return decl;
4912 }
4913 }
4914
4915 struct cp_switch
4916 {
4917 struct binding_level *level;
4918 struct cp_switch *next;
4919 };
4920
4921 static struct cp_switch *switch_stack;
4922
4923 void
4924 push_switch ()
4925 {
4926 struct cp_switch *p
4927 = (struct cp_switch *) oballoc (sizeof (struct cp_switch));
4928 p->level = current_binding_level;
4929 p->next = switch_stack;
4930 switch_stack = p;
4931 }
4932
4933 void
4934 pop_switch ()
4935 {
4936 switch_stack = switch_stack->next;
4937 }
4938
4939 /* Same, but for CASE labels. If DECL is NULL_TREE, it's the default. */
4940 /* XXX Note decl is never actually used. (bpk) */
4941
4942 void
4943 define_case_label ()
4944 {
4945 tree cleanup = last_cleanup_this_contour ();
4946 struct binding_level *b = current_binding_level;
4947 int identified = 0;
4948
4949 if (cleanup)
4950 {
4951 static int explained = 0;
4952 cp_warning_at ("destructor needed for `%#D'", TREE_PURPOSE (cleanup));
4953 warning ("where case label appears here");
4954 if (!explained)
4955 {
4956 warning ("(enclose actions of previous case statements requiring");
4957 warning ("destructors in their own binding contours.)");
4958 explained = 1;
4959 }
4960 }
4961
4962 for (; b && b != switch_stack->level; b = b->level_chain)
4963 {
4964 tree new_decls = b->names;
4965 for (; new_decls; new_decls = TREE_CHAIN (new_decls))
4966 {
4967 if (TREE_CODE (new_decls) == VAR_DECL
4968 /* Don't complain about crossing initialization
4969 of internal entities. They can't be accessed,
4970 and they should be cleaned up
4971 by the time we get to the label. */
4972 && ! DECL_ARTIFICIAL (new_decls)
4973 && ((DECL_INITIAL (new_decls) != NULL_TREE
4974 && DECL_INITIAL (new_decls) != error_mark_node)
4975 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (new_decls))))
4976 {
4977 if (! identified)
4978 error ("jump to case label");
4979 identified = 1;
4980 cp_error_at (" crosses initialization of `%#D'",
4981 new_decls);
4982 }
4983 }
4984 }
4985
4986 /* After labels, make any new cleanups go into their
4987 own new (temporary) binding contour. */
4988
4989 current_binding_level->more_cleanups_ok = 0;
4990 current_function_return_value = NULL_TREE;
4991 }
4992 \f
4993 /* Return the list of declarations of the current level.
4994 Note that this list is in reverse order unless/until
4995 you nreverse it; and when you do nreverse it, you must
4996 store the result back using `storedecls' or you will lose. */
4997
4998 tree
4999 getdecls ()
5000 {
5001 return current_binding_level->names;
5002 }
5003
5004 /* Return the list of type-tags (for structs, etc) of the current level. */
5005
5006 tree
5007 gettags ()
5008 {
5009 return current_binding_level->tags;
5010 }
5011
5012 /* Store the list of declarations of the current level.
5013 This is done for the parameter declarations of a function being defined,
5014 after they are modified in the light of any missing parameters. */
5015
5016 static void
5017 storedecls (decls)
5018 tree decls;
5019 {
5020 current_binding_level->names = decls;
5021 }
5022
5023 /* Similarly, store the list of tags of the current level. */
5024
5025 void
5026 storetags (tags)
5027 tree tags;
5028 {
5029 current_binding_level->tags = tags;
5030 }
5031 \f
5032 /* Given NAME, an IDENTIFIER_NODE,
5033 return the structure (or union or enum) definition for that name.
5034 Searches binding levels from BINDING_LEVEL up to the global level.
5035 If THISLEVEL_ONLY is nonzero, searches only the specified context
5036 (but skips any tag-transparent contexts to find one that is
5037 meaningful for tags).
5038 FORM says which kind of type the caller wants;
5039 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
5040 If the wrong kind of type is found, and it's not a template, an error is
5041 reported. */
5042
5043 static tree
5044 lookup_tag (form, name, binding_level, thislevel_only)
5045 enum tree_code form;
5046 tree name;
5047 struct binding_level *binding_level;
5048 int thislevel_only;
5049 {
5050 register struct binding_level *level;
5051 /* Non-zero if, we should look past a pseudo-global level, even if
5052 THISLEVEL_ONLY. */
5053 int allow_pseudo_global = 1;
5054
5055 for (level = binding_level; level; level = level->level_chain)
5056 {
5057 register tree tail;
5058 if (ANON_AGGRNAME_P (name))
5059 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
5060 {
5061 /* There's no need for error checking here, because
5062 anon names are unique throughout the compilation. */
5063 if (TYPE_IDENTIFIER (TREE_VALUE (tail)) == name)
5064 return TREE_VALUE (tail);
5065 }
5066 else if (level->namespace_p)
5067 /* Do namespace lookup. */
5068 for (tail = current_namespace; 1; tail = CP_DECL_CONTEXT (tail))
5069 {
5070 tree old = binding_for_name (name, tail);
5071
5072 /* If we just skipped past a pseudo global level, even
5073 though THISLEVEL_ONLY, and we find a template class
5074 declaration, then we use the _TYPE node for the
5075 template. See the example below. */
5076 if (thislevel_only && !allow_pseudo_global
5077 && old && BINDING_VALUE (old)
5078 && DECL_CLASS_TEMPLATE_P (BINDING_VALUE (old)))
5079 old = TREE_TYPE (BINDING_VALUE (old));
5080 else
5081 old = BINDING_TYPE (old);
5082
5083 /* If it has an original type, it is a typedef, and we
5084 should not return it. */
5085 if (old && DECL_ORIGINAL_TYPE (TYPE_NAME (old)))
5086 old = NULL_TREE;
5087 if (old && TREE_CODE (old) != form
5088 && !(form != ENUMERAL_TYPE && TREE_CODE (old) == TEMPLATE_DECL))
5089 {
5090 cp_error ("`%#D' redeclared as %C", old, form);
5091 return NULL_TREE;
5092 }
5093 if (old)
5094 return old;
5095 if (thislevel_only || tail == global_namespace)
5096 return NULL_TREE;
5097 }
5098 else
5099 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
5100 {
5101 if (TREE_PURPOSE (tail) == name)
5102 {
5103 enum tree_code code = TREE_CODE (TREE_VALUE (tail));
5104 /* Should tighten this up; it'll probably permit
5105 UNION_TYPE and a struct template, for example. */
5106 if (code != form
5107 && !(form != ENUMERAL_TYPE && code == TEMPLATE_DECL))
5108 {
5109 /* Definition isn't the kind we were looking for. */
5110 cp_error ("`%#D' redeclared as %C", TREE_VALUE (tail),
5111 form);
5112 return NULL_TREE;
5113 }
5114 return TREE_VALUE (tail);
5115 }
5116 }
5117 if (thislevel_only && ! level->tag_transparent)
5118 {
5119 if (level->pseudo_global && allow_pseudo_global)
5120 {
5121 /* We must deal with cases like this:
5122
5123 template <class T> struct S;
5124 template <class T> struct S {};
5125
5126 When looking up `S', for the second declaration, we
5127 would like to find the first declaration. But, we
5128 are in the pseudo-global level created for the
5129 template parameters, rather than the (surrounding)
5130 namespace level. Thus, we keep going one more level,
5131 even though THISLEVEL_ONLY is non-zero. */
5132 allow_pseudo_global = 0;
5133 continue;
5134 }
5135 else
5136 return NULL_TREE;
5137 }
5138 }
5139 return NULL_TREE;
5140 }
5141
5142 #if 0
5143 void
5144 set_current_level_tags_transparency (tags_transparent)
5145 int tags_transparent;
5146 {
5147 current_binding_level->tag_transparent = tags_transparent;
5148 }
5149 #endif
5150
5151 /* Given a type, find the tag that was defined for it and return the tag name.
5152 Otherwise return 0. However, the value can never be 0
5153 in the cases in which this is used.
5154
5155 C++: If NAME is non-zero, this is the new name to install. This is
5156 done when replacing anonymous tags with real tag names. */
5157
5158 static tree
5159 lookup_tag_reverse (type, name)
5160 tree type;
5161 tree name;
5162 {
5163 register struct binding_level *level;
5164
5165 for (level = current_binding_level; level; level = level->level_chain)
5166 {
5167 register tree tail;
5168 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
5169 {
5170 if (TREE_VALUE (tail) == type)
5171 {
5172 if (name)
5173 TREE_PURPOSE (tail) = name;
5174 return TREE_PURPOSE (tail);
5175 }
5176 }
5177 }
5178 return NULL_TREE;
5179 }
5180 \f
5181 /* Look up NAME in the NAMESPACE. */
5182
5183 tree
5184 lookup_namespace_name (namespace, name)
5185 tree namespace, name;
5186 {
5187 tree val;
5188 tree template_id = NULL_TREE;
5189
5190 my_friendly_assert (TREE_CODE (namespace) == NAMESPACE_DECL, 370);
5191
5192 if (TREE_CODE (name) == NAMESPACE_DECL)
5193 /* This happens for A::B<int> when B is a namespace. */
5194 return name;
5195 else if (TREE_CODE (name) == TEMPLATE_DECL)
5196 {
5197 /* This happens for A::B where B is a template, and there are no
5198 template arguments. */
5199 cp_error ("invalid use of `%D'", name);
5200 return error_mark_node;
5201 }
5202
5203 namespace = ORIGINAL_NAMESPACE (namespace);
5204
5205 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
5206 {
5207 template_id = name;
5208 name = TREE_OPERAND (name, 0);
5209 if (TREE_CODE (name) == OVERLOAD)
5210 name = DECL_NAME (OVL_CURRENT (name));
5211 else if (TREE_CODE_CLASS (TREE_CODE (name)) == 'd')
5212 name = DECL_NAME (name);
5213 }
5214
5215 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 373);
5216
5217 val = make_node (CPLUS_BINDING);
5218 if (!qualified_lookup_using_namespace (name, namespace, val, 0))
5219 return error_mark_node;
5220
5221 if (BINDING_VALUE (val))
5222 {
5223 val = BINDING_VALUE (val);
5224
5225 if (template_id)
5226 {
5227 if (DECL_CLASS_TEMPLATE_P (val))
5228 val = lookup_template_class (val,
5229 TREE_OPERAND (template_id, 1),
5230 /*in_decl=*/NULL_TREE,
5231 /*context=*/NULL_TREE,
5232 /*entering_scope=*/0);
5233 else if (DECL_FUNCTION_TEMPLATE_P (val)
5234 || TREE_CODE (val) == OVERLOAD)
5235 val = lookup_template_function (val,
5236 TREE_OPERAND (template_id, 1));
5237 else
5238 {
5239 cp_error ("`%D::%D' is not a template",
5240 namespace, name);
5241 return error_mark_node;
5242 }
5243 }
5244
5245 /* If we have a single function from a using decl, pull it out. */
5246 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
5247 val = OVL_FUNCTION (val);
5248 return val;
5249 }
5250
5251 cp_error ("`%D' undeclared in namespace `%D'", name, namespace);
5252 return error_mark_node;
5253 }
5254
5255 /* Hash a TYPENAME_TYPE. K is really of type `tree'. */
5256
5257 static unsigned long
5258 typename_hash (k)
5259 hash_table_key k;
5260 {
5261 unsigned long hash;
5262 tree t;
5263
5264 t = (tree) k;
5265 hash = (((unsigned long) TYPE_CONTEXT (t))
5266 ^ ((unsigned long) DECL_NAME (TYPE_NAME (t))));
5267
5268 return hash;
5269 }
5270
5271 /* Compare two TYPENAME_TYPEs. K1 and K2 are really of type `tree'. */
5272
5273 static boolean
5274 typename_compare (k1, k2)
5275 hash_table_key k1;
5276 hash_table_key k2;
5277 {
5278 tree t1;
5279 tree t2;
5280 tree d1;
5281 tree d2;
5282
5283 t1 = (tree) k1;
5284 t2 = (tree) k2;
5285 d1 = TYPE_NAME (t1);
5286 d2 = TYPE_NAME (t2);
5287
5288 return (DECL_NAME (d1) == DECL_NAME (d2)
5289 && same_type_p (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2))
5290 && ((TREE_TYPE (t1) != NULL_TREE)
5291 == (TREE_TYPE (t2) != NULL_TREE))
5292 && same_type_p (TREE_TYPE (t1), TREE_TYPE (t2))
5293 && TYPENAME_TYPE_FULLNAME (t1) == TYPENAME_TYPE_FULLNAME (t2));
5294 }
5295
5296 /* Build a TYPENAME_TYPE. If the type is `typename T::t', CONTEXT is
5297 the type of `T', NAME is the IDENTIFIER_NODE for `t'. If BASE_TYPE
5298 is non-NULL, this type is being created by the implicit typename
5299 extension, and BASE_TYPE is a type named `t' in some base class of
5300 `T' which depends on template parameters.
5301
5302 Returns the new TYPENAME_TYPE. */
5303
5304 tree
5305 build_typename_type (context, name, fullname, base_type)
5306 tree context;
5307 tree name;
5308 tree fullname;
5309 tree base_type;
5310 {
5311 tree t;
5312 tree d;
5313 struct hash_entry* e;
5314
5315 static struct hash_table ht;
5316
5317 push_obstacks (&permanent_obstack, &permanent_obstack);
5318
5319 if (!ht.table)
5320 {
5321 static struct hash_table *h = &ht;
5322 if (!hash_table_init (&ht, &hash_newfunc, &typename_hash,
5323 &typename_compare))
5324 fatal ("virtual memory exhausted");
5325 ggc_add_tree_hash_table_root (&h, 1);
5326 }
5327
5328 /* Build the TYPENAME_TYPE. */
5329 t = make_lang_type (TYPENAME_TYPE);
5330 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
5331 TYPENAME_TYPE_FULLNAME (t) = fullname;
5332 TREE_TYPE (t) = base_type;
5333
5334 /* Build the corresponding TYPE_DECL. */
5335 d = build_decl (TYPE_DECL, name, t);
5336 TYPE_NAME (TREE_TYPE (d)) = d;
5337 TYPE_STUB_DECL (TREE_TYPE (d)) = d;
5338 DECL_CONTEXT (d) = FROB_CONTEXT (context);
5339 DECL_ARTIFICIAL (d) = 1;
5340
5341 /* See if we already have this type. */
5342 e = hash_lookup (&ht, t, /*create=*/false, /*copy=*/0);
5343 if (e)
5344 t = (tree) e->key;
5345 else
5346 /* Insert the type into the table. */
5347 hash_lookup (&ht, t, /*create=*/true, /*copy=*/0);
5348
5349 pop_obstacks ();
5350
5351 return t;
5352 }
5353
5354 tree
5355 make_typename_type (context, name)
5356 tree context, name;
5357 {
5358 tree fullname;
5359
5360 if (TREE_CODE_CLASS (TREE_CODE (name)) == 't')
5361 {
5362 if (!(TYPE_LANG_SPECIFIC (name)
5363 && (CLASSTYPE_IS_TEMPLATE (name)
5364 || CLASSTYPE_USE_TEMPLATE (name))))
5365 name = TYPE_IDENTIFIER (name);
5366 else
5367 /* Create a TEMPLATE_ID_EXPR for the type. */
5368 name = build_nt (TEMPLATE_ID_EXPR,
5369 CLASSTYPE_TI_TEMPLATE (name),
5370 CLASSTYPE_TI_ARGS (name));
5371 }
5372 else if (TREE_CODE (name) == TYPE_DECL)
5373 name = DECL_NAME (name);
5374
5375 fullname = name;
5376
5377 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
5378 {
5379 name = TREE_OPERAND (name, 0);
5380 if (TREE_CODE (name) == TEMPLATE_DECL)
5381 name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
5382 }
5383 if (TREE_CODE (name) != IDENTIFIER_NODE)
5384 my_friendly_abort (2000);
5385
5386 if (TREE_CODE (context) == NAMESPACE_DECL)
5387 {
5388 /* We can get here from typename_sub0 in the explicit_template_type
5389 expansion. Just fail. */
5390 cp_error ("no class template named `%#T' in `%#T'",
5391 name, context);
5392 return error_mark_node;
5393 }
5394
5395 if (! uses_template_parms (context)
5396 || currently_open_class (context))
5397 {
5398 if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
5399 {
5400 tree tmpl = NULL_TREE;
5401 if (IS_AGGR_TYPE (context))
5402 tmpl = lookup_field (context, name, 0, 0);
5403 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
5404 {
5405 cp_error ("no class template named `%#T' in `%#T'",
5406 name, context);
5407 return error_mark_node;
5408 }
5409
5410 return lookup_template_class (tmpl,
5411 TREE_OPERAND (fullname, 1),
5412 NULL_TREE, context,
5413 /*entering_scope=*/0);
5414 }
5415 else
5416 {
5417 tree t;
5418
5419 if (!IS_AGGR_TYPE (context))
5420 {
5421 cp_error ("no type named `%#T' in `%#T'", name, context);
5422 return error_mark_node;
5423 }
5424
5425 t = lookup_field (context, name, 0, 1);
5426 if (t)
5427 return TREE_TYPE (t);
5428 }
5429 }
5430
5431 /* If the CONTEXT is not a template type, then either the field is
5432 there now or its never going to be. */
5433 if (!uses_template_parms (context))
5434 {
5435 cp_error ("no type named `%#T' in `%#T'", name, context);
5436 return error_mark_node;
5437 }
5438
5439
5440 return build_typename_type (context, name, fullname, NULL_TREE);
5441 }
5442
5443 /* Select the right _DECL from multiple choices. */
5444
5445 static tree
5446 select_decl (binding, flags)
5447 tree binding;
5448 int flags;
5449 {
5450 tree val;
5451 val = BINDING_VALUE (binding);
5452 if (LOOKUP_NAMESPACES_ONLY (flags))
5453 {
5454 /* We are not interested in types. */
5455 if (val && TREE_CODE (val) == NAMESPACE_DECL)
5456 return val;
5457 return NULL_TREE;
5458 }
5459
5460 /* If we could have a type and
5461 we have nothing or we need a type and have none. */
5462 if (BINDING_TYPE (binding)
5463 && (!val || ((flags & LOOKUP_PREFER_TYPES)
5464 && TREE_CODE (val) != TYPE_DECL)))
5465 val = TYPE_STUB_DECL (BINDING_TYPE (binding));
5466 /* Don't return non-types if we really prefer types. */
5467 else if (val && LOOKUP_TYPES_ONLY (flags) && TREE_CODE (val) != TYPE_DECL
5468 && (TREE_CODE (val) != TEMPLATE_DECL
5469 || !DECL_CLASS_TEMPLATE_P (val)))
5470 val = NULL_TREE;
5471
5472 return val;
5473 }
5474
5475 /* Unscoped lookup of a global: iterate over current namespaces,
5476 considering using-directives. If SPACESP is non-NULL, store a list
5477 of the namespaces we've considered in it. */
5478
5479 tree
5480 unqualified_namespace_lookup (name, flags, spacesp)
5481 tree name;
5482 int flags;
5483 tree *spacesp;
5484 {
5485 tree b = make_node (CPLUS_BINDING);
5486 tree initial = current_decl_namespace();
5487 tree scope = initial;
5488 tree siter;
5489 struct binding_level *level;
5490 tree val = NULL_TREE;
5491
5492 if (spacesp)
5493 *spacesp = NULL_TREE;
5494
5495 for (; !val; scope = CP_DECL_CONTEXT (scope))
5496 {
5497 if (spacesp)
5498 *spacesp = tree_cons (scope, NULL_TREE, *spacesp);
5499 val = binding_for_name (name, scope);
5500
5501 /* Initialize binding for this context. */
5502 BINDING_VALUE (b) = BINDING_VALUE (val);
5503 BINDING_TYPE (b) = BINDING_TYPE (val);
5504
5505 /* Add all _DECLs seen through local using-directives. */
5506 for (level = current_binding_level;
5507 !level->namespace_p;
5508 level = level->level_chain)
5509 if (!lookup_using_namespace (name, b, level->using_directives,
5510 scope, flags, spacesp))
5511 /* Give up because of error. */
5512 return error_mark_node;
5513
5514 /* Add all _DECLs seen through global using-directives. */
5515 /* XXX local and global using lists should work equally. */
5516 siter = initial;
5517 while (1)
5518 {
5519 if (!lookup_using_namespace (name, b, DECL_NAMESPACE_USING (siter),
5520 scope, flags, spacesp))
5521 /* Give up because of error. */
5522 return error_mark_node;
5523 if (siter == scope) break;
5524 siter = CP_DECL_CONTEXT (siter);
5525 }
5526
5527 val = select_decl (b, flags);
5528 if (scope == global_namespace)
5529 break;
5530 }
5531 return val;
5532 }
5533
5534 /* Combine prefer_type and namespaces_only into flags. */
5535
5536 static int
5537 lookup_flags (prefer_type, namespaces_only)
5538 int prefer_type, namespaces_only;
5539 {
5540 if (namespaces_only)
5541 return LOOKUP_PREFER_NAMESPACES;
5542 if (prefer_type > 1)
5543 return LOOKUP_PREFER_TYPES;
5544 if (prefer_type > 0)
5545 return LOOKUP_PREFER_BOTH;
5546 return 0;
5547 }
5548
5549 /* Given a lookup that returned VAL, use FLAGS to decide if we want to
5550 ignore it or not. Subroutine of lookup_name_real. */
5551
5552 static tree
5553 qualify_lookup (val, flags)
5554 tree val;
5555 int flags;
5556 {
5557 if (val == NULL_TREE)
5558 return val;
5559 if ((flags & LOOKUP_PREFER_NAMESPACES) && TREE_CODE (val) == NAMESPACE_DECL)
5560 return val;
5561 if ((flags & LOOKUP_PREFER_TYPES)
5562 && (TREE_CODE (val) == TYPE_DECL
5563 || ((flags & LOOKUP_TEMPLATES_EXPECTED)
5564 && DECL_CLASS_TEMPLATE_P (val))))
5565 return val;
5566 if (flags & (LOOKUP_PREFER_NAMESPACES | LOOKUP_PREFER_TYPES))
5567 return NULL_TREE;
5568 return val;
5569 }
5570
5571 /* Any other BINDING overrides an implicit TYPENAME. Warn about
5572 that. */
5573
5574 static void
5575 warn_about_implicit_typename_lookup (typename, binding)
5576 tree typename;
5577 tree binding;
5578 {
5579 tree subtype = TREE_TYPE (TREE_TYPE (typename));
5580 tree name = DECL_NAME (typename);
5581
5582 if (! (TREE_CODE (binding) == TEMPLATE_DECL
5583 && CLASSTYPE_TEMPLATE_INFO (subtype)
5584 && CLASSTYPE_TI_TEMPLATE (subtype) == binding)
5585 && ! (TREE_CODE (binding) == TYPE_DECL
5586 && same_type_p (TREE_TYPE (binding), subtype)))
5587 {
5588 cp_warning ("lookup of `%D' finds `%#D'",
5589 name, binding);
5590 cp_warning (" instead of `%D' from dependent base class",
5591 typename);
5592 cp_warning (" (use `typename %T::%D' if that's what you meant)",
5593 constructor_name (current_class_type), name);
5594 }
5595 }
5596
5597 /* Look up NAME in the current binding level and its superiors in the
5598 namespace of variables, functions and typedefs. Return a ..._DECL
5599 node of some kind representing its definition if there is only one
5600 such declaration, or return a TREE_LIST with all the overloaded
5601 definitions if there are many, or return 0 if it is undefined.
5602
5603 If PREFER_TYPE is > 0, we prefer TYPE_DECLs or namespaces.
5604 If PREFER_TYPE is > 1, we reject non-type decls (e.g. namespaces).
5605 If PREFER_TYPE is -2, we're being called from yylex(). (UGLY)
5606 Otherwise we prefer non-TYPE_DECLs.
5607
5608 If NONCLASS is non-zero, we don't look for the NAME in class scope,
5609 using IDENTIFIER_CLASS_VALUE. */
5610
5611 static tree
5612 lookup_name_real (name, prefer_type, nonclass, namespaces_only)
5613 tree name;
5614 int prefer_type, nonclass, namespaces_only;
5615 {
5616 tree t;
5617 tree val = NULL_TREE;
5618 int yylex = 0;
5619 tree from_obj = NULL_TREE;
5620 int flags;
5621 int val_is_implicit_typename = 0;
5622
5623 /* Hack: copy flag set by parser, if set. */
5624 if (only_namespace_names)
5625 namespaces_only = 1;
5626
5627 if (prefer_type == -2)
5628 {
5629 extern int looking_for_typename;
5630 tree type = NULL_TREE;
5631
5632 yylex = 1;
5633 prefer_type = looking_for_typename;
5634
5635 flags = lookup_flags (prefer_type, namespaces_only);
5636 /* If the next thing is '<', class templates are types. */
5637 if (looking_for_template)
5638 flags |= LOOKUP_TEMPLATES_EXPECTED;
5639
5640 /* std:: becomes :: for now. */
5641 if (got_scope == std_node)
5642 got_scope = void_type_node;
5643
5644 if (got_scope)
5645 type = got_scope;
5646 else if (got_object != error_mark_node)
5647 type = got_object;
5648
5649 if (type)
5650 {
5651 if (type == error_mark_node)
5652 return error_mark_node;
5653 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
5654 type = TREE_TYPE (type);
5655
5656 if (TYPE_P (type))
5657 type = complete_type (type);
5658
5659 if (TREE_CODE (type) == VOID_TYPE)
5660 type = global_namespace;
5661 if (TREE_CODE (type) == NAMESPACE_DECL)
5662 {
5663 val = make_node (CPLUS_BINDING);
5664 flags |= LOOKUP_COMPLAIN;
5665 if (!qualified_lookup_using_namespace (name, type, val, flags))
5666 return NULL_TREE;
5667 val = select_decl (val, flags);
5668 }
5669 else if (! IS_AGGR_TYPE (type)
5670 || TREE_CODE (type) == TEMPLATE_TYPE_PARM
5671 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
5672 || TREE_CODE (type) == TYPENAME_TYPE)
5673 /* Someone else will give an error about this if needed. */
5674 val = NULL_TREE;
5675 else if (type == current_class_type)
5676 val = IDENTIFIER_CLASS_VALUE (name);
5677 else
5678 val = lookup_member (type, name, 0, prefer_type);
5679 }
5680 else
5681 val = NULL_TREE;
5682
5683 if (got_scope)
5684 goto done;
5685 else if (got_object && val)
5686 from_obj = val;
5687 }
5688 else
5689 {
5690 flags = lookup_flags (prefer_type, namespaces_only);
5691 /* If we're not parsing, we need to complain. */
5692 flags |= LOOKUP_COMPLAIN;
5693 }
5694
5695 /* First, look in non-namespace scopes. */
5696
5697 if (current_class_type == NULL_TREE)
5698 nonclass = 1;
5699
5700 for (t = IDENTIFIER_BINDING (name); t; t = TREE_CHAIN (t))
5701 {
5702 tree binding;
5703
5704 if (!LOCAL_BINDING_P (t) && nonclass)
5705 /* We're not looking for class-scoped bindings, so keep going. */
5706 continue;
5707
5708 /* If this is the kind of thing we're looking for, we're done. */
5709 if (qualify_lookup (BINDING_VALUE (t), flags))
5710 binding = BINDING_VALUE (t);
5711 else if ((flags & LOOKUP_PREFER_TYPES)
5712 && qualify_lookup (BINDING_TYPE (t), flags))
5713 binding = BINDING_TYPE (t);
5714 else
5715 binding = NULL_TREE;
5716
5717 if (binding
5718 && (!val || !IMPLICIT_TYPENAME_TYPE_DECL_P (binding)))
5719 {
5720 if (val_is_implicit_typename && !yylex)
5721 warn_about_implicit_typename_lookup (val, binding);
5722 val = binding;
5723 val_is_implicit_typename
5724 = IMPLICIT_TYPENAME_TYPE_DECL_P (val);
5725 if (!val_is_implicit_typename)
5726 break;
5727 }
5728 }
5729
5730 /* Now lookup in namespace scopes. */
5731 if (!val || val_is_implicit_typename)
5732 {
5733 t = unqualified_namespace_lookup (name, flags, 0);
5734 if (t)
5735 {
5736 if (val_is_implicit_typename && !yylex)
5737 warn_about_implicit_typename_lookup (val, t);
5738 val = t;
5739 }
5740 }
5741
5742 done:
5743 if (val)
5744 {
5745 /* This should only warn about types used in qualified-ids. */
5746 if (from_obj && from_obj != val)
5747 {
5748 if (looking_for_typename && TREE_CODE (from_obj) == TYPE_DECL
5749 && TREE_CODE (val) == TYPE_DECL
5750 && TREE_TYPE (from_obj) != TREE_TYPE (val))
5751 {
5752 cp_pedwarn ("lookup of `%D' in the scope of `%#T' (`%#T')",
5753 name, got_object, TREE_TYPE (from_obj));
5754 cp_pedwarn (" does not match lookup in the current scope (`%#T')",
5755 TREE_TYPE (val));
5756 }
5757
5758 /* We don't change val to from_obj if got_object depends on
5759 template parms because that breaks implicit typename for
5760 destructor calls. */
5761 if (! uses_template_parms (got_object))
5762 val = from_obj;
5763 }
5764
5765 /* If we have a single function from a using decl, pull it out. */
5766 if (TREE_CODE (val) == OVERLOAD && ! really_overloaded_fn (val))
5767 val = OVL_FUNCTION (val);
5768 }
5769 else if (from_obj)
5770 val = from_obj;
5771
5772 return val;
5773 }
5774
5775 tree
5776 lookup_name_nonclass (name)
5777 tree name;
5778 {
5779 return lookup_name_real (name, 0, 1, 0);
5780 }
5781
5782 tree
5783 lookup_function_nonclass (name, args)
5784 tree name;
5785 tree args;
5786 {
5787 return lookup_arg_dependent (name, lookup_name_nonclass (name), args);
5788 }
5789
5790 tree
5791 lookup_name_namespace_only (name)
5792 tree name;
5793 {
5794 /* type-or-namespace, nonclass, namespace_only */
5795 return lookup_name_real (name, 1, 1, 1);
5796 }
5797
5798 tree
5799 lookup_name (name, prefer_type)
5800 tree name;
5801 int prefer_type;
5802 {
5803 return lookup_name_real (name, prefer_type, 0, 0);
5804 }
5805
5806 /* Similar to `lookup_name' but look only in the innermost non-class
5807 binding level. */
5808
5809 tree
5810 lookup_name_current_level (name)
5811 tree name;
5812 {
5813 struct binding_level *b;
5814 tree t = NULL_TREE;
5815
5816 b = current_binding_level;
5817 while (b->parm_flag == 2)
5818 b = b->level_chain;
5819
5820 if (b->namespace_p)
5821 {
5822 t = IDENTIFIER_NAMESPACE_VALUE (name);
5823
5824 /* extern "C" function() */
5825 if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
5826 t = TREE_VALUE (t);
5827 }
5828 else if (IDENTIFIER_BINDING (name)
5829 && LOCAL_BINDING_P (IDENTIFIER_BINDING (name)))
5830 {
5831 while (1)
5832 {
5833 if (BINDING_LEVEL (IDENTIFIER_BINDING (name)) == b)
5834 return IDENTIFIER_VALUE (name);
5835
5836 if (b->keep == 2)
5837 b = b->level_chain;
5838 else
5839 break;
5840 }
5841 }
5842
5843 return t;
5844 }
5845
5846 /* Like lookup_name_current_level, but for types. */
5847
5848 tree
5849 lookup_type_current_level (name)
5850 tree name;
5851 {
5852 register tree t = NULL_TREE;
5853
5854 my_friendly_assert (! current_binding_level->namespace_p, 980716);
5855
5856 if (REAL_IDENTIFIER_TYPE_VALUE (name) != NULL_TREE
5857 && REAL_IDENTIFIER_TYPE_VALUE (name) != global_type_node)
5858 {
5859 struct binding_level *b = current_binding_level;
5860 while (1)
5861 {
5862 if (purpose_member (name, b->type_shadowed))
5863 return REAL_IDENTIFIER_TYPE_VALUE (name);
5864 if (b->keep == 2)
5865 b = b->level_chain;
5866 else
5867 break;
5868 }
5869 }
5870
5871 return t;
5872 }
5873
5874 void
5875 begin_only_namespace_names ()
5876 {
5877 only_namespace_names = 1;
5878 }
5879
5880 void
5881 end_only_namespace_names ()
5882 {
5883 only_namespace_names = 0;
5884 }
5885 \f
5886 /* Arrange for the user to get a source line number, even when the
5887 compiler is going down in flames, so that she at least has a
5888 chance of working around problems in the compiler. We used to
5889 call error(), but that let the segmentation fault continue
5890 through; now, it's much more passive by asking them to send the
5891 maintainers mail about the problem. */
5892
5893 static void
5894 signal_catch (sig)
5895 int sig ATTRIBUTE_UNUSED;
5896 {
5897 signal (SIGSEGV, SIG_DFL);
5898 #ifdef SIGIOT
5899 signal (SIGIOT, SIG_DFL);
5900 #endif
5901 #ifdef SIGILL
5902 signal (SIGILL, SIG_DFL);
5903 #endif
5904 #ifdef SIGABRT
5905 signal (SIGABRT, SIG_DFL);
5906 #endif
5907 #ifdef SIGBUS
5908 signal (SIGBUS, SIG_DFL);
5909 #endif
5910 my_friendly_abort (0);
5911 }
5912
5913 /* Push the declarations of builtin types into the namespace.
5914 RID_INDEX, if < RID_MAX is the index of the builtin type
5915 in the array RID_POINTERS. NAME is the name used when looking
5916 up the builtin type. TYPE is the _TYPE node for the builtin type. */
5917
5918 static void
5919 record_builtin_type (rid_index, name, type)
5920 enum rid rid_index;
5921 const char *name;
5922 tree type;
5923 {
5924 tree rname = NULL_TREE, tname = NULL_TREE;
5925 tree tdecl = NULL_TREE;
5926
5927 if ((int) rid_index < (int) RID_MAX)
5928 rname = ridpointers[(int) rid_index];
5929 if (name)
5930 tname = get_identifier (name);
5931
5932 TYPE_BUILT_IN (type) = 1;
5933
5934 if (tname)
5935 {
5936 tdecl = pushdecl (build_decl (TYPE_DECL, tname, type));
5937 set_identifier_type_value (tname, NULL_TREE);
5938 if ((int) rid_index < (int) RID_MAX)
5939 /* Built-in types live in the global namespace. */
5940 SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
5941 }
5942 if (rname != NULL_TREE)
5943 {
5944 if (tname != NULL_TREE)
5945 {
5946 set_identifier_type_value (rname, NULL_TREE);
5947 SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
5948 }
5949 else
5950 {
5951 tdecl = pushdecl (build_decl (TYPE_DECL, rname, type));
5952 set_identifier_type_value (rname, NULL_TREE);
5953 }
5954 }
5955 }
5956
5957 /* Record one of the standard Java types.
5958 * Declare it as having the given NAME.
5959 * If SIZE > 0, it is the size of one of the integral types;
5960 * otherwise it is the negative of the size of one of the other types. */
5961
5962 static tree
5963 record_builtin_java_type (name, size)
5964 const char *name;
5965 int size;
5966 {
5967 tree type, decl;
5968 if (size > 0)
5969 type = make_signed_type (size);
5970 else if (size > -32)
5971 { /* "__java_char" or ""__java_boolean". */
5972 type = make_unsigned_type (-size);
5973 /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
5974 }
5975 else
5976 { /* "__java_float" or ""__java_double". */
5977 type = make_node (REAL_TYPE);
5978 TYPE_PRECISION (type) = - size;
5979 layout_type (type);
5980 }
5981 record_builtin_type (RID_MAX, name, type);
5982 decl = TYPE_NAME (type);
5983
5984 /* Suppress generate debug symbol entries for these types,
5985 since for normal C++ they are just clutter.
5986 However, push_lang_context undoes this if extern "Java" is seen. */
5987 DECL_IGNORED_P (decl) = 1;
5988
5989 TYPE_FOR_JAVA (type) = 1;
5990 return type;
5991 }
5992
5993 /* Push a type into the namespace so that the back-ends ignore it. */
5994
5995 static void
5996 record_unknown_type (type, name)
5997 tree type;
5998 const char *name;
5999 {
6000 tree decl = pushdecl (build_decl (TYPE_DECL, get_identifier (name), type));
6001 /* Make sure the "unknown type" typedecl gets ignored for debug info. */
6002 DECL_IGNORED_P (decl) = 1;
6003 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6004 TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
6005 TYPE_ALIGN (type) = 1;
6006 TYPE_MODE (type) = TYPE_MODE (void_type_node);
6007 }
6008
6009 /* Push overloaded decl, in global scope, with one argument so it
6010 can be used as a callback from define_function. */
6011
6012 static void
6013 push_overloaded_decl_1 (x)
6014 tree x;
6015 {
6016 push_overloaded_decl (x, PUSH_GLOBAL);
6017 }
6018
6019 #ifdef __GNUC__
6020 __inline
6021 #endif
6022 tree
6023 auto_function (name, type, code)
6024 tree name, type;
6025 enum built_in_function code;
6026 {
6027 return define_function
6028 (IDENTIFIER_POINTER (name), type, code, push_overloaded_decl_1,
6029 IDENTIFIER_POINTER (build_decl_overload (name, TYPE_ARG_TYPES (type),
6030 0)));
6031 }
6032
6033 /* Create the predefined scalar types of C,
6034 and some nodes representing standard constants (0, 1, (void *)0).
6035 Initialize the global binding level.
6036 Make definitions for built-in primitive functions. */
6037
6038 void
6039 init_decl_processing ()
6040 {
6041 tree fields[20];
6042 int wchar_type_size;
6043 tree array_domain_type;
6044
6045 /* Have to make these distinct before we try using them. */
6046 lang_name_cplusplus = get_identifier ("C++");
6047 lang_name_c = get_identifier ("C");
6048 lang_name_java = get_identifier ("Java");
6049
6050 /* Let the back-end now how to save and restore language-specific
6051 per-function globals. */
6052 init_lang_status = &push_cp_function_context;
6053 free_lang_status = &pop_cp_function_context;
6054 mark_lang_status = &mark_cp_function_context;
6055
6056 cp_parse_init ();
6057 init_decl2 ();
6058 init_pt ();
6059
6060 /* Create the global variables. */
6061 push_to_top_level ();
6062
6063 /* Enter the global namespace. */
6064 my_friendly_assert (global_namespace == NULL_TREE, 375);
6065 push_namespace (get_identifier ("::"));
6066 global_namespace = current_namespace;
6067 current_lang_name = NULL_TREE;
6068
6069 if (flag_strict_prototype == 2)
6070 flag_strict_prototype = pedantic;
6071 if (! flag_permissive && ! pedantic)
6072 flag_pedantic_errors = 1;
6073
6074 strict_prototypes_lang_c = flag_strict_prototype;
6075
6076 /* Initially, C. */
6077 current_lang_name = lang_name_c;
6078
6079 current_function_decl = NULL_TREE;
6080 current_binding_level = NULL_BINDING_LEVEL;
6081 free_binding_level = NULL_BINDING_LEVEL;
6082
6083 /* Because most segmentation signals can be traced back into user
6084 code, catch them and at least give the user a chance of working
6085 around compiler bugs. */
6086 signal (SIGSEGV, signal_catch);
6087
6088 /* We will also catch aborts in the back-end through signal_catch and
6089 give the user a chance to see where the error might be, and to defeat
6090 aborts in the back-end when there have been errors previously in their
6091 code. */
6092 #ifdef SIGIOT
6093 signal (SIGIOT, signal_catch);
6094 #endif
6095 #ifdef SIGILL
6096 signal (SIGILL, signal_catch);
6097 #endif
6098 #ifdef SIGABRT
6099 signal (SIGABRT, signal_catch);
6100 #endif
6101 #ifdef SIGBUS
6102 signal (SIGBUS, signal_catch);
6103 #endif
6104
6105 gcc_obstack_init (&decl_obstack);
6106
6107 /* Must lay these out before anything else gets laid out. */
6108 error_mark_node = make_node (ERROR_MARK);
6109 TREE_PERMANENT (error_mark_node) = 1;
6110 TREE_TYPE (error_mark_node) = error_mark_node;
6111 error_mark_list = build_tree_list (error_mark_node, error_mark_node);
6112 TREE_TYPE (error_mark_list) = error_mark_node;
6113
6114 /* Make the binding_level structure for global names. */
6115 pushlevel (0);
6116 global_binding_level = current_binding_level;
6117 /* The global level is the namespace level of ::. */
6118 NAMESPACE_LEVEL (global_namespace) = global_binding_level;
6119 declare_namespace_level ();
6120
6121 this_identifier = get_identifier (THIS_NAME);
6122 in_charge_identifier = get_identifier (IN_CHARGE_NAME);
6123 ctor_identifier = get_identifier (CTOR_NAME);
6124 dtor_identifier = get_identifier (DTOR_NAME);
6125 pfn_identifier = get_identifier (VTABLE_PFN_NAME);
6126 index_identifier = get_identifier (VTABLE_INDEX_NAME);
6127 delta_identifier = get_identifier (VTABLE_DELTA_NAME);
6128 delta2_identifier = get_identifier (VTABLE_DELTA2_NAME);
6129 pfn_or_delta2_identifier = get_identifier ("__pfn_or_delta2");
6130
6131 /* Define `int' and `char' first so that dbx will output them first. */
6132
6133 integer_type_node = make_signed_type (INT_TYPE_SIZE);
6134 record_builtin_type (RID_INT, NULL_PTR, integer_type_node);
6135
6136 /* Define `char', which is like either `signed char' or `unsigned char'
6137 but not the same as either. */
6138
6139 char_type_node
6140 = (flag_signed_char
6141 ? make_signed_type (CHAR_TYPE_SIZE)
6142 : make_unsigned_type (CHAR_TYPE_SIZE));
6143 record_builtin_type (RID_CHAR, "char", char_type_node);
6144
6145 /* `signed' is the same as `int' */
6146 record_builtin_type (RID_SIGNED, NULL_PTR, integer_type_node);
6147
6148 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
6149 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
6150
6151 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
6152 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
6153
6154 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
6155 record_builtin_type (RID_MAX, "long unsigned int", long_unsigned_type_node);
6156 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
6157
6158 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
6159 record_builtin_type (RID_MAX, "long long int", long_long_integer_type_node);
6160
6161 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
6162 record_builtin_type (RID_MAX, "long long unsigned int",
6163 long_long_unsigned_type_node);
6164 record_builtin_type (RID_MAX, "long long unsigned",
6165 long_long_unsigned_type_node);
6166
6167 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
6168 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
6169 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
6170 record_builtin_type (RID_MAX, "short unsigned int", short_unsigned_type_node);
6171 record_builtin_type (RID_MAX, "unsigned short", short_unsigned_type_node);
6172
6173 /* `unsigned long' is the standard type for sizeof.
6174 Note that stddef.h uses `unsigned long',
6175 and this must agree, even if long and int are the same size. */
6176 set_sizetype
6177 (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE))));
6178
6179 ptrdiff_type_node
6180 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
6181
6182 /* Define both `signed char' and `unsigned char'. */
6183 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
6184 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
6185 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
6186 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
6187
6188 /* Create the widest literal types. */
6189 widest_integer_literal_type_node = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
6190 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
6191 widest_integer_literal_type_node));
6192
6193 widest_unsigned_literal_type_node = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
6194 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
6195 widest_unsigned_literal_type_node));
6196
6197 /* These are types that type_for_size and type_for_mode use. */
6198 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
6199 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
6200 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
6201 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
6202 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
6203 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
6204 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
6205 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
6206 #if HOST_BITS_PER_WIDE_INT >= 64
6207 intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
6208 pushdecl (build_decl (TYPE_DECL, get_identifier ("__int128_t"), intTI_type_node));
6209 #endif
6210 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
6211 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
6212 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
6213 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
6214 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
6215 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
6216 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
6217 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
6218 #if HOST_BITS_PER_WIDE_INT >= 64
6219 unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
6220 pushdecl (build_decl (TYPE_DECL, get_identifier ("__uint128_t"), unsigned_intTI_type_node));
6221 #endif
6222
6223 float_type_node = make_node (REAL_TYPE);
6224 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
6225 record_builtin_type (RID_FLOAT, NULL_PTR, float_type_node);
6226 layout_type (float_type_node);
6227
6228 double_type_node = make_node (REAL_TYPE);
6229 if (flag_short_double)
6230 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
6231 else
6232 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
6233 record_builtin_type (RID_DOUBLE, NULL_PTR, double_type_node);
6234 layout_type (double_type_node);
6235
6236 long_double_type_node = make_node (REAL_TYPE);
6237 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
6238 record_builtin_type (RID_MAX, "long double", long_double_type_node);
6239 layout_type (long_double_type_node);
6240
6241 complex_integer_type_node = make_node (COMPLEX_TYPE);
6242 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
6243 complex_integer_type_node));
6244 TREE_TYPE (complex_integer_type_node) = integer_type_node;
6245 layout_type (complex_integer_type_node);
6246
6247 complex_float_type_node = make_node (COMPLEX_TYPE);
6248 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
6249 complex_float_type_node));
6250 TREE_TYPE (complex_float_type_node) = float_type_node;
6251 layout_type (complex_float_type_node);
6252
6253 complex_double_type_node = make_node (COMPLEX_TYPE);
6254 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
6255 complex_double_type_node));
6256 TREE_TYPE (complex_double_type_node) = double_type_node;
6257 layout_type (complex_double_type_node);
6258
6259 complex_long_double_type_node = make_node (COMPLEX_TYPE);
6260 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
6261 complex_long_double_type_node));
6262 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
6263 layout_type (complex_long_double_type_node);
6264
6265 java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
6266 java_short_type_node = record_builtin_java_type ("__java_short", 16);
6267 java_int_type_node = record_builtin_java_type ("__java_int", 32);
6268 java_long_type_node = record_builtin_java_type ("__java_long", 64);
6269 java_float_type_node = record_builtin_java_type ("__java_float", -32);
6270 java_double_type_node = record_builtin_java_type ("__java_double", -64);
6271 java_char_type_node = record_builtin_java_type ("__java_char", -16);
6272 java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
6273
6274 integer_zero_node = build_int_2 (0, 0);
6275 TREE_TYPE (integer_zero_node) = integer_type_node;
6276 integer_one_node = build_int_2 (1, 0);
6277 TREE_TYPE (integer_one_node) = integer_type_node;
6278 integer_two_node = build_int_2 (2, 0);
6279 TREE_TYPE (integer_two_node) = integer_type_node;
6280 integer_three_node = build_int_2 (3, 0);
6281 TREE_TYPE (integer_three_node) = integer_type_node;
6282
6283 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
6284 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
6285 TYPE_MAX_VALUE (boolean_type_node) = build_int_2 (1, 0);
6286 TREE_TYPE (TYPE_MAX_VALUE (boolean_type_node)) = boolean_type_node;
6287 TYPE_PRECISION (boolean_type_node) = 1;
6288 record_builtin_type (RID_BOOL, "bool", boolean_type_node);
6289 boolean_false_node = build_int_2 (0, 0);
6290 TREE_TYPE (boolean_false_node) = boolean_type_node;
6291 boolean_true_node = build_int_2 (1, 0);
6292 TREE_TYPE (boolean_true_node) = boolean_type_node;
6293
6294 /* These are needed by stor-layout.c. */
6295 size_zero_node = size_int (0);
6296 size_one_node = size_int (1);
6297
6298 signed_size_zero_node = build_int_2 (0, 0);
6299 TREE_TYPE (signed_size_zero_node) = make_signed_type (TYPE_PRECISION (sizetype));
6300
6301 void_type_node = make_node (VOID_TYPE);
6302 record_builtin_type (RID_VOID, NULL_PTR, void_type_node);
6303 layout_type (void_type_node); /* Uses integer_zero_node. */
6304 void_list_node = build_tree_list (NULL_TREE, void_type_node);
6305 TREE_PARMLIST (void_list_node) = 1;
6306
6307 null_pointer_node = build_int_2 (0, 0);
6308 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
6309 layout_type (TREE_TYPE (null_pointer_node));
6310
6311 /* Used for expressions that do nothing, but are not errors. */
6312 void_zero_node = build_int_2 (0, 0);
6313 TREE_TYPE (void_zero_node) = void_type_node;
6314
6315 string_type_node = build_pointer_type (char_type_node);
6316 const_string_type_node
6317 = build_pointer_type (build_qualified_type (char_type_node,
6318 TYPE_QUAL_CONST));
6319 empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
6320 #if 0
6321 record_builtin_type (RID_MAX, NULL_PTR, string_type_node);
6322 #endif
6323
6324 /* Make a type to be the domain of a few array types
6325 whose domains don't really matter.
6326 200 is small enough that it always fits in size_t
6327 and large enough that it can hold most function names for the
6328 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
6329 array_domain_type = build_index_type (build_int_2 (200, 0));
6330
6331 /* Make a type for arrays of characters.
6332 With luck nothing will ever really depend on the length of this
6333 array type. */
6334 char_array_type_node
6335 = build_array_type (char_type_node, array_domain_type);
6336 /* Likewise for arrays of ints. */
6337 int_array_type_node
6338 = build_array_type (integer_type_node, array_domain_type);
6339
6340 /* This is just some anonymous class type. Nobody should ever
6341 need to look inside this envelope. */
6342 class_star_type_node = build_pointer_type (make_lang_type (RECORD_TYPE));
6343
6344 if (flag_huge_objects)
6345 delta_type_node = long_integer_type_node;
6346 else
6347 delta_type_node = short_integer_type_node;
6348
6349 default_function_type
6350 = build_function_type (integer_type_node, NULL_TREE);
6351
6352 ptr_type_node = build_pointer_type (void_type_node);
6353 const_ptr_type_node
6354 = build_pointer_type (build_qualified_type (void_type_node,
6355 TYPE_QUAL_CONST));
6356 c_common_nodes_and_builtins (1, flag_no_builtin, flag_no_nonansi_builtin);
6357
6358 void_ftype_ptr
6359 = build_exception_variant (void_ftype_ptr, empty_except_spec);
6360
6361 /* C++ extensions */
6362
6363 unknown_type_node = make_node (UNKNOWN_TYPE);
6364 record_unknown_type (unknown_type_node, "unknown type");
6365
6366 /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node. */
6367 TREE_TYPE (unknown_type_node) = unknown_type_node;
6368
6369 TREE_TYPE (null_node) = type_for_size (POINTER_SIZE, 0);
6370
6371 /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
6372 result. */
6373 TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
6374 TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
6375
6376 /* This is special for C++ so functions can be overloaded. */
6377 wchar_type_node
6378 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
6379 wchar_type_size = TYPE_PRECISION (wchar_type_node);
6380 signed_wchar_type_node = make_signed_type (wchar_type_size);
6381 unsigned_wchar_type_node = make_unsigned_type (wchar_type_size);
6382 wchar_type_node
6383 = TREE_UNSIGNED (wchar_type_node)
6384 ? unsigned_wchar_type_node
6385 : signed_wchar_type_node;
6386 record_builtin_type (RID_WCHAR, "__wchar_t", wchar_type_node);
6387
6388 /* Artificial declaration of wchar_t -- can be bashed */
6389 wchar_decl_node = build_decl (TYPE_DECL, get_identifier ("wchar_t"),
6390 wchar_type_node);
6391 pushdecl (wchar_decl_node);
6392
6393 /* This is for wide string constants. */
6394 wchar_array_type_node
6395 = build_array_type (wchar_type_node, array_domain_type);
6396
6397 if (flag_vtable_thunks)
6398 {
6399 /* Make sure we get a unique function type, so we can give
6400 its pointer type a name. (This wins for gdb.) */
6401 tree vfunc_type = make_node (FUNCTION_TYPE);
6402 TREE_TYPE (vfunc_type) = integer_type_node;
6403 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
6404 layout_type (vfunc_type);
6405
6406 vtable_entry_type = build_pointer_type (vfunc_type);
6407 }
6408 else
6409 {
6410 vtable_entry_type = make_lang_type (RECORD_TYPE);
6411 fields[0] = build_lang_decl (FIELD_DECL, delta_identifier,
6412 delta_type_node);
6413 fields[1] = build_lang_decl (FIELD_DECL, index_identifier,
6414 delta_type_node);
6415 fields[2] = build_lang_decl (FIELD_DECL, pfn_identifier,
6416 ptr_type_node);
6417 finish_builtin_type (vtable_entry_type, VTBL_PTR_TYPE, fields, 2,
6418 double_type_node);
6419
6420 /* Make this part of an invisible union. */
6421 fields[3] = copy_node (fields[2]);
6422 TREE_TYPE (fields[3]) = delta_type_node;
6423 DECL_NAME (fields[3]) = delta2_identifier;
6424 DECL_MODE (fields[3]) = TYPE_MODE (delta_type_node);
6425 DECL_SIZE (fields[3]) = TYPE_SIZE (delta_type_node);
6426 TREE_UNSIGNED (fields[3]) = 0;
6427 TREE_CHAIN (fields[2]) = fields[3];
6428 vtable_entry_type = build_qualified_type (vtable_entry_type,
6429 TYPE_QUAL_CONST);
6430 }
6431 record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
6432
6433 vtbl_type_node
6434 = build_cplus_array_type (vtable_entry_type, NULL_TREE);
6435 layout_type (vtbl_type_node);
6436 vtbl_type_node = build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
6437 record_builtin_type (RID_MAX, NULL_PTR, vtbl_type_node);
6438 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
6439 layout_type (vtbl_ptr_type_node);
6440 record_builtin_type (RID_MAX, NULL_PTR, vtbl_ptr_type_node);
6441
6442 std_node = build_decl (NAMESPACE_DECL,
6443 get_identifier (flag_honor_std ? "fake std":"std"),
6444 void_type_node);
6445 pushdecl (std_node);
6446
6447 global_type_node = make_node (LANG_TYPE);
6448 record_unknown_type (global_type_node, "global type");
6449
6450 /* Now, C++. */
6451 current_lang_name = lang_name_cplusplus;
6452
6453 {
6454 tree bad_alloc_type_node, newtype, deltype;
6455 if (flag_honor_std)
6456 push_namespace (get_identifier ("std"));
6457 bad_alloc_type_node = xref_tag
6458 (class_type_node, get_identifier ("bad_alloc"), 1);
6459 if (flag_honor_std)
6460 pop_namespace ();
6461 newtype = build_exception_variant
6462 (ptr_ftype_sizetype, add_exception_specifier (NULL_TREE, bad_alloc_type_node, -1));
6463 deltype = build_exception_variant (void_ftype_ptr, empty_except_spec);
6464 auto_function (ansi_opname[(int) NEW_EXPR], newtype, NOT_BUILT_IN);
6465 auto_function (ansi_opname[(int) VEC_NEW_EXPR], newtype, NOT_BUILT_IN);
6466 global_delete_fndecl
6467 = auto_function (ansi_opname[(int) DELETE_EXPR], deltype, NOT_BUILT_IN);
6468 auto_function (ansi_opname[(int) VEC_DELETE_EXPR], deltype, NOT_BUILT_IN);
6469 }
6470
6471 abort_fndecl
6472 = define_function ("__pure_virtual", void_ftype,
6473 NOT_BUILT_IN, 0, 0);
6474
6475 /* Perform other language dependent initializations. */
6476 init_class_processing ();
6477 init_init_processing ();
6478 init_search_processing ();
6479 if (flag_rtti)
6480 init_rtti_processing ();
6481
6482 if (flag_exceptions)
6483 init_exception_processing ();
6484 if (flag_no_inline)
6485 {
6486 flag_inline_functions = 0;
6487 }
6488
6489 if (! supports_one_only ())
6490 flag_weak = 0;
6491
6492 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
6493 declare_function_name ();
6494
6495 /* Prepare to check format strings against argument lists. */
6496 init_function_format_info ();
6497
6498 /* Show we use EH for cleanups. */
6499 using_eh_for_cleanups ();
6500
6501 print_error_function = lang_print_error_function;
6502 lang_get_alias_set = &c_get_alias_set;
6503 valid_lang_attribute = cp_valid_lang_attribute;
6504
6505 /* Maintain consistency. Perhaps we should just complain if they
6506 say -fwritable-strings? */
6507 if (flag_writable_strings)
6508 flag_const_strings = 0;
6509
6510 /* Add GC roots for all of our global variables. */
6511 ggc_add_tree_root (c_global_trees, sizeof c_global_trees / sizeof(tree));
6512 ggc_add_tree_root (cp_global_trees, sizeof cp_global_trees / sizeof(tree));
6513 ggc_add_tree_root (&char_type_node, 1);
6514 ggc_add_tree_root (&error_mark_node, 1);
6515 ggc_add_tree_root (&integer_type_node, 1);
6516 ggc_add_tree_root (&integer_three_node, 1);
6517 ggc_add_tree_root (&integer_two_node, 1);
6518 ggc_add_tree_root (&integer_one_node, 1);
6519 ggc_add_tree_root (&integer_zero_node, 1);
6520 ggc_add_tree_root (&signed_size_zero_node, 1);
6521 ggc_add_tree_root (&size_one_node, 1);
6522 ggc_add_tree_root (&size_zero_node, 1);
6523 ggc_add_tree_root (&unsigned_type_node, 1);
6524 ggc_add_tree_root (&ptr_type_node, 1);
6525 ggc_add_tree_root (&null_pointer_node, 1);
6526 ggc_add_tree_root (&va_list_type_node, 1);
6527 ggc_add_tree_root (&void_type_node, 1);
6528 ggc_add_root (&global_binding_level, 1, sizeof global_binding_level,
6529 mark_binding_level);
6530 ggc_add_root (&scope_chain, 1, sizeof scope_chain, &mark_saved_scope);
6531 ggc_add_tree_root (&static_ctors, 1);
6532 ggc_add_tree_root (&static_dtors, 1);
6533 ggc_add_tree_root (&lastiddecl, 1);
6534
6535 ggc_add_tree_root (&enum_next_value, 1);
6536 ggc_add_tree_root (&last_function_parm_tags, 1);
6537 ggc_add_tree_root (&current_function_return_value, 1);
6538 ggc_add_tree_root (&current_function_parms, 1);
6539 ggc_add_tree_root (&current_function_parm_tags, 1);
6540 ggc_add_tree_root (&last_function_parms, 1);
6541 ggc_add_tree_root (&error_mark_list, 1);
6542
6543 ggc_add_tree_root (&global_namespace, 1);
6544 ggc_add_tree_root (&global_type_node, 1);
6545 ggc_add_tree_root (&anonymous_namespace_name, 1);
6546
6547 ggc_add_tree_root (&got_object, 1);
6548 ggc_add_tree_root (&got_scope, 1);
6549
6550 ggc_add_tree_root (&current_lang_name, 1);
6551 ggc_add_tree_root (&static_aggregates, 1);
6552 }
6553
6554 /* Function to print any language-specific context for an error message. */
6555
6556 static void
6557 lang_print_error_function (file)
6558 const char *file;
6559 {
6560 default_print_error_function (file);
6561 maybe_print_template_context ();
6562 }
6563
6564 /* Make a definition for a builtin function named NAME and whose data type
6565 is TYPE. TYPE should be a function type with argument types.
6566 FUNCTION_CODE tells later passes how to compile calls to this function.
6567 See tree.h for its possible values.
6568
6569 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
6570 the name to be called if we can't opencode the function. */
6571
6572 tree
6573 define_function (name, type, function_code, pfn, library_name)
6574 const char *name;
6575 tree type;
6576 enum built_in_function function_code;
6577 void (*pfn) PROTO((tree));
6578 const char *library_name;
6579 {
6580 tree decl = build_lang_decl (FUNCTION_DECL, get_identifier (name), type);
6581 DECL_EXTERNAL (decl) = 1;
6582 TREE_PUBLIC (decl) = 1;
6583 DECL_ARTIFICIAL (decl) = 1;
6584
6585 my_friendly_assert (DECL_CONTEXT (decl) == NULL_TREE, 392);
6586 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
6587
6588 /* Since `pushdecl' relies on DECL_ASSEMBLER_NAME instead of DECL_NAME,
6589 we cannot change DECL_ASSEMBLER_NAME until we have installed this
6590 function in the namespace. */
6591 if (pfn) (*pfn) (decl);
6592 if (library_name)
6593 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
6594 make_function_rtl (decl);
6595 if (function_code != NOT_BUILT_IN)
6596 {
6597 DECL_BUILT_IN (decl) = 1;
6598 DECL_FUNCTION_CODE (decl) = function_code;
6599 }
6600 return decl;
6601 }
6602
6603 tree
6604 builtin_function (name, type, code, libname)
6605 const char *name;
6606 tree type;
6607 enum built_in_function code;
6608 const char *libname;
6609 {
6610 return define_function (name, type, code, (void (*) PROTO((tree)))pushdecl, libname);
6611 }
6612 \f
6613 /* When we call finish_struct for an anonymous union, we create
6614 default copy constructors and such. But, an anonymous union
6615 shouldn't have such things; this function undoes the damage to the
6616 anonymous union type T.
6617
6618 (The reason that we create the synthesized methods is that we don't
6619 distinguish `union { int i; }' from `typedef union { int i; } U'.
6620 The first is an anonymous union; the second is just an ordinary
6621 union type.) */
6622
6623 void
6624 fixup_anonymous_aggr (t)
6625 tree t;
6626 {
6627 tree *q;
6628
6629 /* Wipe out memory of synthesized methods */
6630 TYPE_HAS_CONSTRUCTOR (t) = 0;
6631 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
6632 TYPE_HAS_INIT_REF (t) = 0;
6633 TYPE_HAS_CONST_INIT_REF (t) = 0;
6634 TYPE_HAS_ASSIGN_REF (t) = 0;
6635 TYPE_HAS_CONST_ASSIGN_REF (t) = 0;
6636
6637 /* Splice the implicitly generated functions out of the TYPE_METHODS
6638 list. */
6639 q = &TYPE_METHODS (t);
6640 while (*q)
6641 {
6642 if (DECL_ARTIFICIAL (*q))
6643 *q = TREE_CHAIN (*q);
6644 else
6645 q = &TREE_CHAIN (*q);
6646 }
6647
6648 /* ANSI C++ June 5 1992 WP 9.5.3. Anonymous unions may not have
6649 function members. */
6650 if (TYPE_METHODS (t))
6651 error ("an anonymous union cannot have function members");
6652 }
6653
6654 /* Make sure that a declaration with no declarator is well-formed, i.e.
6655 just defines a tagged type or anonymous union.
6656
6657 Returns the type defined, if any. */
6658
6659 tree
6660 check_tag_decl (declspecs)
6661 tree declspecs;
6662 {
6663 int found_type = 0;
6664 tree ob_modifier = NULL_TREE;
6665 register tree link;
6666 register tree t = NULL_TREE;
6667
6668 for (link = declspecs; link; link = TREE_CHAIN (link))
6669 {
6670 register tree value = TREE_VALUE (link);
6671
6672 if (TYPE_P (value))
6673 {
6674 ++found_type;
6675
6676 if (IS_AGGR_TYPE (value) || TREE_CODE (value) == ENUMERAL_TYPE)
6677 {
6678 my_friendly_assert (TYPE_MAIN_DECL (value) != NULL_TREE, 261);
6679 t = value;
6680 }
6681 }
6682 else if (value == ridpointers[(int) RID_FRIEND])
6683 {
6684 if (current_class_type == NULL_TREE
6685 || current_scope () != current_class_type)
6686 ob_modifier = value;
6687 }
6688 else if (value == ridpointers[(int) RID_STATIC]
6689 || value == ridpointers[(int) RID_EXTERN]
6690 || value == ridpointers[(int) RID_AUTO]
6691 || value == ridpointers[(int) RID_REGISTER]
6692 || value == ridpointers[(int) RID_INLINE]
6693 || value == ridpointers[(int) RID_VIRTUAL]
6694 || value == ridpointers[(int) RID_CONST]
6695 || value == ridpointers[(int) RID_VOLATILE]
6696 || value == ridpointers[(int) RID_EXPLICIT])
6697 ob_modifier = value;
6698 }
6699
6700 if (found_type > 1)
6701 error ("multiple types in one declaration");
6702
6703 /* Inside a class, we might be in a friend or access declaration.
6704 Until we have a good way of detecting the latter, don't warn. */
6705 if (t == NULL_TREE && ! current_class_type)
6706 pedwarn ("declaration does not declare anything");
6707
6708 /* Check for an anonymous union. We're careful
6709 accessing TYPE_IDENTIFIER because some built-in types, like
6710 pointer-to-member types, do not have TYPE_NAME. */
6711 else if (t && IS_AGGR_TYPE_CODE (TREE_CODE (t))
6712 && TYPE_NAME (t)
6713 && ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
6714 {
6715 /* Anonymous unions are objects, so they can have specifiers. */;
6716 SET_ANON_AGGR_TYPE_P (t);
6717
6718 if (TREE_CODE (t) != UNION_TYPE && pedantic && ! in_system_header)
6719 pedwarn ("ISO C++ prohibits anonymous structs");
6720 }
6721
6722 else if (ob_modifier)
6723 {
6724 if (ob_modifier == ridpointers[(int) RID_INLINE]
6725 || ob_modifier == ridpointers[(int) RID_VIRTUAL])
6726 cp_error ("`%D' can only be specified for functions", ob_modifier);
6727 else if (ob_modifier == ridpointers[(int) RID_FRIEND])
6728 cp_error ("`%D' can only be specified inside a class", ob_modifier);
6729 else if (ob_modifier == ridpointers[(int) RID_EXPLICIT])
6730 cp_error ("`%D' can only be specified for constructors",
6731 ob_modifier);
6732 else
6733 cp_error ("`%D' can only be specified for objects and functions",
6734 ob_modifier);
6735 }
6736
6737 return t;
6738 }
6739
6740 /* Called when a declaration is seen that contains no names to declare.
6741 If its type is a reference to a structure, union or enum inherited
6742 from a containing scope, shadow that tag name for the current scope
6743 with a forward reference.
6744 If its type defines a new named structure or union
6745 or defines an enum, it is valid but we need not do anything here.
6746 Otherwise, it is an error.
6747
6748 C++: may have to grok the declspecs to learn about static,
6749 complain for anonymous unions. */
6750
6751 void
6752 shadow_tag (declspecs)
6753 tree declspecs;
6754 {
6755 tree t = check_tag_decl (declspecs);
6756
6757 if (t)
6758 maybe_process_partial_specialization (t);
6759
6760 /* This is where the variables in an anonymous union are
6761 declared. An anonymous union declaration looks like:
6762 union { ... } ;
6763 because there is no declarator after the union, the parser
6764 sends that declaration here. */
6765 if (t && ANON_AGGR_TYPE_P (t))
6766 {
6767 fixup_anonymous_aggr (t);
6768
6769 if (TYPE_FIELDS (t))
6770 {
6771 tree decl = grokdeclarator (NULL_TREE, declspecs, NORMAL, 0,
6772 NULL_TREE);
6773 finish_anon_union (decl);
6774 }
6775 }
6776 }
6777 \f
6778 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
6779
6780 tree
6781 groktypename (typename)
6782 tree typename;
6783 {
6784 if (TREE_CODE (typename) != TREE_LIST)
6785 return typename;
6786 return grokdeclarator (TREE_VALUE (typename),
6787 TREE_PURPOSE (typename),
6788 TYPENAME, 0, NULL_TREE);
6789 }
6790
6791 /* Decode a declarator in an ordinary declaration or data definition.
6792 This is called as soon as the type information and variable name
6793 have been parsed, before parsing the initializer if any.
6794 Here we create the ..._DECL node, fill in its type,
6795 and put it on the list of decls for the current context.
6796 The ..._DECL node is returned as the value.
6797
6798 Exception: for arrays where the length is not specified,
6799 the type is left null, to be filled in by `cp_finish_decl'.
6800
6801 Function definitions do not come here; they go to start_function
6802 instead. However, external and forward declarations of functions
6803 do go through here. Structure field declarations are done by
6804 grokfield and not through here. */
6805
6806 /* Set this to zero to debug not using the temporary obstack
6807 to parse initializers. */
6808 int debug_temp_inits = 1;
6809
6810 tree
6811 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
6812 tree declarator, declspecs;
6813 int initialized;
6814 tree attributes, prefix_attributes;
6815 {
6816 register tree decl;
6817 register tree type, tem;
6818 tree context;
6819 extern int have_extern_spec;
6820 extern int used_extern_spec;
6821 tree attrlist;
6822
6823 #if 0
6824 /* See code below that used this. */
6825 int init_written = initialized;
6826 #endif
6827
6828 /* This should only be done once on the top most decl. */
6829 if (have_extern_spec && !used_extern_spec)
6830 {
6831 declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"),
6832 declspecs);
6833 used_extern_spec = 1;
6834 }
6835
6836 if (attributes || prefix_attributes)
6837 attrlist = build_scratch_list (attributes, prefix_attributes);
6838 else
6839 attrlist = NULL_TREE;
6840
6841 decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
6842 attrlist);
6843
6844 if (decl == NULL_TREE || TREE_CODE (decl) == VOID_TYPE)
6845 return NULL_TREE;
6846
6847 type = TREE_TYPE (decl);
6848
6849 if (type == error_mark_node)
6850 return NULL_TREE;
6851
6852 /* Don't lose if destructors must be executed at file-level. */
6853 if (! processing_template_decl && TREE_STATIC (decl)
6854 && TYPE_NEEDS_DESTRUCTOR (complete_type (type))
6855 && !TREE_PERMANENT (decl))
6856 {
6857 push_obstacks (&permanent_obstack, &permanent_obstack);
6858 decl = copy_node (decl);
6859 if (TREE_CODE (type) == ARRAY_TYPE)
6860 {
6861 tree itype = TYPE_DOMAIN (type);
6862 if (itype && ! TREE_PERMANENT (itype))
6863 {
6864 itype = build_index_type (TYPE_MAX_VALUE (itype));
6865 type = build_cplus_array_type (TREE_TYPE (type), itype);
6866 TREE_TYPE (decl) = type;
6867 }
6868 }
6869 pop_obstacks ();
6870 }
6871
6872 context
6873 = (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
6874 ? DECL_CLASS_CONTEXT (decl)
6875 : DECL_CONTEXT (decl);
6876
6877 if (initialized && context && TREE_CODE (context) == NAMESPACE_DECL
6878 && context != current_namespace && TREE_CODE (decl) == VAR_DECL)
6879 {
6880 /* When parsing the initializer, lookup should use the object's
6881 namespace. */
6882 push_decl_namespace (context);
6883 }
6884
6885 /* We are only interested in class contexts, later. */
6886 if (context && TREE_CODE (context) == NAMESPACE_DECL)
6887 context = NULL_TREE;
6888
6889 if (initialized)
6890 /* Is it valid for this decl to have an initializer at all?
6891 If not, set INITIALIZED to zero, which will indirectly
6892 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
6893 switch (TREE_CODE (decl))
6894 {
6895 case TYPE_DECL:
6896 /* typedef foo = bar means give foo the same type as bar.
6897 We haven't parsed bar yet, so `cp_finish_decl' will fix that up.
6898 Any other case of an initialization in a TYPE_DECL is an error. */
6899 if (pedantic || list_length (declspecs) > 1)
6900 {
6901 cp_error ("typedef `%D' is initialized", decl);
6902 initialized = 0;
6903 }
6904 break;
6905
6906 case FUNCTION_DECL:
6907 cp_error ("function `%#D' is initialized like a variable", decl);
6908 initialized = 0;
6909 break;
6910
6911 default:
6912 break;
6913 }
6914
6915 if (initialized)
6916 {
6917 if (! toplevel_bindings_p ()
6918 && DECL_EXTERNAL (decl))
6919 cp_warning ("declaration of `%#D' has `extern' and is initialized",
6920 decl);
6921 DECL_EXTERNAL (decl) = 0;
6922 if (toplevel_bindings_p ())
6923 TREE_STATIC (decl) = 1;
6924
6925 /* Tell `pushdecl' this is an initialized decl
6926 even though we don't yet have the initializer expression.
6927 Also tell `cp_finish_decl' it may store the real initializer. */
6928 DECL_INITIAL (decl) = error_mark_node;
6929 }
6930
6931 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
6932 SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
6933 #endif
6934
6935 /* Set attributes here so if duplicate decl, will have proper attributes. */
6936 cplus_decl_attributes (decl, attributes, prefix_attributes);
6937
6938 if (context && TYPE_SIZE (complete_type (context)) != NULL_TREE)
6939 {
6940 push_nested_class (context, 2);
6941
6942 if (TREE_CODE (decl) == VAR_DECL)
6943 {
6944 tree field = lookup_field (context, DECL_NAME (decl), 0, 0);
6945 if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
6946 cp_error ("`%#D' is not a static member of `%#T'", decl, context);
6947 else
6948 {
6949 if (DECL_CONTEXT (field) != context)
6950 {
6951 cp_pedwarn ("ANSI C++ does not permit `%T::%D' to be defined as `%T::%D'",
6952 DECL_CONTEXT (field), DECL_NAME (decl),
6953 context, DECL_NAME (decl));
6954 DECL_CONTEXT (decl) = DECL_CONTEXT (field);
6955 }
6956 /* Static data member are tricky; an in-class initialization
6957 still doesn't provide a definition, so the in-class
6958 declaration will have DECL_EXTERNAL set, but will have an
6959 initialization. Thus, duplicate_decls won't warn
6960 about this situation, and so we check here. */
6961 if (DECL_INITIAL (decl) && DECL_INITIAL (field))
6962 cp_error ("duplicate initialization of %D", decl);
6963 if (duplicate_decls (decl, field))
6964 decl = field;
6965 }
6966 }
6967 else
6968 {
6969 tree field = check_classfn (context, decl);
6970 if (field && duplicate_decls (decl, field))
6971 decl = field;
6972 }
6973
6974 /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set. */
6975 DECL_IN_AGGR_P (decl) = 0;
6976 if ((DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
6977 || CLASSTYPE_USE_TEMPLATE (context))
6978 {
6979 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
6980 /* [temp.expl.spec] An explicit specialization of a static data
6981 member of a template is a definition if the declaration
6982 includes an initializer; otherwise, it is a declaration.
6983
6984 We check for processing_specialization so this only applies
6985 to the new specialization syntax. */
6986 if (DECL_INITIAL (decl) == NULL_TREE && processing_specialization)
6987 DECL_EXTERNAL (decl) = 1;
6988 }
6989
6990 if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl))
6991 cp_pedwarn ("declaration of `%#D' outside of class is not definition",
6992 decl);
6993 }
6994
6995 /* Enter this declaration into the symbol table. */
6996 tem = maybe_push_decl (decl);
6997
6998 if (processing_template_decl)
6999 {
7000 if (at_function_scope_p ())
7001 push_permanent_obstack ();
7002
7003 tem = push_template_decl (tem);
7004 /* In a a local scope, add a representation of this declaration
7005 to the statement tree. */
7006 if (at_function_scope_p ())
7007 {
7008 add_decl_stmt (decl);
7009 pop_obstacks ();
7010 }
7011 }
7012
7013
7014 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
7015 /* Tell the back-end to use or not use .common as appropriate. If we say
7016 -fconserve-space, we want this to save .data space, at the expense of
7017 wrong semantics. If we say -fno-conserve-space, we want this to
7018 produce errors about redefs; to do this we force variables into the
7019 data segment. */
7020 DECL_COMMON (tem) = flag_conserve_space || ! TREE_PUBLIC (tem);
7021 #endif
7022
7023 if (! processing_template_decl)
7024 start_decl_1 (tem);
7025
7026 /* Corresponding pop_obstacks is done in `cp_finish_decl'. */
7027 push_obstacks_nochange ();
7028
7029 return tem;
7030 }
7031
7032 void
7033 start_decl_1 (decl)
7034 tree decl;
7035 {
7036 tree type = TREE_TYPE (decl);
7037 int initialized = (DECL_INITIAL (decl) != NULL_TREE);
7038
7039 if (type == error_mark_node)
7040 return;
7041
7042 /* If this type of object needs a cleanup, and control may
7043 jump past it, make a new binding level so that it is cleaned
7044 up only when it is initialized first. */
7045 if (TYPE_NEEDS_DESTRUCTOR (type)
7046 && current_binding_level->more_cleanups_ok == 0)
7047 pushlevel_temporary (1);
7048
7049 if (initialized)
7050 /* Is it valid for this decl to have an initializer at all?
7051 If not, set INITIALIZED to zero, which will indirectly
7052 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
7053 {
7054 /* Don't allow initializations for incomplete types except for
7055 arrays which might be completed by the initialization. */
7056 if (TYPE_SIZE (complete_type (type)) != NULL_TREE)
7057 ; /* A complete type is ok. */
7058 else if (TREE_CODE (type) != ARRAY_TYPE)
7059 {
7060 cp_error ("variable `%#D' has initializer but incomplete type",
7061 decl);
7062 initialized = 0;
7063 type = TREE_TYPE (decl) = error_mark_node;
7064 }
7065 else if (TYPE_SIZE (complete_type (TREE_TYPE (type))) == NULL_TREE)
7066 {
7067 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
7068 cp_error ("elements of array `%#D' have incomplete type", decl);
7069 /* else we already gave an error in start_decl. */
7070 initialized = 0;
7071 }
7072 }
7073
7074 if (!initialized
7075 && TREE_CODE (decl) != TYPE_DECL
7076 && TREE_CODE (decl) != TEMPLATE_DECL
7077 && IS_AGGR_TYPE (type) && ! DECL_EXTERNAL (decl))
7078 {
7079 if ((! processing_template_decl || ! uses_template_parms (type))
7080 && TYPE_SIZE (complete_type (type)) == NULL_TREE)
7081 {
7082 cp_error ("aggregate `%#D' has incomplete type and cannot be initialized",
7083 decl);
7084 /* Change the type so that assemble_variable will give
7085 DECL an rtl we can live with: (mem (const_int 0)). */
7086 type = TREE_TYPE (decl) = error_mark_node;
7087 }
7088 else
7089 {
7090 /* If any base type in the hierarchy of TYPE needs a constructor,
7091 then we set initialized to 1. This way any nodes which are
7092 created for the purposes of initializing this aggregate
7093 will live as long as it does. This is necessary for global
7094 aggregates which do not have their initializers processed until
7095 the end of the file. */
7096 initialized = TYPE_NEEDS_CONSTRUCTING (type);
7097 }
7098 }
7099
7100 if (! initialized)
7101 DECL_INITIAL (decl) = NULL_TREE;
7102 }
7103
7104 /* Handle initialization of references.
7105 These three arguments are from `cp_finish_decl', and have the
7106 same meaning here that they do there.
7107
7108 Quotes on semantics can be found in ARM 8.4.3. */
7109
7110 static void
7111 grok_reference_init (decl, type, init)
7112 tree decl, type, init;
7113 {
7114 tree tmp;
7115
7116 if (init == NULL_TREE)
7117 {
7118 if ((DECL_LANG_SPECIFIC (decl) == 0
7119 || DECL_IN_AGGR_P (decl) == 0)
7120 && ! DECL_THIS_EXTERN (decl))
7121 {
7122 cp_error ("`%D' declared as reference but not initialized", decl);
7123 if (TREE_CODE (decl) == VAR_DECL)
7124 SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
7125 }
7126 return;
7127 }
7128
7129 if (init == error_mark_node)
7130 return;
7131
7132 if (TREE_CODE (type) == REFERENCE_TYPE
7133 && TREE_CODE (init) == CONSTRUCTOR)
7134 {
7135 cp_error ("ANSI C++ forbids use of initializer list to initialize reference `%D'", decl);
7136 return;
7137 }
7138
7139 if (TREE_CODE (init) == TREE_LIST)
7140 init = build_compound_expr (init);
7141
7142 if (TREE_CODE (TREE_TYPE (init)) == REFERENCE_TYPE)
7143 init = convert_from_reference (init);
7144
7145 if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
7146 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
7147 {
7148 /* Note: default conversion is only called in very special cases. */
7149 init = default_conversion (init);
7150 }
7151
7152 tmp = convert_to_reference
7153 (type, init, CONV_IMPLICIT,
7154 LOOKUP_SPECULATIVELY|LOOKUP_NORMAL|DIRECT_BIND, decl);
7155
7156 if (tmp == error_mark_node)
7157 goto fail;
7158 else if (tmp != NULL_TREE)
7159 {
7160 init = tmp;
7161 DECL_INITIAL (decl) = save_expr (init);
7162 }
7163 else
7164 {
7165 cp_error ("cannot initialize `%T' from `%T'", type, TREE_TYPE (init));
7166 goto fail;
7167 }
7168
7169 /* ?? Can this be optimized in some cases to
7170 hand back the DECL_INITIAL slot?? */
7171 if (TYPE_SIZE (TREE_TYPE (type)))
7172 {
7173 init = convert_from_reference (decl);
7174 SET_DECL_REFERENCE_SLOT (decl, init);
7175 }
7176
7177 if (TREE_STATIC (decl) && ! TREE_CONSTANT (DECL_INITIAL (decl)))
7178 {
7179 expand_static_init (decl, DECL_INITIAL (decl));
7180 DECL_INITIAL (decl) = NULL_TREE;
7181 }
7182 return;
7183
7184 fail:
7185 if (TREE_CODE (decl) == VAR_DECL)
7186 SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
7187 return;
7188 }
7189
7190 /* Fill in DECL_INITIAL with some magical value to prevent expand_decl from
7191 mucking with forces it does not comprehend (i.e. initialization with a
7192 constructor). If we are at global scope and won't go into COMMON, fill
7193 it in with a dummy CONSTRUCTOR to force the variable into .data;
7194 otherwise we can use error_mark_node. */
7195
7196 static tree
7197 obscure_complex_init (decl, init)
7198 tree decl, init;
7199 {
7200 if (! flag_no_inline && TREE_STATIC (decl))
7201 {
7202 if (extract_init (decl, init))
7203 return NULL_TREE;
7204 }
7205
7206 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
7207 if (toplevel_bindings_p () && ! DECL_COMMON (decl))
7208 DECL_INITIAL (decl) = build (CONSTRUCTOR, TREE_TYPE (decl), NULL_TREE,
7209 NULL_TREE);
7210 else
7211 #endif
7212 DECL_INITIAL (decl) = error_mark_node;
7213
7214 return init;
7215 }
7216
7217 /* When parsing `int a[] = {1, 2};' we don't know the size of the
7218 array until we finish parsing the initializer. If that's the
7219 situation we're in, update DECL accordingly. */
7220
7221 static void
7222 maybe_deduce_size_from_array_init (decl, init)
7223 tree decl;
7224 tree init;
7225 {
7226 tree type = TREE_TYPE (decl);
7227
7228 if (TREE_CODE (type) == ARRAY_TYPE
7229 && TYPE_DOMAIN (type) == NULL_TREE
7230 && TREE_CODE (decl) != TYPE_DECL)
7231 {
7232 int do_default
7233 = (TREE_STATIC (decl)
7234 /* Even if pedantic, an external linkage array
7235 may have incomplete type at first. */
7236 ? pedantic && ! DECL_EXTERNAL (decl)
7237 : !DECL_EXTERNAL (decl));
7238 tree initializer = init ? init : DECL_INITIAL (decl);
7239 int failure = complete_array_type (type, initializer, do_default);
7240
7241 if (failure == 1)
7242 cp_error ("initializer fails to determine size of `%D'", decl);
7243
7244 if (failure == 2)
7245 {
7246 if (do_default)
7247 cp_error ("array size missing in `%D'", decl);
7248 /* If a `static' var's size isn't known, make it extern as
7249 well as static, so it does not get allocated. If it's not
7250 `static', then don't mark it extern; finish_incomplete_decl
7251 will give it a default size and it will get allocated. */
7252 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
7253 DECL_EXTERNAL (decl) = 1;
7254 }
7255
7256 if (pedantic && TYPE_DOMAIN (type) != NULL_TREE
7257 && tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
7258 integer_zero_node))
7259 cp_error ("zero-size array `%D'", decl);
7260
7261 layout_decl (decl, 0);
7262 }
7263 }
7264
7265 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
7266 any appropriate error messages regarding the layout. INIT is a
7267 the initializer for DECL; returns a modified version. */
7268
7269 static tree
7270 layout_var_decl (decl, init)
7271 tree decl;
7272 tree init;
7273 {
7274 tree ttype = target_type (TREE_TYPE (decl));
7275
7276 /* If we haven't already layed out this declaration, and we know its
7277 type, do so now. Note that we must not call complete type for an
7278 external object because it's type might involve templates that we
7279 are not supposed to isntantiate yet. */
7280 if (!DECL_EXTERNAL (decl)
7281 && DECL_SIZE (decl) == NULL_TREE
7282 && TYPE_SIZE (complete_type (TREE_TYPE (decl))) != NULL_TREE)
7283 layout_decl (decl, 0);
7284
7285 if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
7286 {
7287 /* An automatic variable with an incomplete type: that is an error.
7288 Don't talk about array types here, since we took care of that
7289 message in grokdeclarator. */
7290 cp_error ("storage size of `%D' isn't known", decl);
7291 TREE_TYPE (decl) = error_mark_node;
7292 }
7293 else if (!DECL_EXTERNAL (decl) && IS_AGGR_TYPE (ttype))
7294 /* Let debugger know it should output info for this type. */
7295 note_debug_info_needed (ttype);
7296
7297 if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
7298 note_debug_info_needed (DECL_CONTEXT (decl));
7299
7300 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
7301 && DECL_SIZE (decl) != NULL_TREE
7302 && ! TREE_CONSTANT (DECL_SIZE (decl)))
7303 {
7304 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
7305 constant_expression_warning (DECL_SIZE (decl));
7306 else
7307 cp_error ("storage size of `%D' isn't constant", decl);
7308 }
7309
7310 return init;
7311 }
7312
7313 /* Return a cleanup for DECL, created on whatever obstack is
7314 appropriate. */
7315
7316 static tree
7317 build_cleanup_on_safe_obstack (decl)
7318 tree decl;
7319 {
7320 tree cleanup;
7321 tree type;
7322 int need_pop;
7323
7324 type = TREE_TYPE (decl);
7325
7326 /* Only variables get cleaned up. */
7327 if (TREE_CODE (decl) != VAR_DECL)
7328 return NULL_TREE;
7329
7330 /* And only things with destructors need cleaning up. */
7331 if (!TYPE_NEEDS_DESTRUCTOR (type))
7332 return NULL_TREE;
7333
7334 if (TREE_CODE (decl) == VAR_DECL &&
7335 (DECL_EXTERNAL (decl) || TREE_STATIC (decl)))
7336 /* We don't clean up things that aren't defined in this
7337 translation unit, or that need a static cleanup. The latter
7338 are handled by finish_file. */
7339 return NULL_TREE;
7340
7341 /* Switch to an obstack that will live until the point where the
7342 cleanup code is actually expanded. */
7343 need_pop = suspend_momentary ();
7344
7345 /* Compute the cleanup. */
7346 cleanup = maybe_build_cleanup (decl);
7347
7348 /* Pop back to the obstack we were on before. */
7349 resume_momentary (need_pop);
7350
7351 return cleanup;
7352 }
7353
7354 /* If a local static variable is declared in an inline function, or if
7355 we have a weak definition, we must endeavor to create only one
7356 instance of the variable at link-time. */
7357
7358 static void
7359 maybe_commonize_var (decl)
7360 tree decl;
7361 {
7362 /* Static data in a function with comdat linkage also has comdat
7363 linkage. */
7364 if (TREE_STATIC (decl)
7365 /* Don't mess with __FUNCTION__. */
7366 && ! TREE_ASM_WRITTEN (decl)
7367 && current_function_decl
7368 && DECL_CONTEXT (decl) == current_function_decl
7369 && (DECL_THIS_INLINE (current_function_decl)
7370 || DECL_TEMPLATE_INSTANTIATION (current_function_decl))
7371 && TREE_PUBLIC (current_function_decl))
7372 {
7373 /* Rather than try to get this right with inlining, we suppress
7374 inlining of such functions. */
7375 current_function_cannot_inline
7376 = "function with static variable cannot be inline";
7377
7378 /* If flag_weak, we don't need to mess with this, as we can just
7379 make the function weak, and let it refer to its unique local
7380 copy. This works because we don't allow the function to be
7381 inlined. */
7382 if (! flag_weak)
7383 {
7384 if (DECL_INTERFACE_KNOWN (current_function_decl))
7385 {
7386 TREE_PUBLIC (decl) = 1;
7387 DECL_EXTERNAL (decl) = DECL_EXTERNAL (current_function_decl);
7388 }
7389 else if (DECL_INITIAL (decl) == NULL_TREE
7390 || DECL_INITIAL (decl) == error_mark_node)
7391 {
7392 TREE_PUBLIC (decl) = 1;
7393 DECL_COMMON (decl) = 1;
7394 }
7395 /* else we lose. We can only do this if we can use common,
7396 which we can't if it has been initialized. */
7397
7398 if (TREE_PUBLIC (decl))
7399 DECL_ASSEMBLER_NAME (decl)
7400 = build_static_name (current_function_decl, DECL_NAME (decl));
7401 else if (! DECL_ARTIFICIAL (decl))
7402 {
7403 cp_warning_at ("sorry: semantics of inline function static data `%#D' are wrong (you'll wind up with multiple copies)", decl);
7404 cp_warning_at (" you can work around this by removing the initializer", decl);
7405 }
7406 }
7407 }
7408 else if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
7409 /* Set it up again; we might have set DECL_INITIAL since the last
7410 time. */
7411 comdat_linkage (decl);
7412 }
7413
7414 /* Issue an error message if DECL is an uninitialized const variable. */
7415
7416 static void
7417 check_for_uninitialized_const_var (decl)
7418 tree decl;
7419 {
7420 tree type = TREE_TYPE (decl);
7421
7422 /* ``Unless explicitly declared extern, a const object does not have
7423 external linkage and must be initialized. ($8.4; $12.1)'' ARM
7424 7.1.6 */
7425 if (TREE_CODE (decl) == VAR_DECL
7426 && TREE_CODE (type) != REFERENCE_TYPE
7427 && CP_TYPE_CONST_P (type)
7428 && !TYPE_NEEDS_CONSTRUCTING (type)
7429 && !DECL_INITIAL (decl))
7430 cp_error ("uninitialized const `%D'", decl);
7431 }
7432
7433 /* Verify INIT (the initializer for DECL), and record the
7434 initialization in DECL_INITIAL, if appropriate. Returns a new
7435 value for INIT. */
7436
7437 static tree
7438 check_initializer (decl, init)
7439 tree decl;
7440 tree init;
7441 {
7442 tree type;
7443
7444 if (TREE_CODE (decl) == FIELD_DECL)
7445 return init;
7446
7447 type = TREE_TYPE (decl);
7448
7449 /* If `start_decl' didn't like having an initialization, ignore it now. */
7450 if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
7451 init = NULL_TREE;
7452
7453 /* Check the initializer. */
7454 if (init)
7455 {
7456 /* Things that are going to be initialized need to have complete
7457 type. */
7458 TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
7459
7460 if (type == error_mark_node)
7461 /* We will have already complained. */
7462 init = NULL_TREE;
7463 else if (TYPE_SIZE (type) && !TREE_CONSTANT (TYPE_SIZE (type)))
7464 {
7465 cp_error ("variable-sized object `%D' may not be initialized", decl);
7466 init = NULL_TREE;
7467 }
7468 else if (TREE_CODE (type) == ARRAY_TYPE
7469 && !TYPE_SIZE (TREE_TYPE (type)))
7470 {
7471 cp_error ("elements of array `%#D' have incomplete type", decl);
7472 init = NULL_TREE;
7473 }
7474 else if (!TYPE_SIZE (type))
7475 {
7476 cp_error ("`%D' has incomplete type", decl);
7477 TREE_TYPE (decl) = error_mark_node;
7478 init = NULL_TREE;
7479 }
7480 }
7481
7482 if (TREE_CODE (decl) == CONST_DECL)
7483 {
7484 my_friendly_assert (TREE_CODE (decl) != REFERENCE_TYPE, 148);
7485
7486 DECL_INITIAL (decl) = init;
7487
7488 /* This will keep us from needing to worry about our obstacks. */
7489 my_friendly_assert (init != NULL_TREE, 149);
7490 init = NULL_TREE;
7491 }
7492 else if (!DECL_EXTERNAL (decl) && TREE_CODE (type) == REFERENCE_TYPE)
7493 {
7494 if (TREE_STATIC (decl))
7495 make_decl_rtl (decl, NULL_PTR, toplevel_bindings_p ());
7496 grok_reference_init (decl, type, init);
7497 init = NULL_TREE;
7498 }
7499 else if (init)
7500 {
7501 if (TYPE_HAS_CONSTRUCTOR (type) || TYPE_NEEDS_CONSTRUCTING (type))
7502 {
7503 if (TREE_CODE (type) == ARRAY_TYPE)
7504 init = digest_init (type, init, (tree *) 0);
7505 else if (TREE_CODE (init) == CONSTRUCTOR
7506 && TREE_HAS_CONSTRUCTOR (init))
7507 {
7508 if (TYPE_NON_AGGREGATE_CLASS (type))
7509 {
7510 cp_error ("`%D' must be initialized by constructor, not by `{...}'",
7511 decl);
7512 init = error_mark_node;
7513 }
7514 else
7515 goto dont_use_constructor;
7516 }
7517 }
7518 else
7519 {
7520 dont_use_constructor:
7521 if (TREE_CODE (init) != TREE_VEC)
7522 init = store_init_value (decl, init);
7523 }
7524
7525 if (init)
7526 /* We must hide the initializer so that expand_decl
7527 won't try to do something it does not understand. */
7528 init = obscure_complex_init (decl, init);
7529 }
7530 else if (DECL_EXTERNAL (decl))
7531 ;
7532 else if (TREE_CODE_CLASS (TREE_CODE (type)) == 't'
7533 && (IS_AGGR_TYPE (type) || TYPE_NEEDS_CONSTRUCTING (type)))
7534 {
7535 tree core_type = strip_array_types (type);
7536
7537 if (! TYPE_NEEDS_CONSTRUCTING (core_type))
7538 {
7539 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type))
7540 cp_error ("structure `%D' with uninitialized const members", decl);
7541 if (CLASSTYPE_REF_FIELDS_NEED_INIT (core_type))
7542 cp_error ("structure `%D' with uninitialized reference members",
7543 decl);
7544 }
7545
7546 check_for_uninitialized_const_var (decl);
7547
7548 if (TYPE_SIZE (type) != NULL_TREE
7549 && TYPE_NEEDS_CONSTRUCTING (type))
7550 init = obscure_complex_init (decl, NULL_TREE);
7551
7552 }
7553 else
7554 check_for_uninitialized_const_var (decl);
7555
7556 return init;
7557 }
7558
7559 /* If DECL is not a local variable, give it RTL. */
7560
7561 static void
7562 make_rtl_for_nonlocal_decl (decl, init, asmspec)
7563 tree decl;
7564 tree init;
7565 const char *asmspec;
7566 {
7567 int toplev;
7568 tree type;
7569
7570 type = TREE_TYPE (decl);
7571 toplev = toplevel_bindings_p ();
7572 push_obstacks_nochange ();
7573 if (TREE_STATIC (decl)
7574 && TYPE_NEEDS_DESTRUCTOR (type)
7575 && allocation_temporary_p ())
7576 end_temporary_allocation ();
7577
7578 if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
7579 make_decl_rtl (decl, NULL_PTR, toplev);
7580 else if (TREE_CODE (decl) == VAR_DECL
7581 && TREE_READONLY (decl)
7582 && DECL_INITIAL (decl) != NULL_TREE
7583 && DECL_INITIAL (decl) != error_mark_node
7584 && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
7585 {
7586 DECL_INITIAL (decl) = save_expr (DECL_INITIAL (decl));
7587
7588 if (asmspec)
7589 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
7590
7591 if (! toplev
7592 && TREE_STATIC (decl)
7593 && ! TREE_SIDE_EFFECTS (decl)
7594 && ! TREE_PUBLIC (decl)
7595 && ! DECL_EXTERNAL (decl)
7596 && ! TYPE_NEEDS_DESTRUCTOR (type)
7597 && DECL_MODE (decl) != BLKmode)
7598 {
7599 /* If this variable is really a constant, then fill its DECL_RTL
7600 slot with something which won't take up storage.
7601 If something later should take its address, we can always give
7602 it legitimate RTL at that time. */
7603 DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
7604 store_expr (DECL_INITIAL (decl), DECL_RTL (decl), 0);
7605 TREE_ASM_WRITTEN (decl) = 1;
7606 }
7607 else if (toplev && ! TREE_PUBLIC (decl))
7608 {
7609 /* If this is a static const, change its apparent linkage
7610 if it belongs to a #pragma interface. */
7611 if (!interface_unknown)
7612 {
7613 TREE_PUBLIC (decl) = 1;
7614 DECL_EXTERNAL (decl) = interface_only;
7615 }
7616 make_decl_rtl (decl, asmspec, toplev);
7617 }
7618 else
7619 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
7620 }
7621 else if (TREE_CODE (decl) == VAR_DECL
7622 && DECL_LANG_SPECIFIC (decl)
7623 && DECL_IN_AGGR_P (decl))
7624 {
7625 my_friendly_assert (TREE_STATIC (decl), 19990828);
7626
7627 if (init == NULL_TREE
7628 #ifdef DEFAULT_STATIC_DEFS
7629 /* If this code is dead, then users must
7630 explicitly declare static member variables
7631 outside the class def'n as well. */
7632 && TYPE_NEEDS_CONSTRUCTING (type)
7633 #endif
7634 )
7635 {
7636 DECL_EXTERNAL (decl) = 1;
7637 make_decl_rtl (decl, asmspec, 1);
7638 }
7639 else
7640 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
7641 }
7642 else
7643 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
7644
7645 pop_obstacks ();
7646 }
7647
7648 /* The old ARM scoping rules injected variables declared in the
7649 initialization statement of a for-statement into the surrounding
7650 scope. We support this usage, in order to be backward-compatible.
7651 DECL is a just-declared VAR_DECL; if necessary inject its
7652 declaration into the surrounding scope. */
7653
7654 void
7655 maybe_inject_for_scope_var (decl)
7656 tree decl;
7657 {
7658 if (current_binding_level->is_for_scope)
7659 {
7660 struct binding_level *outer
7661 = current_binding_level->level_chain;
7662
7663 /* Check to see if the same name is already bound at the outer
7664 level, either because it was directly declared, or because a
7665 dead for-decl got preserved. In either case, the code would
7666 not have been valid under the ARM scope rules, so clear
7667 is_for_scope for the current_binding_level.
7668
7669 Otherwise, we need to preserve the temp slot for decl to last
7670 into the outer binding level. */
7671
7672 tree outer_binding
7673 = TREE_CHAIN (IDENTIFIER_BINDING (DECL_NAME (decl)));
7674
7675 if (outer_binding && BINDING_LEVEL (outer_binding) == outer
7676 && (TREE_CODE (BINDING_VALUE (outer_binding))
7677 == VAR_DECL)
7678 && DECL_DEAD_FOR_LOCAL (BINDING_VALUE (outer_binding)))
7679 {
7680 BINDING_VALUE (outer_binding)
7681 = DECL_SHADOWED_FOR_VAR (BINDING_VALUE (outer_binding));
7682 current_binding_level->is_for_scope = 0;
7683 }
7684 else if (DECL_IN_MEMORY_P (decl))
7685 preserve_temp_slots (DECL_RTL (decl));
7686 }
7687 }
7688
7689 /* Generate code to initialized DECL (a local variable). */
7690
7691 void
7692 initialize_local_var (decl, init, flags)
7693 tree decl;
7694 tree init;
7695 int flags;
7696 {
7697 tree type;
7698 tree cleanup;
7699
7700 type = complete_type (TREE_TYPE (decl));
7701
7702 cleanup = build_cleanup_on_safe_obstack (decl);
7703
7704 if (DECL_SIZE (decl) == NULL_TREE && !TREE_STATIC (decl))
7705 {
7706 /* If we used it already as memory, it must stay in memory. */
7707 DECL_INITIAL (decl) = NULL_TREE;
7708 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
7709 }
7710
7711 if (DECL_RTL (decl))
7712 /* Only a RESULT_DECL should have non-NULL RTL when arriving here.
7713 All other local variables are assigned RTL in this function. */
7714 my_friendly_assert (TREE_CODE (decl) == RESULT_DECL, 19990828);
7715 else
7716 /* Create RTL for this variable. */
7717 expand_decl (decl);
7718
7719 expand_start_target_temps ();
7720
7721 if (DECL_SIZE (decl) && type != error_mark_node)
7722 {
7723 int already_used;
7724
7725 /* Compute and store the initial value. */
7726 already_used = TREE_USED (decl) || TREE_USED (type);
7727
7728 if (init || TYPE_NEEDS_CONSTRUCTING (type))
7729 {
7730 emit_line_note (DECL_SOURCE_FILE (decl),
7731 DECL_SOURCE_LINE (decl));
7732 /* We call push_momentary here so that when
7733 finish_expr_stmt clears the momentary obstack it
7734 doesn't destory any momentary expressions we may
7735 have lying around. Although cp_finish_decl is
7736 usually called at the end of a declaration
7737 statement, it may also be called for a temporary
7738 object in the middle of an expression. */
7739 push_momentary ();
7740 finish_expr_stmt (build_aggr_init (decl, init, flags));
7741 pop_momentary ();
7742 }
7743 else
7744 expand_decl_init (decl);
7745
7746 /* Set this to 0 so we can tell whether an aggregate which was
7747 initialized was ever used. Don't do this if it has a
7748 destructor, so we don't complain about the 'resource
7749 allocation is initialization' idiom. Now set
7750 attribute((unused)) on types so decls of that type will be
7751 marked used. (see TREE_USED, above.) */
7752 if (TYPE_NEEDS_CONSTRUCTING (type)
7753 && ! already_used
7754 && cleanup == NULL_TREE
7755 && DECL_NAME (decl))
7756 TREE_USED (decl) = 0;
7757 else if (already_used)
7758 TREE_USED (decl) = 1;
7759 }
7760
7761 /* Cleanup any temporaries needed for the initial value. */
7762 expand_end_target_temps ();
7763
7764 /* Record the cleanup required for this declaration. */
7765 if (DECL_SIZE (decl)
7766 && type != error_mark_node
7767 && cleanup
7768 && !expand_decl_cleanup (decl, cleanup))
7769 cp_error ("parser lost in parsing declaration of `%D'", decl);
7770 }
7771
7772 /* Finish processing of a declaration;
7773 install its line number and initial value.
7774 If the length of an array type is not known before,
7775 it must be determined now, from the initial value, or it is an error.
7776
7777 Call `pop_obstacks' iff NEED_POP is nonzero.
7778
7779 For C++, `cp_finish_decl' must be fairly evasive: it must keep initializers
7780 for aggregates that have constructors alive on the permanent obstack,
7781 so that the global initializing functions can be written at the end.
7782
7783 INIT0 holds the value of an initializer that should be allowed to escape
7784 the normal rules.
7785
7786 FLAGS is LOOKUP_ONLYCONVERTING is the = init syntax was used, else 0
7787 if the (init) syntax was used.
7788
7789 For functions that take default parameters, DECL points to its
7790 "maximal" instantiation. `cp_finish_decl' must then also declared its
7791 subsequently lower and lower forms of instantiation, checking for
7792 ambiguity as it goes. This can be sped up later. */
7793
7794 void
7795 cp_finish_decl (decl, init, asmspec_tree, need_pop, flags)
7796 tree decl, init;
7797 tree asmspec_tree;
7798 int need_pop;
7799 int flags;
7800 {
7801 register tree type;
7802 tree ttype = NULL_TREE;
7803 int temporary = allocation_temporary_p ();
7804 const char *asmspec = NULL;
7805 int was_readonly = 0;
7806
7807 /* If this is 0, then we did not change obstacks. */
7808 if (! decl)
7809 {
7810 if (init)
7811 error ("assignment (not initialization) in declaration");
7812 return;
7813 }
7814
7815 /* If a name was specified, get the string. */
7816 if (asmspec_tree)
7817 asmspec = TREE_STRING_POINTER (asmspec_tree);
7818
7819 if (init && TREE_CODE (init) == NAMESPACE_DECL)
7820 {
7821 cp_error ("Cannot initialize `%D' to namespace `%D'",
7822 decl, init);
7823 init = NULL_TREE;
7824 }
7825
7826 if (current_class_type
7827 && DECL_REAL_CONTEXT (decl) == current_class_type
7828 && TYPE_BEING_DEFINED (current_class_type)
7829 && (DECL_INITIAL (decl) || init))
7830 DECL_DEFINED_IN_CLASS_P (decl) = 1;
7831
7832 if (TREE_CODE (decl) == VAR_DECL
7833 && DECL_CONTEXT (decl)
7834 && TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL
7835 && DECL_CONTEXT (decl) != current_namespace
7836 && init)
7837 {
7838 /* Leave the namespace of the object. */
7839 pop_decl_namespace ();
7840 }
7841
7842 type = TREE_TYPE (decl);
7843
7844 if (type == error_mark_node)
7845 {
7846 if (toplevel_bindings_p () && temporary)
7847 end_temporary_allocation ();
7848
7849 return;
7850 }
7851
7852 if (TYPE_HAS_MUTABLE_P (type))
7853 TREE_READONLY (decl) = 0;
7854
7855 if (processing_template_decl)
7856 {
7857 if (init && DECL_INITIAL (decl))
7858 DECL_INITIAL (decl) = init;
7859 goto finish_end0;
7860 }
7861
7862 /* Parameters are handled by store_parm_decls, not cp_finish_decl. */
7863 my_friendly_assert (TREE_CODE (decl) != PARM_DECL, 19990828);
7864
7865 /* Take care of TYPE_DECLs up front. */
7866 if (TREE_CODE (decl) == TYPE_DECL)
7867 {
7868 if (init && DECL_INITIAL (decl))
7869 {
7870 /* typedef foo = bar; store the type of bar as the type of foo. */
7871 TREE_TYPE (decl) = type = TREE_TYPE (init);
7872 DECL_INITIAL (decl) = init = NULL_TREE;
7873 }
7874 if (type != error_mark_node
7875 && IS_AGGR_TYPE (type) && DECL_NAME (decl))
7876 {
7877 if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
7878 cp_warning ("shadowing previous type declaration of `%#D'", decl);
7879 set_identifier_type_value (DECL_NAME (decl), type);
7880 CLASSTYPE_GOT_SEMICOLON (type) = 1;
7881 }
7882 GNU_xref_decl (current_function_decl, decl);
7883
7884 /* If we have installed this as the canonical typedef for this
7885 type, and that type has not been defined yet, delay emitting
7886 the debug information for it, as we will emit it later. */
7887 if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
7888 && TYPE_SIZE (TREE_TYPE (decl)) == NULL_TREE)
7889 TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
7890
7891 rest_of_decl_compilation (decl, NULL_PTR,
7892 DECL_CONTEXT (decl) == NULL_TREE, at_eof);
7893 goto finish_end;
7894 }
7895
7896 if (TREE_CODE (decl) != FUNCTION_DECL)
7897 ttype = target_type (type);
7898
7899 if (! DECL_EXTERNAL (decl) && TREE_READONLY (decl)
7900 && TYPE_NEEDS_CONSTRUCTING (type))
7901 {
7902 /* Currently, GNU C++ puts constants in text space, making them
7903 impossible to initialize. In the future, one would hope for
7904 an operating system which understood the difference between
7905 initialization and the running of a program. */
7906 was_readonly = 1;
7907 TREE_READONLY (decl) = 0;
7908 }
7909
7910 if (TREE_CODE (decl) == FIELD_DECL && asmspec)
7911 {
7912 /* This must override the asm specifier which was placed by
7913 grokclassfn. Lay this out fresh. */
7914 DECL_RTL (TREE_TYPE (decl)) = NULL_RTX;
7915 DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
7916 make_decl_rtl (decl, asmspec, 0);
7917 }
7918
7919 /* Deduce size of array from initialization, if not already known. */
7920 maybe_deduce_size_from_array_init (decl, init);
7921 init = check_initializer (decl, init);
7922
7923 GNU_xref_decl (current_function_decl, decl);
7924
7925 /* For top-level declaration, the initial value was read in
7926 the temporary obstack. MAXINDEX, rtl, etc. to be made below
7927 must go in the permanent obstack; but don't discard the
7928 temporary data yet. */
7929
7930 if (toplevel_bindings_p () && temporary)
7931 end_temporary_allocation ();
7932
7933 if (TREE_CODE (decl) == VAR_DECL)
7934 init = layout_var_decl (decl, init);
7935
7936 /* Output the assembler code and/or RTL code for variables and functions,
7937 unless the type is an undefined structure or union.
7938 If not, it will get done when the type is completed. */
7939 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL
7940 || TREE_CODE (decl) == RESULT_DECL)
7941 {
7942 /* ??? FIXME: What about nested classes? */
7943 int toplev = toplevel_bindings_p ();
7944
7945 if (TREE_CODE (decl) == VAR_DECL)
7946 maybe_commonize_var (decl);
7947
7948 make_rtl_for_nonlocal_decl (decl, init, asmspec);
7949
7950 if (TREE_CODE (type) == FUNCTION_TYPE
7951 || TREE_CODE (type) == METHOD_TYPE)
7952 abstract_virtuals_error (decl,
7953 strip_array_types (TREE_TYPE (type)));
7954 else
7955 abstract_virtuals_error (decl, strip_array_types (type));
7956
7957 if (TREE_CODE (decl) == FUNCTION_DECL)
7958 ;
7959 else if (DECL_EXTERNAL (decl)
7960 && ! (DECL_LANG_SPECIFIC (decl)
7961 && DECL_NOT_REALLY_EXTERN (decl)))
7962 {
7963 if (init)
7964 DECL_INITIAL (decl) = init;
7965 }
7966 else if (TREE_STATIC (decl) && type != error_mark_node)
7967 {
7968 /* Cleanups for static variables are handled by `finish_file'. */
7969 if (TYPE_NEEDS_CONSTRUCTING (type) || init != NULL_TREE
7970 || TYPE_NEEDS_DESTRUCTOR (type))
7971 expand_static_init (decl, init);
7972 }
7973 else if (! toplev)
7974 {
7975 /* This is a local declaration. */
7976 maybe_inject_for_scope_var (decl);
7977 /* Initialize the local variable. But, if we're building a
7978 statement-tree, we'll do the initialization when we
7979 expand the tree. */
7980 if (!building_stmt_tree ())
7981 initialize_local_var (decl, init, flags);
7982 else if (init || DECL_INITIAL (decl) == error_mark_node)
7983 DECL_INITIAL (decl) = init;
7984 }
7985 finish_end0:
7986
7987 /* Undo call to `pushclass' that was done in `start_decl'
7988 due to initialization of qualified member variable.
7989 I.e., Foo::x = 10; */
7990 {
7991 tree context = DECL_REAL_CONTEXT (decl);
7992 if (context
7993 && TREE_CODE_CLASS (TREE_CODE (context)) == 't'
7994 && (TREE_CODE (decl) == VAR_DECL
7995 /* We also have a pushclass done that we need to undo here
7996 if we're at top level and declare a method. */
7997 || TREE_CODE (decl) == FUNCTION_DECL)
7998 /* If size hasn't been set, we're still defining it,
7999 and therefore inside the class body; don't pop
8000 the binding level.. */
8001 && TYPE_SIZE (context) != NULL_TREE
8002 && context == current_class_type)
8003 pop_nested_class ();
8004 }
8005 }
8006
8007 finish_end:
8008
8009 /* If requested, warn about definitions of large data objects. */
8010
8011 if (warn_larger_than
8012 && ! processing_template_decl
8013 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
8014 && !DECL_EXTERNAL (decl))
8015 {
8016 register tree decl_size = DECL_SIZE (decl);
8017
8018 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
8019 {
8020 unsigned units = TREE_INT_CST_LOW (decl_size) / BITS_PER_UNIT;
8021
8022 if (units > larger_than_size)
8023 warning_with_decl (decl, "size of `%s' is %u bytes", units);
8024 }
8025 }
8026
8027 if (need_pop)
8028 /* Resume permanent allocation, if not within a function. The
8029 corresponding push_obstacks_nochange is in start_decl,
8030 start_method, groktypename, and in grokfield. */
8031 pop_obstacks ();
8032
8033 if (was_readonly)
8034 TREE_READONLY (decl) = 1;
8035 }
8036
8037 /* This is here for a midend callback from c-common.c */
8038
8039 void
8040 finish_decl (decl, init, asmspec_tree)
8041 tree decl, init;
8042 tree asmspec_tree;
8043 {
8044 cp_finish_decl (decl, init, asmspec_tree, 1, 0);
8045 }
8046
8047 /* Generate code to handle the destruction of the function-scoped
8048 static variable DECL. */
8049
8050 static void
8051 destroy_local_static (decl)
8052 tree decl;
8053 {
8054 tree cleanup, fcall;
8055 tree compound_stmt;
8056 int saved_flag_access_control;
8057
8058 if (atexit_node == 0)
8059 {
8060 tree atexit_fndecl, PFV, pfvlist;
8061 /* Remember this information until end of file. */
8062 push_obstacks (&permanent_obstack, &permanent_obstack);
8063 PFV = build_pointer_type (build_function_type
8064 (void_type_node, void_list_node));
8065
8066 pfvlist = tree_cons (NULL_TREE, PFV, void_list_node);
8067
8068 push_lang_context (lang_name_c);
8069 /* Note that we do not call pushdecl for this function;
8070 there's no reason that this declaration should be
8071 accessible to anyone. */
8072 atexit_fndecl
8073 = define_function ("atexit",
8074 build_function_type (void_type_node,
8075 pfvlist),
8076 NOT_BUILT_IN,
8077 /*pfn=*/0,
8078 NULL_PTR);
8079 mark_used (atexit_fndecl);
8080 atexit_node = default_conversion (atexit_fndecl);
8081 pop_lang_context ();
8082 pop_obstacks ();
8083 }
8084
8085 /* Call build_cleanup before we enter the anonymous function so that
8086 any access checks will be done relative to the current scope,
8087 rather than the scope of the anonymous function. */
8088 build_cleanup (decl);
8089
8090 /* Now start the function. */
8091 cleanup = start_anon_func ();
8092
8093 /* Now, recompute the cleanup. It may contain SAVE_EXPRs that refer
8094 to the original function, rather than the anonymous one. That
8095 will make the back-end think that nested functions are in use,
8096 which causes confusion. */
8097 saved_flag_access_control = flag_access_control;
8098 flag_access_control = 0;
8099 fcall = build_cleanup (decl);
8100 flag_access_control = saved_flag_access_control;
8101
8102 /* Create the body of the anonymous function. */
8103 compound_stmt = begin_compound_stmt (/*has_no_scope=*/0);
8104 finish_expr_stmt (fcall);
8105 finish_compound_stmt (/*has_no_scope=*/0, compound_stmt);
8106 end_anon_func ();
8107
8108 /* Call atexit with the cleanup function. */
8109 mark_addressable (cleanup);
8110 cleanup = build_unary_op (ADDR_EXPR, cleanup, 0);
8111 fcall = build_function_call (atexit_node,
8112 tree_cons (NULL_TREE,
8113 cleanup,
8114 NULL_TREE));
8115 finish_expr_stmt (fcall);
8116 }
8117
8118 void
8119 expand_static_init (decl, init)
8120 tree decl;
8121 tree init;
8122 {
8123 tree oldstatic = value_member (decl, static_aggregates);
8124
8125 if (oldstatic)
8126 {
8127 if (TREE_PURPOSE (oldstatic) && init != NULL_TREE)
8128 cp_error ("multiple initializations given for `%D'", decl);
8129 }
8130 else if (! toplevel_bindings_p ())
8131 {
8132 /* Emit code to perform this initialization but once. */
8133 tree temp;
8134 tree if_stmt;
8135 tree then_clause;
8136 tree assignment;
8137 tree temp_init;
8138
8139 /* Remember this information until end of file. */
8140 push_obstacks (&permanent_obstack, &permanent_obstack);
8141
8142 /* Emit code to perform this initialization but once. This code
8143 looks like:
8144
8145 static int temp = 0;
8146 if (!temp) {
8147 // Do initialization.
8148 temp = 1;
8149 // Register variable for destruction at end of program.
8150 }
8151
8152 Note that the `temp' variable is only set to 1 *after* the
8153 initialization is complete. This ensures that an exception,
8154 thrown during the construction, will cause the variable to
8155 reinitialized when we pass through this code again, as per:
8156
8157 [stmt.dcl]
8158
8159 If the initialization exits by throwing an exception, the
8160 initialization is not complete, so it will be tried again
8161 the next time control enters the declaration.
8162
8163 In theory, this process should be thread-safe, too; multiple
8164 threads should not be able to initialize the variable more
8165 than once. We don't yet attempt to ensure thread-safety. */
8166 temp = get_temp_name (integer_type_node, 1);
8167 rest_of_decl_compilation (temp, NULL_PTR, 0, 0);
8168
8169 /* Begin the conditional initialization. */
8170 if_stmt = begin_if_stmt ();
8171 finish_if_stmt_cond (build_binary_op (EQ_EXPR, temp,
8172 integer_zero_node),
8173 if_stmt);
8174 then_clause = begin_compound_stmt (/*has_no_scope=*/0);
8175
8176 /* Do the initialization itself. */
8177 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
8178 || (init && TREE_CODE (init) == TREE_LIST))
8179 assignment = build_aggr_init (decl, init, 0);
8180 else if (init)
8181 /* The initialization we're doing here is just a bitwise
8182 copy. */
8183 assignment = build (INIT_EXPR, TREE_TYPE (decl), decl, init);
8184 else
8185 assignment = NULL_TREE;
8186
8187 /* Once the assignment is complete, set TEMP to 1. Since the
8188 construction of the static object is complete at this point,
8189 we want to make sure TEMP is set to 1 even if a temporary
8190 constructed during the initialization throws an exception
8191 when it is destroyed. So, we combine the initialization and
8192 the assignment to TEMP into a single expression, ensuring
8193 that when we call finish_expr_stmt the cleanups will not be
8194 run until after TEMP is set to 1. */
8195 temp_init = build_modify_expr (temp, NOP_EXPR, integer_one_node);
8196 if (assignment)
8197 {
8198 assignment = tree_cons (NULL_TREE, assignment,
8199 build_tree_list (NULL_TREE,
8200 temp_init));
8201 assignment = build_compound_expr (assignment);
8202 }
8203 else
8204 assignment = temp_init;
8205 finish_expr_stmt (assignment);
8206
8207 /* Use atexit to register a function for destroying this static
8208 variable. */
8209 if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (decl)))
8210 destroy_local_static (decl);
8211
8212 finish_compound_stmt (/*has_no_scope=*/0, then_clause);
8213 finish_then_clause (if_stmt);
8214 finish_if_stmt ();
8215
8216 /* Resume old (possibly temporary) allocation. */
8217 pop_obstacks ();
8218 }
8219 else
8220 {
8221 /* This code takes into account memory allocation policy of
8222 `start_decl'. Namely, if TYPE_NEEDS_CONSTRUCTING does not
8223 hold for this object, then we must make permanent the storage
8224 currently in the temporary obstack. */
8225 if (!TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
8226 preserve_initializer ();
8227 static_aggregates = tree_cons (init, decl, static_aggregates);
8228 }
8229 }
8230
8231 /* Finish the declaration of a catch-parameter. */
8232
8233 void
8234 start_handler_parms (declspecs, declarator)
8235 tree declspecs;
8236 tree declarator;
8237 {
8238 tree decl;
8239 if (declspecs)
8240 {
8241 decl = grokdeclarator (declarator, declspecs, CATCHPARM,
8242 1, NULL_TREE);
8243 if (decl == NULL_TREE)
8244 error ("invalid catch parameter");
8245 }
8246 else
8247 decl = NULL_TREE;
8248 expand_start_catch_block (decl);
8249 }
8250
8251 \f
8252 /* Make TYPE a complete type based on INITIAL_VALUE.
8253 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8254 2 if there was no information (in which case assume 0 if DO_DEFAULT). */
8255
8256 int
8257 complete_array_type (type, initial_value, do_default)
8258 tree type, initial_value;
8259 int do_default;
8260 {
8261 register tree maxindex = NULL_TREE;
8262 int value = 0;
8263
8264 /* Allocate on the same obstack as TYPE. */
8265 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
8266
8267 if (initial_value)
8268 {
8269 /* Note MAXINDEX is really the maximum index,
8270 one less than the size. */
8271 if (TREE_CODE (initial_value) == STRING_CST)
8272 {
8273 int eltsize
8274 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
8275 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
8276 / eltsize) - 1, 0);
8277 }
8278 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
8279 {
8280 tree elts = CONSTRUCTOR_ELTS (initial_value);
8281 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
8282 for (; elts; elts = TREE_CHAIN (elts))
8283 {
8284 if (TREE_PURPOSE (elts))
8285 maxindex = TREE_PURPOSE (elts);
8286 else
8287 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
8288 }
8289 maxindex = copy_node (maxindex);
8290 }
8291 else
8292 {
8293 /* Make an error message unless that happened already. */
8294 if (initial_value != error_mark_node)
8295 value = 1;
8296 else
8297 initial_value = NULL_TREE;
8298
8299 /* Prevent further error messages. */
8300 maxindex = build_int_2 (0, 0);
8301 }
8302 }
8303
8304 if (!maxindex)
8305 {
8306 if (do_default)
8307 maxindex = build_int_2 (0, 0);
8308 value = 2;
8309 }
8310
8311 if (maxindex)
8312 {
8313 tree itype;
8314 tree domain;
8315
8316 domain = build_index_type (maxindex);
8317 TYPE_DOMAIN (type) = domain;
8318
8319 if (! TREE_TYPE (maxindex))
8320 TREE_TYPE (maxindex) = domain;
8321 if (initial_value)
8322 itype = TREE_TYPE (initial_value);
8323 else
8324 itype = NULL;
8325 if (itype && !TYPE_DOMAIN (itype))
8326 TYPE_DOMAIN (itype) = domain;
8327 /* The type of the main variant should never be used for arrays
8328 of different sizes. It should only ever be completed with the
8329 size of the array. */
8330 if (! TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)))
8331 TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)) = domain;
8332 }
8333
8334 pop_obstacks();
8335
8336 /* Lay out the type now that we can get the real answer. */
8337
8338 layout_type (type);
8339
8340 return value;
8341 }
8342 \f
8343 /* Return zero if something is declared to be a member of type
8344 CTYPE when in the context of CUR_TYPE. STRING is the error
8345 message to print in that case. Otherwise, quietly return 1. */
8346
8347 static int
8348 member_function_or_else (ctype, cur_type, string)
8349 tree ctype, cur_type;
8350 const char *string;
8351 {
8352 if (ctype && ctype != cur_type)
8353 {
8354 error (string, TYPE_NAME_STRING (ctype));
8355 return 0;
8356 }
8357 return 1;
8358 }
8359 \f
8360 /* Subroutine of `grokdeclarator'. */
8361
8362 /* Generate errors possibly applicable for a given set of specifiers.
8363 This is for ARM $7.1.2. */
8364
8365 static void
8366 bad_specifiers (object, type, virtualp, quals, inlinep, friendp, raises)
8367 tree object;
8368 const char *type;
8369 int virtualp, quals, friendp, raises, inlinep;
8370 {
8371 if (virtualp)
8372 cp_error ("`%D' declared as a `virtual' %s", object, type);
8373 if (inlinep)
8374 cp_error ("`%D' declared as an `inline' %s", object, type);
8375 if (quals)
8376 cp_error ("`const' and `volatile' function specifiers on `%D' invalid in %s declaration",
8377 object, type);
8378 if (friendp)
8379 cp_error_at ("`%D' declared as a friend", object);
8380 if (raises)
8381 cp_error_at ("`%D' declared with an exception specification", object);
8382 }
8383
8384 /* CTYPE is class type, or null if non-class.
8385 TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
8386 or METHOD_TYPE.
8387 DECLARATOR is the function's name.
8388 VIRTUALP is truthvalue of whether the function is virtual or not.
8389 FLAGS are to be passed through to `grokclassfn'.
8390 QUALS are qualifiers indicating whether the function is `const'
8391 or `volatile'.
8392 RAISES is a list of exceptions that this function can raise.
8393 CHECK is 1 if we must find this method in CTYPE, 0 if we should
8394 not look, and -1 if we should not call `grokclassfn' at all.
8395
8396 Returns `NULL_TREE' if something goes wrong, after issuing
8397 applicable error messages. */
8398
8399 static tree
8400 grokfndecl (ctype, type, declarator, orig_declarator, virtualp, flags, quals,
8401 raises, check, friendp, publicp, inlinep, funcdef_flag,
8402 template_count, in_namespace)
8403 tree ctype, type;
8404 tree declarator;
8405 tree orig_declarator;
8406 int virtualp;
8407 enum overload_flags flags;
8408 tree quals, raises;
8409 int check, friendp, publicp, inlinep, funcdef_flag, template_count;
8410 tree in_namespace;
8411 {
8412 tree cname, decl;
8413 int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
8414 int has_default_arg = 0;
8415 tree t;
8416
8417 if (ctype)
8418 cname = TREE_CODE (TYPE_NAME (ctype)) == TYPE_DECL
8419 ? TYPE_IDENTIFIER (ctype) : TYPE_NAME (ctype);
8420 else
8421 cname = NULL_TREE;
8422
8423 if (raises)
8424 {
8425 type = build_exception_variant (type, raises);
8426 }
8427
8428 decl = build_lang_decl (FUNCTION_DECL, declarator, type);
8429 /* Propagate volatile out from type to decl. */
8430 if (TYPE_VOLATILE (type))
8431 TREE_THIS_VOLATILE (decl) = 1;
8432
8433 /* If this decl has namespace scope, set that up. */
8434 if (in_namespace)
8435 set_decl_namespace (decl, in_namespace, friendp);
8436 else if (publicp && ! ctype)
8437 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
8438
8439 /* `main' and builtins have implicit 'C' linkage. */
8440 if ((MAIN_NAME_P (declarator)
8441 || (IDENTIFIER_LENGTH (declarator) > 10
8442 && IDENTIFIER_POINTER (declarator)[0] == '_'
8443 && IDENTIFIER_POINTER (declarator)[1] == '_'
8444 && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0))
8445 && current_lang_name == lang_name_cplusplus
8446 && ctype == NULL_TREE
8447 /* NULL_TREE means global namespace. */
8448 && DECL_CONTEXT (decl) == NULL_TREE)
8449 DECL_LANGUAGE (decl) = lang_c;
8450
8451 /* Should probably propagate const out from type to decl I bet (mrs). */
8452 if (staticp)
8453 {
8454 DECL_STATIC_FUNCTION_P (decl) = 1;
8455 DECL_CONTEXT (decl) = ctype;
8456 }
8457
8458 if (ctype)
8459 DECL_CLASS_CONTEXT (decl) = ctype;
8460
8461 if (ctype == NULL_TREE && DECL_MAIN_P (decl))
8462 {
8463 if (processing_template_decl)
8464 error ("cannot declare `main' to be a template");
8465 if (inlinep)
8466 error ("cannot declare `main' to be inline");
8467 else if (! publicp)
8468 error ("cannot declare `main' to be static");
8469 inlinep = 0;
8470 publicp = 1;
8471 }
8472
8473 /* Members of anonymous types and local classes have no linkage; make
8474 them internal. */
8475 if (ctype && (ANON_AGGRNAME_P (TYPE_IDENTIFIER (ctype))
8476 || hack_decl_function_context (TYPE_MAIN_DECL (ctype))))
8477 publicp = 0;
8478
8479 if (publicp)
8480 {
8481 /* [basic.link]: A name with no linkage (notably, the name of a class
8482 or enumeration declared in a local scope) shall not be used to
8483 declare an entity with linkage.
8484
8485 Only check this for public decls for now. */
8486 t = no_linkage_check (TREE_TYPE (decl));
8487 if (t)
8488 {
8489 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
8490 {
8491 if (DECL_LANGUAGE (decl) == lang_c)
8492 /* Allow this; it's pretty common in C. */;
8493 else
8494 cp_pedwarn ("non-local function `%#D' uses anonymous type",
8495 decl);
8496 }
8497 else
8498 cp_pedwarn ("non-local function `%#D' uses local type `%T'",
8499 decl, t);
8500 }
8501 }
8502
8503 TREE_PUBLIC (decl) = publicp;
8504 if (! publicp)
8505 {
8506 DECL_INTERFACE_KNOWN (decl) = 1;
8507 DECL_NOT_REALLY_EXTERN (decl) = 1;
8508 }
8509
8510 if (inlinep)
8511 DECL_THIS_INLINE (decl) = DECL_INLINE (decl) = 1;
8512
8513 DECL_EXTERNAL (decl) = 1;
8514 if (quals != NULL_TREE && TREE_CODE (type) == FUNCTION_TYPE)
8515 {
8516 cp_error ("%smember function `%D' cannot have `%T' method qualifier",
8517 (ctype ? "static " : "non-"), decl, TREE_VALUE (quals));
8518 quals = NULL_TREE;
8519 }
8520
8521 if (IDENTIFIER_OPNAME_P (DECL_NAME (decl)))
8522 grok_op_properties (decl, virtualp, check < 0);
8523
8524 if (ctype && hack_decl_function_context (decl))
8525 DECL_NO_STATIC_CHAIN (decl) = 1;
8526
8527 for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
8528 if (TREE_PURPOSE (t)
8529 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
8530 {
8531 has_default_arg = 1;
8532 break;
8533 }
8534
8535 if (friendp
8536 && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
8537 {
8538 if (funcdef_flag)
8539 cp_error
8540 ("defining explicit specialization `%D' in friend declaration",
8541 orig_declarator);
8542 else
8543 {
8544 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
8545 {
8546 /* Something like `template <class T> friend void f<T>()'. */
8547 cp_error ("template-id `%D' in declaration of primary template",
8548 orig_declarator);
8549 return NULL_TREE;
8550 }
8551
8552
8553 /* A friend declaration of the form friend void f<>(). Record
8554 the information in the TEMPLATE_ID_EXPR. */
8555 SET_DECL_IMPLICIT_INSTANTIATION (decl);
8556 DECL_TEMPLATE_INFO (decl)
8557 = tree_cons (TREE_OPERAND (orig_declarator, 0),
8558 TREE_OPERAND (orig_declarator, 1),
8559 NULL_TREE);
8560
8561 if (has_default_arg)
8562 {
8563 cp_error ("default arguments are not allowed in declaration of friend template specialization `%D'",
8564 decl);
8565 return NULL_TREE;
8566 }
8567
8568 if (inlinep)
8569 {
8570 cp_error ("`inline' is not allowed in declaration of friend template specialization `%D'",
8571 decl);
8572 return NULL_TREE;
8573 }
8574 }
8575 }
8576
8577 if (has_default_arg)
8578 add_defarg_fn (decl);
8579
8580 /* Plain overloading: will not be grok'd by grokclassfn. */
8581 if (! ctype && ! processing_template_decl
8582 && DECL_LANGUAGE (decl) != lang_c
8583 && (! DECL_USE_TEMPLATE (decl) || name_mangling_version < 1))
8584 set_mangled_name_for_decl (decl);
8585
8586 if (funcdef_flag)
8587 /* Make the init_value nonzero so pushdecl knows this is not
8588 tentative. error_mark_node is replaced later with the BLOCK. */
8589 DECL_INITIAL (decl) = error_mark_node;
8590
8591 /* Caller will do the rest of this. */
8592 if (check < 0)
8593 return decl;
8594
8595 if (check && funcdef_flag)
8596 DECL_INITIAL (decl) = error_mark_node;
8597
8598 if (flags == NO_SPECIAL && ctype && constructor_name (cname) == declarator)
8599 {
8600 tree tmp;
8601 /* Just handle constructors here. We could do this
8602 inside the following if stmt, but I think
8603 that the code is more legible by breaking this
8604 case out. See comments below for what each of
8605 the following calls is supposed to do. */
8606 DECL_CONSTRUCTOR_P (decl) = 1;
8607
8608 grokclassfn (ctype, decl, flags, quals);
8609
8610 decl = check_explicit_specialization (orig_declarator, decl,
8611 template_count,
8612 2 * (funcdef_flag != 0) +
8613 4 * (friendp != 0));
8614 if (decl == error_mark_node)
8615 return NULL_TREE;
8616
8617 if ((! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8618 && check)
8619 {
8620 tmp = check_classfn (ctype, decl);
8621
8622 if (tmp && TREE_CODE (tmp) == TEMPLATE_DECL)
8623 tmp = DECL_TEMPLATE_RESULT(tmp);
8624
8625 if (tmp && DECL_ARTIFICIAL (tmp))
8626 cp_error ("definition of implicitly-declared `%D'", tmp);
8627 if (tmp && duplicate_decls (decl, tmp))
8628 return tmp;
8629 }
8630 if (! grok_ctor_properties (ctype, decl))
8631 return NULL_TREE;
8632 }
8633 else
8634 {
8635 tree tmp;
8636
8637 /* Function gets the ugly name, field gets the nice one.
8638 This call may change the type of the function (because
8639 of default parameters)! */
8640 if (ctype != NULL_TREE)
8641 grokclassfn (ctype, decl, flags, quals);
8642
8643 decl = check_explicit_specialization (orig_declarator, decl,
8644 template_count,
8645 2 * (funcdef_flag != 0) +
8646 4 * (friendp != 0));
8647 if (decl == error_mark_node)
8648 return NULL_TREE;
8649
8650 if (ctype != NULL_TREE
8651 && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
8652 && check)
8653 {
8654 tmp = check_classfn (ctype, decl);
8655
8656 if (tmp && TREE_CODE (tmp) == TEMPLATE_DECL)
8657 tmp = DECL_TEMPLATE_RESULT (tmp);
8658
8659 if (tmp && DECL_STATIC_FUNCTION_P (tmp)
8660 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
8661 {
8662 /* Remove the `this' parm added by grokclassfn.
8663 XXX Isn't this done in start_function, too? */
8664 revert_static_member_fn (&decl, NULL, NULL);
8665 last_function_parms = TREE_CHAIN (last_function_parms);
8666 }
8667 if (tmp && DECL_ARTIFICIAL (tmp))
8668 cp_error ("definition of implicitly-declared `%D'", tmp);
8669 if (tmp)
8670 {
8671 /* Attempt to merge the declarations. This can fail, in
8672 the case of some illegal specialization declarations. */
8673 if (!duplicate_decls (decl, tmp))
8674 cp_error ("no `%#D' member function declared in class `%T'",
8675 decl, ctype);
8676 return tmp;
8677 }
8678 }
8679
8680 if (ctype == NULL_TREE || check)
8681 return decl;
8682
8683 if (virtualp)
8684 {
8685 DECL_VIRTUAL_P (decl) = 1;
8686 if (DECL_VINDEX (decl) == NULL_TREE)
8687 DECL_VINDEX (decl) = error_mark_node;
8688 IDENTIFIER_VIRTUAL_P (DECL_NAME (decl)) = 1;
8689 }
8690 }
8691 return decl;
8692 }
8693
8694 static tree
8695 grokvardecl (type, declarator, specbits_in, initialized, constp, in_namespace)
8696 tree type;
8697 tree declarator;
8698 RID_BIT_TYPE *specbits_in;
8699 int initialized;
8700 int constp;
8701 tree in_namespace;
8702 {
8703 tree decl;
8704 RID_BIT_TYPE specbits;
8705
8706 specbits = *specbits_in;
8707
8708 if (TREE_CODE (type) == OFFSET_TYPE)
8709 {
8710 /* If you declare a static member so that it
8711 can be initialized, the code will reach here. */
8712 tree basetype = TYPE_OFFSET_BASETYPE (type);
8713 type = TREE_TYPE (type);
8714 decl = build_lang_decl (VAR_DECL, declarator, type);
8715 DECL_CONTEXT (decl) = basetype;
8716 DECL_CLASS_CONTEXT (decl) = basetype;
8717 DECL_ASSEMBLER_NAME (decl) = build_static_name (basetype, declarator);
8718 }
8719 else
8720 {
8721 tree context;
8722
8723 if (in_namespace)
8724 context = in_namespace;
8725 else if (namespace_bindings_p () || RIDBIT_SETP (RID_EXTERN, specbits))
8726 context = current_namespace;
8727 else
8728 context = NULL_TREE;
8729
8730 if (processing_template_decl)
8731 {
8732 /* If we're in a template, we need DECL_LANG_SPECIFIC so that
8733 we can call push_template_decl. */
8734 push_permanent_obstack ();
8735 decl = build_lang_decl (VAR_DECL, declarator, type);
8736 pop_obstacks ();
8737 }
8738 else
8739 decl = build_decl (VAR_DECL, declarator, type);
8740
8741 if (context)
8742 set_decl_namespace (decl, context, 0);
8743
8744 context = DECL_CONTEXT (decl);
8745 if (declarator && context && current_lang_name != lang_name_c)
8746 DECL_ASSEMBLER_NAME (decl) = build_static_name (context, declarator);
8747 }
8748
8749 if (in_namespace)
8750 set_decl_namespace (decl, in_namespace, 0);
8751
8752 if (RIDBIT_SETP (RID_EXTERN, specbits))
8753 {
8754 DECL_THIS_EXTERN (decl) = 1;
8755 DECL_EXTERNAL (decl) = !initialized;
8756 }
8757
8758 /* In class context, static means one per class,
8759 public access, and static storage. */
8760 if (DECL_CLASS_SCOPE_P (decl))
8761 {
8762 TREE_PUBLIC (decl) = 1;
8763 TREE_STATIC (decl) = 1;
8764 DECL_EXTERNAL (decl) = 0;
8765 }
8766 /* At top level, either `static' or no s.c. makes a definition
8767 (perhaps tentative), and absence of `static' makes it public. */
8768 else if (toplevel_bindings_p ())
8769 {
8770 TREE_PUBLIC (decl) = (RIDBIT_NOTSETP (RID_STATIC, specbits)
8771 && (DECL_THIS_EXTERN (decl) || ! constp));
8772 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
8773 }
8774 /* Not at top level, only `static' makes a static definition. */
8775 else
8776 {
8777 TREE_STATIC (decl) = !! RIDBIT_SETP (RID_STATIC, specbits);
8778 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
8779 }
8780
8781 if (TREE_PUBLIC (decl))
8782 {
8783 /* [basic.link]: A name with no linkage (notably, the name of a class
8784 or enumeration declared in a local scope) shall not be used to
8785 declare an entity with linkage.
8786
8787 Only check this for public decls for now. */
8788 tree t = no_linkage_check (TREE_TYPE (decl));
8789 if (t)
8790 {
8791 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
8792 /* Ignore for now; `enum { foo } e' is pretty common. */;
8793 else
8794 cp_pedwarn ("non-local variable `%#D' uses local type `%T'",
8795 decl, t);
8796 }
8797 }
8798
8799 return decl;
8800 }
8801
8802 /* Create and return a canonical pointer to member function type, for
8803 TYPE, which is a POINTER_TYPE to a METHOD_TYPE. */
8804
8805 tree
8806 build_ptrmemfunc_type (type)
8807 tree type;
8808 {
8809 tree fields[4];
8810 tree t;
8811 tree u;
8812 tree unqualified_variant = NULL_TREE;
8813
8814 /* If a canonical type already exists for this type, use it. We use
8815 this method instead of type_hash_canon, because it only does a
8816 simple equality check on the list of field members. */
8817
8818 if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
8819 return t;
8820
8821 /* Make sure that we always have the unqualified pointer-to-member
8822 type first. */
8823 if (CP_TYPE_QUALS (type) != TYPE_UNQUALIFIED)
8824 unqualified_variant
8825 = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
8826
8827 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
8828
8829 u = make_lang_type (UNION_TYPE);
8830 SET_IS_AGGR_TYPE (u, 0);
8831 fields[0] = build_lang_decl (FIELD_DECL, pfn_identifier, type);
8832 fields[1] = build_lang_decl (FIELD_DECL, delta2_identifier,
8833 delta_type_node);
8834 finish_builtin_type (u, "__ptrmemfunc_type", fields, 1, ptr_type_node);
8835 TYPE_NAME (u) = NULL_TREE;
8836
8837 t = make_lang_type (RECORD_TYPE);
8838
8839 /* Let the front-end know this is a pointer to member function... */
8840 TYPE_PTRMEMFUNC_FLAG (t) = 1;
8841 /* ... and not really an aggregate. */
8842 SET_IS_AGGR_TYPE (t, 0);
8843
8844 fields[0] = build_lang_decl (FIELD_DECL, delta_identifier,
8845 delta_type_node);
8846 fields[1] = build_lang_decl (FIELD_DECL, index_identifier,
8847 delta_type_node);
8848 fields[2] = build_lang_decl (FIELD_DECL, pfn_or_delta2_identifier, u);
8849 finish_builtin_type (t, "__ptrmemfunc_type", fields, 2, ptr_type_node);
8850
8851 pop_obstacks ();
8852
8853 /* Zap out the name so that the back-end will give us the debugging
8854 information for this anonymous RECORD_TYPE. */
8855 TYPE_NAME (t) = NULL_TREE;
8856
8857 /* If this is not the unqualified form of this pointer-to-member
8858 type, set the TYPE_MAIN_VARIANT for this type to be the
8859 unqualified type. Since they are actually RECORD_TYPEs that are
8860 not variants of each other, we must do this manually. */
8861 if (CP_TYPE_QUALS (type) != TYPE_UNQUALIFIED)
8862 {
8863 t = build_qualified_type (t, CP_TYPE_QUALS (type));
8864 TYPE_MAIN_VARIANT (t) = unqualified_variant;
8865 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (unqualified_variant);
8866 TYPE_NEXT_VARIANT (unqualified_variant) = t;
8867 }
8868
8869 /* Cache this pointer-to-member type so that we can find it again
8870 later. */
8871 TYPE_SET_PTRMEMFUNC_TYPE (type, t);
8872
8873 /* Seems to be wanted. */
8874 CLASSTYPE_GOT_SEMICOLON (t) = 1;
8875
8876 return t;
8877 }
8878
8879 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
8880 Check to see that the definition is valid. Issue appropriate error
8881 messages. Return 1 if the definition is particularly bad, or 0
8882 otherwise. */
8883
8884 int
8885 check_static_variable_definition (decl, type)
8886 tree decl;
8887 tree type;
8888 {
8889 /* Motion 10 at San Diego: If a static const integral data member is
8890 initialized with an integral constant expression, the initializer
8891 may appear either in the declaration (within the class), or in
8892 the definition, but not both. If it appears in the class, the
8893 member is a member constant. The file-scope definition is always
8894 required. */
8895 if (CLASS_TYPE_P (type) || TREE_CODE (type) == REFERENCE_TYPE)
8896 {
8897 cp_error ("in-class initialization of static data member of non-integral type `%T'",
8898 type);
8899 /* If we just return the declaration, crashes will sometimes
8900 occur. We therefore return void_type_node, as if this was a
8901 friend declaration, to cause callers to completely ignore
8902 this declaration. */
8903 return 1;
8904 }
8905 else if (!CP_TYPE_CONST_P (type))
8906 cp_error ("ANSI C++ forbids in-class initialization of non-const static member `%D'",
8907 decl);
8908 else if (pedantic && !INTEGRAL_TYPE_P (type))
8909 cp_pedwarn ("ANSI C++ forbids initialization of member constant `%D' of non-integral type `%T'", decl, type);
8910
8911 return 0;
8912 }
8913
8914 /* Given declspecs and a declarator,
8915 determine the name and type of the object declared
8916 and construct a ..._DECL node for it.
8917 (In one case we can return a ..._TYPE node instead.
8918 For invalid input we sometimes return 0.)
8919
8920 DECLSPECS is a chain of tree_list nodes whose value fields
8921 are the storage classes and type specifiers.
8922
8923 DECL_CONTEXT says which syntactic context this declaration is in:
8924 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
8925 FUNCDEF for a function definition. Like NORMAL but a few different
8926 error messages in each case. Return value may be zero meaning
8927 this definition is too screwy to try to parse.
8928 MEMFUNCDEF for a function definition. Like FUNCDEF but prepares to
8929 handle member functions (which have FIELD context).
8930 Return value may be zero meaning this definition is too screwy to
8931 try to parse.
8932 PARM for a parameter declaration (either within a function prototype
8933 or before a function body). Make a PARM_DECL, or return void_type_node.
8934 CATCHPARM for a parameter declaration before a catch clause.
8935 TYPENAME if for a typename (in a cast or sizeof).
8936 Don't make a DECL node; just return the ..._TYPE node.
8937 FIELD for a struct or union field; make a FIELD_DECL.
8938 BITFIELD for a field with specified width.
8939 INITIALIZED is 1 if the decl has an initializer.
8940
8941 ATTRLIST is a TREE_LIST node with prefix attributes in TREE_VALUE and
8942 normal attributes in TREE_PURPOSE, or NULL_TREE.
8943
8944 In the TYPENAME case, DECLARATOR is really an absolute declarator.
8945 It may also be so in the PARM case, for a prototype where the
8946 argument type is specified but not the name.
8947
8948 This function is where the complicated C meanings of `static'
8949 and `extern' are interpreted.
8950
8951 For C++, if there is any monkey business to do, the function which
8952 calls this one must do it, i.e., prepending instance variables,
8953 renaming overloaded function names, etc.
8954
8955 Note that for this C++, it is an error to define a method within a class
8956 which does not belong to that class.
8957
8958 Except in the case where SCOPE_REFs are implicitly known (such as
8959 methods within a class being redundantly qualified),
8960 declarations which involve SCOPE_REFs are returned as SCOPE_REFs
8961 (class_name::decl_name). The caller must also deal with this.
8962
8963 If a constructor or destructor is seen, and the context is FIELD,
8964 then the type gains the attribute TREE_HAS_x. If such a declaration
8965 is erroneous, NULL_TREE is returned.
8966
8967 QUALS is used only for FUNCDEF and MEMFUNCDEF cases. For a member
8968 function, these are the qualifiers to give to the `this' pointer.
8969
8970 May return void_type_node if the declarator turned out to be a friend.
8971 See grokfield for details. */
8972
8973 enum return_types { return_normal, return_ctor, return_dtor, return_conversion };
8974
8975 tree
8976 grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
8977 tree declspecs;
8978 tree declarator;
8979 enum decl_context decl_context;
8980 int initialized;
8981 tree attrlist;
8982 {
8983 RID_BIT_TYPE specbits;
8984 int nclasses = 0;
8985 tree spec;
8986 tree type = NULL_TREE;
8987 int longlong = 0;
8988 int constp;
8989 int restrictp;
8990 int volatilep;
8991 int type_quals;
8992 int virtualp, explicitp, friendp, inlinep, staticp;
8993 int explicit_int = 0;
8994 int explicit_char = 0;
8995 int defaulted_int = 0;
8996 tree typedef_decl = NULL_TREE;
8997 const char *name;
8998 tree typedef_type = NULL_TREE;
8999 int funcdef_flag = 0;
9000 enum tree_code innermost_code = ERROR_MARK;
9001 int bitfield = 0;
9002 #if 0
9003 /* See the code below that used this. */
9004 tree decl_machine_attr = NULL_TREE;
9005 #endif
9006 /* Set this to error_mark_node for FIELD_DECLs we could not handle properly.
9007 All FIELD_DECLs we build here have `init' put into their DECL_INITIAL. */
9008 tree init = NULL_TREE;
9009
9010 /* Keep track of what sort of function is being processed
9011 so that we can warn about default return values, or explicit
9012 return values which do not match prescribed defaults. */
9013 enum return_types return_type = return_normal;
9014
9015 tree dname = NULL_TREE;
9016 tree ctype = current_class_type;
9017 tree ctor_return_type = NULL_TREE;
9018 enum overload_flags flags = NO_SPECIAL;
9019 tree quals = NULL_TREE;
9020 tree raises = NULL_TREE;
9021 int template_count = 0;
9022 tree in_namespace = NULL_TREE;
9023 tree inner_attrs;
9024 int ignore_attrs;
9025
9026 RIDBIT_RESET_ALL (specbits);
9027 if (decl_context == FUNCDEF)
9028 funcdef_flag = 1, decl_context = NORMAL;
9029 else if (decl_context == MEMFUNCDEF)
9030 funcdef_flag = -1, decl_context = FIELD;
9031 else if (decl_context == BITFIELD)
9032 bitfield = 1, decl_context = FIELD;
9033
9034 /* Look inside a declarator for the name being declared
9035 and get it as a string, for an error message. */
9036 {
9037 tree *next = &declarator;
9038 register tree decl;
9039 name = NULL;
9040
9041 while (next && *next)
9042 {
9043 decl = *next;
9044 switch (TREE_CODE (decl))
9045 {
9046 case TREE_LIST:
9047 /* For attributes. */
9048 next = &TREE_VALUE (decl);
9049 break;
9050
9051 case COND_EXPR:
9052 ctype = NULL_TREE;
9053 next = &TREE_OPERAND (decl, 0);
9054 break;
9055
9056 case BIT_NOT_EXPR: /* For C++ destructors! */
9057 {
9058 tree name = TREE_OPERAND (decl, 0);
9059 tree rename = NULL_TREE;
9060
9061 my_friendly_assert (flags == NO_SPECIAL, 152);
9062 flags = DTOR_FLAG;
9063 return_type = return_dtor;
9064 if (TREE_CODE (name) == TYPE_DECL)
9065 TREE_OPERAND (decl, 0) = name = constructor_name (name);
9066 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 153);
9067 if (ctype == NULL_TREE)
9068 {
9069 if (current_class_type == NULL_TREE)
9070 {
9071 error ("destructors must be member functions");
9072 flags = NO_SPECIAL;
9073 }
9074 else
9075 {
9076 tree t = constructor_name (current_class_name);
9077 if (t != name)
9078 rename = t;
9079 }
9080 }
9081 else
9082 {
9083 tree t = constructor_name (ctype);
9084 if (t != name)
9085 rename = t;
9086 }
9087
9088 if (rename)
9089 {
9090 cp_error ("destructor `%T' must match class name `%T'",
9091 name, rename);
9092 TREE_OPERAND (decl, 0) = rename;
9093 }
9094 next = &name;
9095 }
9096 break;
9097
9098 case ADDR_EXPR: /* C++ reference declaration */
9099 /* Fall through. */
9100 case ARRAY_REF:
9101 case INDIRECT_REF:
9102 ctype = NULL_TREE;
9103 innermost_code = TREE_CODE (decl);
9104 next = &TREE_OPERAND (decl, 0);
9105 break;
9106
9107 case CALL_EXPR:
9108 if (parmlist_is_exprlist (CALL_DECLARATOR_PARMS (decl)))
9109 {
9110 /* This is actually a variable declaration using
9111 constructor syntax. We need to call start_decl and
9112 cp_finish_decl so we can get the variable
9113 initialized... */
9114
9115 tree attributes, prefix_attributes;
9116
9117 *next = TREE_OPERAND (decl, 0);
9118 init = CALL_DECLARATOR_PARMS (decl);
9119
9120 if (attrlist)
9121 {
9122 attributes = TREE_PURPOSE (attrlist);
9123 prefix_attributes = TREE_VALUE (attrlist);
9124 }
9125 else
9126 {
9127 attributes = NULL_TREE;
9128 prefix_attributes = NULL_TREE;
9129 }
9130
9131 decl = start_decl (declarator, declspecs, 1,
9132 attributes, prefix_attributes);
9133 if (decl)
9134 {
9135 /* Look for __unused__ attribute */
9136 if (TREE_USED (TREE_TYPE (decl)))
9137 TREE_USED (decl) = 1;
9138 finish_decl (decl, init, NULL_TREE);
9139 }
9140 else
9141 cp_error ("invalid declarator");
9142 return 0;
9143 }
9144 innermost_code = TREE_CODE (decl);
9145 if (decl_context == FIELD && ctype == NULL_TREE)
9146 ctype = current_class_type;
9147 if (ctype
9148 && TREE_OPERAND (decl, 0)
9149 && (TREE_CODE (TREE_OPERAND (decl, 0)) == TYPE_DECL
9150 && ((DECL_NAME (TREE_OPERAND (decl, 0))
9151 == constructor_name_full (ctype))
9152 || (DECL_NAME (TREE_OPERAND (decl, 0))
9153 == constructor_name (ctype)))))
9154 TREE_OPERAND (decl, 0) = constructor_name (ctype);
9155 next = &TREE_OPERAND (decl, 0);
9156 decl = *next;
9157 if (ctype != NULL_TREE
9158 && decl != NULL_TREE && flags != DTOR_FLAG
9159 && decl == constructor_name (ctype))
9160 {
9161 return_type = return_ctor;
9162 ctor_return_type = ctype;
9163 }
9164 ctype = NULL_TREE;
9165 break;
9166
9167 case TEMPLATE_ID_EXPR:
9168 {
9169 tree fns = TREE_OPERAND (decl, 0);
9170
9171 if (TREE_CODE (fns) == LOOKUP_EXPR)
9172 fns = TREE_OPERAND (fns, 0);
9173
9174 dname = fns;
9175 if (TREE_CODE (dname) == COMPONENT_REF)
9176 dname = TREE_OPERAND (dname, 1);
9177 if (TREE_CODE (dname) != IDENTIFIER_NODE)
9178 {
9179 my_friendly_assert (is_overloaded_fn (dname),
9180 19990331);
9181 dname = DECL_NAME (get_first_fn (dname));
9182 }
9183 }
9184 /* Fall through. */
9185
9186 case IDENTIFIER_NODE:
9187 if (TREE_CODE (decl) == IDENTIFIER_NODE)
9188 dname = decl;
9189
9190 next = 0;
9191
9192 if (is_rid (dname))
9193 {
9194 cp_error ("declarator-id missing; using reserved word `%D'",
9195 dname);
9196 name = IDENTIFIER_POINTER (dname);
9197 }
9198 if (! IDENTIFIER_OPNAME_P (dname)
9199 /* GNU/Linux headers use '__op'. Arrgh. */
9200 || (IDENTIFIER_TYPENAME_P (dname) && ! TREE_TYPE (dname)))
9201 name = IDENTIFIER_POINTER (dname);
9202 else
9203 {
9204 if (IDENTIFIER_TYPENAME_P (dname))
9205 {
9206 my_friendly_assert (flags == NO_SPECIAL, 154);
9207 flags = TYPENAME_FLAG;
9208 ctor_return_type = TREE_TYPE (dname);
9209 return_type = return_conversion;
9210 }
9211 name = operator_name_string (dname);
9212 }
9213 break;
9214
9215 /* C++ extension */
9216 case SCOPE_REF:
9217 {
9218 /* Perform error checking, and decide on a ctype. */
9219 tree cname = TREE_OPERAND (decl, 0);
9220 if (cname == NULL_TREE)
9221 ctype = NULL_TREE;
9222 else if (TREE_CODE (cname) == NAMESPACE_DECL)
9223 {
9224 ctype = NULL_TREE;
9225 in_namespace = TREE_OPERAND (decl, 0);
9226 TREE_OPERAND (decl, 0) = NULL_TREE;
9227 }
9228 else if (! is_aggr_type (cname, 1))
9229 TREE_OPERAND (decl, 0) = NULL_TREE;
9230 /* Must test TREE_OPERAND (decl, 1), in case user gives
9231 us `typedef (class::memfunc)(int); memfunc *memfuncptr;' */
9232 else if (TREE_OPERAND (decl, 1)
9233 && TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)
9234 ctype = cname;
9235 else if (TREE_CODE (cname) == TEMPLATE_TYPE_PARM
9236 || TREE_CODE (cname) == TEMPLATE_TEMPLATE_PARM)
9237 {
9238 cp_error ("`%T::%D' is not a valid declarator", cname,
9239 TREE_OPERAND (decl, 1));
9240 cp_error (" perhaps you want `typename %T::%D' to make it a type",
9241 cname, TREE_OPERAND (decl, 1));
9242 return void_type_node;
9243 }
9244 else if (ctype == NULL_TREE)
9245 ctype = cname;
9246 else if (TREE_COMPLEXITY (decl) == current_class_depth)
9247 TREE_OPERAND (decl, 0) = ctype;
9248 else
9249 {
9250 if (! UNIQUELY_DERIVED_FROM_P (cname, ctype))
9251 {
9252 cp_error ("type `%T' is not derived from type `%T'",
9253 cname, ctype);
9254 TREE_OPERAND (decl, 0) = NULL_TREE;
9255 }
9256 else
9257 ctype = cname;
9258 }
9259
9260 if (ctype && TREE_CODE (TREE_OPERAND (decl, 1)) == TYPE_DECL
9261 && ((DECL_NAME (TREE_OPERAND (decl, 1))
9262 == constructor_name_full (ctype))
9263 || (DECL_NAME (TREE_OPERAND (decl, 1))
9264 == constructor_name (ctype))))
9265 TREE_OPERAND (decl, 1) = constructor_name (ctype);
9266 next = &TREE_OPERAND (decl, 1);
9267 decl = *next;
9268 if (ctype)
9269 {
9270 if (TREE_CODE (decl) == IDENTIFIER_NODE
9271 && constructor_name (ctype) == decl)
9272 {
9273 return_type = return_ctor;
9274 ctor_return_type = ctype;
9275 }
9276 else if (TREE_CODE (decl) == BIT_NOT_EXPR
9277 && TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
9278 && (constructor_name (ctype) == TREE_OPERAND (decl, 0)
9279 || constructor_name_full (ctype) == TREE_OPERAND (decl, 0)))
9280 {
9281 return_type = return_dtor;
9282 ctor_return_type = ctype;
9283 flags = DTOR_FLAG;
9284 TREE_OPERAND (decl, 0) = constructor_name (ctype);
9285 next = &TREE_OPERAND (decl, 0);
9286 }
9287 }
9288 }
9289 break;
9290
9291 case ERROR_MARK:
9292 next = 0;
9293 break;
9294
9295 case TYPE_DECL:
9296 /* Parse error puts this typespec where
9297 a declarator should go. */
9298 cp_error ("`%T' specified as declarator-id", DECL_NAME (decl));
9299 if (TREE_TYPE (decl) == current_class_type)
9300 cp_error (" perhaps you want `%T' for a constructor",
9301 current_class_name);
9302 dname = DECL_NAME (decl);
9303 name = IDENTIFIER_POINTER (dname);
9304
9305 /* Avoid giving two errors for this. */
9306 IDENTIFIER_CLASS_VALUE (dname) = NULL_TREE;
9307
9308 declspecs = temp_tree_cons (NULL_TREE, integer_type_node,
9309 declspecs);
9310 *next = dname;
9311 next = 0;
9312 break;
9313
9314 default:
9315 cp_compiler_error ("`%D' as declarator", decl);
9316 return 0; /* We used to do a 155 abort here. */
9317 }
9318 }
9319 if (name == NULL)
9320 name = "type name";
9321 }
9322
9323 /* A function definition's declarator must have the form of
9324 a function declarator. */
9325
9326 if (funcdef_flag && innermost_code != CALL_EXPR)
9327 return 0;
9328
9329 if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
9330 && innermost_code != CALL_EXPR
9331 && ! (ctype && declspecs == NULL_TREE))
9332 {
9333 cp_error ("declaration of `%D' as non-function", dname);
9334 return void_type_node;
9335 }
9336
9337 /* Anything declared one level down from the top level
9338 must be one of the parameters of a function
9339 (because the body is at least two levels down). */
9340
9341 /* This heuristic cannot be applied to C++ nodes! Fixed, however,
9342 by not allowing C++ class definitions to specify their parameters
9343 with xdecls (must be spec.d in the parmlist).
9344
9345 Since we now wait to push a class scope until we are sure that
9346 we are in a legitimate method context, we must set oldcname
9347 explicitly (since current_class_name is not yet alive).
9348
9349 We also want to avoid calling this a PARM if it is in a namespace. */
9350
9351 if (decl_context == NORMAL && !toplevel_bindings_p ())
9352 {
9353 struct binding_level *b = current_binding_level;
9354 current_binding_level = b->level_chain;
9355 if (current_binding_level != 0 && toplevel_bindings_p ())
9356 decl_context = PARM;
9357 current_binding_level = b;
9358 }
9359
9360 /* Look through the decl specs and record which ones appear.
9361 Some typespecs are defined as built-in typenames.
9362 Others, the ones that are modifiers of other types,
9363 are represented by bits in SPECBITS: set the bits for
9364 the modifiers that appear. Storage class keywords are also in SPECBITS.
9365
9366 If there is a typedef name or a type, store the type in TYPE.
9367 This includes builtin typedefs such as `int'.
9368
9369 Set EXPLICIT_INT if the type is `int' or `char' and did not
9370 come from a user typedef.
9371
9372 Set LONGLONG if `long' is mentioned twice.
9373
9374 For C++, constructors and destructors have their own fast treatment. */
9375
9376 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
9377 {
9378 register int i;
9379 register tree id;
9380
9381 /* Certain parse errors slip through. For example,
9382 `int class;' is not caught by the parser. Try
9383 weakly to recover here. */
9384 if (TREE_CODE (spec) != TREE_LIST)
9385 return 0;
9386
9387 id = TREE_VALUE (spec);
9388
9389 if (TREE_CODE (id) == IDENTIFIER_NODE)
9390 {
9391 if (id == ridpointers[(int) RID_INT]
9392 || id == ridpointers[(int) RID_CHAR]
9393 || id == ridpointers[(int) RID_BOOL]
9394 || id == ridpointers[(int) RID_WCHAR])
9395 {
9396 if (type)
9397 {
9398 if (id == ridpointers[(int) RID_BOOL])
9399 error ("`bool' is now a keyword");
9400 else
9401 cp_error ("extraneous `%T' ignored", id);
9402 }
9403 else
9404 {
9405 if (id == ridpointers[(int) RID_INT])
9406 explicit_int = 1;
9407 else if (id == ridpointers[(int) RID_CHAR])
9408 explicit_char = 1;
9409 type = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (id));
9410 }
9411 goto found;
9412 }
9413 /* C++ aggregate types. */
9414 if (IDENTIFIER_HAS_TYPE_VALUE (id))
9415 {
9416 if (type)
9417 cp_error ("multiple declarations `%T' and `%T'", type, id);
9418 else
9419 type = IDENTIFIER_TYPE_VALUE (id);
9420 goto found;
9421 }
9422
9423 for (i = (int) RID_FIRST_MODIFIER; i <= (int) RID_LAST_MODIFIER; i++)
9424 {
9425 if (ridpointers[i] == id)
9426 {
9427 if (i == (int) RID_LONG && RIDBIT_SETP (i, specbits))
9428 {
9429 if (pedantic && ! in_system_header && warn_long_long)
9430 pedwarn ("ANSI C++ does not support `long long'");
9431 if (longlong)
9432 error ("`long long long' is too long for GCC");
9433 else
9434 longlong = 1;
9435 }
9436 else if (RIDBIT_SETP (i, specbits))
9437 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
9438 RIDBIT_SET (i, specbits);
9439 goto found;
9440 }
9441 }
9442 }
9443 /* C++ aggregate types. */
9444 else if (TREE_CODE (id) == TYPE_DECL || TREE_CODE (id) == TEMPLATE_DECL)
9445 {
9446 if (type)
9447 cp_error ("multiple declarations `%T' and `%T'", type,
9448 TREE_TYPE (id));
9449 else
9450 {
9451 type = TREE_TYPE (id);
9452 TREE_VALUE (spec) = type;
9453 }
9454 goto found;
9455 }
9456 if (type)
9457 error ("two or more data types in declaration of `%s'", name);
9458 else if (TREE_CODE (id) == IDENTIFIER_NODE)
9459 {
9460 register tree t = lookup_name (id, 1);
9461 if (!t || TREE_CODE (t) != TYPE_DECL)
9462 error ("`%s' fails to be a typedef or built in type",
9463 IDENTIFIER_POINTER (id));
9464 else
9465 {
9466 type = TREE_TYPE (t);
9467 #if 0
9468 /* See the code below that used this. */
9469 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
9470 #endif
9471 typedef_decl = t;
9472 }
9473 }
9474 else if (id != error_mark_node)
9475 /* Can't change CLASS nodes into RECORD nodes here! */
9476 type = id;
9477
9478 found: ;
9479 }
9480
9481 typedef_type = type;
9482
9483 /* No type at all: default to `int', and set DEFAULTED_INT
9484 because it was not a user-defined typedef. */
9485
9486 if (type == NULL_TREE
9487 && (RIDBIT_SETP (RID_SIGNED, specbits)
9488 || RIDBIT_SETP (RID_UNSIGNED, specbits)
9489 || RIDBIT_SETP (RID_LONG, specbits)
9490 || RIDBIT_SETP (RID_SHORT, specbits)))
9491 {
9492 /* These imply 'int'. */
9493 type = integer_type_node;
9494 defaulted_int = 1;
9495 }
9496
9497 if (type == NULL_TREE)
9498 {
9499 explicit_int = -1;
9500 if (return_type == return_dtor)
9501 type = void_type_node;
9502 else if (return_type == return_ctor)
9503 type = build_pointer_type (ctor_return_type);
9504 else if (return_type == return_conversion)
9505 type = ctor_return_type;
9506 else
9507 {
9508 /* We handle `main' specially here, because 'main () { }' is so
9509 common. With no options, it is allowed. With -Wreturn-type,
9510 it is a warning. It is only an error with -pedantic-errors. */
9511 int is_main = (funcdef_flag
9512 && MAIN_NAME_P (dname)
9513 && ctype == NULL_TREE
9514 && in_namespace == NULL_TREE
9515 && current_namespace == global_namespace);
9516
9517 if (in_system_header || flag_ms_extensions)
9518 /* Allow it, sigh. */;
9519 else if (pedantic || ! is_main)
9520 cp_pedwarn ("ANSI C++ forbids declaration `%D' with no type",
9521 dname);
9522 else if (warn_return_type)
9523 cp_warning ("ANSI C++ forbids declaration `%D' with no type",
9524 dname);
9525
9526 type = integer_type_node;
9527 }
9528 }
9529 else if (return_type == return_dtor)
9530 {
9531 error ("return type specification for destructor invalid");
9532 type = void_type_node;
9533 }
9534 else if (return_type == return_ctor)
9535 {
9536 error ("return type specification for constructor invalid");
9537 type = build_pointer_type (ctor_return_type);
9538 }
9539 else if (return_type == return_conversion)
9540 {
9541 if (!same_type_p (type, ctor_return_type))
9542 cp_error ("operator `%T' declared to return `%T'",
9543 ctor_return_type, type);
9544 else
9545 cp_pedwarn ("return type specified for `operator %T'",
9546 ctor_return_type);
9547
9548 type = ctor_return_type;
9549 }
9550
9551 ctype = NULL_TREE;
9552
9553 /* Now process the modifiers that were specified
9554 and check for invalid combinations. */
9555
9556 /* Long double is a special combination. */
9557
9558 if (RIDBIT_SETP (RID_LONG, specbits)
9559 && TYPE_MAIN_VARIANT (type) == double_type_node)
9560 {
9561 RIDBIT_RESET (RID_LONG, specbits);
9562 type = build_qualified_type (long_double_type_node,
9563 CP_TYPE_QUALS (type));
9564 }
9565
9566 /* Check all other uses of type modifiers. */
9567
9568 if (RIDBIT_SETP (RID_UNSIGNED, specbits)
9569 || RIDBIT_SETP (RID_SIGNED, specbits)
9570 || RIDBIT_SETP (RID_LONG, specbits)
9571 || RIDBIT_SETP (RID_SHORT, specbits))
9572 {
9573 int ok = 0;
9574
9575 if (TREE_CODE (type) == REAL_TYPE)
9576 error ("short, signed or unsigned invalid for `%s'", name);
9577 else if (TREE_CODE (type) != INTEGER_TYPE)
9578 error ("long, short, signed or unsigned invalid for `%s'", name);
9579 else if (RIDBIT_SETP (RID_LONG, specbits)
9580 && RIDBIT_SETP (RID_SHORT, specbits))
9581 error ("long and short specified together for `%s'", name);
9582 else if ((RIDBIT_SETP (RID_LONG, specbits)
9583 || RIDBIT_SETP (RID_SHORT, specbits))
9584 && explicit_char)
9585 error ("long or short specified with char for `%s'", name);
9586 else if ((RIDBIT_SETP (RID_LONG, specbits)
9587 || RIDBIT_SETP (RID_SHORT, specbits))
9588 && TREE_CODE (type) == REAL_TYPE)
9589 error ("long or short specified with floating type for `%s'", name);
9590 else if (RIDBIT_SETP (RID_SIGNED, specbits)
9591 && RIDBIT_SETP (RID_UNSIGNED, specbits))
9592 error ("signed and unsigned given together for `%s'", name);
9593 else
9594 {
9595 ok = 1;
9596 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
9597 {
9598 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
9599 name);
9600 if (flag_pedantic_errors)
9601 ok = 0;
9602 }
9603 }
9604
9605 /* Discard the type modifiers if they are invalid. */
9606 if (! ok)
9607 {
9608 RIDBIT_RESET (RID_UNSIGNED, specbits);
9609 RIDBIT_RESET (RID_SIGNED, specbits);
9610 RIDBIT_RESET (RID_LONG, specbits);
9611 RIDBIT_RESET (RID_SHORT, specbits);
9612 longlong = 0;
9613 }
9614 }
9615
9616 if (RIDBIT_SETP (RID_COMPLEX, specbits)
9617 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
9618 {
9619 error ("complex invalid for `%s'", name);
9620 RIDBIT_RESET (RID_COMPLEX, specbits);
9621 }
9622
9623 /* Decide whether an integer type is signed or not.
9624 Optionally treat bitfields as signed by default. */
9625 if (RIDBIT_SETP (RID_UNSIGNED, specbits)
9626 /* [class.bit]
9627
9628 It is implementation-defined whether a plain (neither
9629 explicitly signed or unsigned) char, short, int, or long
9630 bit-field is signed or unsigned.
9631
9632 Naturally, we extend this to long long as well. Note that
9633 this does not include wchar_t. */
9634 || (bitfield && !flag_signed_bitfields
9635 && RIDBIT_NOTSETP (RID_SIGNED, specbits)
9636 /* A typedef for plain `int' without `signed' can be
9637 controlled just like plain `int', but a typedef for
9638 `signed int' cannot be so controlled. */
9639 && !(typedef_decl
9640 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
9641 && (TREE_CODE (type) == INTEGER_TYPE
9642 || TREE_CODE (type) == CHAR_TYPE)
9643 && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
9644 {
9645 if (longlong)
9646 type = long_long_unsigned_type_node;
9647 else if (RIDBIT_SETP (RID_LONG, specbits))
9648 type = long_unsigned_type_node;
9649 else if (RIDBIT_SETP (RID_SHORT, specbits))
9650 type = short_unsigned_type_node;
9651 else if (type == char_type_node)
9652 type = unsigned_char_type_node;
9653 else if (typedef_decl)
9654 type = unsigned_type (type);
9655 else
9656 type = unsigned_type_node;
9657 }
9658 else if (RIDBIT_SETP (RID_SIGNED, specbits)
9659 && type == char_type_node)
9660 type = signed_char_type_node;
9661 else if (longlong)
9662 type = long_long_integer_type_node;
9663 else if (RIDBIT_SETP (RID_LONG, specbits))
9664 type = long_integer_type_node;
9665 else if (RIDBIT_SETP (RID_SHORT, specbits))
9666 type = short_integer_type_node;
9667
9668 if (RIDBIT_SETP (RID_COMPLEX, specbits))
9669 {
9670 /* If we just have "complex", it is equivalent to
9671 "complex double", but if any modifiers at all are specified it is
9672 the complex form of TYPE. E.g, "complex short" is
9673 "complex short int". */
9674
9675 if (defaulted_int && ! longlong
9676 && ! (RIDBIT_SETP (RID_LONG, specbits)
9677 || RIDBIT_SETP (RID_SHORT, specbits)
9678 || RIDBIT_SETP (RID_SIGNED, specbits)
9679 || RIDBIT_SETP (RID_UNSIGNED, specbits)))
9680 type = complex_double_type_node;
9681 else if (type == integer_type_node)
9682 type = complex_integer_type_node;
9683 else if (type == float_type_node)
9684 type = complex_float_type_node;
9685 else if (type == double_type_node)
9686 type = complex_double_type_node;
9687 else if (type == long_double_type_node)
9688 type = complex_long_double_type_node;
9689 else
9690 type = build_complex_type (type);
9691 }
9692
9693 if (return_type == return_conversion
9694 && (RIDBIT_SETP (RID_CONST, specbits)
9695 || RIDBIT_SETP (RID_VOLATILE, specbits)
9696 || RIDBIT_SETP (RID_RESTRICT, specbits)))
9697 cp_error ("qualifiers are not allowed on declaration of `operator %T'",
9698 ctor_return_type);
9699
9700 /* Set CONSTP if this declaration is `const', whether by
9701 explicit specification or via a typedef.
9702 Likewise for VOLATILEP. */
9703
9704 constp = !! RIDBIT_SETP (RID_CONST, specbits) + CP_TYPE_CONST_P (type);
9705 restrictp =
9706 !! RIDBIT_SETP (RID_RESTRICT, specbits) + CP_TYPE_RESTRICT_P (type);
9707 volatilep =
9708 !! RIDBIT_SETP (RID_VOLATILE, specbits) + CP_TYPE_VOLATILE_P (type);
9709 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
9710 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
9711 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
9712 type = cp_build_qualified_type (type, type_quals);
9713 staticp = 0;
9714 inlinep = !! RIDBIT_SETP (RID_INLINE, specbits);
9715 virtualp = RIDBIT_SETP (RID_VIRTUAL, specbits);
9716 RIDBIT_RESET (RID_VIRTUAL, specbits);
9717 explicitp = RIDBIT_SETP (RID_EXPLICIT, specbits) != 0;
9718 RIDBIT_RESET (RID_EXPLICIT, specbits);
9719
9720 if (RIDBIT_SETP (RID_STATIC, specbits))
9721 staticp = 1 + (decl_context == FIELD);
9722
9723 if (virtualp && staticp == 2)
9724 {
9725 cp_error ("member `%D' cannot be declared both virtual and static",
9726 dname);
9727 staticp = 0;
9728 }
9729 friendp = RIDBIT_SETP (RID_FRIEND, specbits);
9730 RIDBIT_RESET (RID_FRIEND, specbits);
9731
9732 /* $7.1.2, Function specifiers */
9733 if (friendp && explicitp)
9734 error ("only declarations of constructors can be `explicit'");
9735
9736 if (RIDBIT_SETP (RID_MUTABLE, specbits))
9737 {
9738 if (decl_context == PARM)
9739 {
9740 error ("non-member `%s' cannot be declared `mutable'", name);
9741 RIDBIT_RESET (RID_MUTABLE, specbits);
9742 }
9743 else if (friendp || decl_context == TYPENAME)
9744 {
9745 error ("non-object member `%s' cannot be declared `mutable'", name);
9746 RIDBIT_RESET (RID_MUTABLE, specbits);
9747 }
9748 }
9749
9750 /* Warn if two storage classes are given. Default to `auto'. */
9751
9752 if (RIDBIT_ANY_SET (specbits))
9753 {
9754 if (RIDBIT_SETP (RID_STATIC, specbits)) nclasses++;
9755 if (RIDBIT_SETP (RID_EXTERN, specbits)) nclasses++;
9756 if (decl_context == PARM && nclasses > 0)
9757 error ("storage class specifiers invalid in parameter declarations");
9758 if (RIDBIT_SETP (RID_TYPEDEF, specbits))
9759 {
9760 if (decl_context == PARM)
9761 error ("typedef declaration invalid in parameter declaration");
9762 nclasses++;
9763 }
9764 if (RIDBIT_SETP (RID_AUTO, specbits)) nclasses++;
9765 if (RIDBIT_SETP (RID_REGISTER, specbits)) nclasses++;
9766 }
9767
9768 /* Give error if `virtual' is used outside of class declaration. */
9769 if (virtualp
9770 && (current_class_name == NULL_TREE || decl_context != FIELD))
9771 {
9772 error ("virtual outside class declaration");
9773 virtualp = 0;
9774 }
9775 if (current_class_name == NULL_TREE && RIDBIT_SETP (RID_MUTABLE, specbits))
9776 {
9777 error ("only members can be declared mutable");
9778 RIDBIT_RESET (RID_MUTABLE, specbits);
9779 }
9780
9781 /* Static anonymous unions are dealt with here. */
9782 if (staticp && decl_context == TYPENAME
9783 && TREE_CODE (declspecs) == TREE_LIST
9784 && ANON_AGGR_TYPE_P (TREE_VALUE (declspecs)))
9785 decl_context = FIELD;
9786
9787 /* Warn about storage classes that are invalid for certain
9788 kinds of declarations (parameters, typenames, etc.). */
9789
9790 if (nclasses > 1)
9791 error ("multiple storage classes in declaration of `%s'", name);
9792 else if (decl_context != NORMAL && nclasses > 0)
9793 {
9794 if ((decl_context == PARM || decl_context == CATCHPARM)
9795 && (RIDBIT_SETP (RID_REGISTER, specbits)
9796 || RIDBIT_SETP (RID_AUTO, specbits)))
9797 ;
9798 else if (RIDBIT_SETP (RID_TYPEDEF, specbits))
9799 ;
9800 else if (decl_context == FIELD
9801 /* C++ allows static class elements */
9802 && RIDBIT_SETP (RID_STATIC, specbits))
9803 /* C++ also allows inlines and signed and unsigned elements,
9804 but in those cases we don't come in here. */
9805 ;
9806 else
9807 {
9808 if (decl_context == FIELD)
9809 {
9810 tree tmp = NULL_TREE;
9811 register int op = 0;
9812
9813 if (declarator)
9814 {
9815 /* Avoid trying to get an operand off an identifier node. */
9816 if (TREE_CODE (declarator) == IDENTIFIER_NODE)
9817 tmp = declarator;
9818 else
9819 tmp = TREE_OPERAND (declarator, 0);
9820 op = IDENTIFIER_OPNAME_P (tmp);
9821 }
9822 error ("storage class specified for %s `%s'",
9823 op ? "member operator" : "field",
9824 op ? operator_name_string (tmp) : name);
9825 }
9826 else
9827 error (((decl_context == PARM || decl_context == CATCHPARM)
9828 ? "storage class specified for parameter `%s'"
9829 : "storage class specified for typename"), name);
9830 RIDBIT_RESET (RID_REGISTER, specbits);
9831 RIDBIT_RESET (RID_AUTO, specbits);
9832 RIDBIT_RESET (RID_EXTERN, specbits);
9833 }
9834 }
9835 else if (RIDBIT_SETP (RID_EXTERN, specbits) && initialized && !funcdef_flag)
9836 {
9837 if (toplevel_bindings_p ())
9838 {
9839 /* It's common practice (and completely valid) to have a const
9840 be initialized and declared extern. */
9841 if (!(type_quals & TYPE_QUAL_CONST))
9842 warning ("`%s' initialized and declared `extern'", name);
9843 }
9844 else
9845 error ("`%s' has both `extern' and initializer", name);
9846 }
9847 else if (RIDBIT_SETP (RID_EXTERN, specbits) && funcdef_flag
9848 && ! toplevel_bindings_p ())
9849 error ("nested function `%s' declared `extern'", name);
9850 else if (toplevel_bindings_p ())
9851 {
9852 if (RIDBIT_SETP (RID_AUTO, specbits))
9853 error ("top-level declaration of `%s' specifies `auto'", name);
9854 }
9855
9856 if (nclasses > 0 && friendp)
9857 error ("storage class specifiers invalid in friend function declarations");
9858
9859 /* Now figure out the structure of the declarator proper.
9860 Descend through it, creating more complex types, until we reach
9861 the declared identifier (or NULL_TREE, in an absolute declarator). */
9862
9863 inner_attrs = NULL_TREE;
9864 ignore_attrs = 0;
9865
9866 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE
9867 && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
9868 {
9869 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
9870 an INDIRECT_REF (for *...),
9871 a CALL_EXPR (for ...(...)),
9872 an identifier (for the name being declared)
9873 or a null pointer (for the place in an absolute declarator
9874 where the name was omitted).
9875 For the last two cases, we have just exited the loop.
9876
9877 For C++ it could also be
9878 a SCOPE_REF (for class :: ...). In this case, we have converted
9879 sensible names to types, and those are the values we use to
9880 qualify the member name.
9881 an ADDR_EXPR (for &...),
9882 a BIT_NOT_EXPR (for destructors)
9883
9884 At this point, TYPE is the type of elements of an array,
9885 or for a function to return, or for a pointer to point to.
9886 After this sequence of ifs, TYPE is the type of the
9887 array or function or pointer, and DECLARATOR has had its
9888 outermost layer removed. */
9889
9890 if (type == error_mark_node)
9891 {
9892 if (TREE_CODE (declarator) == SCOPE_REF)
9893 declarator = TREE_OPERAND (declarator, 1);
9894 else
9895 declarator = TREE_OPERAND (declarator, 0);
9896 continue;
9897 }
9898 if (quals != NULL_TREE
9899 && (declarator == NULL_TREE
9900 || TREE_CODE (declarator) != SCOPE_REF))
9901 {
9902 if (ctype == NULL_TREE && TREE_CODE (type) == METHOD_TYPE)
9903 ctype = TYPE_METHOD_BASETYPE (type);
9904 if (ctype != NULL_TREE)
9905 {
9906 tree dummy = build_decl (TYPE_DECL, NULL_TREE, type);
9907 ctype = grok_method_quals (ctype, dummy, quals);
9908 type = TREE_TYPE (dummy);
9909 quals = NULL_TREE;
9910 }
9911 }
9912
9913 /* See the comment for the TREE_LIST case, below. */
9914 if (ignore_attrs)
9915 ignore_attrs = 0;
9916 else if (inner_attrs)
9917 {
9918 decl_attributes (type, inner_attrs, NULL_TREE);
9919 inner_attrs = NULL_TREE;
9920 }
9921
9922 switch (TREE_CODE (declarator))
9923 {
9924 case TREE_LIST:
9925 {
9926 /* We encode a declarator with embedded attributes using
9927 a TREE_LIST. The attributes apply to the declarator
9928 directly inside them, so we have to skip an iteration
9929 before applying them to the type. If the declarator just
9930 inside is the declarator-id, we apply the attrs to the
9931 decl itself. */
9932 inner_attrs = TREE_PURPOSE (declarator);
9933 ignore_attrs = 1;
9934 declarator = TREE_VALUE (declarator);
9935 }
9936 break;
9937
9938 case ARRAY_REF:
9939 {
9940 register tree itype = NULL_TREE;
9941 register tree size = TREE_OPERAND (declarator, 1);
9942 /* The index is a signed object `sizetype' bits wide. */
9943 tree index_type = signed_type (sizetype);
9944
9945 declarator = TREE_OPERAND (declarator, 0);
9946
9947 /* Check for some types that there cannot be arrays of. */
9948
9949 if (TREE_CODE (type) == VOID_TYPE)
9950 {
9951 cp_error ("declaration of `%D' as array of voids", dname);
9952 type = error_mark_node;
9953 }
9954
9955 if (TREE_CODE (type) == FUNCTION_TYPE)
9956 {
9957 cp_error ("declaration of `%D' as array of functions", dname);
9958 type = error_mark_node;
9959 }
9960
9961 /* ARM $8.4.3: Since you can't have a pointer to a reference,
9962 you can't have arrays of references. If we allowed them,
9963 then we'd be saying x[i] is valid for an array x, but
9964 then you'd have to ask: what does `*(x + i)' mean? */
9965 if (TREE_CODE (type) == REFERENCE_TYPE)
9966 {
9967 if (decl_context == TYPENAME)
9968 cp_error ("cannot make arrays of references");
9969 else
9970 cp_error ("declaration of `%D' as array of references",
9971 dname);
9972 type = error_mark_node;
9973 }
9974
9975 if (TREE_CODE (type) == OFFSET_TYPE)
9976 {
9977 cp_error ("declaration of `%D' as array of data members",
9978 dname);
9979 type = error_mark_node;
9980 }
9981
9982 if (TREE_CODE (type) == METHOD_TYPE)
9983 {
9984 cp_error ("declaration of `%D' as array of function members",
9985 dname);
9986 type = error_mark_node;
9987 }
9988
9989 if (size == error_mark_node)
9990 type = error_mark_node;
9991 else if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
9992 {
9993 /* [dcl.array]
9994
9995 the constant expressions that specify the bounds of
9996 the arrays can be omitted only for the first member
9997 of the sequence. */
9998 cp_error ("declaration of `%D' as multidimensional array",
9999 dname);
10000 cp_error ("must have bounds for all dimensions except the first");
10001 type = error_mark_node;
10002 }
10003
10004 if (type == error_mark_node)
10005 continue;
10006
10007 /* VC++ spells a zero-sized array with []. */
10008 if (size == NULL_TREE && decl_context == FIELD && ! staticp
10009 && ! RIDBIT_SETP (RID_TYPEDEF, specbits))
10010 size = integer_zero_node;
10011
10012 if (size)
10013 {
10014 /* Must suspend_momentary here because the index
10015 type may need to live until the end of the function.
10016 For example, it is used in the declaration of a
10017 variable which requires destructing at the end of
10018 the function; then build_vec_delete will need this
10019 value. */
10020 int yes = suspend_momentary ();
10021 /* Might be a cast. */
10022 if (TREE_CODE (size) == NOP_EXPR
10023 && TREE_TYPE (size) == TREE_TYPE (TREE_OPERAND (size, 0)))
10024 size = TREE_OPERAND (size, 0);
10025 if (TREE_READONLY_DECL_P (size))
10026 size = decl_constant_value (size);
10027
10028 /* If this involves a template parameter, it will be a
10029 constant at instantiation time, but we don't know
10030 what the value is yet. Even if no template
10031 parameters are involved, we may an expression that
10032 is not a constant; we don't even simplify `1 + 2'
10033 when processing a template. */
10034 if (processing_template_decl)
10035 {
10036 /* Resolve a qualified reference to an enumerator or
10037 static const data member of ours. */
10038 if (TREE_CODE (size) == SCOPE_REF
10039 && TREE_OPERAND (size, 0) == current_class_type)
10040 {
10041 tree t = lookup_field (current_class_type,
10042 TREE_OPERAND (size, 1), 0, 0);
10043 if (t)
10044 size = t;
10045 }
10046
10047 itype = build_index_type (build_min
10048 (MINUS_EXPR, sizetype, size, integer_one_node));
10049 goto dont_grok_size;
10050 }
10051
10052 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
10053 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE
10054 && TREE_CODE (TREE_TYPE (size)) != BOOLEAN_TYPE)
10055 {
10056 cp_error ("size of array `%D' has non-integer type",
10057 dname);
10058 size = integer_one_node;
10059 }
10060 if (pedantic && integer_zerop (size))
10061 cp_pedwarn ("ANSI C++ forbids zero-size array `%D'", dname);
10062 if (TREE_CONSTANT (size))
10063 {
10064 int old_flag_pedantic_errors = flag_pedantic_errors;
10065 int old_pedantic = pedantic;
10066 pedantic = flag_pedantic_errors = 1;
10067 /* Always give overflow errors on array subscripts. */
10068 constant_expression_warning (size);
10069 pedantic = old_pedantic;
10070 flag_pedantic_errors = old_flag_pedantic_errors;
10071 if (INT_CST_LT (size, integer_zero_node))
10072 {
10073 cp_error ("size of array `%D' is negative", dname);
10074 size = integer_one_node;
10075 }
10076 }
10077 else
10078 {
10079 if (pedantic)
10080 {
10081 if (dname)
10082 cp_pedwarn ("ANSI C++ forbids variable-size array `%D'",
10083 dname);
10084 else
10085 cp_pedwarn ("ANSI C++ forbids variable-size array");
10086 }
10087 }
10088
10089 itype
10090 = fold (build_binary_op (MINUS_EXPR,
10091 cp_convert (index_type, size),
10092 cp_convert (index_type,
10093 integer_one_node)));
10094 if (! TREE_CONSTANT (itype))
10095 itype = variable_size (itype);
10096 else if (TREE_OVERFLOW (itype))
10097 {
10098 error ("overflow in array dimension");
10099 TREE_OVERFLOW (itype) = 0;
10100 }
10101
10102 /* If we're a parm, we need to have a permanent type so
10103 mangling checks for re-use will work right. If both the
10104 element and index types are permanent, the array type
10105 will be, too. */
10106 if (decl_context == PARM
10107 && allocation_temporary_p () && TREE_PERMANENT (type))
10108 {
10109 push_obstacks (&permanent_obstack, &permanent_obstack);
10110 itype = build_index_type (itype);
10111 pop_obstacks ();
10112 }
10113 else
10114 itype = build_index_type (itype);
10115
10116 dont_grok_size:
10117 resume_momentary (yes);
10118 }
10119
10120 type = build_cplus_array_type (type, itype);
10121 ctype = NULL_TREE;
10122 }
10123 break;
10124
10125 case CALL_EXPR:
10126 {
10127 tree arg_types;
10128 int funcdecl_p;
10129 tree inner_parms = CALL_DECLARATOR_PARMS (declarator);
10130 tree inner_decl = TREE_OPERAND (declarator, 0);
10131
10132 /* Declaring a function type.
10133 Make sure we have a valid type for the function to return. */
10134
10135 /* We now know that the TYPE_QUALS don't apply to the
10136 decl, but to its return type. */
10137 type_quals = TYPE_UNQUALIFIED;
10138
10139 /* Warn about some types functions can't return. */
10140
10141 if (TREE_CODE (type) == FUNCTION_TYPE)
10142 {
10143 error ("`%s' declared as function returning a function", name);
10144 type = integer_type_node;
10145 }
10146 if (TREE_CODE (type) == ARRAY_TYPE)
10147 {
10148 error ("`%s' declared as function returning an array", name);
10149 type = integer_type_node;
10150 }
10151
10152 if (inner_decl && TREE_CODE (inner_decl) == SCOPE_REF)
10153 inner_decl = TREE_OPERAND (inner_decl, 1);
10154
10155 if (inner_decl && TREE_CODE (inner_decl) == TEMPLATE_ID_EXPR)
10156 inner_decl = dname;
10157
10158 /* Pick up type qualifiers which should be applied to `this'. */
10159 quals = CALL_DECLARATOR_QUALS (declarator);
10160
10161 /* Pick up the exception specifications. */
10162 raises = CALL_DECLARATOR_EXCEPTION_SPEC (declarator);
10163
10164 /* Say it's a definition only for the CALL_EXPR
10165 closest to the identifier. */
10166 funcdecl_p
10167 = inner_decl
10168 && (TREE_CODE (inner_decl) == IDENTIFIER_NODE
10169 || TREE_CODE (inner_decl) == TEMPLATE_ID_EXPR
10170 || TREE_CODE (inner_decl) == BIT_NOT_EXPR);
10171
10172 if (ctype == NULL_TREE
10173 && decl_context == FIELD
10174 && funcdecl_p
10175 && (friendp == 0 || dname == current_class_name))
10176 ctype = current_class_type;
10177
10178 if (ctype && return_type == return_conversion)
10179 TYPE_HAS_CONVERSION (ctype) = 1;
10180 if (ctype && constructor_name (ctype) == dname)
10181 {
10182 /* We are within a class's scope. If our declarator name
10183 is the same as the class name, and we are defining
10184 a function, then it is a constructor/destructor, and
10185 therefore returns a void type. */
10186
10187 if (flags == DTOR_FLAG)
10188 {
10189 /* ANSI C++ June 5 1992 WP 12.4.1. A destructor may
10190 not be declared const or volatile. A destructor
10191 may not be static. */
10192 if (staticp == 2)
10193 error ("destructor cannot be static member function");
10194 if (quals)
10195 {
10196 cp_error ("destructors may not be `%s'",
10197 IDENTIFIER_POINTER (TREE_VALUE (quals)));
10198 quals = NULL_TREE;
10199 }
10200 if (decl_context == FIELD)
10201 {
10202 if (! member_function_or_else (ctype, current_class_type,
10203 "destructor for alien class `%s' cannot be a member"))
10204 return void_type_node;
10205 }
10206 }
10207 else /* It's a constructor. */
10208 {
10209 if (explicitp == 1)
10210 explicitp = 2;
10211 /* ANSI C++ June 5 1992 WP 12.1.2. A constructor may
10212 not be declared const or volatile. A constructor may
10213 not be virtual. A constructor may not be static. */
10214 if (staticp == 2)
10215 error ("constructor cannot be static member function");
10216 if (virtualp)
10217 {
10218 pedwarn ("constructors cannot be declared virtual");
10219 virtualp = 0;
10220 }
10221 if (quals)
10222 {
10223 cp_error ("constructors may not be `%s'",
10224 IDENTIFIER_POINTER (TREE_VALUE (quals)));
10225 quals = NULL_TREE;
10226 }
10227 {
10228 RID_BIT_TYPE tmp_bits;
10229 bcopy ((void*)&specbits, (void*)&tmp_bits, sizeof (RID_BIT_TYPE));
10230 RIDBIT_RESET (RID_INLINE, tmp_bits);
10231 RIDBIT_RESET (RID_STATIC, tmp_bits);
10232 if (RIDBIT_ANY_SET (tmp_bits))
10233 error ("return value type specifier for constructor ignored");
10234 }
10235 type = build_pointer_type (ctype);
10236 if (decl_context == FIELD)
10237 {
10238 if (! member_function_or_else (ctype, current_class_type,
10239 "constructor for alien class `%s' cannot be member"))
10240 return void_type_node;
10241 TYPE_HAS_CONSTRUCTOR (ctype) = 1;
10242 if (return_type != return_ctor)
10243 return NULL_TREE;
10244 }
10245 }
10246 if (decl_context == FIELD)
10247 staticp = 0;
10248 }
10249 else if (friendp)
10250 {
10251 if (initialized)
10252 error ("can't initialize friend function `%s'", name);
10253 if (virtualp)
10254 {
10255 /* Cannot be both friend and virtual. */
10256 error ("virtual functions cannot be friends");
10257 RIDBIT_RESET (RID_FRIEND, specbits);
10258 friendp = 0;
10259 }
10260 if (decl_context == NORMAL)
10261 error ("friend declaration not in class definition");
10262 if (current_function_decl && funcdef_flag)
10263 cp_error ("can't define friend function `%s' in a local class definition",
10264 name);
10265 }
10266
10267 /* Construct the function type and go to the next
10268 inner layer of declarator. */
10269
10270 declarator = TREE_OPERAND (declarator, 0);
10271
10272 /* FIXME: This is where default args should be fully
10273 processed. */
10274
10275 arg_types = grokparms (inner_parms, funcdecl_p ? funcdef_flag : 0);
10276
10277 if (declarator && flags == DTOR_FLAG)
10278 {
10279 /* A destructor declared in the body of a class will
10280 be represented as a BIT_NOT_EXPR. But, we just
10281 want the underlying IDENTIFIER. */
10282 if (TREE_CODE (declarator) == BIT_NOT_EXPR)
10283 declarator = TREE_OPERAND (declarator, 0);
10284
10285 if (strict_prototype == 0 && arg_types == NULL_TREE)
10286 arg_types = void_list_node;
10287 else if (arg_types == NULL_TREE
10288 || arg_types != void_list_node)
10289 {
10290 cp_error ("destructors may not have parameters");
10291 arg_types = void_list_node;
10292 last_function_parms = NULL_TREE;
10293 }
10294 }
10295
10296 /* ANSI says that `const int foo ();'
10297 does not make the function foo const. */
10298 type = build_function_type (type, arg_types);
10299
10300 {
10301 tree t;
10302 for (t = arg_types; t; t = TREE_CHAIN (t))
10303 if (TREE_PURPOSE (t)
10304 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
10305 {
10306 add_defarg_fn (type);
10307 break;
10308 }
10309 }
10310 }
10311 break;
10312
10313 case ADDR_EXPR:
10314 case INDIRECT_REF:
10315 /* Filter out pointers-to-references and references-to-references.
10316 We can get these if a TYPE_DECL is used. */
10317
10318 if (TREE_CODE (type) == REFERENCE_TYPE)
10319 {
10320 error ("cannot declare %s to references",
10321 TREE_CODE (declarator) == ADDR_EXPR
10322 ? "references" : "pointers");
10323 declarator = TREE_OPERAND (declarator, 0);
10324 continue;
10325 }
10326
10327 if (TREE_CODE (type) == OFFSET_TYPE
10328 && (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE
10329 || TREE_CODE (TREE_TYPE (type)) == REFERENCE_TYPE))
10330 {
10331 cp_error ("cannot declare pointer to `%#T' member",
10332 TREE_TYPE (type));
10333 type = TREE_TYPE (type);
10334 }
10335
10336 /* Merge any constancy or volatility into the target type
10337 for the pointer. */
10338
10339 /* We now know that the TYPE_QUALS don't apply to the decl,
10340 but to the target of the pointer. */
10341 type_quals = TYPE_UNQUALIFIED;
10342
10343 if (TREE_CODE (declarator) == ADDR_EXPR)
10344 {
10345 if (TREE_CODE (type) == VOID_TYPE)
10346 error ("invalid type: `void &'");
10347 else
10348 type = build_reference_type (type);
10349 }
10350 else if (TREE_CODE (type) == METHOD_TYPE)
10351 type = build_ptrmemfunc_type (build_pointer_type (type));
10352 else
10353 type = build_pointer_type (type);
10354
10355 /* Process a list of type modifier keywords (such as
10356 const or volatile) that were given inside the `*' or `&'. */
10357
10358 if (TREE_TYPE (declarator))
10359 {
10360 register tree typemodlist;
10361 int erred = 0;
10362
10363 constp = 0;
10364 volatilep = 0;
10365 restrictp = 0;
10366 for (typemodlist = TREE_TYPE (declarator); typemodlist;
10367 typemodlist = TREE_CHAIN (typemodlist))
10368 {
10369 tree qualifier = TREE_VALUE (typemodlist);
10370
10371 if (qualifier == ridpointers[(int) RID_CONST])
10372 constp++;
10373 else if (qualifier == ridpointers[(int) RID_VOLATILE])
10374 volatilep++;
10375 else if (qualifier == ridpointers[(int) RID_RESTRICT])
10376 restrictp++;
10377 else if (!erred)
10378 {
10379 erred = 1;
10380 error ("invalid type modifier within pointer declarator");
10381 }
10382 }
10383 if (constp > 1)
10384 pedwarn ("duplicate `const'");
10385 if (volatilep > 1)
10386 pedwarn ("duplicate `volatile'");
10387 if (restrictp > 1)
10388 pedwarn ("duplicate `restrict'");
10389
10390 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
10391 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
10392 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
10393 if (TREE_CODE (declarator) == ADDR_EXPR
10394 && (constp || volatilep))
10395 {
10396 if (constp)
10397 pedwarn ("discarding `const' applied to a reference");
10398 if (volatilep)
10399 pedwarn ("discarding `volatile' applied to a reference");
10400 type_quals &= ~(TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE);
10401 }
10402 type = cp_build_qualified_type (type, type_quals);
10403 }
10404 declarator = TREE_OPERAND (declarator, 0);
10405 ctype = NULL_TREE;
10406 break;
10407
10408 case SCOPE_REF:
10409 {
10410 /* We have converted type names to NULL_TREE if the
10411 name was bogus, or to a _TYPE node, if not.
10412
10413 The variable CTYPE holds the type we will ultimately
10414 resolve to. The code here just needs to build
10415 up appropriate member types. */
10416 tree sname = TREE_OPERAND (declarator, 1);
10417 tree t;
10418
10419 /* Destructors can have their visibilities changed as well. */
10420 if (TREE_CODE (sname) == BIT_NOT_EXPR)
10421 sname = TREE_OPERAND (sname, 0);
10422
10423 if (TREE_COMPLEXITY (declarator) == 0)
10424 /* This needs to be here, in case we are called
10425 multiple times. */ ;
10426 else if (TREE_COMPLEXITY (declarator) == -1)
10427 /* Namespace member. */
10428 pop_decl_namespace ();
10429 else if (friendp && (TREE_COMPLEXITY (declarator) < 2))
10430 /* Don't fall out into global scope. Hides real bug? --eichin */ ;
10431 else if (! IS_AGGR_TYPE_CODE
10432 (TREE_CODE (TREE_OPERAND (declarator, 0))))
10433 ;
10434 else if (TREE_COMPLEXITY (declarator) == current_class_depth)
10435 {
10436 /* Resolve any TYPENAME_TYPEs from the decl-specifier-seq
10437 that refer to ctype. They couldn't be resolved earlier
10438 because we hadn't pushed into the class yet.
10439 Example: resolve 'B<T>::type' in
10440 'B<typename B<T>::type> B<T>::f () { }'. */
10441 if (current_template_parms
10442 && uses_template_parms (type)
10443 && uses_template_parms (current_class_type))
10444 {
10445 tree args = current_template_args ();
10446 type = tsubst (type, args, /*complain=*/1, NULL_TREE);
10447 }
10448
10449 /* This pop_nested_class corresponds to the
10450 push_nested_class used to push into class scope for
10451 parsing the argument list of a function decl, in
10452 qualified_id. */
10453 pop_nested_class ();
10454 TREE_COMPLEXITY (declarator) = current_class_depth;
10455 }
10456 else
10457 my_friendly_abort (16);
10458
10459 if (TREE_OPERAND (declarator, 0) == NULL_TREE)
10460 {
10461 /* We had a reference to a global decl, or
10462 perhaps we were given a non-aggregate typedef,
10463 in which case we cleared this out, and should just
10464 keep going as though it wasn't there. */
10465 declarator = sname;
10466 continue;
10467 }
10468 ctype = TREE_OPERAND (declarator, 0);
10469
10470 t = ctype;
10471 while (t != NULL_TREE && CLASS_TYPE_P (t))
10472 {
10473 if (CLASSTYPE_TEMPLATE_INFO (t) &&
10474 !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
10475 template_count += 1;
10476 t = TYPE_MAIN_DECL (t);
10477 if (DECL_LANG_SPECIFIC (t))
10478 t = DECL_CLASS_CONTEXT (t);
10479 else
10480 t = NULL_TREE;
10481 }
10482
10483 if (sname == NULL_TREE)
10484 goto done_scoping;
10485
10486 if (TREE_CODE (sname) == IDENTIFIER_NODE)
10487 {
10488 /* This is the `standard' use of the scoping operator:
10489 basetype :: member . */
10490
10491 if (ctype == current_class_type)
10492 {
10493 /* class A {
10494 void A::f ();
10495 };
10496
10497 Is this ill-formed? */
10498
10499 if (pedantic)
10500 cp_pedwarn ("extra qualification `%T::' on member `%s' ignored",
10501 ctype, name);
10502 }
10503 else if (TREE_CODE (type) == FUNCTION_TYPE)
10504 {
10505 if (current_class_type == NULL_TREE
10506 || friendp)
10507 type = build_cplus_method_type (ctype, TREE_TYPE (type),
10508 TYPE_ARG_TYPES (type));
10509 else
10510 {
10511 cp_error ("cannot declare member function `%T::%s' within `%T'",
10512 ctype, name, current_class_type);
10513 return void_type_node;
10514 }
10515 }
10516 else if (RIDBIT_SETP (RID_TYPEDEF, specbits)
10517 || TYPE_SIZE (complete_type (ctype)) != NULL_TREE)
10518 {
10519 /* Have to move this code elsewhere in this function.
10520 this code is used for i.e., typedef int A::M; M *pm;
10521
10522 It is? How? jason 10/2/94 */
10523
10524 if (current_class_type)
10525 {
10526 cp_error ("cannot declare member `%T::%s' within `%T'",
10527 ctype, name, current_class_type);
10528 return void_type_node;
10529 }
10530 type = build_offset_type (ctype, type);
10531 }
10532 else if (uses_template_parms (ctype))
10533 {
10534 if (TREE_CODE (type) == FUNCTION_TYPE)
10535 type
10536 = build_cplus_method_type (ctype, TREE_TYPE (type),
10537 TYPE_ARG_TYPES (type));
10538 }
10539 else
10540 {
10541 cp_error ("structure `%T' not yet defined", ctype);
10542 return error_mark_node;
10543 }
10544
10545 declarator = sname;
10546 }
10547 else if (TREE_CODE (sname) == SCOPE_REF)
10548 my_friendly_abort (17);
10549 else
10550 {
10551 done_scoping:
10552 declarator = TREE_OPERAND (declarator, 1);
10553 if (declarator && TREE_CODE (declarator) == CALL_EXPR)
10554 /* In this case, we will deal with it later. */
10555 ;
10556 else
10557 {
10558 if (TREE_CODE (type) == FUNCTION_TYPE)
10559 type = build_cplus_method_type (ctype, TREE_TYPE (type),
10560 TYPE_ARG_TYPES (type));
10561 else
10562 type = build_offset_type (ctype, type);
10563 }
10564 }
10565 }
10566 break;
10567
10568 case BIT_NOT_EXPR:
10569 declarator = TREE_OPERAND (declarator, 0);
10570 break;
10571
10572 case RECORD_TYPE:
10573 case UNION_TYPE:
10574 case ENUMERAL_TYPE:
10575 declarator = NULL_TREE;
10576 break;
10577
10578 case ERROR_MARK:
10579 declarator = NULL_TREE;
10580 break;
10581
10582 default:
10583 my_friendly_abort (158);
10584 }
10585 }
10586
10587 /* See the comment for the TREE_LIST case, above. */
10588 if (inner_attrs)
10589 {
10590 if (! ignore_attrs)
10591 decl_attributes (type, inner_attrs, NULL_TREE);
10592 else if (attrlist)
10593 TREE_VALUE (attrlist) = chainon (inner_attrs, TREE_VALUE (attrlist));
10594 else
10595 attrlist = build_decl_list (NULL_TREE, inner_attrs);
10596 }
10597
10598 /* Now TYPE has the actual type. */
10599
10600 if (explicitp == 1)
10601 {
10602 error ("only constructors can be declared `explicit'");
10603 explicitp = 0;
10604 }
10605
10606 if (RIDBIT_SETP (RID_MUTABLE, specbits))
10607 {
10608 if (type_quals & TYPE_QUAL_CONST)
10609 {
10610 error ("const `%s' cannot be declared `mutable'", name);
10611 RIDBIT_RESET (RID_MUTABLE, specbits);
10612 }
10613 else if (staticp)
10614 {
10615 error ("static `%s' cannot be declared `mutable'", name);
10616 RIDBIT_RESET (RID_MUTABLE, specbits);
10617 }
10618 }
10619
10620 if (declarator == NULL_TREE
10621 || TREE_CODE (declarator) == IDENTIFIER_NODE
10622 || (TREE_CODE (declarator) == TEMPLATE_ID_EXPR
10623 && (TREE_CODE (type) == FUNCTION_TYPE
10624 || TREE_CODE (type) == METHOD_TYPE)))
10625 /* OK */;
10626 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
10627 {
10628 cp_error ("template-id `%D' used as a declarator", declarator);
10629 declarator = dname;
10630 }
10631 else
10632 /* Unexpected declarator format. */
10633 my_friendly_abort (990210);
10634
10635 /* If this is declaring a typedef name, return a TYPE_DECL. */
10636
10637 if (RIDBIT_SETP (RID_TYPEDEF, specbits) && decl_context != TYPENAME)
10638 {
10639 tree decl;
10640
10641 /* Note that the grammar rejects storage classes
10642 in typenames, fields or parameters. */
10643 if (current_lang_name == lang_name_java)
10644 TYPE_FOR_JAVA (type) = 1;
10645
10646 if (decl_context == FIELD)
10647 {
10648 if (declarator == constructor_name (current_class_type))
10649 cp_pedwarn ("ANSI C++ forbids nested type `%D' with same name as enclosing class",
10650 declarator);
10651 decl = build_lang_decl (TYPE_DECL, declarator, type);
10652 }
10653 else
10654 {
10655 /* Make sure this typedef lives as long as its type,
10656 since it might be used as a template parameter. */
10657 if (type != error_mark_node)
10658 push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
10659 if (processing_template_decl)
10660 decl = build_lang_decl (TYPE_DECL, declarator, type);
10661 else
10662 decl = build_decl (TYPE_DECL, declarator, type);
10663 if (type != error_mark_node)
10664 pop_obstacks ();
10665 }
10666
10667 /* If the user declares "typedef struct {...} foo" then the
10668 struct will have an anonymous name. Fill that name in now.
10669 Nothing can refer to it, so nothing needs know about the name
10670 change. */
10671 if (type != error_mark_node
10672 && TYPE_NAME (type)
10673 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10674 && ANON_AGGRNAME_P (TYPE_IDENTIFIER (type))
10675 && CP_TYPE_QUALS (type) == TYPE_UNQUALIFIED)
10676 {
10677 tree oldname = TYPE_NAME (type);
10678 tree t;
10679
10680 /* Replace the anonymous name with the real name everywhere. */
10681 lookup_tag_reverse (type, declarator);
10682 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
10683 if (TYPE_NAME (t) == oldname)
10684 TYPE_NAME (t) = decl;
10685
10686 if (TYPE_LANG_SPECIFIC (type))
10687 TYPE_WAS_ANONYMOUS (type) = 1;
10688
10689 /* If this is a typedef within a template class, the nested
10690 type is a (non-primary) template. The name for the
10691 template needs updating as well. */
10692 if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
10693 DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
10694 = TYPE_IDENTIFIER (type);
10695
10696 /* XXX Temporarily set the scope.
10697 When returning, start_decl expects it as NULL_TREE,
10698 and will then then set it using pushdecl. */
10699 my_friendly_assert (DECL_CONTEXT (decl) == NULL_TREE, 980404);
10700 if (current_class_type)
10701 DECL_CONTEXT (decl) = current_class_type;
10702 else
10703 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
10704
10705 DECL_ASSEMBLER_NAME (decl) = DECL_NAME (decl);
10706 DECL_ASSEMBLER_NAME (decl)
10707 = get_identifier (build_overload_name (type, 1, 1));
10708 DECL_CONTEXT (decl) = NULL_TREE;
10709
10710 /* FIXME remangle member functions; member functions of a
10711 type with external linkage have external linkage. */
10712 }
10713
10714 if (TREE_CODE (type) == OFFSET_TYPE || TREE_CODE (type) == METHOD_TYPE)
10715 {
10716 cp_error_at ("typedef name may not be class-qualified", decl);
10717 return NULL_TREE;
10718 }
10719 else if (quals)
10720 {
10721 if (ctype == NULL_TREE)
10722 {
10723 if (TREE_CODE (type) != METHOD_TYPE)
10724 cp_error_at ("invalid type qualifier for non-method type", decl);
10725 else
10726 ctype = TYPE_METHOD_BASETYPE (type);
10727 }
10728 if (ctype != NULL_TREE)
10729 grok_method_quals (ctype, decl, quals);
10730 }
10731
10732 if (RIDBIT_SETP (RID_SIGNED, specbits)
10733 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
10734 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
10735
10736 if (RIDBIT_SETP (RID_MUTABLE, specbits))
10737 error ("non-object member `%s' cannot be declared mutable", name);
10738
10739 bad_specifiers (decl, "type", virtualp, quals != NULL_TREE,
10740 inlinep, friendp, raises != NULL_TREE);
10741
10742 if (initialized)
10743 error ("typedef declaration includes an initializer");
10744
10745 return decl;
10746 }
10747
10748 /* Detect the case of an array type of unspecified size
10749 which came, as such, direct from a typedef name.
10750 We must copy the type, so that each identifier gets
10751 a distinct type, so that each identifier's size can be
10752 controlled separately by its own initializer. */
10753
10754 if (type == typedef_type && TREE_CODE (type) == ARRAY_TYPE
10755 && TYPE_DOMAIN (type) == NULL_TREE)
10756 {
10757 type = build_cplus_array_type (TREE_TYPE (type), TYPE_DOMAIN (type));
10758 }
10759
10760 /* If this is a type name (such as, in a cast or sizeof),
10761 compute the type and return it now. */
10762
10763 if (decl_context == TYPENAME)
10764 {
10765 /* Note that the grammar rejects storage classes
10766 in typenames, fields or parameters. */
10767 if (type_quals != TYPE_UNQUALIFIED)
10768 type_quals = TYPE_UNQUALIFIED;
10769
10770 /* Special case: "friend class foo" looks like a TYPENAME context. */
10771 if (friendp)
10772 {
10773 if (type_quals != TYPE_UNQUALIFIED)
10774 {
10775 cp_error ("type qualifiers specified for friend class declaration");
10776 type_quals = TYPE_UNQUALIFIED;
10777 }
10778 if (inlinep)
10779 {
10780 cp_error ("`inline' specified for friend class declaration");
10781 inlinep = 0;
10782 }
10783
10784 /* Only try to do this stuff if we didn't already give up. */
10785 if (type != integer_type_node)
10786 {
10787 /* A friendly class? */
10788 if (current_class_type)
10789 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type));
10790 else
10791 error ("trying to make class `%s' a friend of global scope",
10792 TYPE_NAME_STRING (type));
10793 type = void_type_node;
10794 }
10795 }
10796 else if (quals)
10797 {
10798 tree dummy = build_decl (TYPE_DECL, declarator, type);
10799 if (ctype == NULL_TREE)
10800 {
10801 my_friendly_assert (TREE_CODE (type) == METHOD_TYPE, 159);
10802 ctype = TYPE_METHOD_BASETYPE (type);
10803 }
10804 grok_method_quals (ctype, dummy, quals);
10805 type = TREE_TYPE (dummy);
10806 }
10807
10808 return type;
10809 }
10810 else if (declarator == NULL_TREE && decl_context != PARM
10811 && decl_context != CATCHPARM
10812 && TREE_CODE (type) != UNION_TYPE
10813 && ! bitfield)
10814 {
10815 cp_error ("abstract declarator `%T' used as declaration", type);
10816 declarator = make_anon_name ();
10817 }
10818
10819 /* `void' at top level (not within pointer)
10820 is allowed only in typedefs or type names.
10821 We don't complain about parms either, but that is because
10822 a better error message can be made later. */
10823
10824 if (TREE_CODE (type) == VOID_TYPE && decl_context != PARM)
10825 {
10826 if (! declarator)
10827 error ("unnamed variable or field declared void");
10828 else if (TREE_CODE (declarator) == IDENTIFIER_NODE)
10829 {
10830 if (IDENTIFIER_OPNAME_P (declarator))
10831 my_friendly_abort (356);
10832 else
10833 error ("variable or field `%s' declared void", name);
10834 }
10835 else
10836 error ("variable or field declared void");
10837 type = integer_type_node;
10838 }
10839
10840 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
10841 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
10842
10843 if (decl_context == PARM || decl_context == CATCHPARM)
10844 {
10845 if (ctype || in_namespace)
10846 error ("cannot use `::' in parameter declaration");
10847
10848 /* A parameter declared as an array of T is really a pointer to T.
10849 One declared as a function is really a pointer to a function.
10850 One declared as a member is really a pointer to member. */
10851
10852 if (TREE_CODE (type) == ARRAY_TYPE)
10853 {
10854 /* Transfer const-ness of array into that of type pointed to. */
10855 type = build_pointer_type (TREE_TYPE (type));
10856 type_quals = TYPE_UNQUALIFIED;
10857 }
10858 else if (TREE_CODE (type) == FUNCTION_TYPE)
10859 type = build_pointer_type (type);
10860 else if (TREE_CODE (type) == OFFSET_TYPE)
10861 type = build_pointer_type (type);
10862 else if (TREE_CODE (type) == VOID_TYPE && declarator)
10863 {
10864 error ("declaration of `%s' as void", name);
10865 return NULL_TREE;
10866 }
10867 }
10868
10869 {
10870 register tree decl;
10871
10872 if (decl_context == PARM)
10873 {
10874 decl = build_decl (PARM_DECL, declarator, type);
10875
10876 bad_specifiers (decl, "parameter", virtualp, quals != NULL_TREE,
10877 inlinep, friendp, raises != NULL_TREE);
10878
10879 /* Compute the type actually passed in the parmlist,
10880 for the case where there is no prototype.
10881 (For example, shorts and chars are passed as ints.)
10882 When there is a prototype, this is overridden later. */
10883
10884 DECL_ARG_TYPE (decl) = type_promotes_to (type);
10885 }
10886 else if (decl_context == FIELD)
10887 {
10888 if (type == error_mark_node)
10889 {
10890 /* Happens when declaring arrays of sizes which
10891 are error_mark_node, for example. */
10892 decl = NULL_TREE;
10893 }
10894 else if (in_namespace && !friendp)
10895 {
10896 /* Something like struct S { int N::j; }; */
10897 cp_error ("invalid use of `::'");
10898 decl = NULL_TREE;
10899 }
10900 else if (TREE_CODE (type) == FUNCTION_TYPE)
10901 {
10902 int publicp = 0;
10903 tree function_context;
10904
10905 /* We catch the others as conflicts with the builtin
10906 typedefs. */
10907 if (friendp && declarator == ridpointers[(int) RID_SIGNED])
10908 {
10909 cp_error ("function `%D' cannot be declared friend",
10910 declarator);
10911 friendp = 0;
10912 }
10913
10914 if (friendp == 0)
10915 {
10916 if (ctype == NULL_TREE)
10917 ctype = current_class_type;
10918
10919 if (ctype == NULL_TREE)
10920 {
10921 cp_error ("can't make `%D' into a method -- not in a class",
10922 declarator);
10923 return void_type_node;
10924 }
10925
10926 /* ``A union may [ ... ] not [ have ] virtual functions.''
10927 ARM 9.5 */
10928 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
10929 {
10930 cp_error ("function `%D' declared virtual inside a union",
10931 declarator);
10932 return void_type_node;
10933 }
10934
10935 if (declarator == ansi_opname[(int) NEW_EXPR]
10936 || declarator == ansi_opname[(int) VEC_NEW_EXPR]
10937 || declarator == ansi_opname[(int) DELETE_EXPR]
10938 || declarator == ansi_opname[(int) VEC_DELETE_EXPR])
10939 {
10940 if (virtualp)
10941 {
10942 cp_error ("`%D' cannot be declared virtual, since it is always static",
10943 declarator);
10944 virtualp = 0;
10945 }
10946 }
10947 else if (staticp < 2)
10948 type = build_cplus_method_type (ctype, TREE_TYPE (type),
10949 TYPE_ARG_TYPES (type));
10950 }
10951
10952 /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node. */
10953 function_context = (ctype != NULL_TREE) ?
10954 hack_decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
10955 publicp = (! friendp || ! staticp)
10956 && function_context == NULL_TREE;
10957 decl = grokfndecl (ctype, type,
10958 TREE_CODE (declarator) != TEMPLATE_ID_EXPR
10959 ? declarator : dname,
10960 declarator,
10961 virtualp, flags, quals, raises,
10962 friendp ? -1 : 0, friendp, publicp, inlinep,
10963 funcdef_flag, template_count, in_namespace);
10964 if (decl == NULL_TREE)
10965 return decl;
10966 #if 0
10967 /* This clobbers the attrs stored in `decl' from `attrlist'. */
10968 /* The decl and setting of decl_machine_attr is also turned off. */
10969 decl = build_decl_attribute_variant (decl, decl_machine_attr);
10970 #endif
10971
10972 /* [class.conv.ctor]
10973
10974 A constructor declared without the function-specifier
10975 explicit that can be called with a single parameter
10976 specifies a conversion from the type of its first
10977 parameter to the type of its class. Such a constructor
10978 is called a converting constructor. */
10979 if (explicitp == 2)
10980 DECL_NONCONVERTING_P (decl) = 1;
10981 else if (DECL_CONSTRUCTOR_P (decl))
10982 {
10983 /* The constructor can be called with exactly one
10984 parameter if there is at least one parameter, and
10985 any subsequent parameters have default arguments.
10986 We don't look at the first parameter, which is
10987 really just the `this' parameter for the new
10988 object. */
10989 tree arg_types =
10990 TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)));
10991
10992 /* Skip the `in_chrg' argument too, if present. */
10993 if (TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (decl)))
10994 arg_types = TREE_CHAIN (arg_types);
10995
10996 if (arg_types == void_list_node
10997 || (arg_types
10998 && TREE_CHAIN (arg_types)
10999 && TREE_CHAIN (arg_types) != void_list_node
11000 && !TREE_PURPOSE (TREE_CHAIN (arg_types))))
11001 DECL_NONCONVERTING_P (decl) = 1;
11002 }
11003 }
11004 else if (TREE_CODE (type) == METHOD_TYPE)
11005 {
11006 /* We only get here for friend declarations of
11007 members of other classes. */
11008 /* All method decls are public, so tell grokfndecl to set
11009 TREE_PUBLIC, also. */
11010 decl = grokfndecl (ctype, type, declarator, declarator,
11011 virtualp, flags, quals, raises,
11012 friendp ? -1 : 0, friendp, 1, 0, funcdef_flag,
11013 template_count, in_namespace);
11014 if (decl == NULL_TREE)
11015 return NULL_TREE;
11016 }
11017 else if (!staticp && ! processing_template_decl
11018 && TYPE_SIZE (complete_type (type)) == NULL_TREE
11019 && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
11020 {
11021 if (declarator)
11022 cp_error ("field `%D' has incomplete type", declarator);
11023 else
11024 cp_error ("name `%T' has incomplete type", type);
11025
11026 /* If we're instantiating a template, tell them which
11027 instantiation made the field's type be incomplete. */
11028 if (current_class_type
11029 && TYPE_NAME (current_class_type)
11030 && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (current_class_type))
11031 && declspecs && TREE_VALUE (declspecs)
11032 && TREE_TYPE (TREE_VALUE (declspecs)) == type)
11033 cp_error (" in instantiation of template `%T'",
11034 current_class_type);
11035
11036 type = error_mark_node;
11037 decl = NULL_TREE;
11038 }
11039 else
11040 {
11041 if (friendp)
11042 {
11043 error ("`%s' is neither function nor method; cannot be declared friend",
11044 IDENTIFIER_POINTER (declarator));
11045 friendp = 0;
11046 }
11047 decl = NULL_TREE;
11048 }
11049
11050 if (friendp)
11051 {
11052 /* Friends are treated specially. */
11053 if (ctype == current_class_type)
11054 warning ("member functions are implicitly friends of their class");
11055 else
11056 {
11057 tree t = NULL_TREE;
11058 if (decl && DECL_NAME (decl))
11059 {
11060 if (template_class_depth (current_class_type) == 0)
11061 {
11062 decl
11063 = check_explicit_specialization
11064 (declarator, decl,
11065 template_count, 2 * (funcdef_flag != 0) + 4);
11066 if (decl == error_mark_node)
11067 return error_mark_node;
11068 }
11069
11070 t = do_friend (ctype, declarator, decl,
11071 last_function_parms, attrlist, flags, quals,
11072 funcdef_flag);
11073 }
11074 if (t && funcdef_flag)
11075 return t;
11076
11077 return void_type_node;
11078 }
11079 }
11080
11081 /* Structure field. It may not be a function, except for C++ */
11082
11083 if (decl == NULL_TREE)
11084 {
11085 if (initialized)
11086 {
11087 if (!staticp)
11088 {
11089 /* An attempt is being made to initialize a non-static
11090 member. But, from [class.mem]:
11091
11092 4 A member-declarator can contain a
11093 constant-initializer only if it declares a static
11094 member (_class.static_) of integral or enumeration
11095 type, see _class.static.data_.
11096
11097 This used to be relatively common practice, but
11098 the rest of the compiler does not correctly
11099 handle the initialization unless the member is
11100 static so we make it static below. */
11101 cp_pedwarn ("ANSI C++ forbids initialization of member `%D'",
11102 declarator);
11103 cp_pedwarn ("making `%D' static", declarator);
11104 staticp = 1;
11105 }
11106
11107 if (uses_template_parms (type))
11108 /* We'll check at instantiation time. */
11109 ;
11110 else if (check_static_variable_definition (declarator,
11111 type))
11112 /* If we just return the declaration, crashes
11113 will sometimes occur. We therefore return
11114 void_type_node, as if this was a friend
11115 declaration, to cause callers to completely
11116 ignore this declaration. */
11117 return void_type_node;
11118 }
11119
11120 /* 9.2p13 [class.mem] */
11121 if (declarator == constructor_name (current_class_type)
11122 /* Divergence from the standard: In extern "C", we
11123 allow non-static data members here, because C does
11124 and /usr/include/netinet/in.h uses that. */
11125 && (staticp || ! in_system_header))
11126 cp_pedwarn ("ANSI C++ forbids data member `%D' with same name as enclosing class",
11127 declarator);
11128
11129 if (staticp)
11130 {
11131 /* C++ allows static class members. All other work
11132 for this is done by grokfield. */
11133 decl = build_lang_decl (VAR_DECL, declarator, type);
11134 TREE_STATIC (decl) = 1;
11135 /* In class context, 'static' means public access. */
11136 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl) = 1;
11137 }
11138 else
11139 {
11140 decl = build_lang_decl (FIELD_DECL, declarator, type);
11141 if (RIDBIT_SETP (RID_MUTABLE, specbits))
11142 {
11143 DECL_MUTABLE_P (decl) = 1;
11144 RIDBIT_RESET (RID_MUTABLE, specbits);
11145 }
11146 }
11147
11148 bad_specifiers (decl, "field", virtualp, quals != NULL_TREE,
11149 inlinep, friendp, raises != NULL_TREE);
11150 }
11151 }
11152 else if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
11153 {
11154 tree original_name;
11155 int publicp = 0;
11156
11157 if (! declarator)
11158 return NULL_TREE;
11159
11160 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
11161 original_name = dname;
11162 else
11163 original_name = declarator;
11164
11165 if (RIDBIT_SETP (RID_AUTO, specbits))
11166 error ("storage class `auto' invalid for function `%s'", name);
11167 else if (RIDBIT_SETP (RID_REGISTER, specbits))
11168 error ("storage class `register' invalid for function `%s'", name);
11169
11170 /* Function declaration not at top level.
11171 Storage classes other than `extern' are not allowed
11172 and `extern' makes no difference. */
11173 if (! toplevel_bindings_p ()
11174 && (RIDBIT_SETP (RID_STATIC, specbits)
11175 || RIDBIT_SETP (RID_INLINE, specbits))
11176 && pedantic)
11177 {
11178 if (RIDBIT_SETP (RID_STATIC, specbits))
11179 pedwarn ("storage class `static' invalid for function `%s' declared out of global scope", name);
11180 else
11181 pedwarn ("storage class `inline' invalid for function `%s' declared out of global scope", name);
11182 }
11183
11184 if (ctype == NULL_TREE)
11185 {
11186 if (virtualp)
11187 {
11188 error ("virtual non-class function `%s'", name);
11189 virtualp = 0;
11190 }
11191 }
11192 else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2)
11193 type = build_cplus_method_type (ctype, TREE_TYPE (type),
11194 TYPE_ARG_TYPES (type));
11195
11196 /* Record presence of `static'. */
11197 publicp = (ctype != NULL_TREE
11198 || RIDBIT_SETP (RID_EXTERN, specbits)
11199 || !RIDBIT_SETP (RID_STATIC, specbits));
11200
11201 decl = grokfndecl (ctype, type, original_name, declarator,
11202 virtualp, flags, quals, raises,
11203 1, friendp,
11204 publicp, inlinep, funcdef_flag,
11205 template_count, in_namespace);
11206 if (decl == NULL_TREE)
11207 return NULL_TREE;
11208
11209 if (staticp == 1)
11210 {
11211 int illegal_static = 0;
11212
11213 /* Don't allow a static member function in a class, and forbid
11214 declaring main to be static. */
11215 if (TREE_CODE (type) == METHOD_TYPE)
11216 {
11217 cp_pedwarn ("cannot declare member function `%D' to have static linkage", decl);
11218 illegal_static = 1;
11219 }
11220 else if (current_function_decl)
11221 {
11222 /* FIXME need arm citation */
11223 error ("cannot declare static function inside another function");
11224 illegal_static = 1;
11225 }
11226
11227 if (illegal_static)
11228 {
11229 staticp = 0;
11230 RIDBIT_RESET (RID_STATIC, specbits);
11231 }
11232 }
11233 }
11234 else
11235 {
11236 /* It's a variable. */
11237
11238 /* An uninitialized decl with `extern' is a reference. */
11239 decl = grokvardecl (type, declarator, &specbits,
11240 initialized,
11241 (type_quals & TYPE_QUAL_CONST) != 0,
11242 in_namespace);
11243 bad_specifiers (decl, "variable", virtualp, quals != NULL_TREE,
11244 inlinep, friendp, raises != NULL_TREE);
11245
11246 if (ctype)
11247 {
11248 DECL_CONTEXT (decl) = ctype;
11249 if (staticp == 1)
11250 {
11251 cp_pedwarn ("static member `%D' re-declared as static", decl);
11252 staticp = 0;
11253 RIDBIT_RESET (RID_STATIC, specbits);
11254 }
11255 if (RIDBIT_SETP (RID_REGISTER, specbits) && TREE_STATIC (decl))
11256 {
11257 cp_error ("static member `%D' declared `register'", decl);
11258 RIDBIT_RESET (RID_REGISTER, specbits);
11259 }
11260 if (RIDBIT_SETP (RID_EXTERN, specbits) && pedantic)
11261 {
11262 cp_pedwarn ("cannot explicitly declare member `%#D' to have extern linkage",
11263 decl);
11264 RIDBIT_RESET (RID_EXTERN, specbits);
11265 }
11266 }
11267 }
11268
11269 if (RIDBIT_SETP (RID_MUTABLE, specbits))
11270 {
11271 error ("`%s' cannot be declared mutable", name);
11272 }
11273
11274 /* Record `register' declaration for warnings on &
11275 and in case doing stupid register allocation. */
11276
11277 if (RIDBIT_SETP (RID_REGISTER, specbits))
11278 DECL_REGISTER (decl) = 1;
11279
11280 if (RIDBIT_SETP (RID_EXTERN, specbits))
11281 DECL_THIS_EXTERN (decl) = 1;
11282
11283 if (RIDBIT_SETP (RID_STATIC, specbits))
11284 DECL_THIS_STATIC (decl) = 1;
11285
11286 /* Record constancy and volatility. There's no need to do this
11287 when processing a template; we'll do this for the instantiated
11288 declaration based on the type of DECL. */
11289 if (!processing_template_decl)
11290 c_apply_type_quals_to_decl (type_quals, decl);
11291
11292 return decl;
11293 }
11294 }
11295 \f
11296 /* Tell if a parmlist/exprlist looks like an exprlist or a parmlist.
11297 An empty exprlist is a parmlist. An exprlist which
11298 contains only identifiers at the global level
11299 is a parmlist. Otherwise, it is an exprlist. */
11300
11301 int
11302 parmlist_is_exprlist (exprs)
11303 tree exprs;
11304 {
11305 if (exprs == NULL_TREE || TREE_PARMLIST (exprs))
11306 return 0;
11307
11308 if (toplevel_bindings_p ())
11309 {
11310 /* At the global level, if these are all identifiers,
11311 then it is a parmlist. */
11312 while (exprs)
11313 {
11314 if (TREE_CODE (TREE_VALUE (exprs)) != IDENTIFIER_NODE)
11315 return 1;
11316 exprs = TREE_CHAIN (exprs);
11317 }
11318 return 0;
11319 }
11320 return 1;
11321 }
11322
11323 /* Subroutine of start_function. Ensure that each of the parameter
11324 types (as listed in PARMS) is complete, as is required for a
11325 function definition. */
11326
11327 static void
11328 require_complete_types_for_parms (parms)
11329 tree parms;
11330 {
11331 while (parms)
11332 {
11333 tree type = TREE_TYPE (parms);
11334 if (TYPE_SIZE (complete_type (type)) == NULL_TREE)
11335 {
11336 if (DECL_NAME (parms))
11337 error ("parameter `%s' has incomplete type",
11338 IDENTIFIER_POINTER (DECL_NAME (parms)));
11339 else
11340 error ("parameter has incomplete type");
11341 TREE_TYPE (parms) = error_mark_node;
11342 }
11343 else
11344 layout_decl (parms, 0);
11345
11346 parms = TREE_CHAIN (parms);
11347 }
11348 }
11349
11350 /* Returns DECL if DECL is a local variable (or parameter). Returns
11351 NULL_TREE otherwise. */
11352
11353 static tree
11354 local_variable_p (t)
11355 tree t;
11356 {
11357 if ((TREE_CODE (t) == VAR_DECL
11358 /* A VAR_DECL with a context that is a _TYPE is a static data
11359 member. */
11360 && !TYPE_P (CP_DECL_CONTEXT (t))
11361 /* Any other non-local variable must be at namespace scope. */
11362 && TREE_CODE (CP_DECL_CONTEXT (t)) != NAMESPACE_DECL)
11363 || (TREE_CODE (t) == PARM_DECL))
11364 return t;
11365
11366 return NULL_TREE;
11367 }
11368
11369 /* Check that ARG, which is a default-argument expression for a
11370 parameter DECL, is legal. Returns ARG, or ERROR_MARK_NODE, if
11371 something goes wrong. DECL may also be a _TYPE node, rather than a
11372 DECL, if there is no DECL available. */
11373
11374 tree
11375 check_default_argument (decl, arg)
11376 tree decl;
11377 tree arg;
11378 {
11379 tree var;
11380 tree decl_type;
11381
11382 if (TREE_CODE (arg) == DEFAULT_ARG)
11383 /* We get a DEFAULT_ARG when looking at an in-class declaration
11384 with a default argument. Ignore the argument for now; we'll
11385 deal with it after the class is complete. */
11386 return arg;
11387
11388 if (processing_template_decl || uses_template_parms (arg))
11389 /* We don't do anything checking until instantiation-time. Note
11390 that there may be uninstantiated arguments even for an
11391 instantiated function, since default arguments are not
11392 instantiated until they are needed. */
11393 return arg;
11394
11395 if (TYPE_P (decl))
11396 {
11397 decl_type = decl;
11398 decl = NULL_TREE;
11399 }
11400 else
11401 decl_type = TREE_TYPE (decl);
11402
11403 if (arg == error_mark_node
11404 || decl == error_mark_node
11405 || TREE_TYPE (arg) == error_mark_node
11406 || decl_type == error_mark_node)
11407 /* Something already went wrong. There's no need to check
11408 further. */
11409 return error_mark_node;
11410
11411 /* [dcl.fct.default]
11412
11413 A default argument expression is implicitly converted to the
11414 parameter type. */
11415 if (!TREE_TYPE (arg)
11416 || !can_convert_arg (decl_type, TREE_TYPE (arg), arg))
11417 {
11418 if (decl)
11419 cp_error ("default argument for `%#D' has type `%T'",
11420 decl, TREE_TYPE (arg));
11421 else
11422 cp_error ("default argument for parameter of type `%T' has type `%T'",
11423 decl_type, TREE_TYPE (arg));
11424
11425 return error_mark_node;
11426 }
11427
11428 /* [dcl.fct.default]
11429
11430 Local variables shall not be used in default argument
11431 expressions.
11432
11433 The keyword `this' shall not be used in a default argument of a
11434 member function. */
11435 var = search_tree (arg, local_variable_p);
11436 if (var)
11437 {
11438 cp_error ("default argument `%E' uses local variable `%D'",
11439 arg, var);
11440 return error_mark_node;
11441 }
11442
11443 /* All is well. */
11444 return arg;
11445 }
11446
11447 /* Decode the list of parameter types for a function type.
11448 Given the list of things declared inside the parens,
11449 return a list of types.
11450
11451 The list we receive can have three kinds of elements:
11452 an IDENTIFIER_NODE for names given without types,
11453 a TREE_LIST node for arguments given as typespecs or names with typespecs,
11454 or void_type_node, to mark the end of an argument list
11455 when additional arguments are not permitted (... was not used).
11456
11457 FUNCDEF_FLAG is nonzero for a function definition, 0 for
11458 a mere declaration. A nonempty identifier-list gets an error message
11459 when FUNCDEF_FLAG is zero.
11460 If FUNCDEF_FLAG is 1, then parameter types must be complete.
11461 If FUNCDEF_FLAG is -1, then parameter types may be incomplete.
11462
11463 If all elements of the input list contain types,
11464 we return a list of the types.
11465 If all elements contain no type (except perhaps a void_type_node
11466 at the end), we return a null list.
11467 If some have types and some do not, it is an error, and we
11468 return a null list.
11469
11470 Also set last_function_parms to either
11471 a list of names (IDENTIFIER_NODEs) or a chain of PARM_DECLs.
11472 A list of names is converted to a chain of PARM_DECLs
11473 by store_parm_decls so that ultimately it is always a chain of decls.
11474
11475 Note that in C++, parameters can take default values. These default
11476 values are in the TREE_PURPOSE field of the TREE_LIST. It is
11477 an error to specify default values which are followed by parameters
11478 that have no default values, or an ELLIPSES. For simplicities sake,
11479 only parameters which are specified with their types can take on
11480 default values. */
11481
11482 static tree
11483 grokparms (first_parm, funcdef_flag)
11484 tree first_parm;
11485 int funcdef_flag;
11486 {
11487 tree result = NULL_TREE;
11488 tree decls = NULL_TREE;
11489
11490 if (first_parm != NULL_TREE
11491 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
11492 {
11493 if (! funcdef_flag)
11494 pedwarn ("parameter names (without types) in function declaration");
11495 last_function_parms = first_parm;
11496 return NULL_TREE;
11497 }
11498 else if (first_parm != NULL_TREE
11499 && TREE_CODE (TREE_VALUE (first_parm)) != TREE_LIST
11500 && TREE_CODE (TREE_VALUE (first_parm)) != VOID_TYPE)
11501 my_friendly_abort (145);
11502 else
11503 {
11504 /* Types were specified. This is a list of declarators
11505 each represented as a TREE_LIST node. */
11506 register tree parm, chain;
11507 int any_init = 0, any_error = 0;
11508
11509 if (first_parm != NULL_TREE)
11510 {
11511 tree last_result = NULL_TREE;
11512 tree last_decl = NULL_TREE;
11513
11514 for (parm = first_parm; parm != NULL_TREE; parm = chain)
11515 {
11516 tree type = NULL_TREE, list_node = parm;
11517 register tree decl = TREE_VALUE (parm);
11518 tree init = TREE_PURPOSE (parm);
11519
11520 chain = TREE_CHAIN (parm);
11521 /* @@ weak defense against parse errors. */
11522 if (TREE_CODE (decl) != VOID_TYPE
11523 && TREE_CODE (decl) != TREE_LIST)
11524 {
11525 /* Give various messages as the need arises. */
11526 if (TREE_CODE (decl) == STRING_CST)
11527 cp_error ("invalid string constant `%E'", decl);
11528 else if (TREE_CODE (decl) == INTEGER_CST)
11529 error ("invalid integer constant in parameter list, did you forget to give parameter name?");
11530 continue;
11531 }
11532
11533 if (TREE_CODE (decl) != VOID_TYPE)
11534 {
11535 decl = grokdeclarator (TREE_VALUE (decl),
11536 TREE_PURPOSE (decl),
11537 PARM, init != NULL_TREE,
11538 NULL_TREE);
11539 if (! decl || TREE_TYPE (decl) == error_mark_node)
11540 continue;
11541
11542 /* Top-level qualifiers on the parameters are
11543 ignored for function types. */
11544 type = TYPE_MAIN_VARIANT (TREE_TYPE (decl));
11545
11546 if (TREE_CODE (type) == VOID_TYPE)
11547 decl = void_type_node;
11548 else if (TREE_CODE (type) == METHOD_TYPE)
11549 {
11550 if (DECL_NAME (decl))
11551 /* Cannot use the decl here because
11552 we don't have DECL_CONTEXT set up yet. */
11553 cp_error ("parameter `%D' invalidly declared method type",
11554 DECL_NAME (decl));
11555 else
11556 error ("parameter invalidly declared method type");
11557 type = build_pointer_type (type);
11558 TREE_TYPE (decl) = type;
11559 }
11560 else if (TREE_CODE (type) == OFFSET_TYPE)
11561 {
11562 if (DECL_NAME (decl))
11563 cp_error ("parameter `%D' invalidly declared offset type",
11564 DECL_NAME (decl));
11565 else
11566 error ("parameter invalidly declared offset type");
11567 type = build_pointer_type (type);
11568 TREE_TYPE (decl) = type;
11569 }
11570 else if (abstract_virtuals_error (decl, type))
11571 any_error = 1; /* Seems like a good idea. */
11572 else if (POINTER_TYPE_P (type))
11573 {
11574 tree t = type;
11575 while (POINTER_TYPE_P (t)
11576 || (TREE_CODE (t) == ARRAY_TYPE
11577 && TYPE_DOMAIN (t) != NULL_TREE))
11578 t = TREE_TYPE (t);
11579 if (TREE_CODE (t) == ARRAY_TYPE)
11580 cp_error ("parameter type `%T' includes %s to array of unknown bound",
11581 type,
11582 TYPE_PTR_P (type) ? "pointer" : "reference");
11583 }
11584 }
11585
11586 if (TREE_CODE (decl) == VOID_TYPE)
11587 {
11588 if (result == NULL_TREE)
11589 {
11590 result = void_list_node;
11591 last_result = result;
11592 }
11593 else
11594 {
11595 TREE_CHAIN (last_result) = void_list_node;
11596 last_result = void_list_node;
11597 }
11598 if (chain
11599 && (chain != void_list_node || TREE_CHAIN (chain)))
11600 error ("`void' in parameter list must be entire list");
11601 break;
11602 }
11603
11604 /* Since there is a prototype, args are passed in their own types. */
11605 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
11606 if (PROMOTE_PROTOTYPES
11607 && (TREE_CODE (type) == INTEGER_TYPE
11608 || TREE_CODE (type) == ENUMERAL_TYPE)
11609 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
11610 DECL_ARG_TYPE (decl) = integer_type_node;
11611 if (!any_error && init)
11612 {
11613 any_init++;
11614 init = check_default_argument (decl, init);
11615 }
11616 else
11617 init = NULL_TREE;
11618
11619 if (decls == NULL_TREE)
11620 {
11621 decls = decl;
11622 last_decl = decls;
11623 }
11624 else
11625 {
11626 TREE_CHAIN (last_decl) = decl;
11627 last_decl = decl;
11628 }
11629 if (! current_function_decl && TREE_PERMANENT (list_node))
11630 {
11631 TREE_PURPOSE (list_node) = init;
11632 TREE_VALUE (list_node) = type;
11633 TREE_CHAIN (list_node) = NULL_TREE;
11634 }
11635 else
11636 list_node = tree_cons (init, type, NULL_TREE);
11637 if (result == NULL_TREE)
11638 {
11639 result = list_node;
11640 last_result = result;
11641 }
11642 else
11643 {
11644 TREE_CHAIN (last_result) = list_node;
11645 last_result = list_node;
11646 }
11647 }
11648 if (last_result)
11649 TREE_CHAIN (last_result) = NULL_TREE;
11650 /* If there are no parameters, and the function does not end
11651 with `...', then last_decl will be NULL_TREE. */
11652 if (last_decl != NULL_TREE)
11653 TREE_CHAIN (last_decl) = NULL_TREE;
11654 }
11655 }
11656
11657 last_function_parms = decls;
11658
11659 return result;
11660 }
11661
11662 /* Called from the parser to update an element of TYPE_ARG_TYPES for some
11663 FUNCTION_TYPE with the newly parsed version of its default argument, which
11664 was previously digested as text. See snarf_defarg et al in lex.c. */
11665
11666 void
11667 replace_defarg (arg, init)
11668 tree arg, init;
11669 {
11670 if (! processing_template_decl
11671 && ! can_convert_arg (TREE_VALUE (arg), TREE_TYPE (init), init))
11672 cp_pedwarn ("invalid type `%T' for default argument to `%T'",
11673 TREE_TYPE (init), TREE_VALUE (arg));
11674 TREE_PURPOSE (arg) = init;
11675 }
11676 \f
11677 int
11678 copy_args_p (d)
11679 tree d;
11680 {
11681 tree t = FUNCTION_ARG_CHAIN (d);
11682 if (DECL_CONSTRUCTOR_P (d)
11683 && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (d)))
11684 t = TREE_CHAIN (t);
11685 if (t && TREE_CODE (TREE_VALUE (t)) == REFERENCE_TYPE
11686 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (t)))
11687 == DECL_CLASS_CONTEXT (d))
11688 && (TREE_CHAIN (t) == NULL_TREE
11689 || TREE_CHAIN (t) == void_list_node
11690 || TREE_PURPOSE (TREE_CHAIN (t))))
11691 return 1;
11692 return 0;
11693 }
11694
11695 /* These memoizing functions keep track of special properties which
11696 a class may have. `grok_ctor_properties' notices whether a class
11697 has a constructor of the form X(X&), and also complains
11698 if the class has a constructor of the form X(X).
11699 `grok_op_properties' takes notice of the various forms of
11700 operator= which are defined, as well as what sorts of type conversion
11701 may apply. Both functions take a FUNCTION_DECL as an argument. */
11702
11703 int
11704 grok_ctor_properties (ctype, decl)
11705 tree ctype, decl;
11706 {
11707 tree parmtypes = FUNCTION_ARG_CHAIN (decl);
11708 tree parmtype = parmtypes ? TREE_VALUE (parmtypes) : void_type_node;
11709
11710 /* When a type has virtual baseclasses, a magical first int argument is
11711 added to any ctor so we can tell if the class has been initialized
11712 yet. This could screw things up in this function, so we deliberately
11713 ignore the leading int if we're in that situation. */
11714 if (TYPE_USES_VIRTUAL_BASECLASSES (ctype))
11715 {
11716 my_friendly_assert (parmtypes
11717 && TREE_VALUE (parmtypes) == integer_type_node,
11718 980529);
11719 parmtypes = TREE_CHAIN (parmtypes);
11720 parmtype = TREE_VALUE (parmtypes);
11721 }
11722
11723 /* [class.copy]
11724
11725 A non-template constructor for class X is a copy constructor if
11726 its first parameter is of type X&, const X&, volatile X& or const
11727 volatile X&, and either there are no other parameters or else all
11728 other parameters have default arguments. */
11729 if (TREE_CODE (parmtype) == REFERENCE_TYPE
11730 && TYPE_MAIN_VARIANT (TREE_TYPE (parmtype)) == ctype
11731 && (TREE_CHAIN (parmtypes) == NULL_TREE
11732 || TREE_CHAIN (parmtypes) == void_list_node
11733 || TREE_PURPOSE (TREE_CHAIN (parmtypes)))
11734 && !(DECL_TEMPLATE_INSTANTIATION (decl)
11735 && is_member_template (DECL_TI_TEMPLATE (decl))))
11736 {
11737 TYPE_HAS_INIT_REF (ctype) = 1;
11738 if (CP_TYPE_CONST_P (TREE_TYPE (parmtype)))
11739 TYPE_HAS_CONST_INIT_REF (ctype) = 1;
11740 }
11741 /* [class.copy]
11742
11743 A declaration of a constructor for a class X is ill-formed if its
11744 first parameter is of type (optionally cv-qualified) X and either
11745 there are no other parameters or else all other parameters have
11746 default arguments.
11747
11748 We *don't* complain about member template instantiations that
11749 have this form, though; they can occur as we try to decide what
11750 constructor to use during overload resolution. Since overload
11751 resolution will never prefer such a constructor to the
11752 non-template copy constructor (which is either explicitly or
11753 implicitly defined), there's no need to worry about their
11754 existence. Theoretically, they should never even be
11755 instantiated, but that's hard to forestall. */
11756 else if (TYPE_MAIN_VARIANT (parmtype) == ctype
11757 && (TREE_CHAIN (parmtypes) == NULL_TREE
11758 || TREE_CHAIN (parmtypes) == void_list_node
11759 || TREE_PURPOSE (TREE_CHAIN (parmtypes)))
11760 && !(DECL_TEMPLATE_INSTANTIATION (decl)
11761 && is_member_template (DECL_TI_TEMPLATE (decl))))
11762 {
11763 cp_error ("invalid constructor; you probably meant `%T (const %T&)'",
11764 ctype, ctype);
11765 SET_IDENTIFIER_ERROR_LOCUS (DECL_NAME (decl), ctype);
11766 return 0;
11767 }
11768 else if (TREE_CODE (parmtype) == VOID_TYPE
11769 || TREE_PURPOSE (parmtypes) != NULL_TREE)
11770 TYPE_HAS_DEFAULT_CONSTRUCTOR (ctype) = 1;
11771
11772 return 1;
11773 }
11774
11775 /* An operator with this name can be either unary or binary. */
11776
11777 static int
11778 ambi_op_p (name)
11779 tree name;
11780 {
11781 return (name == ansi_opname [(int) INDIRECT_REF]
11782 || name == ansi_opname [(int) ADDR_EXPR]
11783 || name == ansi_opname [(int) NEGATE_EXPR]
11784 || name == ansi_opname[(int) POSTINCREMENT_EXPR]
11785 || name == ansi_opname[(int) POSTDECREMENT_EXPR]
11786 || name == ansi_opname [(int) CONVERT_EXPR]);
11787 }
11788
11789 /* An operator with this name can only be unary. */
11790
11791 static int
11792 unary_op_p (name)
11793 tree name;
11794 {
11795 return (name == ansi_opname [(int) TRUTH_NOT_EXPR]
11796 || name == ansi_opname [(int) BIT_NOT_EXPR]
11797 || name == ansi_opname [(int) COMPONENT_REF]
11798 || IDENTIFIER_TYPENAME_P (name));
11799 }
11800
11801 /* Do a little sanity-checking on how they declared their operator. */
11802
11803 void
11804 grok_op_properties (decl, virtualp, friendp)
11805 tree decl;
11806 int virtualp, friendp;
11807 {
11808 tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
11809 int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
11810 tree name = DECL_NAME (decl);
11811
11812 if (current_class_type == NULL_TREE)
11813 friendp = 1;
11814
11815 if (! friendp)
11816 {
11817 /* [class.copy]
11818
11819 A user-declared copy assignment operator X::operator= is a
11820 non-static non-template member function of class X with
11821 exactly one parameter of type X, X&, const X&, volatile X& or
11822 const volatile X&. */
11823 if (name == ansi_opname[(int) MODIFY_EXPR]
11824 && !(DECL_TEMPLATE_INSTANTIATION (decl)
11825 && is_member_template (DECL_TI_TEMPLATE (decl))))
11826 ;
11827 else if (name == ansi_opname[(int) CALL_EXPR])
11828 TYPE_OVERLOADS_CALL_EXPR (current_class_type) = 1;
11829 else if (name == ansi_opname[(int) ARRAY_REF])
11830 TYPE_OVERLOADS_ARRAY_REF (current_class_type) = 1;
11831 else if (name == ansi_opname[(int) COMPONENT_REF]
11832 || name == ansi_opname[(int) MEMBER_REF])
11833 TYPE_OVERLOADS_ARROW (current_class_type) = 1;
11834 else if (name == ansi_opname[(int) NEW_EXPR])
11835 TYPE_GETS_NEW (current_class_type) |= 1;
11836 else if (name == ansi_opname[(int) DELETE_EXPR])
11837 TYPE_GETS_DELETE (current_class_type) |= 1;
11838 else if (name == ansi_opname[(int) VEC_NEW_EXPR])
11839 TYPE_GETS_NEW (current_class_type) |= 2;
11840 else if (name == ansi_opname[(int) VEC_DELETE_EXPR])
11841 TYPE_GETS_DELETE (current_class_type) |= 2;
11842 }
11843
11844 if (name == ansi_opname[(int) NEW_EXPR]
11845 || name == ansi_opname[(int) VEC_NEW_EXPR])
11846 {
11847 /* When the compiler encounters the definition of A::operator new, it
11848 doesn't look at the class declaration to find out if it's static. */
11849 if (methodp)
11850 revert_static_member_fn (&decl, NULL, NULL);
11851
11852 /* Take care of function decl if we had syntax errors. */
11853 if (argtypes == NULL_TREE)
11854 TREE_TYPE (decl)
11855 = build_function_type (ptr_type_node,
11856 hash_tree_chain (integer_type_node,
11857 void_list_node));
11858 else
11859 TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
11860 }
11861 else if (name == ansi_opname[(int) DELETE_EXPR]
11862 || name == ansi_opname[(int) VEC_DELETE_EXPR])
11863 {
11864 if (methodp)
11865 revert_static_member_fn (&decl, NULL, NULL);
11866
11867 if (argtypes == NULL_TREE)
11868 TREE_TYPE (decl)
11869 = build_function_type (void_type_node,
11870 hash_tree_chain (ptr_type_node,
11871 void_list_node));
11872 else
11873 {
11874 TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
11875
11876 if (! friendp && name == ansi_opname[(int) VEC_DELETE_EXPR]
11877 && (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
11878 != void_list_node))
11879 TYPE_VEC_DELETE_TAKES_SIZE (current_class_type) = 1;
11880 }
11881 }
11882 else
11883 {
11884 /* An operator function must either be a non-static member function
11885 or have at least one parameter of a class, a reference to a class,
11886 an enumeration, or a reference to an enumeration. 13.4.0.6 */
11887 if (! methodp || DECL_STATIC_FUNCTION_P (decl))
11888 {
11889 if (IDENTIFIER_TYPENAME_P (name)
11890 || name == ansi_opname[(int) CALL_EXPR]
11891 || name == ansi_opname[(int) MODIFY_EXPR]
11892 || name == ansi_opname[(int) COMPONENT_REF]
11893 || name == ansi_opname[(int) ARRAY_REF])
11894 cp_error ("`%D' must be a nonstatic member function", decl);
11895 else
11896 {
11897 tree p = argtypes;
11898
11899 if (DECL_STATIC_FUNCTION_P (decl))
11900 cp_error ("`%D' must be either a non-static member function or a non-member function", decl);
11901
11902 if (p)
11903 for (; TREE_CODE (TREE_VALUE (p)) != VOID_TYPE ; p = TREE_CHAIN (p))
11904 {
11905 tree arg = TREE_VALUE (p);
11906 if (TREE_CODE (arg) == REFERENCE_TYPE)
11907 arg = TREE_TYPE (arg);
11908
11909 /* This lets bad template code slip through. */
11910 if (IS_AGGR_TYPE (arg)
11911 || TREE_CODE (arg) == ENUMERAL_TYPE
11912 || TREE_CODE (arg) == TEMPLATE_TYPE_PARM
11913 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11914 goto foundaggr;
11915 }
11916 cp_error
11917 ("`%D' must have an argument of class or enumerated type",
11918 decl);
11919 foundaggr:
11920 ;
11921 }
11922 }
11923
11924 if (name == ansi_opname[(int) CALL_EXPR])
11925 return; /* No restrictions on args. */
11926
11927 if (IDENTIFIER_TYPENAME_P (name) && ! DECL_TEMPLATE_INFO (decl))
11928 {
11929 tree t = TREE_TYPE (name);
11930 if (TREE_CODE (t) == VOID_TYPE)
11931 pedwarn ("void is not a valid type conversion operator");
11932 else if (! friendp)
11933 {
11934 int ref = (TREE_CODE (t) == REFERENCE_TYPE);
11935 const char *what = 0;
11936 if (ref)
11937 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
11938
11939 if (t == current_class_type)
11940 what = "the same type";
11941 /* Don't force t to be complete here. */
11942 else if (IS_AGGR_TYPE (t)
11943 && TYPE_SIZE (t)
11944 && DERIVED_FROM_P (t, current_class_type))
11945 what = "a base class";
11946
11947 if (what)
11948 warning ("conversion to %s%s will never use a type conversion operator",
11949 ref ? "a reference to " : "", what);
11950 }
11951 }
11952
11953 if (name == ansi_opname[(int) MODIFY_EXPR])
11954 {
11955 tree parmtype;
11956
11957 if (list_length (argtypes) != 3 && methodp)
11958 {
11959 cp_error ("`%D' must take exactly one argument", decl);
11960 return;
11961 }
11962 parmtype = TREE_VALUE (TREE_CHAIN (argtypes));
11963
11964 if (copy_assignment_arg_p (parmtype, virtualp)
11965 && ! friendp)
11966 {
11967 TYPE_HAS_ASSIGN_REF (current_class_type) = 1;
11968 if (TREE_CODE (parmtype) != REFERENCE_TYPE
11969 || CP_TYPE_CONST_P (TREE_TYPE (parmtype)))
11970 TYPE_HAS_CONST_ASSIGN_REF (current_class_type) = 1;
11971 }
11972 }
11973 else if (name == ansi_opname[(int) COND_EXPR])
11974 {
11975 /* 13.4.0.3 */
11976 cp_error ("ANSI C++ prohibits overloading operator ?:");
11977 }
11978 else if (ambi_op_p (name))
11979 {
11980 if (list_length (argtypes) == 2)
11981 /* prefix */;
11982 else if (list_length (argtypes) == 3)
11983 {
11984 if ((name == ansi_opname[(int) POSTINCREMENT_EXPR]
11985 || name == ansi_opname[(int) POSTDECREMENT_EXPR])
11986 && ! processing_template_decl
11987 && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
11988 {
11989 if (methodp)
11990 cp_error ("postfix `%D' must take `int' as its argument",
11991 decl);
11992 else
11993 cp_error
11994 ("postfix `%D' must take `int' as its second argument",
11995 decl);
11996 }
11997 }
11998 else
11999 {
12000 if (methodp)
12001 cp_error ("`%D' must take either zero or one argument", decl);
12002 else
12003 cp_error ("`%D' must take either one or two arguments", decl);
12004 }
12005
12006 /* More Effective C++ rule 6. */
12007 if (warn_ecpp
12008 && (name == ansi_opname[(int) POSTINCREMENT_EXPR]
12009 || name == ansi_opname[(int) POSTDECREMENT_EXPR]))
12010 {
12011 tree arg = TREE_VALUE (argtypes);
12012 tree ret = TREE_TYPE (TREE_TYPE (decl));
12013 if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
12014 arg = TREE_TYPE (arg);
12015 arg = TYPE_MAIN_VARIANT (arg);
12016 if (list_length (argtypes) == 2)
12017 {
12018 if (TREE_CODE (ret) != REFERENCE_TYPE
12019 || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
12020 arg))
12021 cp_warning ("prefix `%D' should return `%T'", decl,
12022 build_reference_type (arg));
12023 }
12024 else
12025 {
12026 if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
12027 cp_warning ("postfix `%D' should return `%T'", decl, arg);
12028 }
12029 }
12030 }
12031 else if (unary_op_p (name))
12032 {
12033 if (list_length (argtypes) != 2)
12034 {
12035 if (methodp)
12036 cp_error ("`%D' must take `void'", decl);
12037 else
12038 cp_error ("`%D' must take exactly one argument", decl);
12039 }
12040 }
12041 else /* if (binary_op_p (name)) */
12042 {
12043 if (list_length (argtypes) != 3)
12044 {
12045 if (methodp)
12046 cp_error ("`%D' must take exactly one argument", decl);
12047 else
12048 cp_error ("`%D' must take exactly two arguments", decl);
12049 }
12050
12051 /* More Effective C++ rule 7. */
12052 if (warn_ecpp
12053 && (name == ansi_opname [TRUTH_ANDIF_EXPR]
12054 || name == ansi_opname [TRUTH_ORIF_EXPR]
12055 || name == ansi_opname [COMPOUND_EXPR]))
12056 cp_warning ("user-defined `%D' always evaluates both arguments",
12057 decl);
12058 }
12059
12060 /* Effective C++ rule 23. */
12061 if (warn_ecpp
12062 && list_length (argtypes) == 3
12063 && (name == ansi_opname [PLUS_EXPR]
12064 || name == ansi_opname [MINUS_EXPR]
12065 || name == ansi_opname [TRUNC_DIV_EXPR]
12066 || name == ansi_opname [MULT_EXPR])
12067 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
12068 cp_warning ("`%D' should return by value", decl);
12069
12070 /* 13.4.0.8 */
12071 if (argtypes)
12072 for (; argtypes != void_list_node ; argtypes = TREE_CHAIN (argtypes))
12073 if (TREE_PURPOSE (argtypes))
12074 {
12075 TREE_PURPOSE (argtypes) = NULL_TREE;
12076 if (name == ansi_opname[(int) POSTINCREMENT_EXPR]
12077 || name == ansi_opname[(int) POSTDECREMENT_EXPR])
12078 {
12079 if (pedantic)
12080 cp_pedwarn ("`%D' cannot have default arguments", decl);
12081 }
12082 else
12083 cp_error ("`%D' cannot have default arguments", decl);
12084 }
12085 }
12086 }
12087 \f
12088 static const char *
12089 tag_name (code)
12090 enum tag_types code;
12091 {
12092 switch (code)
12093 {
12094 case record_type:
12095 return "struct";
12096 case class_type:
12097 return "class";
12098 case union_type:
12099 return "union ";
12100 case enum_type:
12101 return "enum";
12102 default:
12103 my_friendly_abort (981122);
12104 }
12105 }
12106
12107 /* Get the struct, enum or union (CODE says which) with tag NAME.
12108 Define the tag as a forward-reference if it is not defined.
12109
12110 C++: If a class derivation is given, process it here, and report
12111 an error if multiple derivation declarations are not identical.
12112
12113 If this is a definition, come in through xref_tag and only look in
12114 the current frame for the name (since C++ allows new names in any
12115 scope.) */
12116
12117 tree
12118 xref_tag (code_type_node, name, globalize)
12119 tree code_type_node;
12120 tree name;
12121 int globalize;
12122 {
12123 enum tag_types tag_code;
12124 enum tree_code code;
12125 int temp = 0;
12126 register tree ref, t;
12127 struct binding_level *b = current_binding_level;
12128 int got_type = 0;
12129 tree attributes = NULL_TREE;
12130 tree context = NULL_TREE;
12131
12132 /* If we are called from the parser, code_type_node will sometimes be a
12133 TREE_LIST. This indicates that the user wrote
12134 "class __attribute__ ((foo)) bar". Extract the attributes so we can
12135 use them later. */
12136 if (TREE_CODE (code_type_node) == TREE_LIST)
12137 {
12138 attributes = TREE_PURPOSE (code_type_node);
12139 code_type_node = TREE_VALUE (code_type_node);
12140 }
12141
12142 tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
12143 switch (tag_code)
12144 {
12145 case record_type:
12146 case class_type:
12147 code = RECORD_TYPE;
12148 break;
12149 case union_type:
12150 code = UNION_TYPE;
12151 break;
12152 case enum_type:
12153 code = ENUMERAL_TYPE;
12154 break;
12155 default:
12156 my_friendly_abort (18);
12157 }
12158
12159 /* If a cross reference is requested, look up the type
12160 already defined for this tag and return it. */
12161 if (TREE_CODE_CLASS (TREE_CODE (name)) == 't')
12162 {
12163 t = name;
12164 name = TYPE_IDENTIFIER (t);
12165 got_type = 1;
12166 }
12167 else
12168 t = IDENTIFIER_TYPE_VALUE (name);
12169
12170 if (t && TREE_CODE (t) != code && TREE_CODE (t) != TEMPLATE_TYPE_PARM
12171 && TREE_CODE (t) != TEMPLATE_TEMPLATE_PARM)
12172 t = NULL_TREE;
12173
12174 if (! globalize)
12175 {
12176 /* If we know we are defining this tag, only look it up in
12177 this scope and don't try to find it as a type. */
12178 ref = lookup_tag (code, name, b, 1);
12179 }
12180 else
12181 {
12182 if (t)
12183 {
12184 /* [dcl.type.elab] If the identifier resolves to a
12185 typedef-name or a template type-parameter, the
12186 elaborated-type-specifier is ill-formed. */
12187 if (t != TYPE_MAIN_VARIANT (t)
12188 || (CLASS_TYPE_P (t) && TYPE_WAS_ANONYMOUS (t)))
12189 cp_pedwarn ("using typedef-name `%D' after `%s'",
12190 TYPE_NAME (t), tag_name (tag_code));
12191 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
12192 cp_error ("using template type parameter `%T' after `%s'",
12193 t, tag_name (tag_code));
12194
12195 ref = t;
12196 }
12197 else
12198 ref = lookup_tag (code, name, b, 0);
12199
12200 if (! ref)
12201 {
12202 /* Try finding it as a type declaration. If that wins,
12203 use it. */
12204 ref = lookup_name (name, 1);
12205
12206 if (ref != NULL_TREE
12207 && processing_template_decl
12208 && DECL_CLASS_TEMPLATE_P (ref)
12209 && template_class_depth (current_class_type) == 0)
12210 /* Since GLOBALIZE is true, we're declaring a global
12211 template, so we want this type. */
12212 ref = DECL_RESULT (ref);
12213
12214 if (ref && TREE_CODE (ref) == TYPE_DECL
12215 && TREE_CODE (TREE_TYPE (ref)) == code)
12216 ref = TREE_TYPE (ref);
12217 else
12218 ref = NULL_TREE;
12219 }
12220
12221 if (ref && current_class_type
12222 && template_class_depth (current_class_type)
12223 && PROCESSING_REAL_TEMPLATE_DECL_P ())
12224 {
12225 /* Since GLOBALIZE is non-zero, we are not looking at a
12226 definition of this tag. Since, in addition, we are currently
12227 processing a (member) template declaration of a template
12228 class, we must be very careful; consider:
12229
12230 template <class X>
12231 struct S1
12232
12233 template <class U>
12234 struct S2
12235 { template <class V>
12236 friend struct S1; };
12237
12238 Here, the S2::S1 declaration should not be confused with the
12239 outer declaration. In particular, the inner version should
12240 have a template parameter of level 2, not level 1. This
12241 would be particularly important if the member declaration
12242 were instead:
12243
12244 template <class V = U> friend struct S1;
12245
12246 say, when we should tsubst into `U' when instantiating
12247 S2. On the other hand, when presented with:
12248
12249 template <class T>
12250 struct S1 {
12251 template <class U>
12252 struct S2 {};
12253 template <class U>
12254 friend struct S2;
12255 };
12256
12257 we must find the inner binding eventually. We
12258 accomplish this by making sure that the new type we
12259 create to represent this declaration has the right
12260 TYPE_CONTEXT. */
12261 context = TYPE_CONTEXT (ref);
12262 ref = NULL_TREE;
12263 }
12264 }
12265
12266 push_obstacks_nochange ();
12267
12268 if (! ref)
12269 {
12270 /* If no such tag is yet defined, create a forward-reference node
12271 and record it as the "definition".
12272 When a real declaration of this type is found,
12273 the forward-reference will be altered into a real type. */
12274
12275 /* In C++, since these migrate into the global scope, we must
12276 build them on the permanent obstack. */
12277
12278 temp = allocation_temporary_p ();
12279 if (temp)
12280 end_temporary_allocation ();
12281
12282 if (code == ENUMERAL_TYPE)
12283 {
12284 cp_error ("use of enum `%#D' without previous declaration", name);
12285
12286 ref = make_node (ENUMERAL_TYPE);
12287
12288 /* Give the type a default layout like unsigned int
12289 to avoid crashing if it does not get defined. */
12290 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
12291 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
12292 TREE_UNSIGNED (ref) = 1;
12293 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
12294 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
12295 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
12296
12297 /* Enable us to recognize when a type is created in class context.
12298 To do nested classes correctly, this should probably be cleared
12299 out when we leave this classes scope. Currently this in only
12300 done in `start_enum'. */
12301
12302 pushtag (name, ref, globalize);
12303 }
12304 else
12305 {
12306 struct binding_level *old_b = class_binding_level;
12307
12308 ref = make_lang_type (code);
12309 TYPE_CONTEXT (ref) = context;
12310
12311 #ifdef NONNESTED_CLASSES
12312 /* Class types don't nest the way enums do. */
12313 class_binding_level = (struct binding_level *)0;
12314 #endif
12315 pushtag (name, ref, globalize);
12316 class_binding_level = old_b;
12317 }
12318 }
12319 else
12320 {
12321 /* If it no longer looks like a nested type, make sure it's
12322 in global scope.
12323 If it is not an IDENTIFIER, this is not a declaration */
12324 if (b->namespace_p && !class_binding_level
12325 && TREE_CODE (name) == IDENTIFIER_NODE)
12326 {
12327 if (IDENTIFIER_NAMESPACE_VALUE (name) == NULL_TREE)
12328 SET_IDENTIFIER_NAMESPACE_VALUE (name, TYPE_NAME (ref));
12329 }
12330
12331 if (!globalize && processing_template_decl && IS_AGGR_TYPE (ref))
12332 redeclare_class_template (ref, current_template_parms);
12333 }
12334
12335 /* Until the type is defined, tentatively accept whatever
12336 structure tag the user hands us. */
12337 if (TYPE_SIZE (ref) == NULL_TREE
12338 && ref != current_class_type
12339 /* Have to check this, in case we have contradictory tag info. */
12340 && IS_AGGR_TYPE_CODE (TREE_CODE (ref)))
12341 {
12342 if (tag_code == class_type)
12343 CLASSTYPE_DECLARED_CLASS (ref) = 1;
12344 else if (tag_code == record_type)
12345 CLASSTYPE_DECLARED_CLASS (ref) = 0;
12346 }
12347
12348 pop_obstacks ();
12349
12350 TREE_TYPE (ref) = attributes;
12351
12352 return ref;
12353 }
12354
12355 tree
12356 xref_tag_from_type (old, id, globalize)
12357 tree old, id;
12358 int globalize;
12359 {
12360 tree code_type_node;
12361
12362 if (TREE_CODE (old) == RECORD_TYPE)
12363 code_type_node = (CLASSTYPE_DECLARED_CLASS (old)
12364 ? class_type_node : record_type_node);
12365 else
12366 code_type_node = union_type_node;
12367
12368 if (id == NULL_TREE)
12369 id = TYPE_IDENTIFIER (old);
12370
12371 return xref_tag (code_type_node, id, globalize);
12372 }
12373
12374 /* REF is a type (named NAME), for which we have just seen some
12375 baseclasses. BINFO is a list of those baseclasses; the
12376 TREE_PURPOSE is an access_* node, and the TREE_VALUE is the type of
12377 the base-class. CODE_TYPE_NODE indicates whether REF is a class,
12378 struct, or union. */
12379
12380 void
12381 xref_basetypes (code_type_node, name, ref, binfo)
12382 tree code_type_node;
12383 tree name, ref;
12384 tree binfo;
12385 {
12386 /* In the declaration `A : X, Y, ... Z' we mark all the types
12387 (A, X, Y, ..., Z) so we can check for duplicates. */
12388 tree binfos;
12389 tree base;
12390
12391 int i, len;
12392 enum tag_types tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
12393
12394 if (tag_code == union_type)
12395 {
12396 cp_error ("derived union `%T' invalid", ref);
12397 return;
12398 }
12399
12400 len = list_length (binfo);
12401 push_obstacks (TYPE_OBSTACK (ref), TYPE_OBSTACK (ref));
12402
12403 /* First, make sure that any templates in base-classes are
12404 instantiated. This ensures that if we call ourselves recursively
12405 we do not get confused about which classes are marked and which
12406 are not. */
12407 for (base = binfo; base; base = TREE_CHAIN (base))
12408 complete_type (TREE_VALUE (base));
12409
12410 SET_CLASSTYPE_MARKED (ref);
12411 BINFO_BASETYPES (TYPE_BINFO (ref)) = binfos = make_tree_vec (len);
12412
12413 for (i = 0; binfo; binfo = TREE_CHAIN (binfo))
12414 {
12415 /* The base of a derived struct is public by default. */
12416 int via_public
12417 = (TREE_PURPOSE (binfo) == access_public_node
12418 || TREE_PURPOSE (binfo) == access_public_virtual_node
12419 || (tag_code != class_type
12420 && (TREE_PURPOSE (binfo) == access_default_node
12421 || TREE_PURPOSE (binfo) == access_default_virtual_node)));
12422 int via_protected
12423 = (TREE_PURPOSE (binfo) == access_protected_node
12424 || TREE_PURPOSE (binfo) == access_protected_virtual_node);
12425 int via_virtual
12426 = (TREE_PURPOSE (binfo) == access_private_virtual_node
12427 || TREE_PURPOSE (binfo) == access_protected_virtual_node
12428 || TREE_PURPOSE (binfo) == access_public_virtual_node
12429 || TREE_PURPOSE (binfo) == access_default_virtual_node);
12430 tree basetype = TREE_VALUE (binfo);
12431 tree base_binfo;
12432
12433 if (basetype && TREE_CODE (basetype) == TYPE_DECL)
12434 basetype = TREE_TYPE (basetype);
12435 if (!basetype
12436 || (TREE_CODE (basetype) != RECORD_TYPE
12437 && TREE_CODE (basetype) != TYPENAME_TYPE
12438 && TREE_CODE (basetype) != TEMPLATE_TYPE_PARM
12439 && TREE_CODE (basetype) != TEMPLATE_TEMPLATE_PARM))
12440 {
12441 cp_error ("base type `%T' fails to be a struct or class type",
12442 TREE_VALUE (binfo));
12443 continue;
12444 }
12445
12446 GNU_xref_hier (name, basetype, via_public, via_virtual, 0);
12447
12448 /* This code replaces similar code in layout_basetypes.
12449 We put the complete_type first for implicit `typename'. */
12450 if (TYPE_SIZE (basetype) == NULL_TREE
12451 && ! (current_template_parms && uses_template_parms (basetype)))
12452 {
12453 cp_error ("base class `%T' has incomplete type", basetype);
12454 continue;
12455 }
12456 else
12457 {
12458 if (CLASSTYPE_MARKED (basetype))
12459 {
12460 if (basetype == ref)
12461 cp_error ("recursive type `%T' undefined", basetype);
12462 else
12463 cp_error ("duplicate base type `%T' invalid", basetype);
12464 continue;
12465 }
12466
12467 if (TYPE_FOR_JAVA (basetype)
12468 && (current_lang_stack
12469 == &VARRAY_TREE (current_lang_base, 0)))
12470 TYPE_FOR_JAVA (ref) = 1;
12471
12472 /* Note that the BINFO records which describe individual
12473 inheritances are *not* shared in the lattice! They
12474 cannot be shared because a given baseclass may be
12475 inherited with different `accessibility' by different
12476 derived classes. (Each BINFO record describing an
12477 individual inheritance contains flags which say what
12478 the `accessibility' of that particular inheritance is.) */
12479
12480 base_binfo
12481 = make_binfo (integer_zero_node, basetype,
12482 CLASS_TYPE_P (basetype)
12483 ? TYPE_BINFO_VTABLE (basetype) : NULL_TREE,
12484 CLASS_TYPE_P (basetype)
12485 ? TYPE_BINFO_VIRTUALS (basetype) : NULL_TREE);
12486
12487 TREE_VEC_ELT (binfos, i) = base_binfo;
12488 TREE_VIA_PUBLIC (base_binfo) = via_public;
12489 TREE_VIA_PROTECTED (base_binfo) = via_protected;
12490 TREE_VIA_VIRTUAL (base_binfo) = via_virtual;
12491 BINFO_INHERITANCE_CHAIN (base_binfo) = TYPE_BINFO (ref);
12492
12493 /* We need to unshare the binfos now so that lookups during class
12494 definition work. */
12495 unshare_base_binfos (base_binfo);
12496
12497 SET_CLASSTYPE_MARKED (basetype);
12498
12499 /* We are free to modify these bits because they are meaningless
12500 at top level, and BASETYPE is a top-level type. */
12501 if (via_virtual || TYPE_USES_VIRTUAL_BASECLASSES (basetype))
12502 {
12503 TYPE_USES_VIRTUAL_BASECLASSES (ref) = 1;
12504 TYPE_USES_COMPLEX_INHERITANCE (ref) = 1;
12505 }
12506
12507 if (CLASS_TYPE_P (basetype))
12508 {
12509 TYPE_GETS_NEW (ref) |= TYPE_GETS_NEW (basetype);
12510 TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
12511 }
12512
12513 i += 1;
12514 }
12515 }
12516 if (i)
12517 TREE_VEC_LENGTH (binfos) = i;
12518 else
12519 BINFO_BASETYPES (TYPE_BINFO (ref)) = NULL_TREE;
12520
12521 if (i > 1)
12522 TYPE_USES_MULTIPLE_INHERITANCE (ref) = 1;
12523 else if (i == 1)
12524 {
12525 tree basetype = BINFO_TYPE (TREE_VEC_ELT (binfos, 0));
12526
12527 if (CLASS_TYPE_P (basetype))
12528 TYPE_USES_MULTIPLE_INHERITANCE (ref)
12529 = TYPE_USES_MULTIPLE_INHERITANCE (basetype);
12530 }
12531
12532 if (TYPE_USES_MULTIPLE_INHERITANCE (ref))
12533 TYPE_USES_COMPLEX_INHERITANCE (ref) = 1;
12534
12535 /* Unmark all the types. */
12536 while (--i >= 0)
12537 CLEAR_CLASSTYPE_MARKED (BINFO_TYPE (TREE_VEC_ELT (binfos, i)));
12538 CLEAR_CLASSTYPE_MARKED (ref);
12539
12540 /* Now that we know all the base-classes, set up the list of virtual
12541 bases. */
12542 CLASSTYPE_VBASECLASSES (ref) = get_vbase_types (ref);
12543
12544 pop_obstacks ();
12545 }
12546
12547 \f
12548 /* Begin compiling the definition of an enumeration type.
12549 NAME is its name (or null if anonymous).
12550 Returns the type object, as yet incomplete.
12551 Also records info about it so that build_enumerator
12552 may be used to declare the individual values as they are read. */
12553
12554 tree
12555 start_enum (name)
12556 tree name;
12557 {
12558 register tree enumtype = NULL_TREE;
12559 struct binding_level *b = current_binding_level;
12560
12561 /* We are wasting space here and putting these on the permanent_obstack so
12562 that typeid(local enum) will work correctly. */
12563 push_obstacks (&permanent_obstack, &permanent_obstack);
12564
12565 /* If this is the real definition for a previous forward reference,
12566 fill in the contents in the same object that used to be the
12567 forward reference. */
12568
12569 if (name != NULL_TREE)
12570 enumtype = lookup_tag (ENUMERAL_TYPE, name, b, 1);
12571
12572 if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
12573 {
12574 cp_error ("multiple definition of `%#T'", enumtype);
12575 cp_error_at ("previous definition here", enumtype);
12576 }
12577 else
12578 {
12579 enumtype = make_node (ENUMERAL_TYPE);
12580 pushtag (name, enumtype, 0);
12581 }
12582
12583 if (current_class_type)
12584 TREE_ADDRESSABLE (b->tags) = 1;
12585
12586 /* We don't copy this value because build_enumerator needs to do it. */
12587 enum_next_value = integer_zero_node;
12588 enum_overflow = 0;
12589
12590 GNU_xref_decl (current_function_decl, enumtype);
12591 return enumtype;
12592 }
12593
12594 /* After processing and defining all the values of an enumeration type,
12595 install their decls in the enumeration type and finish it off.
12596 ENUMTYPE is the type object and VALUES a list of name-value pairs.
12597 Returns ENUMTYPE. */
12598
12599 tree
12600 finish_enum (enumtype)
12601 tree enumtype;
12602 {
12603 register tree minnode = NULL_TREE, maxnode = NULL_TREE;
12604 /* Calculate the maximum value of any enumerator in this type. */
12605
12606 tree values = TYPE_VALUES (enumtype);
12607 if (values)
12608 {
12609 tree pair;
12610
12611 for (pair = values; pair; pair = TREE_CHAIN (pair))
12612 {
12613 tree decl;
12614 tree value;
12615
12616 /* The TREE_VALUE is a CONST_DECL for this enumeration
12617 constant. */
12618 decl = TREE_VALUE (pair);
12619
12620 /* The DECL_INITIAL will be NULL if we are processing a
12621 template declaration and this enumeration constant had no
12622 explicit initializer. */
12623 value = DECL_INITIAL (decl);
12624 if (value && !processing_template_decl)
12625 {
12626 /* Set the TREE_TYPE for the VALUE as well. That's so
12627 that when we call decl_constant_value we get an
12628 entity of the right type (but with the constant
12629 value). Since we shouldn't ever call
12630 decl_constant_value on a template type, there's no
12631 reason to do that when processing_template_decl.
12632 And, if the expression is something like a
12633 TEMPLATE_PARM_INDEX or a CAST_EXPR doing so will
12634 wreak havoc on the intended type of the expression.
12635
12636 Of course, there's also no point in trying to compute
12637 minimum or maximum values if we're in a template. */
12638 TREE_TYPE (value) = enumtype;
12639
12640 if (!minnode)
12641 minnode = maxnode = value;
12642 else if (tree_int_cst_lt (maxnode, value))
12643 maxnode = value;
12644 else if (tree_int_cst_lt (value, minnode))
12645 minnode = value;
12646 }
12647
12648 if (processing_template_decl)
12649 /* If this is just a template, leave the CONST_DECL
12650 alone. That way tsubst_copy will find CONST_DECLs for
12651 CONST_DECLs, and not INTEGER_CSTs. */
12652 ;
12653 else
12654 /* In the list we're building up, we want the enumeration
12655 values, not the CONST_DECLs. */
12656 TREE_VALUE (pair) = value;
12657 }
12658 }
12659 else
12660 maxnode = minnode = integer_zero_node;
12661
12662 TYPE_VALUES (enumtype) = nreverse (values);
12663
12664 if (processing_template_decl)
12665 {
12666 tree scope = current_scope ();
12667 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
12668 add_tree (build_min (TAG_DEFN, enumtype));
12669 }
12670 else
12671 {
12672 int unsignedp = tree_int_cst_sgn (minnode) >= 0;
12673 int lowprec = min_precision (minnode, unsignedp);
12674 int highprec = min_precision (maxnode, unsignedp);
12675 int precision = MAX (lowprec, highprec);
12676 tree tem;
12677
12678 TYPE_SIZE (enumtype) = NULL_TREE;
12679
12680 /* Set TYPE_MIN_VALUE and TYPE_MAX_VALUE according to `precision'. */
12681
12682 TYPE_PRECISION (enumtype) = precision;
12683 if (unsignedp)
12684 fixup_unsigned_type (enumtype);
12685 else
12686 fixup_signed_type (enumtype);
12687
12688 if (flag_short_enums || (precision > TYPE_PRECISION (integer_type_node)))
12689 /* Use the width of the narrowest normal C type which is wide
12690 enough. */
12691 TYPE_PRECISION (enumtype) = TYPE_PRECISION (type_for_size
12692 (precision, 1));
12693 else
12694 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
12695
12696 TYPE_SIZE (enumtype) = 0;
12697 layout_type (enumtype);
12698
12699 /* Fix up all variant types of this enum type. */
12700 for (tem = TYPE_MAIN_VARIANT (enumtype); tem;
12701 tem = TYPE_NEXT_VARIANT (tem))
12702 {
12703 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
12704 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
12705 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
12706 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
12707 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
12708 TYPE_MODE (tem) = TYPE_MODE (enumtype);
12709 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
12710 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
12711 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
12712 }
12713
12714 /* Finish debugging output for this type. */
12715 rest_of_type_compilation (enumtype, namespace_bindings_p ());
12716 }
12717
12718 /* In start_enum we pushed obstacks. Here, we must pop them. */
12719 pop_obstacks ();
12720
12721 return enumtype;
12722 }
12723
12724 /* Build and install a CONST_DECL for an enumeration constant of the
12725 enumeration type TYPE whose NAME and VALUE (if any) are provided.
12726 Assignment of sequential values by default is handled here. */
12727
12728 tree
12729 build_enumerator (name, value, type)
12730 tree name;
12731 tree value;
12732 tree type;
12733 {
12734 tree decl, result;
12735 tree context;
12736
12737 /* Remove no-op casts from the value. */
12738 if (value)
12739 STRIP_TYPE_NOPS (value);
12740
12741 if (! processing_template_decl)
12742 {
12743 /* Validate and default VALUE. */
12744 if (value != NULL_TREE)
12745 {
12746 if (TREE_READONLY_DECL_P (value))
12747 value = decl_constant_value (value);
12748
12749 if (TREE_CODE (value) == INTEGER_CST)
12750 {
12751 value = default_conversion (value);
12752 constant_expression_warning (value);
12753 }
12754 else
12755 {
12756 cp_error ("enumerator value for `%D' not integer constant", name);
12757 value = NULL_TREE;
12758 }
12759 }
12760
12761 /* Default based on previous value. */
12762 if (value == NULL_TREE && ! processing_template_decl)
12763 {
12764 value = enum_next_value;
12765 if (enum_overflow)
12766 cp_error ("overflow in enumeration values at `%D'", name);
12767 }
12768
12769 /* Remove no-op casts from the value. */
12770 if (value)
12771 STRIP_TYPE_NOPS (value);
12772 #if 0
12773 /* To fix MAX_VAL enum consts. (bkoz) */
12774 TREE_TYPE (value) = integer_type_node;
12775 #endif
12776 }
12777
12778 /* We always have to copy here; not all INTEGER_CSTs are unshared.
12779 Even in other cases, we will later (in finish_enum) be setting the
12780 type of VALUE. */
12781 if (value != NULL_TREE)
12782 value = copy_node (value);
12783
12784 /* C++ associates enums with global, function, or class declarations. */
12785
12786 context = current_scope ();
12787 if (context && context == current_class_type)
12788 /* This enum declaration is local to the class. */
12789 decl = build_lang_decl (CONST_DECL, name, type);
12790 else
12791 /* It's a global enum, or it's local to a function. (Note local to
12792 a function could mean local to a class method. */
12793 decl = build_decl (CONST_DECL, name, type);
12794
12795 DECL_CONTEXT (decl) = FROB_CONTEXT (context);
12796 DECL_INITIAL (decl) = value;
12797 TREE_READONLY (decl) = 1;
12798
12799 if (context && context == current_class_type)
12800 /* In something like `struct S { enum E { i = 7 }; };' we put `i'
12801 on the TYPE_FIELDS list for `S'. (That's so that you can say
12802 things like `S::i' later.) */
12803 finish_member_declaration (decl);
12804 else
12805 {
12806 pushdecl (decl);
12807 GNU_xref_decl (current_function_decl, decl);
12808 }
12809
12810 if (! processing_template_decl)
12811 {
12812 /* Set basis for default for next value. */
12813 enum_next_value = build_binary_op_nodefault (PLUS_EXPR, value,
12814 integer_one_node, PLUS_EXPR);
12815 enum_overflow = tree_int_cst_lt (enum_next_value, value);
12816 }
12817
12818 result = tree_cons (name, decl, NULL_TREE);
12819 return result;
12820 }
12821
12822 \f
12823 static int function_depth;
12824
12825 /* We're defining DECL. Make sure that it's type is OK. */
12826
12827 static void
12828 check_function_type (decl)
12829 tree decl;
12830 {
12831 tree fntype = TREE_TYPE (decl);
12832
12833 /* In a function definition, arg types must be complete. */
12834 require_complete_types_for_parms (current_function_parms);
12835
12836 if (TYPE_SIZE (complete_type (TREE_TYPE (fntype))) == NULL_TREE)
12837 {
12838 cp_error ("return type `%#T' is incomplete", TREE_TYPE (fntype));
12839
12840 /* Make it return void instead, but don't change the
12841 type of the DECL_RESULT, in case we have a named return value. */
12842 if (TREE_CODE (fntype) == METHOD_TYPE)
12843 {
12844 tree ctype = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fntype)));
12845 TREE_TYPE (decl)
12846 = build_cplus_method_type (ctype,
12847 void_type_node,
12848 FUNCTION_ARG_CHAIN (decl));
12849 }
12850 else
12851 TREE_TYPE (decl)
12852 = build_function_type (void_type_node,
12853 TYPE_ARG_TYPES (TREE_TYPE (decl)));
12854 TREE_TYPE (decl)
12855 = build_exception_variant (fntype,
12856 TYPE_RAISES_EXCEPTIONS (fntype));
12857 }
12858 else
12859 abstract_virtuals_error (decl, TREE_TYPE (fntype));
12860 }
12861
12862 /* Create the FUNCTION_DECL for a function definition.
12863 DECLSPECS and DECLARATOR are the parts of the declaration;
12864 they describe the function's name and the type it returns,
12865 but twisted together in a fashion that parallels the syntax of C.
12866
12867 FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
12868 DECLARATOR is really the DECL for the function we are about to
12869 process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
12870 indicating that the function is an inline defined in-class, and
12871 SF_EXPAND indicating that we should generate RTL for this
12872 function.
12873
12874 This function creates a binding context for the function body
12875 as well as setting up the FUNCTION_DECL in current_function_decl.
12876
12877 Returns 1 on success. If the DECLARATOR is not suitable for a function
12878 (it defines a datum instead), we return 0, which tells
12879 yyparse to report a parse error.
12880
12881 For C++, we must first check whether that datum makes any sense.
12882 For example, "class A local_a(1,2);" means that variable local_a
12883 is an aggregate of type A, which should have a constructor
12884 applied to it with the argument list [1, 2]. */
12885
12886 int
12887 start_function (declspecs, declarator, attrs, flags)
12888 tree declspecs, declarator, attrs;
12889 int flags;
12890 {
12891 tree decl1;
12892 tree ctype = NULL_TREE;
12893 tree fntype;
12894 tree restype;
12895 extern int have_extern_spec;
12896 extern int used_extern_spec;
12897 int doing_friend = 0;
12898 struct binding_level *bl;
12899
12900 /* Sanity check. */
12901 my_friendly_assert (TREE_CODE (TREE_VALUE (void_list_node)) == VOID_TYPE, 160);
12902 my_friendly_assert (TREE_CHAIN (void_list_node) == NULL_TREE, 161);
12903
12904 /* This should only be done once on the top most decl. */
12905 if (have_extern_spec && !used_extern_spec)
12906 {
12907 declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"), declspecs);
12908 used_extern_spec = 1;
12909 }
12910
12911 if (flags & SF_PRE_PARSED)
12912 {
12913 decl1 = declarator;
12914
12915 fntype = TREE_TYPE (decl1);
12916 if (TREE_CODE (fntype) == METHOD_TYPE)
12917 ctype = TYPE_METHOD_BASETYPE (fntype);
12918
12919 /* ANSI C++ June 5 1992 WP 11.4.5. A friend function defined in a
12920 class is in the (lexical) scope of the class in which it is
12921 defined. */
12922 if (!ctype && DECL_FRIEND_P (decl1))
12923 {
12924 ctype = DECL_CLASS_CONTEXT (decl1);
12925
12926 /* CTYPE could be null here if we're dealing with a template;
12927 for example, `inline friend float foo()' inside a template
12928 will have no CTYPE set. */
12929 if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
12930 ctype = NULL_TREE;
12931 else
12932 doing_friend = 1;
12933 }
12934
12935 last_function_parms = DECL_ARGUMENTS (decl1);
12936 last_function_parm_tags = NULL_TREE;
12937 }
12938 else
12939 {
12940 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, NULL_TREE);
12941 /* If the declarator is not suitable for a function definition,
12942 cause a syntax error. */
12943 if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL) return 0;
12944
12945 fntype = TREE_TYPE (decl1);
12946
12947 restype = TREE_TYPE (fntype);
12948 if (CLASS_TYPE_P (restype) && !CLASSTYPE_GOT_SEMICOLON (restype))
12949 {
12950 cp_error ("semicolon missing after declaration of `%#T'", restype);
12951 shadow_tag (build_expr_list (NULL_TREE, restype));
12952 CLASSTYPE_GOT_SEMICOLON (restype) = 1;
12953 if (TREE_CODE (fntype) == FUNCTION_TYPE)
12954 fntype = build_function_type (integer_type_node,
12955 TYPE_ARG_TYPES (fntype));
12956 else
12957 fntype = build_cplus_method_type (build_type_variant (TYPE_METHOD_BASETYPE (fntype), TREE_READONLY (decl1), TREE_SIDE_EFFECTS (decl1)),
12958 integer_type_node,
12959 TYPE_ARG_TYPES (fntype));
12960 TREE_TYPE (decl1) = fntype;
12961 }
12962
12963 if (TREE_CODE (fntype) == METHOD_TYPE)
12964 ctype = TYPE_METHOD_BASETYPE (fntype);
12965 else if (DECL_MAIN_P (decl1))
12966 {
12967 /* If this doesn't return integer_type, complain. */
12968 if (TREE_TYPE (TREE_TYPE (decl1)) != integer_type_node)
12969 {
12970 if (pedantic || warn_return_type)
12971 pedwarn ("return type for `main' changed to `int'");
12972 TREE_TYPE (decl1) = fntype = default_function_type;
12973 }
12974 }
12975 }
12976
12977 /* Warn if function was previously implicitly declared
12978 (but not if we warned then). */
12979 if (! warn_implicit
12980 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)) != NULL_TREE)
12981 cp_warning_at ("`%D' implicitly declared before its definition", IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)));
12982
12983 /* Set up current_class_type, and enter the scope of the class, if
12984 appropriate. */
12985 if (ctype)
12986 push_nested_class (ctype, 1);
12987 else if (DECL_STATIC_FUNCTION_P (decl1))
12988 push_nested_class (DECL_CONTEXT (decl1), 2);
12989
12990 /* Now that we have entered the scope of the class, we must restore
12991 the bindings for any template parameters surrounding DECL1, if it
12992 is an inline member template. (Order is important; consider the
12993 case where a template parameter has the same name as a field of
12994 the class.) It is not until after this point that
12995 PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly. */
12996 if (flags & SF_INCLASS_INLINE)
12997 maybe_begin_member_template_processing (decl1);
12998
12999 /* Effective C++ rule 15. See also c_expand_return. */
13000 if (warn_ecpp
13001 && DECL_NAME (decl1) == ansi_opname[(int) MODIFY_EXPR]
13002 && TREE_CODE (TREE_TYPE (fntype)) == VOID_TYPE)
13003 cp_warning ("`operator=' should return a reference to `*this'");
13004
13005 /* Make the init_value nonzero so pushdecl knows this is not tentative.
13006 error_mark_node is replaced below (in poplevel) with the BLOCK. */
13007 DECL_INITIAL (decl1) = error_mark_node;
13008
13009 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
13010 SET_DEFAULT_DECL_ATTRIBUTES (decl1, attrs);
13011 #endif
13012
13013 /* This function exists in static storage.
13014 (This does not mean `static' in the C sense!) */
13015 TREE_STATIC (decl1) = 1;
13016
13017 /* We must call push_template_decl after current_class_type is set
13018 up. (If we are processing inline definitions after exiting a
13019 class scope, current_class_type will be NULL_TREE until set above
13020 by push_nested_class.) */
13021 if (processing_template_decl)
13022 decl1 = push_template_decl (decl1);
13023
13024 /* We are now in the scope of the function being defined. */
13025 current_function_decl = decl1;
13026
13027 /* Save the parm names or decls from this function's declarator
13028 where store_parm_decls will find them. */
13029 current_function_parms = last_function_parms;
13030 current_function_parm_tags = last_function_parm_tags;
13031
13032 /* Make sure the parameter and return types are reasonable. When
13033 you declare a function, these types can be incomplete, but they
13034 must be complete when you define the function. */
13035 if (! processing_template_decl)
13036 check_function_type (decl1);
13037
13038 /* Build the return declaration for the function. */
13039 restype = TREE_TYPE (fntype);
13040 if (!processing_template_decl)
13041 {
13042 if (!DECL_RESULT (decl1))
13043 {
13044 DECL_RESULT (decl1)
13045 = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
13046 c_apply_type_quals_to_decl (CP_TYPE_QUALS (restype),
13047 DECL_RESULT (decl1));
13048 }
13049 }
13050 else
13051 /* Just use `void'. Nobody will ever look at this anyhow. */
13052 DECL_RESULT (decl1) = build_decl (RESULT_DECL, 0, void_type_node);
13053
13054 /* Initialize RTL machinery. We cannot do this until
13055 CURRENT_FUNCTION_DECL and DECL_RESULT are set up. We do this
13056 even when processing a template; this is how we get
13057 CURRENT_FUNCTION set up, and our per-function variables
13058 initialized. */
13059 bl = current_binding_level;
13060 init_function_start (decl1, input_filename, lineno);
13061 current_binding_level = bl;
13062 expanding_p = (flags & SF_EXPAND) != 0;
13063
13064 /* Even though we're inside a function body, we still don't want to
13065 call expand_expr to calculate the size of a variable-sized array.
13066 We haven't necessarily assigned RTL to all variables yet, so it's
13067 not safe to try to expand expressions involving them. */
13068 immediate_size_expand = 0;
13069 get_pending_sizes ();
13070
13071 /* Let the user know we're compiling this function. */
13072 if (!building_stmt_tree ())
13073 announce_function (decl1);
13074
13075 /* Record the decl so that the function name is defined.
13076 If we already have a decl for this name, and it is a FUNCTION_DECL,
13077 use the old decl. */
13078 if (!processing_template_decl && !(flags & SF_PRE_PARSED))
13079 {
13080 /* A specialization is not used to guide overload resolution. */
13081 if ((flag_guiding_decls
13082 || !DECL_TEMPLATE_SPECIALIZATION (decl1))
13083 && ! DECL_FUNCTION_MEMBER_P (decl1))
13084 decl1 = pushdecl (decl1);
13085 else
13086 {
13087 /* We need to set the DECL_CONTEXT. */
13088 if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
13089 DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
13090 /* And make sure we have enough default args. */
13091 check_default_args (decl1);
13092 }
13093 DECL_MAIN_VARIANT (decl1) = decl1;
13094 fntype = TREE_TYPE (decl1);
13095 }
13096
13097 /* Reset these in case the call to pushdecl changed them. */
13098 current_function_decl = decl1;
13099 current_function->decl = decl1;
13100
13101 if (DECL_INTERFACE_KNOWN (decl1))
13102 {
13103 tree ctx = hack_decl_function_context (decl1);
13104
13105 if (DECL_NOT_REALLY_EXTERN (decl1))
13106 DECL_EXTERNAL (decl1) = 0;
13107
13108 if (ctx != NULL_TREE && DECL_THIS_INLINE (ctx)
13109 && TREE_PUBLIC (ctx))
13110 /* This is a function in a local class in an extern inline
13111 function. */
13112 comdat_linkage (decl1);
13113 }
13114 /* If this function belongs to an interface, it is public.
13115 If it belongs to someone else's interface, it is also external.
13116 This only affects inlines and template instantiations. */
13117 else if (interface_unknown == 0
13118 && (! DECL_TEMPLATE_INSTANTIATION (decl1)
13119 || flag_alt_external_templates))
13120 {
13121 if (DECL_THIS_INLINE (decl1) || DECL_TEMPLATE_INSTANTIATION (decl1)
13122 || processing_template_decl)
13123 {
13124 DECL_EXTERNAL (decl1)
13125 = (interface_only
13126 || (DECL_THIS_INLINE (decl1) && ! flag_implement_inlines
13127 && !DECL_VINDEX (decl1)));
13128
13129 /* For WIN32 we also want to put these in linkonce sections. */
13130 maybe_make_one_only (decl1);
13131 }
13132 else
13133 DECL_EXTERNAL (decl1) = 0;
13134 DECL_NOT_REALLY_EXTERN (decl1) = 0;
13135 DECL_INTERFACE_KNOWN (decl1) = 1;
13136 }
13137 else if (interface_unknown && interface_only
13138 && (! DECL_TEMPLATE_INSTANTIATION (decl1)
13139 || flag_alt_external_templates))
13140 {
13141 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
13142 interface, we will have interface_only set but not
13143 interface_known. In that case, we don't want to use the normal
13144 heuristics because someone will supply a #pragma implementation
13145 elsewhere, and deducing it here would produce a conflict. */
13146 comdat_linkage (decl1);
13147 DECL_EXTERNAL (decl1) = 0;
13148 DECL_INTERFACE_KNOWN (decl1) = 1;
13149 DECL_DEFER_OUTPUT (decl1) = 1;
13150 }
13151 else
13152 {
13153 /* This is a definition, not a reference.
13154 So clear DECL_EXTERNAL. */
13155 DECL_EXTERNAL (decl1) = 0;
13156
13157 if ((DECL_THIS_INLINE (decl1) || DECL_TEMPLATE_INSTANTIATION (decl1))
13158 && ! DECL_INTERFACE_KNOWN (decl1)
13159 /* Don't try to defer nested functions for now. */
13160 && ! hack_decl_function_context (decl1))
13161 DECL_DEFER_OUTPUT (decl1) = 1;
13162 else
13163 DECL_INTERFACE_KNOWN (decl1) = 1;
13164 }
13165
13166 if (ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1))
13167 {
13168 if (TREE_CODE (fntype) == METHOD_TYPE)
13169 TREE_TYPE (decl1) = fntype
13170 = build_function_type (TREE_TYPE (fntype),
13171 TREE_CHAIN (TYPE_ARG_TYPES (fntype)));
13172 current_function_parms = TREE_CHAIN (current_function_parms);
13173 DECL_ARGUMENTS (decl1) = current_function_parms;
13174 ctype = NULL_TREE;
13175 }
13176
13177 my_friendly_assert (current_class_ptr == NULL_TREE, 19990908);
13178 my_friendly_assert (current_class_ref == NULL_TREE, 19990908);
13179 if (ctype)
13180 {
13181 /* If we're compiling a friend function, neither of the variables
13182 current_class_ptr nor current_class_type will have values. */
13183 if (! doing_friend)
13184 {
13185 /* We know that this was set up by `grokclassfn'.
13186 We do not wait until `store_parm_decls', since evil
13187 parse errors may never get us to that point. Here
13188 we keep the consistency between `current_class_type'
13189 and `current_class_ptr'. */
13190 tree t = current_function_parms;
13191 int i;
13192
13193 my_friendly_assert (t != NULL_TREE
13194 && TREE_CODE (t) == PARM_DECL, 162);
13195 my_friendly_assert (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE,
13196 19990811);
13197
13198 if (! hack_decl_function_context (decl1))
13199 temporary_allocation ();
13200 i = suspend_momentary ();
13201
13202 /* Normally, build_indirect_ref returns current_class_ref
13203 whenever current_class_ptr is dereferenced. This time,
13204 however, we want it to *create* current_class_ref, so we
13205 temporarily clear current_class_ptr to fool it. */
13206 cp_function_chain->x_current_class_ref
13207 = build_indirect_ref (t, NULL_PTR);
13208 cp_function_chain->x_current_class_ptr = t;
13209
13210 resume_momentary (i);
13211 if (! hack_decl_function_context (decl1))
13212 end_temporary_allocation ();
13213 }
13214 }
13215
13216 pushlevel (0);
13217 current_binding_level->parm_flag = 1;
13218
13219 if (attrs)
13220 cplus_decl_attributes (decl1, NULL_TREE, attrs);
13221
13222 if (!building_stmt_tree ())
13223 {
13224 GNU_xref_function (decl1, current_function_parms);
13225 make_function_rtl (decl1);
13226 }
13227
13228 /* Promote the value to int before returning it. */
13229 if (C_PROMOTING_INTEGER_TYPE_P (restype))
13230 restype = type_promotes_to (restype);
13231
13232 /* If this fcn was already referenced via a block-scope `extern' decl
13233 (or an implicit decl), propagate certain information about the usage. */
13234 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (decl1)))
13235 TREE_ADDRESSABLE (decl1) = 1;
13236
13237 if (DECL_RESULT (decl1) == NULL_TREE)
13238 {
13239 DECL_RESULT (decl1)
13240 = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
13241 TREE_READONLY (DECL_RESULT (decl1)) = CP_TYPE_CONST_P (restype);
13242 TREE_THIS_VOLATILE (DECL_RESULT (decl1)) = CP_TYPE_VOLATILE_P (restype);
13243 }
13244
13245 /* Allocate further tree nodes temporarily during compilation
13246 of this function only. Tiemann moved up here from bottom of fn. */
13247 /* If this is a nested function, then we must continue to allocate RTL
13248 on the permanent obstack in case we need to inline it later. */
13249 if (! hack_decl_function_context (decl1))
13250 temporary_allocation ();
13251
13252 /* Make sure that we always have a momntary obstack while we're in a
13253 function body. */
13254 push_momentary ();
13255
13256 if (building_stmt_tree ())
13257 begin_stmt_tree (decl1);
13258
13259 ++function_depth;
13260
13261 if (DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (decl1))
13262 && DECL_LANGUAGE (decl1) == lang_cplusplus)
13263 {
13264 dtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13265 ctor_label = NULL_TREE;
13266 }
13267 else
13268 {
13269 dtor_label = NULL_TREE;
13270 if (DECL_CONSTRUCTOR_P (decl1))
13271 ctor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13272 }
13273
13274 return 1;
13275 }
13276 \f
13277 /* Called after store_parm_decls for a function-try-block. We need to update
13278 last_parm_cleanup_insn so that the base initializers for a constructor
13279 are run within this block, not before it. */
13280
13281 void
13282 expand_start_early_try_stmts ()
13283 {
13284 expand_start_try_stmts ();
13285 last_parm_cleanup_insn = get_last_insn ();
13286 }
13287
13288 /* Store the parameter declarations into the current function declaration.
13289 This is called after parsing the parameter declarations, before
13290 digesting the body of the function.
13291
13292 Also install to binding contour return value identifier, if any. */
13293
13294 void
13295 store_parm_decls ()
13296 {
13297 register tree fndecl = current_function_decl;
13298 register tree parm;
13299 int parms_have_cleanups = 0;
13300 tree cleanups = NULL_TREE;
13301
13302 /* This is either a chain of PARM_DECLs (when a prototype is used). */
13303 tree specparms = current_function_parms;
13304
13305 /* This is a list of types declared among parms in a prototype. */
13306 tree parmtags = current_function_parm_tags;
13307
13308 /* This is a chain of any other decls that came in among the parm
13309 declarations. If a parm is declared with enum {foo, bar} x;
13310 then CONST_DECLs for foo and bar are put here. */
13311 tree nonparms = NULL_TREE;
13312
13313 if (toplevel_bindings_p ())
13314 fatal ("parse errors have confused me too much");
13315
13316 /* Create a binding level for the parms. */
13317 expand_start_bindings (0);
13318
13319 if (specparms != NULL_TREE)
13320 {
13321 /* This case is when the function was defined with an ANSI prototype.
13322 The parms already have decls, so we need not do anything here
13323 except record them as in effect
13324 and complain if any redundant old-style parm decls were written. */
13325
13326 register tree next;
13327
13328 /* Must clear this because it might contain TYPE_DECLs declared
13329 at class level. */
13330 storedecls (NULL_TREE);
13331
13332 for (parm = nreverse (specparms); parm; parm = next)
13333 {
13334 next = TREE_CHAIN (parm);
13335 if (TREE_CODE (parm) == PARM_DECL)
13336 {
13337 tree cleanup;
13338 if (DECL_NAME (parm) == NULL_TREE)
13339 {
13340 pushdecl (parm);
13341 }
13342 else if (TREE_CODE (TREE_TYPE (parm)) == VOID_TYPE)
13343 cp_error ("parameter `%D' declared void", parm);
13344 else
13345 {
13346 /* Now fill in DECL_REFERENCE_SLOT for any of the parm decls.
13347 A parameter is assumed not to have any side effects.
13348 If this should change for any reason, then this
13349 will have to wrap the bashed reference type in a save_expr.
13350
13351 Also, if the parameter type is declared to be an X
13352 and there is an X(X&) constructor, we cannot lay it
13353 into the stack (any more), so we make this parameter
13354 look like it is really of reference type. Functions
13355 which pass parameters to this function will know to
13356 create a temporary in their frame, and pass a reference
13357 to that. */
13358
13359 if (TREE_CODE (TREE_TYPE (parm)) == REFERENCE_TYPE
13360 && TYPE_SIZE (TREE_TYPE (TREE_TYPE (parm))))
13361 SET_DECL_REFERENCE_SLOT (parm, convert_from_reference (parm));
13362
13363 pushdecl (parm);
13364 }
13365 if (! building_stmt_tree ()
13366 && (cleanup = maybe_build_cleanup (parm), cleanup))
13367 {
13368 expand_decl (parm);
13369 parms_have_cleanups = 1;
13370
13371 /* Keep track of the cleanups. */
13372 cleanups = tree_cons (parm, cleanup, cleanups);
13373 }
13374 }
13375 else
13376 {
13377 /* If we find an enum constant or a type tag,
13378 put it aside for the moment. */
13379 TREE_CHAIN (parm) = NULL_TREE;
13380 nonparms = chainon (nonparms, parm);
13381 }
13382 }
13383
13384 /* Get the decls in their original chain order
13385 and record in the function. This is all and only the
13386 PARM_DECLs that were pushed into scope by the loop above. */
13387 DECL_ARGUMENTS (fndecl) = getdecls ();
13388
13389 storetags (chainon (parmtags, gettags ()));
13390 }
13391 else
13392 DECL_ARGUMENTS (fndecl) = NULL_TREE;
13393
13394 /* Now store the final chain of decls for the arguments
13395 as the decl-chain of the current lexical scope.
13396 Put the enumerators in as well, at the front so that
13397 DECL_ARGUMENTS is not modified. */
13398
13399 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
13400
13401 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
13402 declare_function_name ();
13403
13404 /* Initialize the RTL code for the function. */
13405 DECL_SAVED_INSNS (fndecl) = 0;
13406 if (! building_stmt_tree ())
13407 expand_function_start (fndecl, parms_have_cleanups);
13408
13409 current_function_parms_stored = 1;
13410
13411 /* If this function is `main', emit a call to `__main'
13412 to run global initializers, etc. */
13413 if (DECL_MAIN_P (fndecl) && !building_stmt_tree ())
13414 expand_main_function ();
13415
13416 /* Now that we have initialized the parms, we can start their
13417 cleanups. We cannot do this before, since expand_decl_cleanup
13418 should not be called before the parm can be used. */
13419 if (cleanups && !building_stmt_tree ())
13420 {
13421 for (cleanups = nreverse (cleanups); cleanups; cleanups = TREE_CHAIN (cleanups))
13422 {
13423 if (! expand_decl_cleanup (TREE_PURPOSE (cleanups), TREE_VALUE (cleanups)))
13424 cp_error ("parser lost in parsing declaration of `%D'",
13425 TREE_PURPOSE (cleanups));
13426 }
13427 }
13428
13429 /* Create a binding contour which can be used to catch
13430 cleanup-generated temporaries. Also, if the return value needs or
13431 has initialization, deal with that now. */
13432 if (parms_have_cleanups)
13433 {
13434 pushlevel (0);
13435 if (!building_stmt_tree ())
13436 expand_start_bindings (0);
13437 }
13438
13439 if (! building_stmt_tree () && flag_exceptions)
13440 {
13441 /* Do the starting of the exception specifications, if we have any. */
13442 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
13443 expand_start_eh_spec ();
13444 }
13445
13446 last_parm_cleanup_insn = get_last_insn ();
13447 last_dtor_insn = get_last_insn ();
13448 }
13449
13450 /* Bind a name and initialization to the return value of
13451 the current function. */
13452
13453 void
13454 store_return_init (decl)
13455 tree decl;
13456 {
13457 /* If this named return value comes in a register, put it in a
13458 pseudo-register. */
13459 if (DECL_REGISTER (decl))
13460 {
13461 original_result_rtx = DECL_RTL (decl);
13462 DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
13463 }
13464 }
13465
13466 \f
13467 /* Finish up a function declaration and compile that function
13468 all the way to assembler language output. The free the storage
13469 for the function definition.
13470
13471 This is called after parsing the body of the function definition.
13472 LINENO is the current line number.
13473
13474 FLAGS is a bitwise or of the following values:
13475 1 - CALL_POPLEVEL
13476 An extra call to poplevel (and expand_end_bindings) must be
13477 made to take care of the binding contour for the base
13478 initializers. This is only relevant for constructors.
13479 2 - INCLASS_INLINE
13480 We just finished processing the body of an in-class inline
13481 function definition. (This processing will have taken place
13482 after the class definition is complete.) */
13483
13484 void
13485 finish_function (lineno, flags)
13486 int lineno;
13487 int flags;
13488 {
13489 register tree fndecl = current_function_decl;
13490 tree fntype, ctype = NULL_TREE;
13491 rtx fn_last_parm_insn, insns;
13492 /* Label to use if this function is supposed to return a value. */
13493 tree no_return_label = NULL_TREE;
13494 tree decls = NULL_TREE;
13495 int call_poplevel = (flags & 1) != 0;
13496 int inclass_inline = (flags & 2) != 0;
13497 int expand_p;
13498 int nested;
13499
13500 /* When we get some parse errors, we can end up without a
13501 current_function_decl, so cope. */
13502 if (fndecl == NULL_TREE)
13503 return;
13504
13505 nested = function_depth > 1;
13506 fntype = TREE_TYPE (fndecl);
13507
13508 /* TREE_READONLY (fndecl) = 1;
13509 This caused &foo to be of type ptr-to-const-function
13510 which then got a warning when stored in a ptr-to-function variable. */
13511
13512 /* This happens on strange parse errors. */
13513 if (! current_function_parms_stored)
13514 {
13515 call_poplevel = 0;
13516 store_parm_decls ();
13517 }
13518
13519 if (building_stmt_tree ())
13520 {
13521 if (DECL_CONSTRUCTOR_P (fndecl) && call_poplevel)
13522 {
13523 decls = getdecls ();
13524 expand_end_bindings (decls, decls != NULL_TREE, 0);
13525 poplevel (decls != NULL_TREE, 0, 0);
13526 }
13527
13528 /* Because we do not call expand_function_end, we won't call
13529 expand_end_bindings to match the call to
13530 expand_start_bindings we did in store_parm_decls. Therefore,
13531 we explicitly call expand_end_bindings here. However, we
13532 really shouldn't be calling expand_start_bindings at all when
13533 building_stmt_tree; it's conceptually an RTL-generation
13534 function, rather than a front-end function. */
13535 expand_end_bindings (0, 0, 0);
13536 }
13537 else
13538 {
13539 if (write_symbols != NO_DEBUG /*&& TREE_CODE (fntype) != METHOD_TYPE*/)
13540 {
13541 tree ttype = target_type (fntype);
13542 tree parmdecl;
13543
13544 if (IS_AGGR_TYPE (ttype))
13545 /* Let debugger know it should output info for this type. */
13546 note_debug_info_needed (ttype);
13547
13548 for (parmdecl = DECL_ARGUMENTS (fndecl); parmdecl; parmdecl = TREE_CHAIN (parmdecl))
13549 {
13550 ttype = target_type (TREE_TYPE (parmdecl));
13551 if (IS_AGGR_TYPE (ttype))
13552 /* Let debugger know it should output info for this type. */
13553 note_debug_info_needed (ttype);
13554 }
13555 }
13556
13557 /* Clean house because we will need to reorder insns here. */
13558 do_pending_stack_adjust ();
13559
13560 if (dtor_label)
13561 {
13562 tree binfo = TYPE_BINFO (current_class_type);
13563 tree cond = integer_one_node;
13564 tree exprstmt;
13565 tree in_charge_node = lookup_name (in_charge_identifier, 0);
13566 tree virtual_size;
13567 int ok_to_optimize_dtor = 0;
13568 int empty_dtor = get_last_insn () == last_dtor_insn;
13569
13570 if (current_function_assigns_this)
13571 cond = build (NE_EXPR, boolean_type_node,
13572 current_class_ptr, integer_zero_node);
13573 else
13574 {
13575 int n_baseclasses = CLASSTYPE_N_BASECLASSES (current_class_type);
13576
13577 /* If this destructor is empty, then we don't need to check
13578 whether `this' is NULL in some cases. */
13579 if ((flag_this_is_variable & 1) == 0)
13580 ok_to_optimize_dtor = 1;
13581 else if (empty_dtor)
13582 ok_to_optimize_dtor
13583 = (n_baseclasses == 0
13584 || (n_baseclasses == 1
13585 && TYPE_HAS_DESTRUCTOR (TYPE_BINFO_BASETYPE (current_class_type, 0))));
13586 }
13587
13588 /* These initializations might go inline. Protect
13589 the binding level of the parms. */
13590 pushlevel (0);
13591 expand_start_bindings (0);
13592
13593 if (current_function_assigns_this)
13594 {
13595 current_function_assigns_this = 0;
13596 current_function_just_assigned_this = 0;
13597 }
13598
13599 /* Generate the code to call destructor on base class.
13600 If this destructor belongs to a class with virtual
13601 functions, then set the virtual function table
13602 pointer to represent the type of our base class. */
13603
13604 /* This side-effect makes call to `build_delete' generate the
13605 code we have to have at the end of this destructor.
13606 `build_delete' will set the flag again. */
13607 TYPE_HAS_DESTRUCTOR (current_class_type) = 0;
13608
13609 /* These are two cases where we cannot delegate deletion. */
13610 if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)
13611 || TYPE_GETS_REG_DELETE (current_class_type))
13612 exprstmt = build_delete (current_class_type, current_class_ref, integer_zero_node,
13613 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL, 0);
13614 else
13615 exprstmt = build_delete (current_class_type, current_class_ref, in_charge_node,
13616 LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL, 0);
13617
13618 /* If we did not assign to this, then `this' is non-zero at
13619 the end of a destructor. As a special optimization, don't
13620 emit test if this is an empty destructor. If it does nothing,
13621 it does nothing. If it calls a base destructor, the base
13622 destructor will perform the test. */
13623
13624 if (exprstmt != error_mark_node
13625 && (TREE_CODE (exprstmt) != NOP_EXPR
13626 || TREE_OPERAND (exprstmt, 0) != integer_zero_node
13627 || TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)))
13628 {
13629 expand_label (dtor_label);
13630 if (cond != integer_one_node)
13631 expand_start_cond (cond, 0);
13632 if (exprstmt != void_zero_node)
13633 /* Don't call `expand_expr_stmt' if we're not going to do
13634 anything, since -Wall will give a diagnostic. */
13635 expand_expr_stmt (exprstmt);
13636
13637 /* Run destructor on all virtual baseclasses. */
13638 if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
13639 {
13640 tree vbases = nreverse (copy_list (CLASSTYPE_VBASECLASSES (current_class_type)));
13641 expand_start_cond (build (BIT_AND_EXPR, integer_type_node,
13642 in_charge_node, integer_two_node), 0);
13643 while (vbases)
13644 {
13645 if (TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (vbases)))
13646 {
13647 tree vb = get_vbase
13648 (BINFO_TYPE (vbases),
13649 TYPE_BINFO (current_class_type));
13650 expand_expr_stmt
13651 (build_scoped_method_call
13652 (current_class_ref, vb, dtor_identifier,
13653 build_expr_list (NULL_TREE, integer_zero_node)));
13654 }
13655 vbases = TREE_CHAIN (vbases);
13656 }
13657 expand_end_cond ();
13658 }
13659
13660 do_pending_stack_adjust ();
13661 if (cond != integer_one_node)
13662 expand_end_cond ();
13663 }
13664
13665 virtual_size = c_sizeof (current_class_type);
13666
13667 /* At the end, call delete if that's what's requested. */
13668
13669 /* FDIS sez: At the point of definition of a virtual destructor
13670 (including an implicit definition), non-placement operator
13671 delete shall be looked up in the scope of the destructor's
13672 class and if found shall be accessible and unambiguous.
13673
13674 This is somewhat unclear, but I take it to mean that if the
13675 class only defines placement deletes we don't do anything here.
13676 So we pass LOOKUP_SPECULATIVELY; delete_sanity will complain
13677 for us if they ever try to delete one of these. */
13678
13679 if (TYPE_GETS_REG_DELETE (current_class_type)
13680 || TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
13681 exprstmt = build_op_delete_call
13682 (DELETE_EXPR, current_class_ptr, virtual_size,
13683 LOOKUP_NORMAL | LOOKUP_SPECULATIVELY, NULL_TREE);
13684 else
13685 exprstmt = NULL_TREE;
13686
13687 if (exprstmt)
13688 {
13689 cond = build (BIT_AND_EXPR, integer_type_node,
13690 in_charge_node, integer_one_node);
13691 expand_start_cond (cond, 0);
13692 expand_expr_stmt (exprstmt);
13693 expand_end_cond ();
13694 }
13695
13696 /* End of destructor. */
13697 expand_end_bindings (NULL_TREE, getdecls () != NULL_TREE, 0);
13698 poplevel (getdecls () != NULL_TREE, 0, 0);
13699
13700 /* Back to the top of destructor. */
13701 /* Don't execute destructor code if `this' is NULL. */
13702
13703 start_sequence ();
13704
13705 /* If the dtor is empty, and we know there is not possible way we
13706 could use any vtable entries, before they are possibly set by
13707 a base class dtor, we don't have to setup the vtables, as we
13708 know that any base class dtoring will set up any vtables it
13709 needs. We avoid MI, because one base class dtor can do a
13710 virtual dispatch to an overridden function that would need to
13711 have a non-related vtable set up, we cannot avoid setting up
13712 vtables in that case. We could change this to see if there is
13713 just one vtable. */
13714 if (! empty_dtor || TYPE_USES_COMPLEX_INHERITANCE (current_class_type))
13715 {
13716 /* Make all virtual function table pointers in non-virtual base
13717 classes point to CURRENT_CLASS_TYPE's virtual function
13718 tables. */
13719 expand_direct_vtbls_init (binfo, binfo, 1, 0, current_class_ptr);
13720
13721 if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
13722 expand_indirect_vtbls_init (binfo, current_class_ref, current_class_ptr);
13723 }
13724
13725 if (! ok_to_optimize_dtor)
13726 {
13727 cond = build_binary_op (NE_EXPR,
13728 current_class_ptr, integer_zero_node);
13729 expand_start_cond (cond, 0);
13730 }
13731
13732 insns = get_insns ();
13733 end_sequence ();
13734
13735 fn_last_parm_insn = get_first_nonparm_insn ();
13736 if (fn_last_parm_insn == NULL_RTX)
13737 fn_last_parm_insn = get_last_insn ();
13738 else
13739 fn_last_parm_insn = previous_insn (fn_last_parm_insn);
13740
13741 emit_insns_after (insns, fn_last_parm_insn);
13742
13743 if (! ok_to_optimize_dtor)
13744 expand_end_cond ();
13745 }
13746 else if (current_function_assigns_this)
13747 {
13748 /* Does not need to call emit_base_init, because
13749 that is done (if needed) just after assignment to this
13750 is seen. */
13751
13752 if (DECL_CONSTRUCTOR_P (current_function_decl))
13753 {
13754 end_protect_partials ();
13755 expand_label (ctor_label);
13756 ctor_label = NULL_TREE;
13757
13758 if (call_poplevel)
13759 {
13760 decls = getdecls ();
13761 expand_end_bindings (decls, decls != NULL_TREE, 0);
13762 poplevel (decls != NULL_TREE, 0, 0);
13763 }
13764 /* c_expand_return knows to return 'this' from a constructor. */
13765 c_expand_return (NULL_TREE);
13766 }
13767 else if (TREE_CODE (TREE_TYPE (DECL_RESULT (current_function_decl))) != VOID_TYPE
13768 && return_label != NULL_RTX)
13769 no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13770
13771 current_function_assigns_this = 0;
13772 current_function_just_assigned_this = 0;
13773 base_init_expr = NULL_TREE;
13774 }
13775 else if (DECL_CONSTRUCTOR_P (fndecl))
13776 {
13777 tree cond = NULL_TREE, thenclause = NULL_TREE;
13778 /* Allow constructor for a type to get a new instance of the object
13779 using `build_new'. */
13780 tree abstract_virtuals = CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type);
13781 CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = NULL_TREE;
13782
13783 if (flag_this_is_variable > 0)
13784 {
13785 cond = build_binary_op (EQ_EXPR,
13786 current_class_ptr, integer_zero_node);
13787 thenclause = build_modify_expr (current_class_ptr, NOP_EXPR,
13788 build_new (NULL_TREE, current_class_type, void_type_node, 0));
13789 }
13790
13791 CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = abstract_virtuals;
13792
13793 start_sequence ();
13794
13795 if (flag_this_is_variable > 0)
13796 {
13797 expand_start_cond (cond, 0);
13798 expand_expr_stmt (thenclause);
13799 expand_end_cond ();
13800 }
13801
13802 /* Emit insns from `emit_base_init' which sets up virtual
13803 function table pointer(s). */
13804 if (base_init_expr)
13805 {
13806 expand_expr_stmt (base_init_expr);
13807 base_init_expr = NULL_TREE;
13808 }
13809
13810 insns = get_insns ();
13811 end_sequence ();
13812
13813 /* This is where the body of the constructor begins. */
13814
13815 emit_insns_after (insns, last_parm_cleanup_insn);
13816
13817 end_protect_partials ();
13818
13819 /* This is where the body of the constructor ends. */
13820 expand_label (ctor_label);
13821 ctor_label = NULL_TREE;
13822
13823 if (call_poplevel)
13824 {
13825 decls = getdecls ();
13826 expand_end_bindings (decls, decls != NULL_TREE, 0);
13827 poplevel (decls != NULL_TREE, 1, 0);
13828 }
13829
13830 /* c_expand_return knows to return 'this' from a constructor. */
13831 c_expand_return (NULL_TREE);
13832
13833 current_function_assigns_this = 0;
13834 current_function_just_assigned_this = 0;
13835 }
13836 else if (DECL_MAIN_P (fndecl))
13837 {
13838 /* Make it so that `main' always returns 0 by default. */
13839 #ifdef VMS
13840 c_expand_return (integer_one_node);
13841 #else
13842 c_expand_return (integer_zero_node);
13843 #endif
13844 }
13845 else if (return_label != NULL_RTX
13846 && current_function_return_value == NULL_TREE
13847 && ! DECL_NAME (DECL_RESULT (current_function_decl)))
13848 no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
13849
13850 if (flag_exceptions)
13851 expand_exception_blocks ();
13852
13853 /* If this function is supposed to return a value, ensure that
13854 we do not fall into the cleanups by mistake. The end of our
13855 function will look like this:
13856
13857 user code (may have return stmt somewhere)
13858 goto no_return_label
13859 cleanup_label:
13860 cleanups
13861 goto return_label
13862 no_return_label:
13863 NOTE_INSN_FUNCTION_END
13864 return_label:
13865 things for return
13866
13867 If the user omits a return stmt in the USER CODE section, we
13868 will have a control path which reaches NOTE_INSN_FUNCTION_END.
13869 Otherwise, we won't. */
13870 if (no_return_label)
13871 {
13872 DECL_CONTEXT (no_return_label) = fndecl;
13873 DECL_INITIAL (no_return_label) = error_mark_node;
13874 DECL_SOURCE_FILE (no_return_label) = input_filename;
13875 DECL_SOURCE_LINE (no_return_label) = lineno;
13876 expand_goto (no_return_label);
13877 }
13878
13879 if (cleanup_label)
13880 {
13881 /* Remove the binding contour which is used
13882 to catch cleanup-generated temporaries. */
13883 expand_end_bindings (0, 0, 0);
13884 poplevel (0, 0, 0);
13885
13886 /* Emit label at beginning of cleanup code for parameters. */
13887 emit_label (cleanup_label);
13888 }
13889
13890 /* Get return value into register if that's where it's supposed
13891 to be. */
13892 if (original_result_rtx)
13893 fixup_result_decl (DECL_RESULT (fndecl), original_result_rtx);
13894
13895 /* Finish building code that will trigger warnings if users forget
13896 to make their functions return values. */
13897 if (no_return_label || cleanup_label)
13898 emit_jump (return_label);
13899 if (no_return_label)
13900 {
13901 /* We don't need to call `expand_*_return' here because we
13902 don't need any cleanups here--this path of code is only
13903 for error checking purposes. */
13904 expand_label (no_return_label);
13905 }
13906
13907 /* We hard-wired immediate_size_expand to zero in
13908 start_function. Expand_function_end will decrement this
13909 variable. So, we set the variable to one here, so that after
13910 the decrement it will remain zero. */
13911 immediate_size_expand = 1;
13912
13913 /* Generate rtl for function exit. */
13914 expand_function_end (input_filename, lineno, 1);
13915 }
13916
13917 /* We have to save this value here in case
13918 maybe_end_member_template_processing decides to pop all the
13919 template parameters. */
13920 expand_p = !building_stmt_tree ();
13921
13922 /* If we're saving up tree structure, tie off the function now. */
13923 if (!expand_p)
13924 finish_stmt_tree (fndecl);
13925
13926 /* This must come after expand_function_end because cleanups might
13927 have declarations (from inline functions) that need to go into
13928 this function's blocks. */
13929 if (current_binding_level->parm_flag != 1)
13930 my_friendly_abort (122);
13931 poplevel (1, 0, 1);
13932
13933 /* Remember that we were in class scope. */
13934 if (current_class_name)
13935 ctype = current_class_type;
13936
13937 /* Must mark the RESULT_DECL as being in this function. */
13938 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
13939
13940 /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
13941 to the FUNCTION_DECL node itself. */
13942 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
13943
13944 /* Undo the call to push_momentary in start_function. */
13945 pop_momentary ();
13946
13947 if (expand_p)
13948 {
13949 int returns_null;
13950 int returns_value;
13951 int saved_flag_keep_inline_functions =
13952 flag_keep_inline_functions;
13953
13954 /* So we can tell if jump_optimize sets it to 1. */
13955 can_reach_end = 0;
13956
13957 if (DECL_CONTEXT (fndecl) != NULL_TREE
13958 && hack_decl_function_context (fndecl))
13959 /* Trick rest_of_compilation into not deferring output of this
13960 function, even if it is inline, since the rtl_obstack for
13961 this function is the function_obstack of the enclosing
13962 function and will be deallocated when the enclosing
13963 function is gone. See save_tree_status. */
13964 flag_keep_inline_functions = 1;
13965
13966 /* Before we call rest_of_compilation (which will pop the
13967 CURRENT_FUNCTION), we must save these values. */
13968 returns_null = current_function_returns_null;
13969 returns_value = current_function_returns_value;
13970
13971 /* If this is a nested function (like a template instantiation
13972 that we're compiling in the midst of compiling something
13973 else), push a new GC context. That will keep local variables
13974 on the stack from being collected while we're doing the
13975 compilation of this function. */
13976 if (function_depth > 1)
13977 ggc_push_context ();
13978
13979 /* Run the optimizers and output the assembler code for this
13980 function. */
13981 if (DECL_ARTIFICIAL (fndecl))
13982 {
13983 /* Do we really *want* to inline this synthesized method? */
13984
13985 int save_fif = flag_inline_functions;
13986 flag_inline_functions = 1;
13987
13988 /* Turn off DECL_INLINE for the moment so function_cannot_inline_p
13989 will check our size. */
13990 DECL_INLINE (fndecl) = 0;
13991
13992 rest_of_compilation (fndecl);
13993 flag_inline_functions = save_fif;
13994 }
13995 else
13996 rest_of_compilation (fndecl);
13997
13998 /* Undo the call to ggc_push_context above. */
13999 if (function_depth > 1)
14000 ggc_pop_context ();
14001
14002 flag_keep_inline_functions = saved_flag_keep_inline_functions;
14003
14004 if (DECL_SAVED_INSNS (fndecl) && ! TREE_ASM_WRITTEN (fndecl))
14005 {
14006 /* Set DECL_EXTERNAL so that assemble_external will be called as
14007 necessary. We'll clear it again in finish_file. */
14008 if (! DECL_EXTERNAL (fndecl))
14009 DECL_NOT_REALLY_EXTERN (fndecl) = 1;
14010 DECL_EXTERNAL (fndecl) = 1;
14011 mark_inline_for_output (fndecl);
14012 }
14013
14014 if (ctype && TREE_ASM_WRITTEN (fndecl))
14015 note_debug_info_needed (ctype);
14016
14017 returns_null |= can_reach_end;
14018
14019 /* Since we don't normally go through c_expand_return for constructors,
14020 this normally gets the wrong value.
14021 Also, named return values have their return codes emitted after
14022 NOTE_INSN_FUNCTION_END, confusing jump.c. */
14023 if (DECL_CONSTRUCTOR_P (fndecl)
14024 || DECL_NAME (DECL_RESULT (fndecl)) != NULL_TREE)
14025 returns_null = 0;
14026
14027 if (TREE_THIS_VOLATILE (fndecl) && returns_null)
14028 cp_warning ("`noreturn' function `%D' does return", fndecl);
14029 else if ((warn_return_type || pedantic)
14030 && returns_null
14031 && TREE_CODE (TREE_TYPE (fntype)) != VOID_TYPE)
14032 {
14033 /* If this function returns non-void and control can drop through,
14034 complain. */
14035 cp_warning ("control reaches end of non-void function `%D'", fndecl);
14036 }
14037 /* With just -W, complain only if function returns both with
14038 and without a value. */
14039 else if (extra_warnings && returns_value && returns_null)
14040 warning ("this function may return with or without a value");
14041 }
14042 else
14043 {
14044 /* Since we never call rest_of_compilation, we never clear
14045 CURRENT_FUNCTION. Do so explicitly. */
14046 free_after_compilation (current_function);
14047 current_function = NULL;
14048 }
14049
14050 /* If this is a in-class inline definition, we may have to pop the
14051 bindings for the template parameters that we added in
14052 maybe_begin_member_template_processing when start_function was
14053 called. */
14054 if (inclass_inline)
14055 maybe_end_member_template_processing ();
14056
14057 /* Leave the scope of the class. */
14058 if (ctype)
14059 pop_nested_class ();
14060
14061 --function_depth;
14062
14063 /* Free all the tree nodes making up this function. */
14064 /* Switch back to allocating nodes permanently
14065 until we start another function. */
14066 if (! nested)
14067 permanent_allocation (1);
14068
14069 if (DECL_SAVED_INSNS (fndecl) == 0)
14070 {
14071 tree t;
14072
14073 /* Stop pointing to the local nodes about to be freed. */
14074 /* But DECL_INITIAL must remain nonzero so we know this
14075 was an actual function definition. */
14076 DECL_INITIAL (fndecl) = error_mark_node;
14077 for (t = DECL_ARGUMENTS (fndecl); t; t = TREE_CHAIN (t))
14078 DECL_RTL (t) = DECL_INCOMING_RTL (t) = NULL_RTX;
14079 }
14080
14081 if (DECL_STATIC_CONSTRUCTOR (fndecl))
14082 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
14083 if (DECL_STATIC_DESTRUCTOR (fndecl))
14084 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
14085
14086 if (! nested)
14087 {
14088 /* Let the error reporting routines know that we're outside a
14089 function. For a nested function, this value is used in
14090 pop_cp_function_context and then reset via pop_function_context. */
14091 current_function_decl = NULL_TREE;
14092 }
14093 }
14094 \f
14095 /* Create the FUNCTION_DECL for a function definition.
14096 DECLSPECS and DECLARATOR are the parts of the declaration;
14097 they describe the return type and the name of the function,
14098 but twisted together in a fashion that parallels the syntax of C.
14099
14100 This function creates a binding context for the function body
14101 as well as setting up the FUNCTION_DECL in current_function_decl.
14102
14103 Returns a FUNCTION_DECL on success.
14104
14105 If the DECLARATOR is not suitable for a function (it defines a datum
14106 instead), we return 0, which tells yyparse to report a parse error.
14107
14108 May return void_type_node indicating that this method is actually
14109 a friend. See grokfield for more details.
14110
14111 Came here with a `.pushlevel' .
14112
14113 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
14114 CHANGES TO CODE IN `grokfield'. */
14115
14116 tree
14117 start_method (declspecs, declarator, attrlist)
14118 tree declarator, declspecs, attrlist;
14119 {
14120 tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
14121 attrlist);
14122
14123 /* Something too ugly to handle. */
14124 if (fndecl == NULL_TREE)
14125 return NULL_TREE;
14126
14127 /* Pass friends other than inline friend functions back. */
14128 if (fndecl == void_type_node)
14129 return fndecl;
14130
14131 if (TREE_CODE (fndecl) != FUNCTION_DECL)
14132 /* Not a function, tell parser to report parse error. */
14133 return NULL_TREE;
14134
14135 if (DECL_IN_AGGR_P (fndecl))
14136 {
14137 if (IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (fndecl)) != current_class_type)
14138 {
14139 if (DECL_CONTEXT (fndecl)
14140 && TREE_CODE( DECL_CONTEXT (fndecl)) != NAMESPACE_DECL)
14141 cp_error ("`%D' is already defined in class %s", fndecl,
14142 TYPE_NAME_STRING (DECL_CONTEXT (fndecl)));
14143 }
14144 return void_type_node;
14145 }
14146
14147 check_template_shadow (fndecl);
14148
14149 DECL_THIS_INLINE (fndecl) = 1;
14150
14151 if (flag_default_inline)
14152 DECL_INLINE (fndecl) = 1;
14153
14154 /* We process method specializations in finish_struct_1. */
14155 if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
14156 fndecl = push_template_decl (fndecl);
14157
14158 /* We read in the parameters on the maybepermanent_obstack,
14159 but we won't be getting back to them until after we
14160 may have clobbered them. So the call to preserve_data
14161 will keep them safe. */
14162 preserve_data ();
14163
14164 if (! DECL_FRIEND_P (fndecl))
14165 {
14166 if (TREE_CHAIN (fndecl))
14167 {
14168 fndecl = copy_node (fndecl);
14169 TREE_CHAIN (fndecl) = NULL_TREE;
14170 }
14171
14172 if (DECL_CONSTRUCTOR_P (fndecl))
14173 {
14174 if (! grok_ctor_properties (current_class_type, fndecl))
14175 return void_type_node;
14176 }
14177 else if (IDENTIFIER_OPNAME_P (DECL_NAME (fndecl)))
14178 grok_op_properties (fndecl, DECL_VIRTUAL_P (fndecl), 0);
14179 }
14180
14181 cp_finish_decl (fndecl, NULL_TREE, NULL_TREE, 0, 0);
14182
14183 /* Make a place for the parms */
14184 pushlevel (0);
14185 current_binding_level->parm_flag = 1;
14186
14187 DECL_IN_AGGR_P (fndecl) = 1;
14188 return fndecl;
14189 }
14190
14191 /* Go through the motions of finishing a function definition.
14192 We don't compile this method until after the whole class has
14193 been processed.
14194
14195 FINISH_METHOD must return something that looks as though it
14196 came from GROKFIELD (since we are defining a method, after all).
14197
14198 This is called after parsing the body of the function definition.
14199 STMTS is the chain of statements that makes up the function body.
14200
14201 DECL is the ..._DECL that `start_method' provided. */
14202
14203 tree
14204 finish_method (decl)
14205 tree decl;
14206 {
14207 register tree fndecl = decl;
14208 tree old_initial;
14209
14210 register tree link;
14211
14212 if (decl == void_type_node)
14213 return decl;
14214
14215 old_initial = DECL_INITIAL (fndecl);
14216
14217 /* Undo the level for the parms (from start_method).
14218 This is like poplevel, but it causes nothing to be
14219 saved. Saving information here confuses symbol-table
14220 output routines. Besides, this information will
14221 be correctly output when this method is actually
14222 compiled. */
14223
14224 /* Clear out the meanings of the local variables of this level;
14225 also record in each decl which block it belongs to. */
14226
14227 for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
14228 {
14229 if (DECL_NAME (link) != NULL_TREE)
14230 pop_binding (DECL_NAME (link), link);
14231 my_friendly_assert (TREE_CODE (link) != FUNCTION_DECL, 163);
14232 DECL_CONTEXT (link) = NULL_TREE;
14233 }
14234
14235 GNU_xref_end_scope ((HOST_WIDE_INT) current_binding_level,
14236 (HOST_WIDE_INT) current_binding_level->level_chain,
14237 current_binding_level->parm_flag,
14238 current_binding_level->keep);
14239
14240 poplevel (0, 0, 0);
14241
14242 DECL_INITIAL (fndecl) = old_initial;
14243
14244 /* We used to check if the context of FNDECL was different from
14245 current_class_type as another way to get inside here. This didn't work
14246 for String.cc in libg++. */
14247 if (DECL_FRIEND_P (fndecl))
14248 {
14249 CLASSTYPE_INLINE_FRIENDS (current_class_type)
14250 = tree_cons (NULL_TREE, fndecl, CLASSTYPE_INLINE_FRIENDS (current_class_type));
14251 decl = void_type_node;
14252 }
14253
14254 return decl;
14255 }
14256 \f
14257 /* Called when a new struct TYPE is defined.
14258 If this structure or union completes the type of any previous
14259 variable declaration, lay it out and output its rtl. */
14260
14261 void
14262 hack_incomplete_structures (type)
14263 tree type;
14264 {
14265 tree *list;
14266
14267 if (current_binding_level->incomplete == NULL_TREE)
14268 return;
14269
14270 if (!type) /* Don't do this for class templates. */
14271 return;
14272
14273 for (list = &current_binding_level->incomplete; *list; )
14274 {
14275 tree decl = TREE_VALUE (*list);
14276 if ((decl && TREE_TYPE (decl) == type)
14277 || (TREE_TYPE (decl)
14278 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
14279 && TREE_TYPE (TREE_TYPE (decl)) == type))
14280 {
14281 int toplevel = toplevel_bindings_p ();
14282 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
14283 && TREE_TYPE (TREE_TYPE (decl)) == type)
14284 layout_type (TREE_TYPE (decl));
14285 layout_decl (decl, 0);
14286 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
14287 if (! toplevel)
14288 {
14289 tree cleanup;
14290 expand_decl (decl);
14291 cleanup = maybe_build_cleanup (decl);
14292 expand_decl_init (decl);
14293 if (! expand_decl_cleanup (decl, cleanup))
14294 cp_error ("parser lost in parsing declaration of `%D'",
14295 decl);
14296 }
14297 *list = TREE_CHAIN (*list);
14298 }
14299 else
14300 list = &TREE_CHAIN (*list);
14301 }
14302 }
14303
14304 /* If DECL is of a type which needs a cleanup, build that cleanup here.
14305 See build_delete for information about AUTO_DELETE.
14306
14307 Don't build these on the momentary obstack; they must live
14308 the life of the binding contour. */
14309
14310 static tree
14311 maybe_build_cleanup_1 (decl, auto_delete)
14312 tree decl, auto_delete;
14313 {
14314 tree type = TREE_TYPE (decl);
14315 if (type != error_mark_node && TYPE_NEEDS_DESTRUCTOR (type))
14316 {
14317 int temp = 0, flags = LOOKUP_NORMAL|LOOKUP_DESTRUCTOR;
14318 tree rval;
14319
14320 if (TREE_CODE (decl) != PARM_DECL)
14321 temp = suspend_momentary ();
14322
14323 if (TREE_CODE (type) == ARRAY_TYPE)
14324 rval = decl;
14325 else
14326 {
14327 mark_addressable (decl);
14328 rval = build_unary_op (ADDR_EXPR, decl, 0);
14329 }
14330
14331 /* Optimize for space over speed here. */
14332 if (! TYPE_USES_VIRTUAL_BASECLASSES (type)
14333 || flag_expensive_optimizations)
14334 flags |= LOOKUP_NONVIRTUAL;
14335
14336 rval = build_delete (TREE_TYPE (rval), rval, auto_delete, flags, 0);
14337
14338 if (TYPE_USES_VIRTUAL_BASECLASSES (type)
14339 && ! TYPE_HAS_DESTRUCTOR (type))
14340 rval = build_compound_expr (tree_cons (NULL_TREE, rval,
14341 build_expr_list (NULL_TREE, build_vbase_delete (type, decl))));
14342
14343 if (TREE_CODE (decl) != PARM_DECL)
14344 resume_momentary (temp);
14345
14346 return rval;
14347 }
14348 return 0;
14349 }
14350
14351 /* If DECL is of a type which needs a cleanup, build that cleanup
14352 here. The cleanup does free the storage with a call to delete. */
14353
14354 tree
14355 maybe_build_cleanup_and_delete (decl)
14356 tree decl;
14357 {
14358 return maybe_build_cleanup_1 (decl, integer_three_node);
14359 }
14360
14361 /* If DECL is of a type which needs a cleanup, build that cleanup
14362 here. The cleanup does not free the storage with a call a delete. */
14363
14364 tree
14365 maybe_build_cleanup (decl)
14366 tree decl;
14367 {
14368 return maybe_build_cleanup_1 (decl, integer_two_node);
14369 }
14370 \f
14371 /* Expand a C++ expression at the statement level.
14372 This is needed to ferret out nodes which have UNKNOWN_TYPE.
14373 The C++ type checker should get all of these out when
14374 expressions are combined with other, type-providing, expressions,
14375 leaving only orphan expressions, such as:
14376
14377 &class::bar; / / takes its address, but does nothing with it. */
14378
14379 void
14380 cplus_expand_expr_stmt (exp)
14381 tree exp;
14382 {
14383 if (stmts_are_full_exprs_p)
14384 exp = convert_to_void (exp, "statement");
14385
14386 #if 0
14387 /* We should do this eventually, but right now this causes regex.o from
14388 libg++ to miscompile, and tString to core dump. */
14389 exp = build1 (CLEANUP_POINT_EXPR, TREE_TYPE (exp), exp);
14390 #endif
14391
14392 /* If we don't do this, we end up down inside expand_expr
14393 trying to do TYPE_MODE on the ERROR_MARK, and really
14394 go outside the bounds of the type. */
14395 if (exp != error_mark_node)
14396 expand_expr_stmt (break_out_cleanups (exp));
14397 }
14398
14399 /* When a stmt has been parsed, this function is called. */
14400
14401 void
14402 finish_stmt ()
14403 {
14404 if (!current_function_assigns_this
14405 && current_function_just_assigned_this)
14406 {
14407 if (DECL_CONSTRUCTOR_P (current_function_decl))
14408 {
14409 /* Constructors must wait until we are out of control
14410 zones before calling base constructors. */
14411 if (in_control_zone_p ())
14412 return;
14413 expand_expr_stmt (base_init_expr);
14414 check_base_init (current_class_type);
14415 }
14416 current_function_assigns_this = 1;
14417 }
14418
14419 /* Always assume this statement was not an expression statement. If
14420 it actually was an expression statement, its our callers
14421 responsibility to fix this up. */
14422 last_expr_type = NULL_TREE;
14423 }
14424
14425 /* Change a static member function definition into a FUNCTION_TYPE, instead
14426 of the METHOD_TYPE that we create when it's originally parsed.
14427
14428 WARNING: DO NOT pass &TREE_TYPE (decl) to FN or &TYPE_ARG_TYPES
14429 (TREE_TYPE (decl)) to ARGTYPES, as doing so will corrupt the types of
14430 other decls. Either pass the addresses of local variables or NULL. */
14431
14432 void
14433 revert_static_member_fn (decl, fn, argtypes)
14434 tree *decl, *fn, *argtypes;
14435 {
14436 tree tmp;
14437 tree function = fn ? *fn : TREE_TYPE (*decl);
14438 tree args = argtypes ? *argtypes : TYPE_ARG_TYPES (function);
14439
14440 if (CP_TYPE_QUALS (TREE_TYPE (TREE_VALUE (args)))
14441 != TYPE_UNQUALIFIED)
14442 cp_error ("static member function `%#D' declared with type qualifiers",
14443 *decl);
14444
14445 args = TREE_CHAIN (args);
14446 tmp = build_function_type (TREE_TYPE (function), args);
14447 tmp = build_qualified_type (tmp, CP_TYPE_QUALS (function));
14448 tmp = build_exception_variant (tmp,
14449 TYPE_RAISES_EXCEPTIONS (function));
14450 TREE_TYPE (*decl) = tmp;
14451 if (DECL_ARGUMENTS (*decl))
14452 DECL_ARGUMENTS (*decl) = TREE_CHAIN (DECL_ARGUMENTS (*decl));
14453 DECL_STATIC_FUNCTION_P (*decl) = 1;
14454 if (fn)
14455 *fn = tmp;
14456 if (argtypes)
14457 *argtypes = args;
14458 }
14459
14460 /* Initialize the variables used during compilation of a C++
14461 function. */
14462
14463 static void
14464 push_cp_function_context (f)
14465 struct function *f;
14466 {
14467 struct language_function *p
14468 = ((struct language_function *)
14469 xcalloc (1, sizeof (struct language_function)));
14470 f->language = p;
14471
14472 /* For now, we always assume we're expanding all the way to RTL
14473 unless we're explicitly doing otherwise. */
14474 expanding_p = 1;
14475
14476 /* Whenever we start a new function, we destroy temporaries in the
14477 usual way. */
14478 stmts_are_full_exprs_p = 1;
14479 }
14480
14481 /* Free the language-specific parts of F, now that we've finished
14482 compiling the function. */
14483
14484 static void
14485 pop_cp_function_context (f)
14486 struct function *f;
14487 {
14488 free (f->language);
14489 f->language = 0;
14490 }
14491
14492 void
14493 mark_cp_function_context (f)
14494 struct function *f;
14495 {
14496 struct language_function *p = f->language;
14497
14498 if (!p)
14499 return;
14500
14501 ggc_mark_tree (p->x_named_labels);
14502 ggc_mark_tree (p->x_ctor_label);
14503 ggc_mark_tree (p->x_dtor_label);
14504 ggc_mark_tree (p->x_base_init_list);
14505 ggc_mark_tree (p->x_member_init_list);
14506 ggc_mark_tree (p->x_base_init_expr);
14507 ggc_mark_tree (p->x_current_class_ptr);
14508 ggc_mark_tree (p->x_current_class_ref);
14509 ggc_mark_tree (p->x_last_tree);
14510 ggc_mark_tree (p->x_last_expr_type);
14511
14512 ggc_mark_rtx (p->x_last_dtor_insn);
14513 ggc_mark_rtx (p->x_last_parm_cleanup_insn);
14514 ggc_mark_rtx (p->x_result_rtx);
14515
14516 mark_binding_level (&p->bindings);
14517 }
14518
14519
14520 int
14521 in_function_p ()
14522 {
14523 return function_depth != 0;
14524 }
14525
14526
14527 void
14528 lang_mark_false_label_stack (l)
14529 struct label_node *l;
14530 {
14531 /* C++ doesn't use false_label_stack. It better be NULL. */
14532 my_friendly_assert (l == NULL, 19990904);
14533 }
14534
14535 void
14536 lang_mark_tree (t)
14537 tree t;
14538 {
14539 enum tree_code code = TREE_CODE (t);
14540 if (code == IDENTIFIER_NODE)
14541 {
14542 struct lang_identifier *li = (struct lang_identifier *) t;
14543 struct lang_id2 *li2 = li->x;
14544 ggc_mark_tree (li->namespace_bindings);
14545 ggc_mark_tree (li->bindings);
14546 ggc_mark_tree (li->class_value);
14547 ggc_mark_tree (li->class_template_info);
14548
14549 if (li2)
14550 {
14551 ggc_mark_tree (li2->label_value);
14552 ggc_mark_tree (li2->implicit_decl);
14553 ggc_mark_tree (li2->error_locus);
14554 }
14555 }
14556 else if (code == CPLUS_BINDING)
14557 {
14558 if (BINDING_HAS_LEVEL_P (t))
14559 mark_binding_level (&BINDING_LEVEL (t));
14560 else
14561 ggc_mark_tree (BINDING_SCOPE (t));
14562 ggc_mark_tree (BINDING_VALUE (t));
14563 }
14564 else if (code == OVERLOAD)
14565 ggc_mark_tree (OVL_FUNCTION (t));
14566 else if (code == TEMPLATE_PARM_INDEX)
14567 ggc_mark_tree (TEMPLATE_PARM_DECL (t));
14568 else if (TREE_CODE_CLASS (code) == 'd')
14569 {
14570 struct lang_decl *ld = DECL_LANG_SPECIFIC (t);
14571
14572 if (ld)
14573 {
14574 ggc_mark (ld);
14575 ggc_mark_tree (ld->decl_flags.access);
14576 ggc_mark_tree (ld->decl_flags.context);
14577 if (TREE_CODE (t) != NAMESPACE_DECL)
14578 ggc_mark_tree (ld->decl_flags.u.template_info);
14579 if (CAN_HAVE_FULL_LANG_DECL_P (t))
14580 {
14581 ggc_mark_tree (ld->main_decl_variant);
14582 ggc_mark_tree (ld->befriending_classes);
14583 ggc_mark_tree (ld->saved_tree);
14584 if (TREE_CODE (t) == TYPE_DECL)
14585 ggc_mark_tree (ld->u.sorted_fields);
14586 }
14587 }
14588 }
14589 else if (TREE_CODE_CLASS (code) == 't')
14590 {
14591 struct lang_type *lt = TYPE_LANG_SPECIFIC (t);
14592
14593 if (lt && !(TREE_CODE (t) == POINTER_TYPE
14594 && TREE_CODE (TREE_TYPE (t)) == METHOD_TYPE))
14595 {
14596 ggc_mark (lt);
14597 ggc_mark_tree (lt->vfields);
14598 ggc_mark_tree (lt->vbases);
14599 ggc_mark_tree (lt->tags);
14600 ggc_mark_tree (lt->search_slot);
14601 ggc_mark_tree (lt->size);
14602 ggc_mark_tree (lt->abstract_virtuals);
14603 ggc_mark_tree (lt->friend_classes);
14604 ggc_mark_tree (lt->rtti);
14605 ggc_mark_tree (lt->methods);
14606 ggc_mark_tree (lt->template_info);
14607 ggc_mark_tree (lt->befriending_classes);
14608 }
14609 else if (lt)
14610 /* In the case of pointer-to-member function types, the
14611 TYPE_LANG_SPECIFIC is really just a tree. */
14612 ggc_mark_tree ((tree) lt);
14613 }
14614 }
14615