OSDN Git Service

7c8c28bda78e98dd59c199ced1d020072ae114a1
[pf3gnuchains/gcc-fork.git] / gcc / cp / decl.c
1 /* Process declarations and variables for C compiler.
2    Copyright (C) 1988, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
3    Hacked 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 <stdio.h>
31 #include "config.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 <sys/types.h>
39 #include <signal.h>
40 #include "obstack.h"
41 #include "defaults.h"
42
43 #define obstack_chunk_alloc xmalloc
44 #define obstack_chunk_free free
45
46 extern tree builtin_return_address_fndecl;
47
48 extern struct obstack permanent_obstack;
49
50 extern int current_class_depth;
51
52 extern tree cleanups_this_call;
53
54 extern tree static_ctors, static_dtors;
55
56 /* Stack of places to restore the search obstack back to.  */
57    
58 /* Obstack used for remembering local class declarations (like
59    enums and static (const) members.  */
60 #include "stack.h"
61 struct obstack decl_obstack;
62 static struct stack_level *decl_stack;
63
64 #ifndef CHAR_TYPE_SIZE
65 #define CHAR_TYPE_SIZE BITS_PER_UNIT
66 #endif
67
68 #ifndef SHORT_TYPE_SIZE
69 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
70 #endif
71
72 #ifndef INT_TYPE_SIZE
73 #define INT_TYPE_SIZE BITS_PER_WORD
74 #endif
75
76 #ifndef LONG_TYPE_SIZE
77 #define LONG_TYPE_SIZE BITS_PER_WORD
78 #endif
79
80 #ifndef LONG_LONG_TYPE_SIZE
81 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
82 #endif
83
84 #ifndef WCHAR_UNSIGNED
85 #define WCHAR_UNSIGNED 0
86 #endif
87
88 #ifndef FLOAT_TYPE_SIZE
89 #define FLOAT_TYPE_SIZE BITS_PER_WORD
90 #endif
91
92 #ifndef DOUBLE_TYPE_SIZE
93 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
94 #endif
95
96 #ifndef LONG_DOUBLE_TYPE_SIZE
97 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
98 #endif
99
100 #ifndef BOOL_TYPE_SIZE
101 #ifdef SLOW_BYTE_ACCESS
102 #define BOOL_TYPE_SIZE ((SLOW_BYTE_ACCESS) ? (BITS_PER_WORD) : (BITS_PER_UNIT))
103 #else
104 #define BOOL_TYPE_SIZE BITS_PER_UNIT
105 #endif
106 #endif
107
108 /* We let tm.h override the types used here, to handle trivial differences
109    such as the choice of unsigned int or long unsigned int for size_t.
110    When machines start needing nontrivial differences in the size type,
111    it would be best to do something here to figure out automatically
112    from other information what type to use.  */
113
114 #ifndef SIZE_TYPE
115 #define SIZE_TYPE "long unsigned int"
116 #endif
117
118 #ifndef PTRDIFF_TYPE
119 #define PTRDIFF_TYPE "long int"
120 #endif
121
122 #ifndef WCHAR_TYPE
123 #define WCHAR_TYPE "int"
124 #endif
125
126 static tree grokparms                           PROTO((tree, int));
127 static tree lookup_nested_type                  PROTO((tree, tree));
128 static char *redeclaration_error_message        PROTO((tree, tree));
129
130 tree define_function            
131         PROTO((char *, tree, enum built_in_function, void (*)(), char *));
132
133 /* a node which has tree code ERROR_MARK, and whose type is itself.
134    All erroneous expressions are replaced with this node.  All functions
135    that accept nodes as arguments should avoid generating error messages
136    if this node is one of the arguments, since it is undesirable to get
137    multiple error messages from one error in the input.  */
138
139 tree error_mark_node;
140
141 /* Erroneous argument lists can use this *IFF* they do not modify it.  */
142 tree error_mark_list;
143
144 /* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
145
146 tree short_integer_type_node;
147 tree integer_type_node;
148 tree long_integer_type_node;
149 tree long_long_integer_type_node;
150
151 tree short_unsigned_type_node;
152 tree unsigned_type_node;
153 tree long_unsigned_type_node;
154 tree long_long_unsigned_type_node;
155
156 tree ptrdiff_type_node;
157
158 tree unsigned_char_type_node;
159 tree signed_char_type_node;
160 tree char_type_node;
161 tree wchar_type_node;
162 tree signed_wchar_type_node;
163 tree unsigned_wchar_type_node;
164
165 tree wchar_decl_node;
166
167 tree float_type_node;
168 tree double_type_node;
169 tree long_double_type_node;
170
171 tree intQI_type_node;
172 tree intHI_type_node;
173 tree intSI_type_node;
174 tree intDI_type_node;
175
176 tree unsigned_intQI_type_node;
177 tree unsigned_intHI_type_node;
178 tree unsigned_intSI_type_node;
179 tree unsigned_intDI_type_node;
180
181 /* a VOID_TYPE node, and the same, packaged in a TREE_LIST.  */
182
183 tree void_type_node, void_list_node;
184 tree void_zero_node;
185
186 /* Nodes for types `void *' and `const void *'.  */
187
188 tree ptr_type_node, const_ptr_type_node;
189
190 /* Nodes for types `char *' and `const char *'.  */
191
192 tree string_type_node, const_string_type_node;
193
194 /* Type `char[256]' or something like it.
195    Used when an array of char is needed and the size is irrelevant.  */
196
197 tree char_array_type_node;
198
199 /* Type `int[256]' or something like it.
200    Used when an array of int needed and the size is irrelevant.  */
201
202 tree int_array_type_node;
203
204 /* Type `wchar_t[256]' or something like it.
205    Used when a wide string literal is created.  */
206
207 tree wchar_array_type_node;
208
209 /* The bool data type, and constants */
210 tree boolean_type_node, boolean_true_node, boolean_false_node;
211
212 /* type `int ()' -- used for implicit declaration of functions.  */
213
214 tree default_function_type;
215
216 /* function types `double (double)' and `double (double, double)', etc.  */
217
218 tree double_ftype_double, double_ftype_double_double;
219 tree int_ftype_int, long_ftype_long;
220 tree float_ftype_float;
221 tree ldouble_ftype_ldouble;
222
223 /* Function type `int (const void *, const void *, size_t)' */
224 static tree int_ftype_cptr_cptr_sizet;
225
226 /* C++ extensions */
227 tree vtable_entry_type;
228 tree delta_type_node;
229 #if 0
230 /* Old rtti stuff.  */
231 tree __baselist_desc_type_node;
232 tree __i_desc_type_node, __m_desc_type_node;
233 tree __t_desc_array_type, __i_desc_array_type, __m_desc_array_type;
234 #endif
235 tree __t_desc_type_node;
236 #if 0
237 tree __tp_desc_type_node;
238 #endif
239 tree __access_mode_type_node;
240 tree __bltn_desc_type_node, __user_desc_type_node, __class_desc_type_node;
241 tree __ptr_desc_type_node, __attr_desc_type_node, __func_desc_type_node;
242 tree __ptmf_desc_type_node, __ptmd_desc_type_node;
243 #if 0
244 /* Not needed yet?  May be needed one day?  */
245 tree __bltn_desc_array_type, __user_desc_array_type, __class_desc_array_type;
246 tree __ptr_desc_array_type, __attr_dec_array_type, __func_desc_array_type;
247 tree __ptmf_desc_array_type, __ptmd_desc_array_type;
248 #endif
249
250 tree class_star_type_node;
251 tree class_type_node, record_type_node, union_type_node, enum_type_node;
252 tree unknown_type_node;
253 tree opaque_type_node, signature_type_node;
254 tree sigtable_entry_type;
255
256 /* Array type `vtable_entry_type[]' */
257 tree vtbl_type_node;
258
259 /* In a destructor, the point at which all derived class destroying
260    has been done, just before any base class destroying will be done.  */
261
262 tree dtor_label;
263
264 /* In a destructor, the last insn emitted after the start of the
265    function and the parms.  */
266
267 rtx last_dtor_insn;
268
269 /* In a constructor, the point at which we are ready to return
270    the pointer to the initialized object.  */
271
272 tree ctor_label;
273
274 /* A FUNCTION_DECL which can call `abort'.  Not necessarily the
275    one that the user will declare, but sufficient to be called
276    by routines that want to abort the program.  */
277
278 tree abort_fndecl;
279
280 extern rtx cleanup_label, return_label;
281
282 /* If original DECL_RESULT of current function was a register,
283    but due to being an addressable named return value, would up
284    on the stack, this variable holds the named return value's
285    original location.  */
286 rtx original_result_rtx;
287
288 /* Sequence of insns which represents base initialization.  */
289 tree base_init_expr;
290
291 /* C++: Keep these around to reduce calls to `get_identifier'.
292    Identifiers for `this' in member functions and the auto-delete
293    parameter for destructors.  */
294 tree this_identifier, in_charge_identifier;
295 tree ctor_identifier, dtor_identifier;
296 /* Used in pointer to member functions, in vtables, and in sigtables.  */
297 tree pfn_identifier, index_identifier, delta_identifier, delta2_identifier;
298 tree pfn_or_delta2_identifier, tag_identifier;
299 tree vt_off_identifier;
300
301 struct named_label_list
302 {
303   struct binding_level *binding_level;
304   tree names_in_scope;
305   tree label_decl;
306   char *filename_o_goto;
307   int lineno_o_goto;
308   struct named_label_list *next;
309 };
310
311 /* A list (chain of TREE_LIST nodes) of named label uses.
312    The TREE_PURPOSE field is the list of variables defined
313    the the label's scope defined at the point of use.
314    The TREE_VALUE field is the LABEL_DECL used.
315    The TREE_TYPE field holds `current_binding_level' at the
316    point of the label's use.
317
318    BWAHAHAAHAHahhahahahaah.  No, no, no, said the little chicken.
319
320    Look at the pretty struct named_label_list. See the pretty struct
321    with the pretty named fields that describe what they do. See the
322    pretty lack of gratuitous casts. Notice the code got a lot cleaner.
323
324    Used only for jumps to as-yet undefined labels, since
325    jumps to defined labels can have their validity checked
326    by stmt.c.  */
327
328 static struct named_label_list *named_label_uses = NULL;
329
330 /* A list of objects which have constructors or destructors
331    which reside in the global scope.  The decl is stored in
332    the TREE_VALUE slot and the initializer is stored
333    in the TREE_PURPOSE slot.  */
334 tree static_aggregates;
335
336 /* -- end of C++ */
337
338 /* Two expressions that are constants with value zero.
339    The first is of type `int', the second of type `void *'.  */
340
341 tree integer_zero_node;
342 tree null_pointer_node;
343
344 /* The value for __null (NULL), either of type `void *' or, with -ansi,
345    an integer type of the same size.  */
346
347 tree null_node;
348
349 /* A node for the integer constants 1, 2, and 3.  */
350
351 tree integer_one_node, integer_two_node, integer_three_node;
352
353 /* Nonzero if we have seen an invalid cross reference
354    to a struct, union, or enum, but not yet printed the message.  */
355
356 tree pending_invalid_xref;
357 /* File and line to appear in the eventual error message.  */
358 char *pending_invalid_xref_file;
359 int pending_invalid_xref_line;
360
361 /* While defining an enum type, this is 1 plus the last enumerator
362    constant value.  */
363
364 static tree enum_next_value;
365
366 /* Nonzero means that there was overflow computing enum_next_value.  */
367
368 static int enum_overflow;
369
370 /* Parsing a function declarator leaves a list of parameter names
371    or a chain or parameter decls here.  */
372
373 tree last_function_parms;
374
375 /* Parsing a function declarator leaves here a chain of structure
376    and enum types declared in the parmlist.  */
377
378 static tree last_function_parm_tags;
379
380 /* After parsing the declarator that starts a function definition,
381    `start_function' puts here the list of parameter names or chain of decls.
382    `store_parm_decls' finds it here.  */
383
384 static tree current_function_parms;
385
386 /* Similar, for last_function_parm_tags.  */
387 static tree current_function_parm_tags;
388
389 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
390    that have names.  Here so we can clear out their names' definitions
391    at the end of the function.  */
392
393 static tree named_labels;
394
395 /* A list of LABEL_DECLs from outer contexts that are currently shadowed.  */
396
397 static tree shadowed_labels;
398
399 /* The FUNCTION_DECL for the function currently being compiled,
400    or 0 if between functions.  */
401 tree current_function_decl;
402
403 /* Set to 0 at beginning of a function definition, set to 1 if
404    a return statement that specifies a return value is seen.  */
405
406 int current_function_returns_value;
407
408 /* Set to 0 at beginning of a function definition, set to 1 if
409    a return statement with no argument is seen.  */
410
411 int current_function_returns_null;
412
413 /* Set to 0 at beginning of a function definition, and whenever
414    a label (case or named) is defined.  Set to value of expression
415    returned from function when that value can be transformed into
416    a named return value.  */
417
418 tree current_function_return_value;
419
420 /* Set to nonzero by `grokdeclarator' for a function
421    whose return type is defaulted, if warnings for this are desired.  */
422
423 static int warn_about_return_type;
424
425 /* Nonzero means give `double' the same size as `float'.  */
426
427 extern int flag_short_double;
428
429 /* Nonzero means don't recognize any builtin functions.  */
430
431 extern int flag_no_builtin;
432
433 /* Nonzero means don't recognize the non-ANSI builtin functions.
434    -ansi sets this.  */
435
436 extern int flag_no_nonansi_builtin;
437
438 /* Nonzero means enable obscure ANSI features and disable GNU extensions
439    that might cause ANSI-compliant code to be miscompiled.  */
440
441 extern int flag_ansi;
442
443 /* Nonzero if we want to support huge (> 2^(sizeof(short)*8-1) bytes)
444    objects.  */
445 extern int flag_huge_objects;
446
447 /* Nonzero if we want to conserve space in the .o files.  We do this
448    by putting uninitialized data and runtime initialized data into
449    .common instead of .data at the expense of not flagging multiple
450    definitions.  */
451 extern int flag_conserve_space;
452
453 /* Pointers to the base and current top of the language name stack.  */
454
455 extern tree *current_lang_base, *current_lang_stack;
456 \f
457 /* C and C++ flags are in decl2.c.  */
458
459 /* Set to 0 at beginning of a constructor, set to 1
460    if that function does an allocation before referencing its
461    instance variable.  */
462 static int current_function_assigns_this;
463 int current_function_just_assigned_this;
464
465 /* Set to 0 at beginning of a function.  Set non-zero when
466    store_parm_decls is called.  Don't call store_parm_decls
467    if this flag is non-zero!  */
468 int current_function_parms_stored;
469
470 /* Flag used when debugging spew.c */
471
472 extern int spew_debug;
473
474 /* This is a copy of the class_shadowed list of the previous class binding
475    contour when at global scope.  It's used to reset IDENTIFIER_CLASS_VALUEs
476    when entering another class scope (i.e. a cache miss).  */
477 extern tree previous_class_values;
478
479 /* A expression of value 0 with the same precision as a sizetype
480    node, but signed.  */
481 tree signed_size_zero_node;
482
483 \f
484 /* Allocate a level of searching.  */
485
486 struct stack_level *
487 push_decl_level (stack, obstack)
488      struct stack_level *stack;
489      struct obstack *obstack;
490 {
491   struct stack_level tem;
492   tem.prev = stack;
493
494   return push_stack_level (obstack, (char *)&tem, sizeof (tem));
495 }
496 \f
497 /* For each binding contour we allocate a binding_level structure
498    which records the names defined in that contour.
499    Contours include:
500     0) the global one
501     1) one for each function definition,
502        where internal declarations of the parameters appear.
503     2) one for each compound statement,
504        to record its declarations.
505
506    The current meaning of a name can be found by searching the levels
507    from the current one out to the global one.
508
509    Off to the side, may be the class_binding_level.  This exists only
510    to catch class-local declarations.  It is otherwise nonexistent.
511
512    Also there may be binding levels that catch cleanups that must be
513    run when exceptions occur.  */
514
515 /* Note that the information in the `names' component of the global contour
516    is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers.  */
517
518 struct binding_level
519   {
520     /* A chain of _DECL nodes for all variables, constants, functions,
521        and typedef types.  These are in the reverse of the order
522        supplied.  */
523     tree names;
524
525     /* A list of structure, union and enum definitions, for looking up
526        tag names.
527        It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
528        or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
529        or ENUMERAL_TYPE node.
530
531        C++: the TREE_VALUE nodes can be simple types for
532        component_bindings.  */
533     tree tags;
534
535     /* For each level, a list of shadowed outer-level local definitions
536        to be restored when this level is popped.
537        Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
538        whose TREE_VALUE is its old definition (a kind of ..._DECL node).  */
539     tree shadowed;
540
541     /* Same, for IDENTIFIER_CLASS_VALUE.  */
542     tree class_shadowed;
543
544     /* Same, for IDENTIFIER_TYPE_VALUE.  */
545     tree type_shadowed;
546
547     /* For each level (except not the global one),
548        a chain of BLOCK nodes for all the levels
549        that were entered and exited one level down.  */
550     tree blocks;
551
552     /* The BLOCK node for this level, if one has been preallocated.
553        If 0, the BLOCK is allocated (if needed) when the level is popped.  */
554     tree this_block;
555
556     /* The binding level which this one is contained in (inherits from).  */
557     struct binding_level *level_chain;
558
559     /* List of decls in `names' that have incomplete
560        structure or union types.  */
561     tree incomplete;
562
563     /* List of VAR_DECLS saved from a previous for statement.
564        These would be dead in ANSI-conforming code, but might
565        be referenced in ARM-era code.  */
566     tree dead_vars_from_for;
567
568     /* 1 for the level that holds the parameters of a function.
569        2 for the level that holds a class declaration.
570        3 for levels that hold parameter declarations.  */
571     unsigned parm_flag : 4;
572
573     /* 1 means make a BLOCK for this level regardless of all else.
574        2 for temporary binding contours created by the compiler.  */
575     unsigned keep : 3;
576
577     /* Nonzero if this level "doesn't exist" for tags.  */
578     unsigned tag_transparent : 1;
579
580     /* Nonzero if this level can safely have additional
581        cleanup-needing variables added to it.  */
582     unsigned more_cleanups_ok : 1;
583     unsigned have_cleanups : 1;
584
585     /* Nonzero if this level is for storing the decls for template
586        parameters and generic decls; these decls will be discarded and
587        replaced with a TEMPLATE_DECL.  */
588     unsigned pseudo_global : 1;
589
590     /* This is set for a namespace binding level.  */
591     unsigned namespace_p : 1;
592
593     /* True if this level is that of a for-statement where we need to
594        worry about ambiguous (ARM or ANSI) scope rules.  */
595     unsigned is_for_scope : 1;
596
597     /* Two bits 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 (non-class) binding level currently in effect.  */
608
609 static struct binding_level *current_binding_level;
610
611 /* The binding level of the current class, if any.  */
612
613 static struct binding_level *class_binding_level;
614
615 /* The current (class or non-class) binding level currently in effect.  */
616
617 #define inner_binding_level \
618   (class_binding_level ? class_binding_level : current_binding_level)
619
620 /* A chain of binding_level structures awaiting reuse.  */
621
622 static struct binding_level *free_binding_level;
623
624 /* The outermost binding level, for names of file scope.
625    This is created when the compiler is started and exists
626    through the entire run.  */
627
628 static struct binding_level *global_binding_level;
629
630 /* Binding level structures are initialized by copying this one.  */
631
632 static struct binding_level clear_binding_level;
633
634 /* Nonzero means unconditionally make a BLOCK for the next level pushed.  */
635
636 static int keep_next_level_flag;
637
638 #if defined(DEBUG_CP_BINDING_LEVELS)
639 static int binding_depth = 0;
640 static int is_class_level = 0;
641
642 static void
643 indent ()
644 {
645   register unsigned i;
646
647   for (i = 0; i < binding_depth*2; i++)
648     putc (' ', stderr);
649 }
650 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
651
652 static tree pushdecl_with_scope PROTO((tree, struct binding_level *));
653
654 static void
655 push_binding_level (newlevel, tag_transparent, keep)
656      struct binding_level *newlevel;
657      int tag_transparent, keep;
658 {
659   /* Add this level to the front of the chain (stack) of levels that
660      are active.  */
661   *newlevel = clear_binding_level;
662   if (class_binding_level)
663     {
664       newlevel->level_chain = class_binding_level;
665       class_binding_level = (struct binding_level *)0;
666     }
667   else
668     {
669       newlevel->level_chain = current_binding_level;
670     }
671   current_binding_level = newlevel;
672   newlevel->tag_transparent = tag_transparent;
673   newlevel->more_cleanups_ok = 1;
674   newlevel->keep = keep;
675 #if defined(DEBUG_CP_BINDING_LEVELS)
676   newlevel->binding_depth = binding_depth;
677   indent ();
678   fprintf (stderr, "push %s level 0x%08x line %d\n",
679            (is_class_level) ? "class" : "block", newlevel, lineno);
680   is_class_level = 0;
681   binding_depth++;
682 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
683 }
684
685 static void
686 pop_binding_level ()
687 {
688   if (class_binding_level)
689     current_binding_level = class_binding_level;
690
691   if (global_binding_level)
692     {
693       /* cannot pop a level, if there are none left to pop.  */
694       if (current_binding_level == global_binding_level)
695         my_friendly_abort (123);
696     }
697   /* Pop the current level, and free the structure for reuse.  */
698 #if defined(DEBUG_CP_BINDING_LEVELS)
699   binding_depth--;
700   indent ();
701   fprintf (stderr, "pop  %s level 0x%08x line %d\n",
702           (is_class_level) ? "class" : "block",
703           current_binding_level, lineno);
704   if (is_class_level != (current_binding_level == class_binding_level))
705     {
706       indent ();
707       fprintf (stderr, "XXX is_class_level != (current_binding_level == class_binding_level)\n");
708     }
709   is_class_level = 0;
710 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
711   {
712     register struct binding_level *level = current_binding_level;
713     current_binding_level = current_binding_level->level_chain;
714     level->level_chain = free_binding_level;
715 #if 0 /* defined(DEBUG_CP_BINDING_LEVELS) */
716     if (level->binding_depth != binding_depth)
717       abort ();
718 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
719       free_binding_level = level;
720
721     class_binding_level = current_binding_level;
722     if (class_binding_level->parm_flag != 2)
723       class_binding_level = 0;
724     while (current_binding_level->parm_flag == 2)
725       current_binding_level = current_binding_level->level_chain;
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   {
756     current_binding_level = current_binding_level->level_chain;
757     class_binding_level = current_binding_level;
758     if (class_binding_level->parm_flag != 2)
759       class_binding_level = 0;
760     while (current_binding_level->parm_flag == 2)
761       current_binding_level = current_binding_level->level_chain;
762   }
763 }
764
765 void
766 resume_binding_level (b)
767      struct binding_level *b;
768 {
769   if (class_binding_level)
770     {
771 #if 1
772       /* These are here because we cannot deal with shadows yet.  */
773       sorry ("cannot resume a namespace inside class");
774       return;
775 #else
776       b->level_chain = class_binding_level;
777       class_binding_level = (struct binding_level *)0;
778 #endif
779     }
780   else
781     {
782 #if 1
783       /* These are here because we cannot deal with shadows yet.  */
784       if (b->level_chain != current_binding_level)
785         {
786           sorry ("cannot resume a namespace inside a different namespace");
787           return;
788         }
789 #endif
790       b->level_chain = current_binding_level;
791     }
792   current_binding_level = b;
793 #if defined(DEBUG_CP_BINDING_LEVELS)
794   b->binding_depth = binding_depth;
795   indent ();
796   fprintf (stderr, "resume %s level 0x%08x line %d\n",
797            (is_class_level) ? "class" : "block", b, lineno);
798   is_class_level = 0;
799   binding_depth++;
800 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
801 }
802 \f
803 /* Create a new `struct binding_level'.  */
804
805 static
806 struct binding_level *
807 make_binding_level ()
808 {
809   /* NOSTRICT */
810   return (struct binding_level *) xmalloc (sizeof (struct binding_level));
811 }
812
813 /* Nonzero if we are currently in the global binding level.  */
814
815 int
816 global_bindings_p ()
817 {
818   return current_binding_level == global_binding_level;
819 }
820
821 /* Nonzero if we are currently in a toplevel binding level.  This
822    means either the global binding level or a namespace in a toplevel
823    binding level.  */
824
825 int
826 toplevel_bindings_p ()
827 {
828   struct binding_level *b = current_binding_level;
829
830   while (1)
831     {
832       if (b == global_binding_level)
833         return 1;
834       if (b->pseudo_global)
835         return 1;
836       if (! b->namespace_p)
837         return 0;
838       b=b->level_chain;
839     }
840 }
841
842 /* Nonzero if this is a namespace scope.  */
843
844 int
845 namespace_bindings_p ()
846 {
847   return current_binding_level->namespace_p;
848 }
849
850 void
851 keep_next_level ()
852 {
853   keep_next_level_flag = 1;
854 }
855
856 /* Nonzero if the current level needs to have a BLOCK made.  */
857
858 int
859 kept_level_p ()
860 {
861   return (current_binding_level->blocks != NULL_TREE
862           || current_binding_level->keep
863           || current_binding_level->names != NULL_TREE
864           || (current_binding_level->tags != NULL_TREE
865               && !current_binding_level->tag_transparent));
866 }
867
868 /* Identify this binding level as a level of parameters.  */
869
870 void
871 declare_parm_level ()
872 {
873   current_binding_level->parm_flag = 1;
874 }
875
876 void
877 declare_pseudo_global_level ()
878 {
879   current_binding_level->pseudo_global = 1;
880 }
881
882 void
883 declare_namespace_level ()
884 {
885   current_binding_level->namespace_p = 1;
886 }
887
888 int
889 pseudo_global_level_p ()
890 {
891   return current_binding_level->pseudo_global;
892 }
893
894 void
895 set_class_shadows (shadows)
896      tree shadows;
897 {
898   class_binding_level->class_shadowed = shadows;
899 }
900
901 /* Enter a new binding level.
902    If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
903    not for that of tags.  */
904
905 void
906 pushlevel (tag_transparent)
907      int tag_transparent;
908 {
909   register struct binding_level *newlevel = NULL_BINDING_LEVEL;
910
911   /* If this is the top level of a function,
912      just make sure that NAMED_LABELS is 0.
913      They should have been set to 0 at the end of the previous function.  */
914
915   if (current_binding_level == global_binding_level)
916     my_friendly_assert (named_labels == NULL_TREE, 134);
917
918   /* Reuse or create a struct for this binding level.  */
919
920 #if defined(DEBUG_CP_BINDING_LEVELS)
921   if (0)
922 #else /* !defined(DEBUG_CP_BINDING_LEVELS) */
923   if (free_binding_level)
924 #endif /* !defined(DEBUG_CP_BINDING_LEVELS) */
925     {
926       newlevel = free_binding_level;
927       free_binding_level = free_binding_level->level_chain;
928     }
929   else
930     {
931       newlevel = make_binding_level ();
932     }
933
934   push_binding_level (newlevel, tag_transparent, keep_next_level_flag);
935   GNU_xref_start_scope ((HOST_WIDE_INT) newlevel);
936   keep_next_level_flag = 0;
937 }
938
939 void
940 note_level_for_for ()
941 {
942   current_binding_level->is_for_scope = 1;
943 }
944
945 void
946 pushlevel_temporary (tag_transparent)
947      int tag_transparent;
948 {
949   pushlevel (tag_transparent);
950   current_binding_level->keep = 2;
951   clear_last_expr ();
952
953   /* Note we don't call push_momentary() here.  Otherwise, it would cause
954      cleanups to be allocated on the momentary obstack, and they will be
955      overwritten by the next statement.  */
956
957   expand_start_bindings (0);
958 }
959
960 /* Exit a binding level.
961    Pop the level off, and restore the state of the identifier-decl mappings
962    that were in effect when this level was entered.
963
964    If KEEP == 1, this level had explicit declarations, so
965    and create a "block" (a BLOCK node) for the level
966    to record its declarations and subblocks for symbol table output.
967
968    If KEEP == 2, this level's subblocks go to the front,
969    not the back of the current binding level.  This happens,
970    for instance, when code for constructors and destructors
971    need to generate code at the end of a function which must
972    be moved up to the front of the function.
973
974    If FUNCTIONBODY is nonzero, this level is the body of a function,
975    so create a block as if KEEP were set and also clear out all
976    label names.
977
978    If REVERSE is nonzero, reverse the order of decls before putting
979    them into the BLOCK.  */
980
981 tree
982 poplevel (keep, reverse, functionbody)
983      int keep;
984      int reverse;
985      int functionbody;
986 {
987   register tree link;
988   /* The chain of decls was accumulated in reverse order.
989      Put it into forward order, just for cleanliness.  */
990   tree decls;
991   int tmp = functionbody;
992   int real_functionbody = current_binding_level->keep == 2
993     ? ((functionbody = 0), tmp) : functionbody;
994   tree tags = functionbody >= 0 ? current_binding_level->tags : 0;
995   tree subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
996   tree block = NULL_TREE;
997   tree decl;
998   int block_previously_created;
999
1000   GNU_xref_end_scope ((HOST_WIDE_INT) current_binding_level,
1001                       (HOST_WIDE_INT) current_binding_level->level_chain,
1002                       current_binding_level->parm_flag,
1003                       current_binding_level->keep);
1004
1005   if (current_binding_level->keep == 1)
1006     keep = 1;
1007
1008   /* Get the decls in the order they were written.
1009      Usually current_binding_level->names is in reverse order.
1010      But parameter decls were previously put in forward order.  */
1011
1012   if (reverse)
1013     current_binding_level->names
1014       = decls = nreverse (current_binding_level->names);
1015   else
1016     decls = current_binding_level->names;
1017
1018   /* Output any nested inline functions within this block
1019      if they weren't already output.  */
1020
1021   for (decl = decls; decl; decl = TREE_CHAIN (decl))
1022     if (TREE_CODE (decl) == FUNCTION_DECL
1023         && ! TREE_ASM_WRITTEN (decl)
1024         && DECL_INITIAL (decl) != NULL_TREE
1025         && TREE_ADDRESSABLE (decl)
1026         && decl_function_context (decl) == current_function_decl)
1027       {
1028         /* If this decl was copied from a file-scope decl
1029            on account of a block-scope extern decl,
1030            propagate TREE_ADDRESSABLE to the file-scope decl.  */
1031         if (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE)
1032           TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1033         else
1034           {
1035             push_function_context ();
1036             output_inline_function (decl);
1037             pop_function_context ();
1038           }
1039       }
1040
1041   /* If there were any declarations or structure tags in that level,
1042      or if this level is a function body,
1043      create a BLOCK to record them for the life of this function.  */
1044
1045   block = NULL_TREE;
1046   block_previously_created = (current_binding_level->this_block != NULL_TREE);
1047   if (block_previously_created)
1048     block = current_binding_level->this_block;
1049   else if (keep == 1 || functionbody)
1050     block = make_node (BLOCK);
1051   if (block != NULL_TREE)
1052     {
1053       if (block_previously_created)
1054         {
1055           if (decls || tags || subblocks)
1056             {
1057               if (BLOCK_VARS (block) || BLOCK_TYPE_TAGS (block))
1058                 {
1059                   warning ("internal compiler error: debugging info corrupted");
1060                 }
1061               BLOCK_VARS (block) = decls;
1062               BLOCK_TYPE_TAGS (block) = tags;
1063
1064               /* We can have previous subblocks and new subblocks when
1065                  doing fixup_gotos with complex cleanups.  We chain the new
1066                  subblocks onto the end of any pre-existing subblocks.  */
1067               BLOCK_SUBBLOCKS (block) = chainon (BLOCK_SUBBLOCKS (block),
1068                                                  subblocks);
1069             }
1070           /* If we created the block earlier on, and we are just
1071              diddling it now, then it already should have a proper
1072              BLOCK_END_NOTE value associated with it.  */
1073         }
1074       else
1075         {
1076           BLOCK_VARS (block) = decls;
1077           BLOCK_TYPE_TAGS (block) = tags;
1078           BLOCK_SUBBLOCKS (block) = subblocks;
1079           /* Otherwise, for a new block, install a new BLOCK_END_NOTE value.  */
1080           remember_end_note (block);
1081         }
1082     }
1083
1084   /* In each subblock, record that this is its superior.  */
1085
1086   if (keep >= 0)
1087     for (link = subblocks; link; link = TREE_CHAIN (link))
1088       BLOCK_SUPERCONTEXT (link) = block;
1089
1090   /* Clear out the meanings of the local variables of this level.  */
1091
1092   if (current_binding_level->is_for_scope && flag_new_for_scope == 1)
1093     {
1094       struct binding_level *outer = current_binding_level->level_chain;
1095       for (link = decls; link; link = TREE_CHAIN (link))
1096         {
1097           if (TREE_CODE (link) == VAR_DECL)
1098             DECL_DEAD_FOR_LOCAL (link) = 1;
1099           else
1100             IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = NULL_TREE;
1101         }
1102
1103       /* Save declarations made in a 'for' statement so we can support pre-ANSI
1104          'for' scoping semantics.  */
1105
1106       for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1107         {
1108           tree id = TREE_PURPOSE (link);
1109           tree decl = IDENTIFIER_LOCAL_VALUE (id);
1110
1111           if (decl && DECL_DEAD_FOR_LOCAL (decl))
1112             {
1113               /* In this case keep the dead for-decl visible,
1114                  but remember what (if anything) it shadowed.  */
1115               DECL_SHADOWED_FOR_VAR (decl) = TREE_VALUE (link);
1116               TREE_CHAIN (decl) = outer->dead_vars_from_for;
1117               outer->dead_vars_from_for = decl;
1118             }
1119           else
1120             IDENTIFIER_LOCAL_VALUE (id) = TREE_VALUE (link);
1121         }
1122     }
1123   else /* Not special for scope.  */
1124     {
1125       for (link = decls; link; link = TREE_CHAIN (link))
1126         {
1127           if (DECL_NAME (link) != NULL_TREE)
1128             {
1129               /* If the ident. was used or addressed via a local extern decl,
1130                  don't forget that fact.  */
1131               if (DECL_EXTERNAL (link))
1132                 {
1133                   if (TREE_USED (link))
1134                     TREE_USED (DECL_ASSEMBLER_NAME (link)) = 1;
1135                   if (TREE_ADDRESSABLE (link))
1136                     TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1137                 }
1138               IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = NULL_TREE;
1139             }
1140         }
1141
1142       /* Restore all name-meanings of the outer levels
1143          that were shadowed by this level.  */
1144
1145       for (link = current_binding_level->shadowed;
1146            link; link = TREE_CHAIN (link))
1147         IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1148
1149       /* We first restore the regular decls and *then* the dead_vars_from_for
1150          to handle this case:
1151
1152          int i; // i#1
1153          {
1154            for (int i; ; ) { ...} // i#2
1155            int i; // i#3
1156          } // we are here
1157
1158          In this case, we want remove the binding for i#3, restoring
1159          that of i#2.  Then we want to remove the binding for i#2,
1160          and restore that of i#1.  */
1161
1162       link = current_binding_level->dead_vars_from_for;
1163       for (; link != NULL_TREE; link = TREE_CHAIN (link))
1164         {
1165           tree id = DECL_NAME (link);
1166           if (IDENTIFIER_LOCAL_VALUE (id) == link)
1167             IDENTIFIER_LOCAL_VALUE (id) = DECL_SHADOWED_FOR_VAR (link);
1168         }
1169
1170       for (link = current_binding_level->class_shadowed;
1171            link; link = TREE_CHAIN (link))
1172         IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1173       for (link = current_binding_level->type_shadowed;
1174            link; link = TREE_CHAIN (link))
1175         IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1176     }
1177
1178   /* If the level being exited is the top level of a function,
1179      check over all the labels.  */
1180
1181   if (functionbody)
1182     {
1183       /* If this is the top level block of a function,
1184          the vars are the function's parameters.
1185          Don't leave them in the BLOCK because they are
1186          found in the FUNCTION_DECL instead.  */
1187
1188       BLOCK_VARS (block) = 0;
1189
1190       /* Clear out the definitions of all label names,
1191          since their scopes end here.  */
1192
1193       for (link = named_labels; link; link = TREE_CHAIN (link))
1194         {
1195           register tree label = TREE_VALUE (link);
1196
1197           if (DECL_INITIAL (label) == NULL_TREE)
1198             {
1199               cp_error_at ("label `%D' used but not defined", label);
1200               /* Avoid crashing later.  */
1201               define_label (input_filename, 1, DECL_NAME (label));
1202             }
1203           else if (warn_unused && !TREE_USED (label))
1204             cp_warning_at ("label `%D' defined but not used", label);
1205           SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), NULL_TREE);
1206
1207           /* Put the labels into the "variables" of the
1208              top-level block, so debugger can see them.  */
1209           TREE_CHAIN (label) = BLOCK_VARS (block);
1210           BLOCK_VARS (block) = label;
1211         }
1212
1213       named_labels = NULL_TREE;
1214     }
1215
1216   /* Any uses of undefined labels now operate under constraints
1217      of next binding contour.  */
1218   {
1219     struct binding_level *level_chain;
1220     level_chain = current_binding_level->level_chain;
1221     if (level_chain)
1222       {
1223         struct named_label_list *labels;
1224         for (labels = named_label_uses; labels; labels = labels->next)
1225           if (labels->binding_level == current_binding_level)
1226             {
1227               labels->binding_level = level_chain;
1228               labels->names_in_scope = level_chain->names;
1229             }
1230       }
1231   }
1232
1233   tmp = current_binding_level->keep;
1234
1235   pop_binding_level ();
1236   if (functionbody)
1237     DECL_INITIAL (current_function_decl) = block;
1238   else if (block)
1239     {
1240       if (!block_previously_created)
1241         current_binding_level->blocks
1242           = chainon (current_binding_level->blocks, block);
1243     }
1244   /* If we did not make a block for the level just exited,
1245      any blocks made for inner levels
1246      (since they cannot be recorded as subblocks in that level)
1247      must be carried forward so they will later become subblocks
1248      of something else.  */
1249   else if (subblocks)
1250     {
1251       if (keep == 2)
1252         current_binding_level->blocks
1253           = chainon (subblocks, current_binding_level->blocks);
1254       else
1255         current_binding_level->blocks
1256           = chainon (current_binding_level->blocks, subblocks);
1257     }
1258
1259   /* Take care of compiler's internal binding structures.  */
1260   if (tmp == 2)
1261     {
1262       expand_end_bindings (getdecls (), keep, 1);
1263       /* Each and every BLOCK node created here in `poplevel' is important
1264          (e.g. for proper debugging information) so if we created one
1265          earlier, mark it as "used".  */
1266       if (block)
1267         TREE_USED (block) = 1;
1268       block = poplevel (keep, reverse, real_functionbody);
1269     }
1270
1271   /* Each and every BLOCK node created here in `poplevel' is important
1272      (e.g. for proper debugging information) so if we created one
1273      earlier, mark it as "used".  */
1274   if (block)
1275     TREE_USED (block) = 1;
1276   return block;
1277 }
1278
1279 /* Resume a binding level for a namespace.  */
1280
1281 void
1282 resume_level (b)
1283      struct binding_level *b;
1284 {
1285   tree decls, link;
1286
1287   resume_binding_level (b);
1288
1289   /* Resume the variable caches.  */
1290   decls = current_binding_level->names;
1291
1292   /* Restore the meanings of the local variables of this level.  */
1293
1294   for (link = decls; link; link = TREE_CHAIN (link))
1295     {
1296       /* If it doesn't have a name, there is nothing left to do with it.  */
1297       if (DECL_NAME (link) == NULL_TREE)
1298         continue;
1299
1300       IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = link;
1301
1302       /* If this is a TYPE_DECL, push it into the type value slot.  */
1303       if (TREE_CODE (link) == TYPE_DECL)
1304         SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (link), TREE_TYPE (link));
1305     }
1306 }
1307
1308 /* Delete the node BLOCK from the current binding level.
1309    This is used for the block inside a stmt expr ({...})
1310    so that the block can be reinserted where appropriate.  */
1311
1312 void
1313 delete_block (block)
1314      tree block;
1315 {
1316   tree t;
1317   if (current_binding_level->blocks == block)
1318     current_binding_level->blocks = TREE_CHAIN (block);
1319   for (t = current_binding_level->blocks; t;)
1320     {
1321       if (TREE_CHAIN (t) == block)
1322         TREE_CHAIN (t) = TREE_CHAIN (block);
1323       else
1324         t = TREE_CHAIN (t);
1325     }
1326   TREE_CHAIN (block) = NULL_TREE;
1327   /* Clear TREE_USED which is always set by poplevel.
1328      The flag is set again if insert_block is called.  */
1329   TREE_USED (block) = 0;
1330 }
1331
1332 /* Insert BLOCK at the end of the list of subblocks of the
1333    current binding level.  This is used when a BIND_EXPR is expanded,
1334    to handle the BLOCK node inside the BIND_EXPR.  */
1335
1336 void
1337 insert_block (block)
1338      tree block;
1339 {
1340   TREE_USED (block) = 1;
1341   current_binding_level->blocks
1342     = chainon (current_binding_level->blocks, block);
1343 }
1344
1345 /* Add BLOCK to the current list of blocks for this binding contour.  */
1346
1347 void
1348 add_block_current_level (block)
1349      tree block;
1350 {
1351   current_binding_level->blocks
1352     = chainon (current_binding_level->blocks, block);
1353 }
1354
1355 /* Set the BLOCK node for the innermost scope
1356    (the one we are currently in).  */
1357
1358 void
1359 set_block (block)
1360     register tree block;
1361 {
1362   current_binding_level->this_block = block;
1363 }
1364
1365 /* Do a pushlevel for class declarations.  */
1366
1367 void
1368 pushlevel_class ()
1369 {
1370   register struct binding_level *newlevel;
1371
1372   /* Reuse or create a struct for this binding level.  */
1373 #if defined(DEBUG_CP_BINDING_LEVELS)
1374   if (0)
1375 #else /* !defined(DEBUG_CP_BINDING_LEVELS) */
1376   if (free_binding_level)
1377 #endif /* !defined(DEBUG_CP_BINDING_LEVELS) */
1378     {
1379       newlevel = free_binding_level;
1380       free_binding_level = free_binding_level->level_chain;
1381     }
1382   else
1383     {
1384       newlevel = make_binding_level ();
1385     }
1386
1387 #if defined(DEBUG_CP_BINDING_LEVELS)
1388   is_class_level = 1;
1389 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
1390
1391   push_binding_level (newlevel, 0, 0);
1392
1393   decl_stack = push_decl_level (decl_stack, &decl_obstack);
1394   class_binding_level = current_binding_level;
1395   class_binding_level->parm_flag = 2;
1396   /* We have just pushed into a new binding level.  Now, fake out the rest
1397      of the compiler.  Set the `current_binding_level' back to point to
1398      the most closely containing non-class binding level.  */
1399   do
1400     {
1401       current_binding_level = current_binding_level->level_chain;
1402     }
1403   while (current_binding_level->parm_flag == 2);
1404 }
1405
1406 /* ...and a poplevel for class declarations.  FORCE is used to force
1407    clearing out of CLASS_VALUEs after a class definition.  */
1408
1409 tree
1410 poplevel_class (force)
1411      int force;
1412 {
1413   register struct binding_level *level = class_binding_level;
1414   tree block = NULL_TREE;
1415   tree shadowed;
1416
1417   my_friendly_assert (level != 0, 354);
1418   
1419   decl_stack = pop_stack_level (decl_stack);
1420   for (shadowed = level->shadowed; shadowed; shadowed = TREE_CHAIN (shadowed))
1421     IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (shadowed)) = TREE_VALUE (shadowed);
1422   /* If we're leaving a toplevel class, don't bother to do the setting
1423      of IDENTIFIER_CLASS_VALUE to NULL_TREE, since first of all this slot
1424      shouldn't even be used when current_class_type isn't set, and second,
1425      if we don't touch it here, we're able to use the cache effect if the
1426      next time we're entering a class scope, it is the same class.  */
1427   if (current_class_depth != 1 || force)
1428     for (shadowed = level->class_shadowed;
1429          shadowed;
1430          shadowed = TREE_CHAIN (shadowed))
1431       IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed)) = TREE_VALUE (shadowed);
1432   else
1433     /* Remember to save what IDENTIFIER's were bound in this scope so we
1434        can recover from cache misses.  */
1435     {
1436       previous_class_type = current_class_type;
1437       previous_class_values = class_binding_level->class_shadowed;
1438     }
1439   for (shadowed = level->type_shadowed;
1440        shadowed;
1441        shadowed = TREE_CHAIN (shadowed))
1442     IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (shadowed)) = TREE_VALUE (shadowed);
1443
1444   GNU_xref_end_scope ((HOST_WIDE_INT) class_binding_level,
1445                       (HOST_WIDE_INT) class_binding_level->level_chain,
1446                       class_binding_level->parm_flag,
1447                       class_binding_level->keep);
1448
1449   if (class_binding_level->parm_flag != 2)
1450     class_binding_level = (struct binding_level *)0;
1451
1452   /* Now, pop out of the the binding level which we created up in the
1453      `pushlevel_class' routine.  */
1454 #if defined(DEBUG_CP_BINDING_LEVELS)
1455   is_class_level = 1;
1456 #endif /* defined(DEBUG_CP_BINDING_LEVELS) */
1457
1458   pop_binding_level ();
1459
1460   return block;
1461 }
1462 \f
1463 /* For debugging.  */
1464 static int no_print_functions = 0;
1465 static int no_print_builtins = 0;
1466
1467 void
1468 print_binding_level (lvl)
1469      struct binding_level *lvl;
1470 {
1471   tree t;
1472   int i = 0, len;
1473   fprintf (stderr, " blocks=");
1474   fprintf (stderr, HOST_PTR_PRINTF, lvl->blocks);
1475   fprintf (stderr, " n_incomplete=%d parm_flag=%d keep=%d",
1476            list_length (lvl->incomplete), lvl->parm_flag, lvl->keep);
1477   if (lvl->tag_transparent)
1478     fprintf (stderr, " tag-transparent");
1479   if (lvl->more_cleanups_ok)
1480     fprintf (stderr, " more-cleanups-ok");
1481   if (lvl->have_cleanups)
1482     fprintf (stderr, " have-cleanups");
1483   fprintf (stderr, "\n");
1484   if (lvl->names)
1485     {
1486       fprintf (stderr, " names:\t");
1487       /* We can probably fit 3 names to a line?  */
1488       for (t = lvl->names; t; t = TREE_CHAIN (t))
1489         {
1490           if (no_print_functions && (TREE_CODE (t) == FUNCTION_DECL)) 
1491             continue;
1492           if (no_print_builtins
1493               && (TREE_CODE (t) == TYPE_DECL)
1494               && (!strcmp (DECL_SOURCE_FILE (t),"<built-in>")))
1495             continue;
1496
1497           /* Function decls tend to have longer names.  */
1498           if (TREE_CODE (t) == FUNCTION_DECL)
1499             len = 3;
1500           else
1501             len = 2;
1502           i += len;
1503           if (i > 6)
1504             {
1505               fprintf (stderr, "\n\t");
1506               i = len;
1507             }
1508           print_node_brief (stderr, "", t, 0);
1509           if (TREE_CODE (t) == ERROR_MARK)
1510             break;
1511         }
1512       if (i)
1513         fprintf (stderr, "\n");
1514     }
1515   if (lvl->tags)
1516     {
1517       fprintf (stderr, " tags:\t");
1518       i = 0;
1519       for (t = lvl->tags; t; t = TREE_CHAIN (t))
1520         {
1521           if (TREE_PURPOSE (t) == NULL_TREE)
1522             len = 3;
1523           else if (TREE_PURPOSE (t) == TYPE_IDENTIFIER (TREE_VALUE (t)))
1524             len = 2;
1525           else
1526             len = 4;
1527           i += len;
1528           if (i > 5)
1529             {
1530               fprintf (stderr, "\n\t");
1531               i = len;
1532             }
1533           if (TREE_PURPOSE (t) == NULL_TREE)
1534             {
1535               print_node_brief (stderr, "<unnamed-typedef", TREE_VALUE (t), 0);
1536               fprintf (stderr, ">");
1537             }
1538           else if (TREE_PURPOSE (t) == TYPE_IDENTIFIER (TREE_VALUE (t)))
1539             print_node_brief (stderr, "", TREE_VALUE (t), 0);
1540           else
1541             {
1542               print_node_brief (stderr, "<typedef", TREE_PURPOSE (t), 0);
1543               print_node_brief (stderr, "", TREE_VALUE (t), 0);
1544               fprintf (stderr, ">");
1545             }
1546         }
1547       if (i)
1548         fprintf (stderr, "\n");
1549     }
1550   if (lvl->shadowed)
1551     {
1552       fprintf (stderr, " shadowed:");
1553       for (t = lvl->shadowed; t; t = TREE_CHAIN (t))
1554         {
1555           fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1556         }
1557       fprintf (stderr, "\n");
1558     }
1559   if (lvl->class_shadowed)
1560     {
1561       fprintf (stderr, " class-shadowed:");
1562       for (t = lvl->class_shadowed; t; t = TREE_CHAIN (t))
1563         {
1564           fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1565         }
1566       fprintf (stderr, "\n");
1567     }
1568   if (lvl->type_shadowed)
1569     {
1570       fprintf (stderr, " type-shadowed:");
1571       for (t = lvl->type_shadowed; t; t = TREE_CHAIN (t))
1572         {
1573           fprintf (stderr, " %s ", IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1574         }
1575       fprintf (stderr, "\n");
1576     }
1577 }
1578
1579 void
1580 print_other_binding_stack (stack)
1581      struct binding_level *stack;
1582 {
1583   struct binding_level *level;
1584   for (level = stack; level != global_binding_level; level = level->level_chain)
1585     {
1586       fprintf (stderr, "binding level ");
1587       fprintf (stderr, HOST_PTR_PRINTF, level);
1588       fprintf (stderr, "\n");
1589       print_binding_level (level);
1590     }
1591 }
1592
1593 void
1594 print_binding_stack ()
1595 {
1596   struct binding_level *b;
1597   fprintf (stderr, "current_binding_level=");
1598   fprintf (stderr, HOST_PTR_PRINTF, current_binding_level);
1599   fprintf (stderr, "\nclass_binding_level=");
1600   fprintf (stderr, HOST_PTR_PRINTF, class_binding_level);
1601   fprintf (stderr, "\nglobal_binding_level=");
1602   fprintf (stderr, HOST_PTR_PRINTF, global_binding_level);
1603   fprintf (stderr, "\n");
1604   if (class_binding_level)
1605     {
1606       for (b = class_binding_level; b; b = b->level_chain)
1607         if (b == current_binding_level)
1608           break;
1609       if (b)
1610         b = class_binding_level;
1611       else
1612         b = current_binding_level;
1613     }
1614   else
1615     b = current_binding_level;
1616   print_other_binding_stack (b);
1617   fprintf (stderr, "global:\n");
1618   print_binding_level (global_binding_level);
1619 }
1620
1621 extern char * first_global_object_name;
1622
1623 /* Get a unique name for each call to this routine for unnamed namespaces.
1624    Mostly copied from get_file_function_name.  */
1625
1626 static tree
1627 get_unique_name ()
1628 {
1629   static int temp_name_counter = 0;
1630   char *buf;
1631   register char *p;
1632
1633   if (first_global_object_name)
1634     p = first_global_object_name;
1635   else if (main_input_filename)
1636     p = main_input_filename;
1637   else
1638     p = input_filename;
1639
1640 #define UNNAMED_NAMESPACE_FORMAT "__%s_%d"
1641
1642   buf = (char *) alloca (sizeof (UNNAMED_NAMESPACE_FORMAT) + strlen (p));
1643
1644   sprintf (buf, UNNAMED_NAMESPACE_FORMAT, p, temp_name_counter++);
1645
1646   /* Don't need to pull weird characters out of global names.  */
1647   if (p != first_global_object_name)
1648     {
1649       for (p = buf+11; *p; p++)
1650         if (! ((*p >= '0' && *p <= '9')
1651 #ifndef NO_DOLLAR_IN_LABEL      /* this for `$'; unlikely, but... -- kr */
1652                || *p == '$'
1653 #endif
1654 #ifndef NO_DOT_IN_LABEL         /* this for `.'; unlikely, but...  */
1655                || *p == '.'
1656 #endif
1657                || (*p >= 'A' && *p <= 'Z')
1658                || (*p >= 'a' && *p <= 'z')))
1659           *p = '_';
1660     }
1661
1662   return get_identifier (buf);
1663 }
1664
1665 /* Push into the scope of the NAME namespace.  If NAME is NULL_TREE, then we
1666    select a name that is unique to this compilation unit.  */
1667
1668 void
1669 push_namespace (name)
1670      tree name;
1671 {
1672   extern tree current_namespace;
1673   tree old_id = get_namespace_id ();
1674   char *buf;
1675   tree d;
1676
1677   if (! name)
1678     {
1679       /* Create a truly ugly name! */
1680       name = get_unique_name ();
1681     }
1682
1683   d = build_lang_decl (NAMESPACE_DECL, name, void_type_node);
1684
1685   /* Mark them as external, so redeclaration_error_message doesn't think
1686      they are duplicates.  */
1687
1688   DECL_EXTERNAL (d) = 1;
1689   d = pushdecl (d);
1690
1691   if (NAMESPACE_LEVEL (d) == 0)
1692     {
1693       /* This is new for this compilation unit.  */
1694       pushlevel (0);
1695       declare_namespace_level ();
1696       NAMESPACE_LEVEL (d) = current_binding_level;
1697     }
1698   else
1699     resume_level (NAMESPACE_LEVEL (d));
1700
1701   /* This code is just is bit old now...  */ 
1702   current_namespace = tree_cons (NULL_TREE, name, current_namespace);
1703   buf = (char *) alloca (4 + (old_id ? IDENTIFIER_LENGTH (old_id) : 0)
1704                          + IDENTIFIER_LENGTH (name));
1705   sprintf (buf, "%s%s", old_id ? IDENTIFIER_POINTER (old_id) : "",
1706            IDENTIFIER_POINTER (name));
1707   TREE_PURPOSE (current_namespace) = get_identifier (buf);
1708 }
1709
1710 /* Pop from the scope of the current namespace.  */
1711
1712 void
1713 pop_namespace ()
1714 {
1715   extern tree current_namespace;
1716   tree decls, link;
1717   current_namespace = TREE_CHAIN (current_namespace);
1718
1719   /* Just in case we get out of sync.  */
1720   if (! namespace_bindings_p ())
1721     poplevel (0, 0, 0);
1722
1723   decls = current_binding_level->names;
1724
1725   /* Clear out the meanings of the local variables of this level.  */
1726
1727   for (link = decls; link; link = TREE_CHAIN (link))
1728     {
1729       if (DECL_NAME (link) != NULL_TREE)
1730         {
1731           /* If the ident. was used or addressed via a local extern decl,
1732              don't forget that fact.  */
1733           if (DECL_EXTERNAL (link))
1734             {
1735               if (TREE_USED (link))
1736                 TREE_USED (DECL_ASSEMBLER_NAME (link)) = 1;
1737               if (TREE_ADDRESSABLE (link))
1738                 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1739             }
1740           IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = NULL_TREE;
1741         }
1742     }
1743
1744   /* Restore all name-meanings of the outer levels
1745      that were shadowed by this level.  */
1746
1747   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1748     IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1749   for (link = current_binding_level->class_shadowed;
1750        link; link = TREE_CHAIN (link))
1751     IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1752   for (link = current_binding_level->type_shadowed;
1753        link; link = TREE_CHAIN (link))
1754     IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1755
1756   /* suspend a level.  */
1757   suspend_binding_level ();
1758 }
1759 \f
1760 /* Subroutines for reverting temporarily to top-level for instantiation
1761    of templates and such.  We actually need to clear out the class- and
1762    local-value slots of all identifiers, so that only the global values
1763    are at all visible.  Simply setting current_binding_level to the global
1764    scope isn't enough, because more binding levels may be pushed.  */
1765 struct saved_scope {
1766   struct binding_level *old_binding_level;
1767   tree old_bindings;
1768   struct saved_scope *prev;
1769   tree class_name, class_type, function_decl;
1770   struct binding_level *class_bindings;
1771   tree *lang_base, *lang_stack, lang_name;
1772   int lang_stacksize;
1773   int minimal_parse_mode;
1774   tree last_function_parms;
1775   tree template_parms;
1776   HOST_WIDE_INT processing_template_decl;
1777   tree previous_class_type, previous_class_values;
1778 };
1779 static struct saved_scope *current_saved_scope;
1780
1781 static tree
1782 store_bindings (names, old_bindings)
1783      tree names, old_bindings;
1784 {
1785   tree t;
1786   for (t = names; t; t = TREE_CHAIN (t))
1787     {
1788       tree binding, t1, id;
1789
1790       if (TREE_CODE (t) == TREE_LIST)
1791         id = TREE_PURPOSE (t);
1792       else
1793         id = DECL_NAME (t);
1794
1795       if (!id
1796           || (!IDENTIFIER_LOCAL_VALUE (id)
1797               && !IDENTIFIER_CLASS_VALUE (id)))
1798         continue;
1799
1800       for (t1 = old_bindings; t1; t1 = TREE_CHAIN (t1))
1801         if (TREE_VEC_ELT (t1, 0) == id)
1802           goto skip_it;
1803             
1804       binding = make_tree_vec (4);
1805       if (id)
1806         {
1807           my_friendly_assert (TREE_CODE (id) == IDENTIFIER_NODE, 135);
1808           TREE_VEC_ELT (binding, 0) = id;
1809           TREE_VEC_ELT (binding, 1) = IDENTIFIER_TYPE_VALUE (id);
1810           TREE_VEC_ELT (binding, 2) = IDENTIFIER_LOCAL_VALUE (id);
1811           TREE_VEC_ELT (binding, 3) = IDENTIFIER_CLASS_VALUE (id);
1812           IDENTIFIER_LOCAL_VALUE (id) = NULL_TREE;
1813           IDENTIFIER_CLASS_VALUE (id) = NULL_TREE;
1814         }
1815       TREE_CHAIN (binding) = old_bindings;
1816       old_bindings = binding;
1817     skip_it:
1818       ;
1819     }
1820   return old_bindings;
1821 }
1822
1823 void
1824 maybe_push_to_top_level (pseudo)
1825      int pseudo;
1826 {
1827   extern int current_lang_stacksize;
1828   struct saved_scope *s =
1829     (struct saved_scope *) xmalloc (sizeof (struct saved_scope));
1830   struct binding_level *b = inner_binding_level;
1831   tree old_bindings = NULL_TREE;
1832
1833   if (current_function_decl)
1834     push_cp_function_context (NULL_TREE);
1835
1836   if (previous_class_type)
1837     old_bindings = store_bindings (previous_class_values, old_bindings);
1838
1839   /* Have to include global_binding_level, because class-level decls
1840      aren't listed anywhere useful.  */
1841   for (; b; b = b->level_chain)
1842     {
1843       tree t;
1844
1845       if (b == global_binding_level || (pseudo && b->pseudo_global))
1846         break;
1847
1848       old_bindings = store_bindings (b->names, old_bindings);
1849       /* We also need to check class_shadowed to save class-level type
1850          bindings, since pushclass doesn't fill in b->names.  */
1851       if (b->parm_flag == 2)
1852         old_bindings = store_bindings (b->class_shadowed, old_bindings);
1853
1854       /* Unwind type-value slots back to top level.  */
1855       for (t = b->type_shadowed; t; t = TREE_CHAIN (t))
1856         SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (t), TREE_VALUE (t));
1857     }
1858
1859   s->old_binding_level = current_binding_level;
1860   current_binding_level = b;
1861
1862   s->class_name = current_class_name;
1863   s->class_type = current_class_type;
1864   s->function_decl = current_function_decl;
1865   s->class_bindings = class_binding_level;
1866   s->lang_stack = current_lang_stack;
1867   s->lang_base = current_lang_base;
1868   s->lang_stacksize = current_lang_stacksize;
1869   s->lang_name = current_lang_name;
1870   s->minimal_parse_mode = minimal_parse_mode;
1871   s->last_function_parms = last_function_parms;
1872   s->template_parms = current_template_parms;
1873   s->processing_template_decl = processing_template_decl;
1874   s->previous_class_type = previous_class_type;
1875   s->previous_class_values = previous_class_values;
1876
1877   current_class_name = current_class_type = NULL_TREE;
1878   current_function_decl = NULL_TREE;
1879   class_binding_level = (struct binding_level *)0;
1880   current_lang_stacksize = 10;
1881   current_lang_stack = current_lang_base
1882     = (tree *) xmalloc (current_lang_stacksize * sizeof (tree));
1883   current_lang_name = lang_name_cplusplus;
1884   strict_prototype = strict_prototypes_lang_cplusplus;
1885   named_labels = NULL_TREE;
1886   minimal_parse_mode = 0;
1887   previous_class_type = previous_class_values = NULL_TREE;
1888   if (!pseudo)
1889     {
1890       current_template_parms = NULL_TREE;
1891       processing_template_decl = 0;
1892     }
1893
1894   s->prev = current_saved_scope;
1895   s->old_bindings = old_bindings;
1896   current_saved_scope = s;
1897
1898   push_obstacks (&permanent_obstack, &permanent_obstack);
1899 }
1900
1901 void
1902 push_to_top_level ()
1903 {
1904   maybe_push_to_top_level (0);
1905 }
1906
1907 void
1908 pop_from_top_level ()
1909 {
1910   extern int current_lang_stacksize;
1911   struct saved_scope *s = current_saved_scope;
1912   tree t;
1913
1914   /* Clear out class-level bindings cache.  */
1915   if (previous_class_type)
1916     {
1917       popclass (-1);
1918       previous_class_type = NULL_TREE;
1919     }
1920
1921   pop_obstacks ();
1922
1923   current_binding_level = s->old_binding_level;
1924   current_saved_scope = s->prev;
1925   for (t = s->old_bindings; t; t = TREE_CHAIN (t))
1926     {
1927       tree id = TREE_VEC_ELT (t, 0);
1928       if (id)
1929         {
1930           IDENTIFIER_TYPE_VALUE (id) = TREE_VEC_ELT (t, 1);
1931           IDENTIFIER_LOCAL_VALUE (id) = TREE_VEC_ELT (t, 2);
1932           IDENTIFIER_CLASS_VALUE (id) = TREE_VEC_ELT (t, 3);
1933         }
1934     }
1935   current_class_name = s->class_name;
1936   current_class_type = s->class_type;
1937   current_function_decl = s->function_decl;
1938   class_binding_level = s->class_bindings;
1939   free (current_lang_base);
1940   current_lang_base = s->lang_base;
1941   current_lang_stack = s->lang_stack;
1942   current_lang_name = s->lang_name;
1943   current_lang_stacksize = s->lang_stacksize;
1944   if (current_lang_name == lang_name_cplusplus)
1945     strict_prototype = strict_prototypes_lang_cplusplus;
1946   else if (current_lang_name == lang_name_c)
1947     strict_prototype = strict_prototypes_lang_c;
1948   minimal_parse_mode = s->minimal_parse_mode;
1949   last_function_parms = s->last_function_parms;
1950   current_template_parms = s->template_parms;
1951   processing_template_decl = s->processing_template_decl;
1952   previous_class_type = s->previous_class_type;
1953   previous_class_values = s->previous_class_values;
1954
1955   free (s);
1956
1957   if (current_function_decl)
1958     pop_cp_function_context (NULL_TREE);
1959 }
1960 \f
1961 /* Push a definition of struct, union or enum tag "name".
1962    into binding_level "b".   "type" should be the type node, 
1963    We assume that the tag "name" is not already defined.
1964
1965    Note that the definition may really be just a forward reference.
1966    In that case, the TYPE_SIZE will be a NULL_TREE.
1967
1968    C++ gratuitously puts all these tags in the name space.  */
1969
1970 /* When setting the IDENTIFIER_TYPE_VALUE field of an identifier ID,
1971    record the shadowed value for this binding contour.  TYPE is
1972    the type that ID maps to.  */
1973
1974 static void
1975 set_identifier_type_value_with_scope (id, type, b)
1976      tree id;
1977      tree type;
1978      struct binding_level *b;
1979 {
1980   if (b != global_binding_level)
1981     {
1982       tree old_type_value = IDENTIFIER_TYPE_VALUE (id);
1983       b->type_shadowed
1984         = tree_cons (id, old_type_value, b->type_shadowed);
1985     }
1986   SET_IDENTIFIER_TYPE_VALUE (id, type);
1987 }
1988
1989 /* As set_identifier_type_value_with_scope, but using inner_binding_level.  */
1990
1991 void
1992 set_identifier_type_value (id, type)
1993      tree id;
1994      tree type;
1995 {
1996   set_identifier_type_value_with_scope (id, type, inner_binding_level);
1997 }
1998
1999 /* Pop off extraneous binding levels left over due to syntax errors.
2000
2001    We don't pop past namespaces, as they might be valid.  */
2002
2003 void
2004 pop_everything ()
2005 {
2006 #ifdef DEBUG_CP_BINDING_LEVELS
2007   fprintf (stderr, "XXX entering pop_everything ()\n");
2008 #endif
2009   while (! toplevel_bindings_p () && ! pseudo_global_level_p ())
2010     {
2011       if (class_binding_level)
2012         pop_nested_class (1);
2013       else
2014         poplevel (0, 0, 0);
2015     }
2016 #ifdef DEBUG_CP_BINDING_LEVELS
2017   fprintf (stderr, "XXX leaving pop_everything ()\n");
2018 #endif
2019 }
2020
2021 /* Push a tag name NAME for struct/class/union/enum type TYPE.
2022    Normally put into into the inner-most non-tag-transparent scope,
2023    but if GLOBALIZE is true, put it in the inner-most non-class scope.
2024    The latter is needed for implicit declarations.  */
2025
2026 void
2027 pushtag (name, type, globalize)
2028      tree name, type;
2029      int globalize;
2030 {
2031   register struct binding_level *b;
2032   tree context = 0;
2033   tree c_decl = 0;
2034
2035   b = inner_binding_level;
2036   while (b->tag_transparent
2037          || (globalize && b->parm_flag == 2))
2038     b = b->level_chain;
2039
2040   if (toplevel_bindings_p ())
2041     b->tags = perm_tree_cons (name, type, b->tags);
2042   else
2043     b->tags = saveable_tree_cons (name, type, b->tags);
2044
2045   if (name)
2046     {
2047       context = type ? TYPE_CONTEXT (type) : NULL_TREE;
2048       if (! context && ! globalize)
2049         context = current_scope ();
2050       if (context)
2051         c_decl = TREE_CODE (context) == FUNCTION_DECL
2052           ? context : TYPE_MAIN_DECL (context);
2053
2054       /* Do C++ gratuitous typedefing.  */
2055       if (IDENTIFIER_TYPE_VALUE (name) != type)
2056         {
2057           register tree d;
2058           int newdecl = 0;
2059           
2060           if (b->parm_flag != 2
2061               || TYPE_SIZE (current_class_type) != NULL_TREE)
2062             {
2063               d = lookup_nested_type (type, c_decl);
2064
2065               if (d == NULL_TREE)
2066                 {
2067                   newdecl = 1;
2068                   d = build_decl (TYPE_DECL, name, type);
2069                   SET_DECL_ARTIFICIAL (d);
2070                   set_identifier_type_value_with_scope (name, type, b);
2071                 }
2072               else
2073                 d = TYPE_NAME (d);
2074
2075               TYPE_NAME (type) = d;
2076               DECL_CONTEXT (d) = context;
2077               if (! globalize && processing_template_decl && IS_AGGR_TYPE (type))
2078                 push_template_decl (d);
2079
2080               /* If it is anonymous, then we are called from pushdecl,
2081                  and we don't want to infinitely recurse.  */
2082               if (! ANON_AGGRNAME_P (name))
2083                 {
2084                   if (b->parm_flag == 2)
2085                     d = pushdecl_class_level (d);
2086                   else
2087                     d = pushdecl_with_scope (d, b);
2088                 }
2089             }
2090           else
2091             {
2092               /* Make nested declarations go into class-level scope.  */
2093               newdecl = 1;
2094               d = build_decl (TYPE_DECL, name, type);
2095               SET_DECL_ARTIFICIAL (d);
2096               TYPE_MAIN_DECL (type) = d;
2097               DECL_CONTEXT (d) = context;
2098               if (! globalize && processing_template_decl && IS_AGGR_TYPE (type))
2099                 push_template_decl (d);
2100
2101               d = pushdecl_class_level (d);
2102             }
2103           if (newdecl)
2104             {
2105               if (write_symbols != DWARF_DEBUG)
2106                 {
2107                   if (ANON_AGGRNAME_P (name))
2108                     DECL_IGNORED_P (d) = 1;
2109                 }
2110
2111               TYPE_CONTEXT (type) = DECL_CONTEXT (d);
2112               DECL_ASSEMBLER_NAME (d)
2113                 = get_identifier (build_overload_name (type, 1, 1));
2114             }
2115         }
2116       if (b->parm_flag == 2)
2117         {
2118           TREE_NONLOCAL_FLAG (type) = 1;
2119           if (TYPE_SIZE (current_class_type) == NULL_TREE)
2120             CLASSTYPE_TAGS (current_class_type) = b->tags;
2121         }
2122     }
2123
2124   if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
2125     /* Use the canonical TYPE_DECL for this node.  */
2126     TYPE_STUB_DECL (type) = TYPE_NAME (type);
2127   else
2128     {
2129       /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE
2130          will be the tagged type we just added to the current
2131          binding level.  This fake NULL-named TYPE_DECL node helps
2132          dwarfout.c to know when it needs to output a
2133          representation of a tagged type, and it also gives us a
2134          convenient place to record the "scope start" address for
2135          the tagged type.  */
2136
2137       tree d = build_decl (TYPE_DECL, NULL_TREE, type);
2138       TYPE_STUB_DECL (type) = pushdecl_with_scope (d, b);
2139     }
2140 }
2141
2142 /* Counter used to create anonymous type names.  */
2143
2144 static int anon_cnt = 0;
2145
2146 /* Return an IDENTIFIER which can be used as a name for
2147    anonymous structs and unions.  */
2148
2149 tree
2150 make_anon_name ()
2151 {
2152   char buf[32];
2153
2154   sprintf (buf, ANON_AGGRNAME_FORMAT, anon_cnt++);
2155   return get_identifier (buf);
2156 }
2157
2158 /* Clear the TREE_PURPOSE slot of tags which have anonymous typenames.
2159    This keeps dbxout from getting confused.  */
2160
2161 void
2162 clear_anon_tags ()
2163 {
2164   register struct binding_level *b;
2165   register tree tags;
2166   static int last_cnt = 0;
2167
2168   /* Fast out if no new anon names were declared.  */
2169   if (last_cnt == anon_cnt)
2170     return;
2171
2172   b = current_binding_level;
2173   while (b->tag_transparent)
2174     b = b->level_chain;
2175   tags = b->tags;
2176   while (tags)
2177     {
2178       /* A NULL purpose means we have already processed all tags
2179          from here to the end of the list.  */
2180       if (TREE_PURPOSE (tags) == NULL_TREE)
2181         break;
2182       if (ANON_AGGRNAME_P (TREE_PURPOSE (tags)))
2183         TREE_PURPOSE (tags) = NULL_TREE;
2184       tags = TREE_CHAIN (tags);
2185     }
2186   last_cnt = anon_cnt;
2187 }
2188 \f
2189 /* Subroutine of duplicate_decls: return truthvalue of whether
2190    or not types of these decls match.
2191
2192    For C++, we must compare the parameter list so that `int' can match
2193    `int&' in a parameter position, but `int&' is not confused with
2194    `const int&'.  */
2195
2196 int
2197 decls_match (newdecl, olddecl)
2198      tree newdecl, olddecl;
2199 {
2200   int types_match;
2201
2202   if (TREE_CODE (newdecl) == FUNCTION_DECL
2203       && TREE_CODE (olddecl) == FUNCTION_DECL)
2204     {
2205       tree f1 = TREE_TYPE (newdecl);
2206       tree f2 = TREE_TYPE (olddecl);
2207       tree p1 = TYPE_ARG_TYPES (f1);
2208       tree p2 = TYPE_ARG_TYPES (f2);
2209
2210       /* When we parse a static member function definition,
2211          we put together a FUNCTION_DECL which thinks its type
2212          is METHOD_TYPE.  Change that to FUNCTION_TYPE, and
2213          proceed.  */
2214       if (TREE_CODE (f1) == METHOD_TYPE && DECL_STATIC_FUNCTION_P (olddecl))
2215         revert_static_member_fn (&newdecl, &f1, &p1);
2216       else if (TREE_CODE (f2) == METHOD_TYPE
2217                && DECL_STATIC_FUNCTION_P (newdecl))
2218         revert_static_member_fn (&olddecl, &f2, &p2);
2219
2220       /* Here we must take care of the case where new default
2221          parameters are specified.  Also, warn if an old
2222          declaration becomes ambiguous because default
2223          parameters may cause the two to be ambiguous.  */
2224       if (TREE_CODE (f1) != TREE_CODE (f2))
2225         {
2226           if (TREE_CODE (f1) == OFFSET_TYPE)
2227             cp_compiler_error ("`%D' redeclared as member function", newdecl);
2228           else
2229             cp_compiler_error ("`%D' redeclared as non-member function", newdecl);
2230           return 0;
2231         }
2232
2233       if (comptypes (TREE_TYPE (f1), TREE_TYPE (f2), 1))
2234         {
2235           if (! strict_prototypes_lang_c && DECL_LANGUAGE (olddecl) == lang_c
2236               && p2 == NULL_TREE)
2237             {
2238               types_match = self_promoting_args_p (p1);
2239               if (p1 == void_list_node)
2240                 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
2241             }
2242           else if (!strict_prototypes_lang_c && DECL_LANGUAGE (olddecl)==lang_c
2243                    && DECL_LANGUAGE (newdecl) == lang_c && p1 == NULL_TREE)
2244             {
2245               types_match = self_promoting_args_p (p2);
2246               TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
2247             }
2248           else
2249             types_match = compparms (p1, p2, 3);
2250         }
2251       else
2252         types_match = 0;
2253     }
2254   else if (TREE_CODE (newdecl) == TEMPLATE_DECL
2255            && TREE_CODE (olddecl) == TEMPLATE_DECL)
2256     {
2257         tree newargs = DECL_TEMPLATE_PARMS (newdecl);
2258         tree oldargs = DECL_TEMPLATE_PARMS (olddecl);
2259         int i, len = TREE_VEC_LENGTH (newargs);
2260
2261         if (TREE_VEC_LENGTH (oldargs) != len)
2262           return 0;
2263         
2264         for (i = 0; i < len; i++)
2265           {
2266             tree newarg = TREE_VALUE (TREE_VEC_ELT (newargs, i));
2267             tree oldarg = TREE_VALUE (TREE_VEC_ELT (oldargs, i));
2268             if (TREE_CODE (newarg) != TREE_CODE (oldarg))
2269               return 0;
2270             else if (TREE_CODE (newarg) == TYPE_DECL)
2271               /* continue */;
2272             else if (! comptypes (TREE_TYPE (newarg), TREE_TYPE (oldarg), 1))
2273               return 0;
2274           }
2275
2276         if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2277           types_match = 1;
2278         else
2279           types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
2280                                      DECL_TEMPLATE_RESULT (newdecl));
2281     }
2282   else
2283     {
2284       if (TREE_TYPE (newdecl) == error_mark_node)
2285         types_match = TREE_TYPE (olddecl) == error_mark_node;
2286       else if (TREE_TYPE (olddecl) == NULL_TREE)
2287         types_match = TREE_TYPE (newdecl) == NULL_TREE;
2288       else if (TREE_TYPE (newdecl) == NULL_TREE)
2289         types_match = 0;
2290       /* Qualifiers must match, and they may be present on either, the type
2291          or the decl.  */
2292       else if ((TREE_READONLY (newdecl)
2293                 || TYPE_READONLY (TREE_TYPE (newdecl)))
2294                == (TREE_READONLY (olddecl)
2295                    || TYPE_READONLY (TREE_TYPE (olddecl)))
2296                && (TREE_THIS_VOLATILE (newdecl)
2297                     || TYPE_VOLATILE (TREE_TYPE (newdecl)))
2298                    == (TREE_THIS_VOLATILE (olddecl)
2299                        || TYPE_VOLATILE (TREE_TYPE (olddecl))))
2300         types_match = comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (newdecl)),
2301                                  TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)), 1);
2302       else
2303         types_match = 0;
2304     }
2305
2306   return types_match;
2307 }
2308
2309 /* If NEWDECL is `static' and an `extern' was seen previously,
2310    warn about it.  (OLDDECL may be NULL_TREE; NAME contains
2311    information about previous usage as an `extern'.)
2312
2313    Note that this does not apply to the C++ case of declaring
2314    a variable `extern const' and then later `const'.
2315
2316    Don't complain about built-in functions, since they are beyond
2317    the user's control.  */
2318
2319 static void
2320 warn_extern_redeclared_static (newdecl, olddecl)
2321      tree newdecl, olddecl;
2322 {
2323   tree name;
2324
2325   static char *explicit_extern_static_warning
2326     = "`%D' was declared `extern' and later `static'";
2327   static char *implicit_extern_static_warning
2328     = "`%D' was declared implicitly `extern' and later `static'";
2329
2330   if (TREE_CODE (newdecl) == TYPE_DECL)
2331     return;
2332
2333   name = DECL_ASSEMBLER_NAME (newdecl);
2334   if (TREE_PUBLIC (name) && DECL_THIS_STATIC (newdecl))
2335     {
2336       /* It's okay to redeclare an ANSI built-in function as static,
2337          or to declare a non-ANSI built-in function as anything.  */
2338       if (! (TREE_CODE (newdecl) == FUNCTION_DECL
2339              && olddecl != NULL_TREE
2340              && TREE_CODE (olddecl) == FUNCTION_DECL
2341              && (DECL_BUILT_IN (olddecl)
2342                  || DECL_BUILT_IN_NONANSI (olddecl))))
2343         {
2344           cp_pedwarn (IDENTIFIER_IMPLICIT_DECL (name)
2345                       ? implicit_extern_static_warning
2346                       : explicit_extern_static_warning, newdecl);
2347           if (olddecl != NULL_TREE)
2348             cp_pedwarn_at ("previous declaration of `%D'", olddecl);
2349         }
2350     }
2351 }
2352
2353 /* Handle when a new declaration NEWDECL has the same name as an old
2354    one OLDDECL in the same binding contour.  Prints an error message
2355    if appropriate.
2356
2357    If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
2358    Otherwise, return 0.  */
2359
2360 int
2361 duplicate_decls (newdecl, olddecl)
2362      register tree newdecl, olddecl;
2363 {
2364   extern struct obstack permanent_obstack;
2365   unsigned olddecl_uid = DECL_UID (olddecl);
2366   int olddecl_friend = 0, types_match = 0;
2367   int new_defines_function;
2368
2369   if (newdecl == olddecl)
2370     return 1;
2371
2372   if (TREE_CODE_CLASS (TREE_CODE (olddecl)) == 'd')
2373     DECL_MACHINE_ATTRIBUTES (newdecl) = DECL_MACHINE_ATTRIBUTES (olddecl);
2374
2375   types_match = decls_match (newdecl, olddecl);
2376
2377   if (TREE_CODE (olddecl) != TREE_LIST)
2378     olddecl_friend = DECL_LANG_SPECIFIC (olddecl) && DECL_FRIEND_P (olddecl);
2379
2380   /* If either the type of the new decl or the type of the old decl is an
2381      error_mark_node, then that implies that we have already issued an
2382      error (earlier) for some bogus type specification, and in that case,
2383      it is rather pointless to harass the user with yet more error message
2384      about the same declaration, so well just pretent the types match here.  */
2385   if ((TREE_TYPE (newdecl)
2386        && TREE_CODE (TREE_TYPE (newdecl)) == ERROR_MARK)
2387       || (TREE_TYPE (olddecl)
2388           && TREE_CODE (TREE_TYPE (olddecl)) == ERROR_MARK))
2389     types_match = 1;
2390
2391   if (TREE_CODE (olddecl) == FUNCTION_DECL
2392       && DECL_ARTIFICIAL (olddecl)
2393       && (DECL_BUILT_IN (olddecl) || DECL_BUILT_IN_NONANSI (olddecl)))
2394     {
2395       /* If you declare a built-in or predefined function name as static,
2396          the old definition is overridden, but optionally warn this was a
2397          bad choice of name.  Ditto for overloads.  */
2398       if (! DECL_PUBLIC (newdecl)
2399           || (TREE_CODE (newdecl) == FUNCTION_DECL
2400               && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl)))
2401         {
2402           if (warn_shadow)
2403             cp_warning ("shadowing %s function `%#D'",
2404                         DECL_BUILT_IN (olddecl) ? "built-in" : "library",
2405                         olddecl);
2406           /* Discard the old built-in function.  */
2407           return 0;
2408         }
2409       else if (! types_match)
2410         {
2411           if (TREE_CODE (newdecl) != FUNCTION_DECL)
2412             {
2413               /* If the built-in is not ansi, then programs can override
2414                  it even globally without an error.  */
2415               if (! DECL_BUILT_IN (olddecl))
2416                 cp_warning ("library function `%#D' redeclared as non-function `%#D'",
2417                             olddecl, newdecl);
2418               else
2419                 {
2420                   cp_error ("declaration of `%#D'", newdecl);
2421                   cp_error ("conflicts with built-in declaration `%#D'",
2422                             olddecl);
2423                 }
2424               return 0;
2425             }
2426
2427           cp_warning ("declaration of `%#D'", newdecl);
2428           cp_warning ("conflicts with built-in declaration `%#D'",
2429                       olddecl);
2430         }
2431     }
2432   else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
2433     {
2434       if ((TREE_CODE (newdecl) == FUNCTION_DECL
2435            && DECL_FUNCTION_TEMPLATE_P (olddecl))
2436           || (TREE_CODE (olddecl) == FUNCTION_DECL
2437               && DECL_FUNCTION_TEMPLATE_P (newdecl)))
2438         return 0;
2439       
2440       cp_error ("`%#D' redeclared as different kind of symbol", newdecl);
2441       if (TREE_CODE (olddecl) == TREE_LIST)
2442         olddecl = TREE_VALUE (olddecl);
2443       cp_error_at ("previous declaration of `%#D'", olddecl);
2444
2445       /* New decl is completely inconsistent with the old one =>
2446          tell caller to replace the old one.  */
2447
2448       return 0;
2449     }
2450   else if (!types_match)
2451     {
2452       if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2453         {
2454           /* The name of a class template may not be declared to refer to
2455              any other template, class, function, object, namespace, value,
2456              or type in the same scope.  */
2457           if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
2458               || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2459             {
2460               cp_error ("declaration of template `%#D'", newdecl);
2461               cp_error_at ("conflicts with previous declaration `%#D'",
2462                            olddecl);
2463             }
2464           else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
2465                    && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
2466                    && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
2467                                  TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))), 3))
2468             {
2469               cp_error ("new declaration `%#D'", newdecl);
2470               cp_error_at ("ambiguates old declaration `%#D'", olddecl);
2471             }
2472           return 0;
2473         }
2474       if (TREE_CODE (newdecl) == FUNCTION_DECL)
2475         {
2476           if (DECL_LANGUAGE (newdecl) == lang_c
2477               && DECL_LANGUAGE (olddecl) == lang_c)
2478             {
2479               cp_error ("declaration of C function `%#D' conflicts with",
2480                         newdecl);
2481               cp_error_at ("previous declaration `%#D' here", olddecl);
2482             }
2483           else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
2484                               TYPE_ARG_TYPES (TREE_TYPE (olddecl)), 3))
2485             {
2486               cp_error ("new declaration `%#D'", newdecl);
2487               cp_error_at ("ambiguates old declaration `%#D'", olddecl);
2488             }
2489           else
2490             return 0;
2491         }
2492
2493       /* Already complained about this, so don't do so again.  */
2494       else if (current_class_type == NULL_TREE
2495           || IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (newdecl)) != current_class_type)
2496         {
2497           cp_error ("conflicting types for `%#D'", newdecl);
2498           cp_error_at ("previous declaration as `%#D'", olddecl);
2499         }
2500     }
2501   else
2502     {
2503       char *errmsg = redeclaration_error_message (newdecl, olddecl);
2504       if (errmsg)
2505         {
2506           cp_error (errmsg, newdecl);
2507           if (DECL_NAME (olddecl) != NULL_TREE)
2508             cp_error_at ((DECL_INITIAL (olddecl)
2509                           && current_binding_level == global_binding_level)
2510                          ? "`%#D' previously defined here"
2511                          : "`%#D' previously declared here", olddecl);
2512         }
2513       else if (TREE_CODE (olddecl) == FUNCTION_DECL
2514                && DECL_INITIAL (olddecl) != NULL_TREE
2515                && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
2516                && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
2517         {
2518           /* Prototype decl follows defn w/o prototype.  */
2519           cp_warning_at ("prototype for `%#D'", newdecl);
2520           cp_warning_at ("follows non-prototype definition here", olddecl);
2521         }
2522       else if (TREE_CODE (olddecl) == FUNCTION_DECL
2523                && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
2524         {
2525           /* extern "C" int foo ();
2526              int foo () { bar (); }
2527              is OK.  */
2528           if (current_lang_stack == current_lang_base)
2529             DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
2530           else
2531             {
2532               cp_error_at ("previous declaration of `%#D' with %L linkage",
2533                            olddecl, DECL_LANGUAGE (olddecl));
2534               cp_error ("conflicts with new declaration with %L linkage",
2535                         DECL_LANGUAGE (newdecl));
2536             }
2537         }
2538
2539       if (TREE_CODE (olddecl) == FUNCTION_DECL
2540           && ! DECL_USE_TEMPLATE (olddecl))
2541         {
2542           tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
2543           tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
2544           int i = 1;
2545
2546           if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
2547             t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
2548         
2549           for (; t1 && t1 != void_list_node;
2550                t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
2551             if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
2552               {
2553                 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
2554                                            TREE_PURPOSE (t2)))
2555                   {
2556                     if (pedantic)
2557                       {
2558                         cp_pedwarn ("default argument given for parameter %d of `%#D'",
2559                                     i, newdecl);
2560                         cp_pedwarn_at ("after previous specification in `%#D'",
2561                                        olddecl);
2562                       }
2563                   }
2564                 else
2565                   {
2566                     cp_error ("default argument given for parameter %d of `%#D'",
2567                               i, newdecl);
2568                     cp_error_at ("conflicts with previous specification in `%#D'",
2569                                  olddecl);
2570                   }
2571               }
2572
2573           if (DECL_THIS_INLINE (newdecl) && ! DECL_THIS_INLINE (olddecl)
2574               && TREE_ADDRESSABLE (olddecl) && warn_inline)
2575             {
2576               cp_warning ("`%#D' was used before it was declared inline",
2577                           newdecl);
2578               cp_warning_at ("previous non-inline declaration here",
2579                              olddecl);
2580             }
2581         }
2582       /* These bits are logically part of the type for non-functions.  */
2583       else if (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
2584                || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl))
2585         {
2586           cp_pedwarn ("type qualifiers for `%#D'", newdecl);
2587           cp_pedwarn_at ("conflict with previous decl `%#D'", olddecl);
2588         }
2589     }
2590
2591   /* If new decl is `static' and an `extern' was seen previously,
2592      warn about it.  */
2593   warn_extern_redeclared_static (newdecl, olddecl);
2594
2595   /* We have committed to returning 1 at this point.  */
2596   if (TREE_CODE (newdecl) == FUNCTION_DECL)
2597     {
2598       /* Now that functions must hold information normally held
2599          by field decls, there is extra work to do so that
2600          declaration information does not get destroyed during
2601          definition.  */
2602       if (DECL_VINDEX (olddecl))
2603         DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
2604       if (DECL_CONTEXT (olddecl))
2605         DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2606       if (DECL_CLASS_CONTEXT (olddecl))
2607         DECL_CLASS_CONTEXT (newdecl) = DECL_CLASS_CONTEXT (olddecl);
2608       if (DECL_CHAIN (newdecl) == NULL_TREE)
2609         DECL_CHAIN (newdecl) = DECL_CHAIN (olddecl);
2610       if (DECL_PENDING_INLINE_INFO (newdecl) == (struct pending_inline *)0)
2611         DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
2612       DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
2613       DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2614       DECL_ABSTRACT_VIRTUAL_P (newdecl) |= DECL_ABSTRACT_VIRTUAL_P (olddecl);
2615     }
2616
2617   /* Deal with C++: must preserve virtual function table size.  */
2618   if (TREE_CODE (olddecl) == TYPE_DECL)
2619     {
2620       register tree newtype = TREE_TYPE (newdecl);
2621       register tree oldtype = TREE_TYPE (olddecl);
2622
2623       if (newtype != error_mark_node && oldtype != error_mark_node
2624           && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
2625         {
2626           CLASSTYPE_VSIZE (newtype) = CLASSTYPE_VSIZE (oldtype);
2627           CLASSTYPE_FRIEND_CLASSES (newtype)
2628             = CLASSTYPE_FRIEND_CLASSES (oldtype);
2629         }
2630     }
2631
2632   /* Special handling ensues if new decl is a function definition.  */
2633   new_defines_function = (TREE_CODE (newdecl) == FUNCTION_DECL
2634                           && DECL_INITIAL (newdecl) != NULL_TREE);
2635
2636   /* Optionally warn about more than one declaration for the same name,
2637      but don't warn about a function declaration followed by a definition.  */
2638   if (warn_redundant_decls
2639       && ! DECL_ARTIFICIAL (olddecl)
2640       && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
2641       /* Don't warn about extern decl followed by (tentative) definition.  */
2642       && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
2643     {
2644       cp_warning ("redundant redeclaration of `%D' in same scope", newdecl);
2645       cp_warning_at ("previous declaration of `%D'", olddecl);
2646     }
2647
2648   /* Copy all the DECL_... slots specified in the new decl
2649      except for any that we copy here from the old type.  */
2650
2651   if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2652     {
2653       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2654       DECL_TEMPLATE_RESULT (olddecl) = DECL_TEMPLATE_RESULT (newdecl);
2655       DECL_TEMPLATE_PARMS (olddecl) = DECL_TEMPLATE_PARMS (newdecl);
2656       return 1;
2657     }
2658
2659   if (types_match)
2660     {
2661       /* Automatically handles default parameters.  */
2662       tree oldtype = TREE_TYPE (olddecl);
2663       tree newtype;
2664
2665       /* Make sure we put the new type in the same obstack as the old one.  */
2666       if (oldtype)
2667         push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
2668       else
2669         {
2670           push_obstacks_nochange ();
2671           end_temporary_allocation ();
2672         }
2673
2674       /* Merge the data types specified in the two decls.  */
2675       newtype = common_type (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
2676
2677       if (TREE_CODE (newdecl) == VAR_DECL)
2678         DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
2679       /* Do this after calling `common_type' so that default
2680          parameters don't confuse us.  */
2681       else if (TREE_CODE (newdecl) == FUNCTION_DECL
2682           && (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl))
2683               != TYPE_RAISES_EXCEPTIONS (TREE_TYPE (olddecl))))
2684         {
2685           TREE_TYPE (newdecl) = build_exception_variant (newtype,
2686                                                          TYPE_RAISES_EXCEPTIONS (TREE_TYPE (newdecl)));
2687           TREE_TYPE (olddecl) = build_exception_variant (newtype,
2688                                                          TYPE_RAISES_EXCEPTIONS (oldtype));
2689
2690           if (! compexcepttypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
2691             {
2692               cp_error ("declaration of `%D' throws different exceptions...",
2693                         newdecl);
2694               cp_error_at ("...from previous declaration here", olddecl);
2695             }
2696         }
2697       TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
2698
2699       /* Lay the type out, unless already done.  */
2700       if (oldtype != TREE_TYPE (newdecl)
2701           && TREE_TYPE (newdecl) != error_mark_node
2702           && !(processing_template_decl && uses_template_parms (newdecl)))
2703         layout_type (TREE_TYPE (newdecl));
2704
2705       if ((TREE_CODE (newdecl) == VAR_DECL
2706            || TREE_CODE (newdecl) == PARM_DECL
2707            || TREE_CODE (newdecl) == RESULT_DECL
2708            || TREE_CODE (newdecl) == FIELD_DECL
2709            || TREE_CODE (newdecl) == TYPE_DECL)
2710           && !(processing_template_decl && uses_template_parms (newdecl)))
2711         layout_decl (newdecl, 0);
2712
2713       /* Merge the type qualifiers.  */
2714       if (TREE_READONLY (newdecl))
2715         TREE_READONLY (olddecl) = 1;
2716       if (TREE_THIS_VOLATILE (newdecl))
2717         TREE_THIS_VOLATILE (olddecl) = 1;
2718
2719       /* Merge the initialization information.  */
2720       if (DECL_INITIAL (newdecl) == NULL_TREE
2721           && DECL_INITIAL (olddecl) != NULL_TREE)
2722         {
2723           DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2724           DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
2725           DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
2726         }
2727
2728       /* Merge the section attribute.
2729          We want to issue an error if the sections conflict but that must be
2730          done later in decl_attributes since we are called before attributes
2731          are assigned.  */
2732       if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2733         DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2734
2735       /* Keep the old rtl since we can safely use it, unless it's the
2736          call to abort() used for abstract virtuals.  */
2737       if ((DECL_LANG_SPECIFIC (olddecl)
2738            && !DECL_ABSTRACT_VIRTUAL_P (olddecl))
2739           || DECL_RTL (olddecl) != DECL_RTL (abort_fndecl))
2740         DECL_RTL (newdecl) = DECL_RTL (olddecl);
2741
2742       pop_obstacks ();
2743     }
2744   /* If cannot merge, then use the new type and qualifiers,
2745      and don't preserve the old rtl.  */
2746   else
2747     {
2748       /* Clean out any memory we had of the old declaration.  */
2749       tree oldstatic = value_member (olddecl, static_aggregates);
2750       if (oldstatic)
2751         TREE_VALUE (oldstatic) = error_mark_node;
2752
2753       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2754       TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
2755       TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
2756       TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
2757     }
2758
2759   /* Merge the storage class information.  */
2760   DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
2761   DECL_ONE_ONLY (newdecl) |= DECL_ONE_ONLY (olddecl);
2762   TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2763   TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
2764   if (! DECL_EXTERNAL (olddecl))
2765     DECL_EXTERNAL (newdecl) = 0;
2766
2767   if (TREE_CODE (newdecl) == FUNCTION_DECL)
2768     DECL_C_STATIC (newdecl) |= DECL_C_STATIC (olddecl);
2769
2770   if (DECL_LANG_SPECIFIC (newdecl))
2771     {
2772       DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
2773       DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
2774     }
2775
2776   if (TREE_CODE (newdecl) == FUNCTION_DECL)
2777     {
2778       DECL_THIS_INLINE (newdecl) |= DECL_THIS_INLINE (olddecl);
2779
2780       /* If either decl says `inline', this fn is inline, unless its
2781          definition was passed already.  */
2782       if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == NULL_TREE)
2783         DECL_INLINE (olddecl) = 1;
2784       DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
2785
2786       if (! types_match)
2787         {
2788           DECL_LANGUAGE (olddecl) = DECL_LANGUAGE (newdecl);
2789           DECL_ASSEMBLER_NAME (olddecl) = DECL_ASSEMBLER_NAME (newdecl);
2790           DECL_RTL (olddecl) = DECL_RTL (newdecl);
2791         }
2792       if (! types_match || new_defines_function)
2793         {
2794           /* These need to be copied so that the names are available.  */
2795           DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
2796           DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
2797         }
2798       if (new_defines_function)
2799         /* If defining a function declared with other language
2800            linkage, use the previously declared language linkage.  */
2801         DECL_LANGUAGE (newdecl) = DECL_LANGUAGE (olddecl);
2802       else
2803         {
2804           /* If redeclaring a builtin function, and not a definition,
2805              it stays built in.  */
2806           if (DECL_BUILT_IN (olddecl))
2807             {
2808               DECL_BUILT_IN (newdecl) = 1;
2809               DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2810               /* If we're keeping the built-in definition, keep the rtl,
2811                  regardless of declaration matches.  */
2812               DECL_RTL (newdecl) = DECL_RTL (olddecl);
2813             }
2814           else
2815             DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
2816
2817           DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2818           if ((DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl)))
2819             /* Previously saved insns go together with
2820                the function's previous definition.  */
2821             DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2822           /* Don't clear out the arguments if we're redefining a function.  */
2823           if (DECL_ARGUMENTS (olddecl))
2824             DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2825         }
2826       if (DECL_LANG_SPECIFIC (olddecl))
2827         DECL_MAIN_VARIANT (newdecl) = DECL_MAIN_VARIANT (olddecl);
2828     }
2829
2830   if (TREE_CODE (newdecl) == NAMESPACE_DECL)
2831     {
2832       NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
2833     }
2834
2835   if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2836     {
2837       DECL_TEMPLATE_INSTANTIATIONS (newdecl)
2838         = DECL_TEMPLATE_INSTANTIATIONS (olddecl);
2839       if (DECL_CHAIN (newdecl) == NULL_TREE)
2840         DECL_CHAIN (newdecl) = DECL_CHAIN (olddecl);
2841     }
2842
2843   /* Now preserve various other info from the definition.  */
2844   TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
2845   TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
2846   DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2847   DECL_ASSEMBLER_NAME (newdecl) = DECL_ASSEMBLER_NAME (olddecl);
2848
2849   /* Don't really know how much of the language-specific
2850      values we should copy from old to new.  */
2851   if (DECL_LANG_SPECIFIC (olddecl))
2852     {
2853       DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
2854       DECL_ACCESS (newdecl) = DECL_ACCESS (olddecl);
2855       DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
2856       if (DECL_TEMPLATE_INFO (newdecl) == NULL_TREE)
2857         {
2858           DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
2859           DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
2860         }
2861     }
2862
2863   if (TREE_CODE (newdecl) == FUNCTION_DECL)
2864     {
2865       int function_size;
2866       struct lang_decl *ol = DECL_LANG_SPECIFIC (olddecl);
2867       struct lang_decl *nl = DECL_LANG_SPECIFIC (newdecl);
2868
2869       function_size = sizeof (struct tree_decl);
2870
2871       bcopy ((char *) newdecl + sizeof (struct tree_common),
2872              (char *) olddecl + sizeof (struct tree_common),
2873              function_size - sizeof (struct tree_common));
2874
2875       /* Can we safely free the storage used by newdecl?  */
2876
2877 #define ROUND(x) ((x + obstack_alignment_mask (&permanent_obstack)) \
2878                   & ~ obstack_alignment_mask (&permanent_obstack))
2879
2880       if ((char *)newdecl + ROUND (function_size)
2881           + ROUND (sizeof (struct lang_decl))
2882           == obstack_next_free (&permanent_obstack))
2883         {
2884           DECL_MAIN_VARIANT (newdecl) = olddecl;
2885           DECL_LANG_SPECIFIC (olddecl) = ol;
2886           bcopy ((char *)nl, (char *)ol, sizeof (struct lang_decl));
2887
2888           obstack_free (&permanent_obstack, newdecl);
2889         }
2890       else if (LANG_DECL_PERMANENT (ol) && ol != nl)
2891         {
2892           if (DECL_MAIN_VARIANT (olddecl) == olddecl)
2893             {
2894               /* Save these lang_decls that would otherwise be lost.  */
2895               extern tree free_lang_decl_chain;
2896               tree free_lang_decl = (tree) ol;
2897
2898               if (DECL_LANG_SPECIFIC (olddecl) == ol)
2899                 abort ();
2900
2901               TREE_CHAIN (free_lang_decl) = free_lang_decl_chain;
2902               free_lang_decl_chain = free_lang_decl;
2903             }
2904           else
2905             {
2906               /* Storage leak.  */
2907             }
2908         }
2909     }
2910   else
2911     {
2912       bcopy ((char *) newdecl + sizeof (struct tree_common),
2913              (char *) olddecl + sizeof (struct tree_common),
2914              sizeof (struct tree_decl) - sizeof (struct tree_common)
2915              + tree_code_length [(int)TREE_CODE (newdecl)] * sizeof (char *));
2916     }
2917
2918   DECL_UID (olddecl) = olddecl_uid;
2919   if (olddecl_friend)
2920     DECL_FRIEND_P (olddecl) = 1;
2921
2922   return 1;
2923 }
2924
2925 /* Record a decl-node X as belonging to the current lexical scope.
2926    Check for errors (such as an incompatible declaration for the same
2927    name already seen in the same scope).
2928
2929    Returns either X or an old decl for the same name.
2930    If an old decl is returned, it may have been smashed
2931    to agree with what X says.  */
2932
2933 tree
2934 pushdecl (x)
2935      tree x;
2936 {
2937   register tree t;
2938   register tree name = DECL_ASSEMBLER_NAME (x);
2939   register struct binding_level *b = current_binding_level;
2940
2941   if (x != current_function_decl
2942       /* Don't change DECL_CONTEXT of virtual methods.  */
2943       && (TREE_CODE (x) != FUNCTION_DECL || !DECL_VIRTUAL_P (x))
2944       && ! DECL_CONTEXT (x))
2945     DECL_CONTEXT (x) = current_function_decl;
2946   /* A local declaration for a function doesn't constitute nesting.  */
2947   if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0)
2948     DECL_CONTEXT (x) = 0;
2949
2950   /* Type are looked up using the DECL_NAME, as that is what the rest of the
2951      compiler wants to use.  */
2952   if (TREE_CODE (x) == TYPE_DECL || TREE_CODE (x) == VAR_DECL
2953       || TREE_CODE (x) == NAMESPACE_DECL)
2954     name = DECL_NAME (x);
2955
2956   if (name)
2957     {
2958 #if 0
2959       /* Not needed...see below.  */
2960       char *file;
2961       int line;
2962 #endif
2963
2964       t = lookup_name_current_level (name);
2965       if (t == error_mark_node)
2966         {
2967           /* error_mark_node is 0 for a while during initialization!  */
2968           t = NULL_TREE;
2969           cp_error_at ("`%#D' used prior to declaration", x);
2970         }
2971
2972       else if (t != NULL_TREE)
2973         {
2974 #if 0
2975           /* This is turned off until I have time to do it right (bpk).  */
2976           /* With the code below that uses it...  */
2977           file = DECL_SOURCE_FILE (t);
2978           line = DECL_SOURCE_LINE (t);
2979 #endif
2980           if (TREE_CODE (t) == PARM_DECL)
2981             {
2982               if (DECL_CONTEXT (t) == NULL_TREE)
2983                 fatal ("parse errors have confused me too much");
2984
2985               /* Check for duplicate params.  */
2986               if (duplicate_decls (x, t))
2987                 return t;
2988             }
2989           else if (((TREE_CODE (x) == FUNCTION_DECL && DECL_LANGUAGE (x) == lang_c)
2990                     || DECL_FUNCTION_TEMPLATE_P (x))
2991                    && is_overloaded_fn (t))
2992             /* don't do anything just yet */;
2993           else if (t == wchar_decl_node)
2994             {
2995               if (pedantic && ! DECL_IN_SYSTEM_HEADER (x))
2996                 cp_pedwarn ("redeclaration of wchar_t as `%T'", TREE_TYPE (x));
2997
2998               /* Throw away the redeclaration.  */
2999               return t;
3000             }
3001           else if (TREE_CODE (t) != TREE_CODE (x))
3002             {
3003               if ((TREE_CODE (t) == TYPE_DECL && DECL_ARTIFICIAL (t)
3004                    && TREE_CODE (x) != TYPE_DECL
3005                    && ! (TREE_CODE (x) == TEMPLATE_DECL
3006                          && TREE_CODE (DECL_TEMPLATE_RESULT (x)) == TYPE_DECL))
3007                   || (TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
3008                       && TREE_CODE (t) != TYPE_DECL
3009                       && ! (TREE_CODE (t) == TEMPLATE_DECL
3010                             && (TREE_CODE (DECL_TEMPLATE_RESULT (t))
3011                                 == TYPE_DECL))))
3012                 {
3013                   /* We do nothing special here, because C++ does such nasty
3014                      things with TYPE_DECLs.  Instead, just let the TYPE_DECL
3015                      get shadowed, and know that if we need to find a TYPE_DECL
3016                      for a given name, we can look in the IDENTIFIER_TYPE_VALUE
3017                      slot of the identifier.  */
3018                   ;
3019                 }
3020               else if (duplicate_decls (x, t))
3021                 return t;
3022             }
3023           else if (duplicate_decls (x, t))
3024             {
3025 #if 0
3026               /* This is turned off until I have time to do it right (bpk).  */
3027
3028               /* Also warn if they did a prototype with `static' on it, but
3029                  then later left the `static' off.  */
3030               if (! TREE_PUBLIC (name) && TREE_PUBLIC (x))
3031                 {
3032                   if (DECL_LANG_SPECIFIC (t) && DECL_FRIEND_P (t))
3033                     return t;
3034
3035                   if (extra_warnings)
3036                     {
3037                       cp_warning ("`static' missing from declaration of `%D'",
3038                                   t);
3039                       warning_with_file_and_line (file, line,
3040                                                   "previous declaration of `%s'",
3041                                                   decl_as_string (t, 0));
3042                     }
3043
3044                   /* Now fix things so it'll do what they expect.  */
3045                   if (current_function_decl)
3046                     TREE_PUBLIC (current_function_decl) = 0;
3047                 }
3048               /* Due to interference in memory reclamation (X may be
3049                  obstack-deallocated at this point), we must guard against
3050                  one really special case.  [jason: This should be handled
3051                  by start_function]  */
3052               if (current_function_decl == x)
3053                 current_function_decl = t;
3054 #endif
3055               if (TREE_CODE (t) == TYPE_DECL)
3056                 SET_IDENTIFIER_TYPE_VALUE (name, TREE_TYPE (t));
3057               else if (TREE_CODE (t) == FUNCTION_DECL)
3058                 check_default_args (t);
3059
3060               return t;
3061             }
3062         }
3063
3064       if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_FUNCTION_MEMBER_P (x))
3065         {
3066           t = push_overloaded_decl (x, 1);
3067           if (t != x || DECL_LANGUAGE (x) == lang_c)
3068             return t;
3069         }
3070       else if (DECL_FUNCTION_TEMPLATE_P (x) && DECL_CONTEXT (x) == NULL_TREE)
3071         return push_overloaded_decl (x, 0);
3072
3073       /* If declaring a type as a typedef, and the type has no known
3074          typedef name, install this TYPE_DECL as its typedef name.  */
3075       if (TREE_CODE (x) == TYPE_DECL)
3076         {
3077           tree type = TREE_TYPE (x);
3078           tree name = (type != error_mark_node) ? TYPE_NAME (type) : x;
3079
3080           if (name == NULL_TREE || TREE_CODE (name) != TYPE_DECL)
3081             {
3082               /* If these are different names, and we're at the global
3083                  binding level, make two equivalent definitions.  */
3084               name = x;
3085               if (global_bindings_p ())
3086                 TYPE_NAME (type) = x;
3087             }
3088           else
3089             {
3090               tree tname = DECL_NAME (name);
3091
3092               /* This is a disgusting kludge for dealing with UPTs.  */
3093               if (global_bindings_p () && ANON_AGGRNAME_P (tname))
3094                 {
3095                   /* do gratuitous C++ typedefing, and make sure that
3096                      we access this type either through TREE_TYPE field
3097                      or via the tags list.  */
3098                   TYPE_NAME (TREE_TYPE (x)) = x;
3099                   pushtag (tname, TREE_TYPE (x), 0);
3100                 }
3101             }
3102           my_friendly_assert (TREE_CODE (name) == TYPE_DECL, 140);
3103
3104           if (type != error_mark_node
3105               && TYPE_NAME (type)
3106               && TYPE_IDENTIFIER (type))
3107             set_identifier_type_value_with_scope (DECL_NAME (x), type, b);
3108         }
3109
3110       /* Multiple external decls of the same identifier ought to match.
3111
3112          We get warnings about inline functions where they are defined.
3113          We get warnings about other functions from push_overloaded_decl.
3114          
3115          Avoid duplicate warnings where they are used.  */
3116       if (TREE_PUBLIC (x) && TREE_CODE (x) != FUNCTION_DECL)
3117         {
3118           tree decl;
3119
3120           if (IDENTIFIER_GLOBAL_VALUE (name) != NULL_TREE
3121               && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
3122                   || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
3123             decl = IDENTIFIER_GLOBAL_VALUE (name);
3124           else
3125             decl = NULL_TREE;
3126
3127           if (decl
3128               /* If different sort of thing, we already gave an error.  */
3129               && TREE_CODE (decl) == TREE_CODE (x)
3130               && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl), 1))
3131             {
3132               cp_pedwarn ("type mismatch with previous external decl", x);
3133               cp_pedwarn_at ("previous external decl of `%#D'", decl);
3134             }
3135         }
3136
3137       /* This name is new in its binding level.
3138          Install the new declaration and return it.  */
3139       if (b == global_binding_level)
3140         {
3141           /* Install a global value.  */
3142
3143           /* If the first global decl has external linkage,
3144              warn if we later see static one.  */
3145           if (IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE && DECL_PUBLIC (x))
3146             TREE_PUBLIC (name) = 1;
3147
3148           /* Don't install an artificial TYPE_DECL if we already have
3149              another _DECL with that name.  */
3150           if (TREE_CODE (x) != TYPE_DECL
3151               || t == NULL_TREE
3152               || ! DECL_ARTIFICIAL (x))
3153             IDENTIFIER_GLOBAL_VALUE (name) = x;
3154
3155           /* Don't forget if the function was used via an implicit decl.  */
3156           if (IDENTIFIER_IMPLICIT_DECL (name)
3157               && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
3158             TREE_USED (x) = 1;
3159
3160           /* Don't forget if its address was taken in that way.  */
3161           if (IDENTIFIER_IMPLICIT_DECL (name)
3162               && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
3163             TREE_ADDRESSABLE (x) = 1;
3164
3165           /* Warn about mismatches against previous implicit decl.  */
3166           if (IDENTIFIER_IMPLICIT_DECL (name) != NULL_TREE
3167               /* If this real decl matches the implicit, don't complain.  */
3168               && ! (TREE_CODE (x) == FUNCTION_DECL
3169                     && TREE_TYPE (TREE_TYPE (x)) == integer_type_node))
3170             cp_warning
3171               ("`%D' was previously implicitly declared to return `int'", x);
3172
3173           /* If new decl is `static' and an `extern' was seen previously,
3174              warn about it.  */
3175           if (x != NULL_TREE && t != NULL_TREE && decls_match (x, t))
3176             warn_extern_redeclared_static (x, t);
3177         }
3178       else
3179         {
3180           /* Here to install a non-global value.  */
3181           tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
3182           tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
3183
3184           /* Don't install an artificial TYPE_DECL if we already have
3185              another _DECL with that name.  */
3186           if (TREE_CODE (x) != TYPE_DECL
3187               || t == NULL_TREE
3188               || ! DECL_ARTIFICIAL (x))
3189             {
3190               b->shadowed = tree_cons (name, oldlocal, b->shadowed);
3191               IDENTIFIER_LOCAL_VALUE (name) = x;
3192             }
3193
3194           /* If this is a TYPE_DECL, push it into the type value slot.  */
3195           if (TREE_CODE (x) == TYPE_DECL)
3196             set_identifier_type_value_with_scope (name, TREE_TYPE (x), b);
3197
3198           /* Clear out any TYPE_DECL shadowed by a namespace so that
3199              we won't think this is a type.  The C struct hack doesn't
3200              go through namespaces.  */
3201           if (TREE_CODE (x) == NAMESPACE_DECL)
3202             set_identifier_type_value_with_scope (name, NULL_TREE, b);
3203
3204           /* If this is an extern function declaration, see if we
3205              have a global definition or declaration for the function.  */
3206           if (oldlocal == NULL_TREE
3207               && DECL_EXTERNAL (x)
3208               && oldglobal != NULL_TREE
3209               && TREE_CODE (x) == FUNCTION_DECL
3210               && TREE_CODE (oldglobal) == FUNCTION_DECL)
3211             {
3212               /* We have one.  Their types must agree.  */
3213               if (decls_match (x, oldglobal))
3214                 /* OK */;
3215               else
3216                 {
3217                   cp_warning ("extern declaration of `%#D' doesn't match", x);
3218                   cp_warning_at ("global declaration `%#D'", oldglobal);
3219                 }
3220             }
3221           /* If we have a local external declaration,
3222              and no file-scope declaration has yet been seen,
3223              then if we later have a file-scope decl it must not be static.  */
3224           if (oldlocal == NULL_TREE
3225               && oldglobal == NULL_TREE
3226               && DECL_EXTERNAL (x)
3227               && TREE_PUBLIC (x))
3228             {
3229               TREE_PUBLIC (name) = 1;
3230             }
3231
3232           if (DECL_FROM_INLINE (x))
3233             /* Inline decls shadow nothing.  */;
3234
3235           /* Warn if shadowing an argument at the top level of the body.  */
3236           else if (oldlocal != NULL_TREE && !DECL_EXTERNAL (x)
3237               && TREE_CODE (oldlocal) == PARM_DECL
3238               && TREE_CODE (x) != PARM_DECL)
3239             {
3240               /* Go to where the parms should be and see if we
3241                  find them there.  */
3242               struct binding_level *b = current_binding_level->level_chain;
3243
3244               if (cleanup_label)
3245                 b = b->level_chain;
3246
3247               /* ARM $8.3 */
3248               if (b->parm_flag == 1)
3249                 cp_error ("declaration of `%#D' shadows a parameter", name);
3250             }
3251           else if (warn_shadow && oldlocal != NULL_TREE && b->is_for_scope
3252                    && !DECL_DEAD_FOR_LOCAL (oldlocal))
3253             {
3254               warning ("variable `%s' shadows local",
3255                        IDENTIFIER_POINTER (name));
3256               cp_warning_at ("  this is the shadowed declaration", oldlocal);
3257             }              
3258           /* Maybe warn if shadowing something else.  */
3259           else if (warn_shadow && !DECL_EXTERNAL (x)
3260                    /* No shadow warnings for internally generated vars.  */
3261                    && ! DECL_ARTIFICIAL (x)
3262                    /* No shadow warnings for vars made for inlining.  */
3263                    && ! DECL_FROM_INLINE (x))
3264             {
3265               char *warnstring = NULL;
3266
3267               if (oldlocal != NULL_TREE && TREE_CODE (oldlocal) == PARM_DECL)
3268                 warnstring = "declaration of `%s' shadows a parameter";
3269               else if (IDENTIFIER_CLASS_VALUE (name) != NULL_TREE
3270                        && current_class_ptr
3271                        && !TREE_STATIC (name))
3272                 warnstring = "declaration of `%s' shadows a member of `this'";
3273               else if (oldlocal != NULL_TREE)
3274                 warnstring = "declaration of `%s' shadows previous local";
3275               else if (oldglobal != NULL_TREE)
3276                 warnstring = "declaration of `%s' shadows global declaration";
3277
3278               if (warnstring)
3279                 warning (warnstring, IDENTIFIER_POINTER (name));
3280             }
3281         }
3282
3283       if (TREE_CODE (x) == FUNCTION_DECL)
3284         check_default_args (x);
3285
3286       /* Keep count of variables in this level with incomplete type.  */
3287       if (TREE_CODE (x) == VAR_DECL
3288           && TREE_TYPE (x) != error_mark_node
3289           && ((TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3290                && PROMOTES_TO_AGGR_TYPE (TREE_TYPE (x), ARRAY_TYPE))
3291               /* RTTI TD entries are created while defining the type_info.  */
3292               || (TYPE_LANG_SPECIFIC (TREE_TYPE (x))
3293                   && TYPE_BEING_DEFINED (TREE_TYPE (x)))))
3294         b->incomplete = tree_cons (NULL_TREE, x, b->incomplete);
3295     }
3296
3297   /* Put decls on list in reverse order.
3298      We will reverse them later if necessary.  */
3299   TREE_CHAIN (x) = b->names;
3300   b->names = x;
3301   if (! (b != global_binding_level || TREE_PERMANENT (x)))
3302     my_friendly_abort (124);
3303
3304   return x;
3305 }
3306
3307 /* Same as pushdecl, but define X in binding-level LEVEL.  We rely on the
3308    caller to set DECL_CONTEXT properly.  */
3309
3310 static tree
3311 pushdecl_with_scope (x, level)
3312      tree x;
3313      struct binding_level *level;
3314 {
3315   register struct binding_level *b = current_binding_level;
3316   tree function_decl = current_function_decl;
3317
3318   current_function_decl = NULL_TREE;
3319   current_binding_level = level;
3320   x = pushdecl (x);
3321   current_binding_level = b;
3322   current_function_decl = function_decl;
3323   return x;
3324 }
3325
3326 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL,
3327    if appropriate.  */
3328
3329 tree
3330 pushdecl_top_level (x)
3331      tree x;
3332 {
3333   register struct binding_level *b = inner_binding_level;
3334   register tree t = pushdecl_with_scope (x, global_binding_level);
3335
3336   /* Now, the type_shadowed stack may screw us.  Munge it so it does
3337      what we want.  */
3338   if (TREE_CODE (x) == TYPE_DECL)
3339     {
3340       tree name = DECL_NAME (x);
3341       tree newval;
3342       tree *ptr = (tree *)0;
3343       for (; b != global_binding_level; b = b->level_chain)
3344         {
3345           tree shadowed = b->type_shadowed;
3346           for (; shadowed; shadowed = TREE_CHAIN (shadowed))
3347             if (TREE_PURPOSE (shadowed) == name)
3348               {
3349                 ptr = &TREE_VALUE (shadowed);
3350                 /* Can't break out of the loop here because sometimes
3351                    a binding level will have duplicate bindings for
3352                    PT names.  It's gross, but I haven't time to fix it.  */
3353               }
3354         }
3355       newval = TREE_TYPE (x);
3356       if (ptr == (tree *)0)
3357         {
3358           /* @@ This shouldn't be needed.  My test case "zstring.cc" trips
3359              up here if this is changed to an assertion.  --KR  */
3360           SET_IDENTIFIER_TYPE_VALUE (name, newval);
3361         }
3362       else
3363         {
3364           *ptr = newval;
3365         }
3366     }
3367   return t;
3368 }
3369
3370 /* Like push_overloaded_decl, only it places X in GLOBAL_BINDING_LEVEL,
3371    if appropriate.  */
3372
3373 void
3374 push_overloaded_decl_top_level (x, forget)
3375      tree x;
3376      int forget;
3377 {
3378   struct binding_level *b = current_binding_level;
3379
3380   current_binding_level = global_binding_level;
3381   push_overloaded_decl (x, forget);
3382   current_binding_level = b;
3383 }
3384
3385 /* Make the declaration of X appear in CLASS scope.  */
3386
3387 tree
3388 pushdecl_class_level (x)
3389      tree x;
3390 {
3391   /* Don't use DECL_ASSEMBLER_NAME here!  Everything that looks in class
3392      scope looks for the pre-mangled name.  */
3393   register tree name = DECL_NAME (x);
3394
3395   if (name)
3396     {
3397       if (TYPE_BEING_DEFINED (current_class_type))
3398         {
3399           /* Check for inconsistent use of this name in the class body.
3400              Types, enums, and static vars are checked here; other
3401              members are checked in finish_struct.  */
3402           tree icv = IDENTIFIER_CLASS_VALUE (name);
3403
3404           if (icv && icv != x
3405               /* Don't complain about inherited names.  */
3406               && id_in_current_class (name)
3407               /* Or shadowed tags.  */
3408               && !(TREE_CODE (icv) == TYPE_DECL
3409                    && DECL_CONTEXT (icv) == current_class_type))
3410             {
3411               cp_error ("declaration of identifier `%D' as `%#D'", name, x);
3412               cp_error_at ("conflicts with previous use in class as `%#D'",
3413                            icv);
3414             }
3415         }
3416
3417       push_class_level_binding (name, x);
3418       if (TREE_CODE (x) == TYPE_DECL)
3419         {
3420           set_identifier_type_value (name, TREE_TYPE (x));
3421         }
3422     }
3423   return x;
3424 }
3425
3426 /* This function is used to push the mangled decls for nested types into
3427    the appropriate scope.  Previously pushdecl_top_level was used, but that
3428    is incorrect for members of local classes.  */
3429
3430 void
3431 pushdecl_nonclass_level (x)
3432      tree x;
3433 {
3434   struct binding_level *b = current_binding_level;
3435
3436   my_friendly_assert (b->parm_flag != 2, 180);
3437
3438 #if 0
3439   /* Get out of template binding levels */
3440   while (b->pseudo_global)
3441     b = b->level_chain;
3442 #endif
3443
3444   pushdecl_with_scope (x, b);
3445 }
3446
3447 /* Make the declaration(s) of X appear in CLASS scope
3448    under the name NAME.  */
3449
3450 void
3451 push_class_level_binding (name, x)
3452      tree name;
3453      tree x;
3454 {
3455   if (TREE_CODE (x) == TYPE_DECL && DECL_ARTIFICIAL (x)
3456       && purpose_member (name, class_binding_level->class_shadowed))
3457     return;
3458
3459   maybe_push_cache_obstack ();
3460   class_binding_level->class_shadowed
3461       = tree_cons (name, IDENTIFIER_CLASS_VALUE (name),
3462                    class_binding_level->class_shadowed);
3463   pop_obstacks ();
3464   IDENTIFIER_CLASS_VALUE (name) = x;
3465   obstack_ptr_grow (&decl_obstack, x);
3466 }
3467
3468 /* Tell caller how to interpret a TREE_LIST which contains
3469    chains of FUNCTION_DECLS.  */
3470
3471 int
3472 overloaded_globals_p (list)
3473      tree list;
3474 {
3475   my_friendly_assert (TREE_CODE (list) == TREE_LIST, 142);
3476
3477   /* Don't commit caller to seeing them as globals.  */
3478   if (TREE_NONLOCAL_FLAG (list))
3479     return -1;
3480   /* Do commit caller to not seeing them as globals.  */
3481   if (TREE_CODE (TREE_VALUE (list)) == TREE_LIST)
3482     return 0;
3483   /* Do commit caller to seeing them as globals.  */
3484   return 1;
3485 }
3486
3487 /* DECL is a FUNCTION_DECL which may have other definitions already in
3488    place.  We get around this by making the value of the identifier point
3489    to a list of all the things that want to be referenced by that name.  It
3490    is then up to the users of that name to decide what to do with that
3491    list.
3492
3493    DECL may also be a TEMPLATE_DECL, with a FUNCTION_DECL in its DECL_RESULT
3494    slot.  It is dealt with the same way.
3495
3496    The value returned may be a previous declaration if we guessed wrong
3497    about what language DECL should belong to (C or C++).  Otherwise,
3498    it's always DECL (and never something that's not a _DECL).  */
3499
3500 tree
3501 push_overloaded_decl (decl, forgettable)
3502      tree decl;
3503      int forgettable;
3504 {
3505   tree orig_name = DECL_NAME (decl);
3506   tree old;
3507   int doing_global = (global_bindings_p () || ! forgettable);
3508
3509   if (doing_global)
3510     {
3511       old = IDENTIFIER_GLOBAL_VALUE (orig_name);
3512       if (old && TREE_CODE (old) == FUNCTION_DECL
3513           && DECL_ARTIFICIAL (old)
3514           && (DECL_BUILT_IN (old) || DECL_BUILT_IN_NONANSI (old)))
3515         {
3516           if (duplicate_decls (decl, old))
3517             return old;
3518           old = NULL_TREE;
3519         }
3520     }
3521   else
3522     {
3523       old = IDENTIFIER_LOCAL_VALUE (orig_name);
3524
3525       if (! purpose_member (orig_name, current_binding_level->shadowed))
3526         {
3527           current_binding_level->shadowed
3528             = tree_cons (orig_name, old, current_binding_level->shadowed);
3529           old = NULL_TREE;
3530         }
3531     }
3532
3533   if (old)
3534     {
3535       if (TREE_CODE (old) == TYPE_DECL && DECL_ARTIFICIAL (old))
3536         {
3537           tree t = TREE_TYPE (old);
3538           if (IS_AGGR_TYPE (t) && warn_shadow
3539               && (! DECL_IN_SYSTEM_HEADER (decl)
3540                   || ! DECL_IN_SYSTEM_HEADER (old)))
3541             cp_warning ("`%#D' hides constructor for `%#T'", decl, t);
3542           old = NULL_TREE;
3543         }
3544       else if (is_overloaded_fn (old))
3545         {
3546           tree tmp;
3547           
3548           for (tmp = get_first_fn (old); tmp; tmp = DECL_CHAIN (tmp))
3549             if (decl == tmp || duplicate_decls (decl, tmp))
3550               return tmp;
3551         }
3552       else
3553         {
3554           cp_error_at ("previous non-function declaration `%#D'", old);
3555           cp_error ("conflicts with function declaration `%#D'", decl);
3556           return decl;
3557         }
3558     }
3559
3560   if (old || TREE_CODE (decl) == TEMPLATE_DECL)
3561     {
3562       if (old && is_overloaded_fn (old))
3563         DECL_CHAIN (decl) = get_first_fn (old);
3564       else
3565         DECL_CHAIN (decl) = NULL_TREE;
3566       old = tree_cons (orig_name, decl, NULL_TREE);
3567       TREE_TYPE (old) = unknown_type_node;
3568     }
3569   else
3570     /* orig_name is not ambiguous.  */
3571     old = decl;
3572
3573   if (doing_global)
3574     IDENTIFIER_GLOBAL_VALUE (orig_name) = old;
3575   else
3576     IDENTIFIER_LOCAL_VALUE (orig_name) = old;
3577
3578   return decl;
3579 }
3580 \f
3581 /* Generate an implicit declaration for identifier FUNCTIONID
3582    as a function of type int ().  Print a warning if appropriate.  */
3583
3584 tree
3585 implicitly_declare (functionid)
3586      tree functionid;
3587 {
3588   register tree decl;
3589   int temp = allocation_temporary_p ();
3590
3591   push_obstacks_nochange ();
3592
3593   /* Save the decl permanently so we can warn if definition follows.
3594      In ANSI C, warn_implicit is usually false, so the saves little space.
3595      But in C++, it's usually true, hence the extra code.  */
3596   if (temp && (! warn_implicit || toplevel_bindings_p ()))
3597     end_temporary_allocation ();
3598
3599   /* We used to reuse an old implicit decl here,
3600      but this loses with inline functions because it can clobber
3601      the saved decl chains.  */
3602   decl = build_lang_decl (FUNCTION_DECL, functionid, default_function_type);
3603
3604   DECL_EXTERNAL (decl) = 1;
3605   TREE_PUBLIC (decl) = 1;
3606
3607   /* ANSI standard says implicit declarations are in the innermost block.
3608      So we record the decl in the standard fashion.  */
3609   pushdecl (decl);
3610   rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
3611
3612   if (warn_implicit
3613       /* Only one warning per identifier.  */
3614       && IDENTIFIER_IMPLICIT_DECL (functionid) == NULL_TREE)
3615     {
3616       cp_pedwarn ("implicit declaration of function `%#D'", decl);
3617     }
3618
3619   SET_IDENTIFIER_IMPLICIT_DECL (functionid, decl);
3620
3621   pop_obstacks ();
3622
3623   return decl;
3624 }
3625
3626 /* Return zero if the declaration NEWDECL is valid
3627    when the declaration OLDDECL (assumed to be for the same name)
3628    has already been seen.
3629    Otherwise return an error message format string with a %s
3630    where the identifier should go.  */
3631
3632 static char *
3633 redeclaration_error_message (newdecl, olddecl)
3634      tree newdecl, olddecl;
3635 {
3636   if (TREE_CODE (newdecl) == TYPE_DECL)
3637     {
3638       /* Because C++ can put things into name space for free,
3639          constructs like "typedef struct foo { ... } foo"
3640          would look like an erroneous redeclaration.  */
3641       if (comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl), 0))
3642         return 0;
3643       else
3644         return "redefinition of `%#D'";
3645     }
3646   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
3647     {
3648       /* If this is a pure function, its olddecl will actually be
3649          the original initialization to `0' (which we force to call
3650          abort()).  Don't complain about redefinition in this case.  */
3651       if (DECL_LANG_SPECIFIC (olddecl) && DECL_ABSTRACT_VIRTUAL_P (olddecl))
3652         return 0;
3653
3654       /* We'll complain about linkage mismatches in
3655          warn_extern_redeclared_static.  */
3656
3657       /* defining the same name twice is no good.  */
3658       if (DECL_INITIAL (olddecl) != NULL_TREE
3659           && DECL_INITIAL (newdecl) != NULL_TREE)
3660         {
3661           if (DECL_NAME (olddecl) == NULL_TREE)
3662             return "`%#D' not declared in class";
3663           else
3664             return "redefinition of `%#D'";
3665         }
3666       return 0;
3667     }
3668   else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
3669     {
3670       if ((TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
3671            && DECL_INITIAL (DECL_TEMPLATE_RESULT (newdecl))
3672            && DECL_INITIAL (DECL_TEMPLATE_RESULT (olddecl)))
3673           || (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL
3674               && TYPE_SIZE (TREE_TYPE (newdecl))
3675               && TYPE_SIZE (TREE_TYPE (olddecl))))
3676         return "redefinition of `%#D'";
3677       return 0;
3678     }
3679   else if (toplevel_bindings_p ())
3680     {
3681       /* Objects declared at top level:  */
3682       /* If at least one is a reference, it's ok.  */
3683       if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
3684         return 0;
3685       /* Reject two definitions.  */
3686       return "redefinition of `%#D'";
3687     }
3688   else
3689     {
3690       /* Objects declared with block scope:  */
3691       /* Reject two definitions, and reject a definition
3692          together with an external reference.  */
3693       if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
3694         return "redeclaration of `%#D'";
3695       return 0;
3696     }
3697 }
3698 \f
3699 /* Get the LABEL_DECL corresponding to identifier ID as a label.
3700    Create one if none exists so far for the current function.
3701    This function is called for both label definitions and label references.  */
3702
3703 tree
3704 lookup_label (id)
3705      tree id;
3706 {
3707   register tree decl = IDENTIFIER_LABEL_VALUE (id);
3708
3709   if (current_function_decl == NULL_TREE)
3710     {
3711       error ("label `%s' referenced outside of any function",
3712              IDENTIFIER_POINTER (id));
3713       return NULL_TREE;
3714     }
3715
3716   if ((decl == NULL_TREE
3717       || DECL_SOURCE_LINE (decl) == 0)
3718       && (named_label_uses == NULL
3719           || named_label_uses->names_in_scope != current_binding_level->names
3720           || named_label_uses->label_decl != decl))
3721     {
3722       struct named_label_list *new_ent;
3723       new_ent
3724         = (struct named_label_list*)oballoc (sizeof (struct named_label_list));
3725       new_ent->label_decl = decl;
3726       new_ent->names_in_scope = current_binding_level->names;
3727       new_ent->binding_level = current_binding_level;
3728       new_ent->lineno_o_goto = lineno;
3729       new_ent->filename_o_goto = input_filename;
3730       new_ent->next = named_label_uses;
3731       named_label_uses = new_ent;
3732     }
3733
3734   /* Use a label already defined or ref'd with this name.  */
3735   if (decl != NULL_TREE)
3736     {
3737       /* But not if it is inherited and wasn't declared to be inheritable.  */
3738       if (DECL_CONTEXT (decl) != current_function_decl
3739           && ! C_DECLARED_LABEL_FLAG (decl))
3740         return shadow_label (id);
3741       return decl;
3742     }
3743
3744   decl = build_decl (LABEL_DECL, id, void_type_node);
3745
3746   /* Make sure every label has an rtx.  */
3747   label_rtx (decl);
3748
3749   /* A label not explicitly declared must be local to where it's ref'd.  */
3750   DECL_CONTEXT (decl) = current_function_decl;
3751
3752   DECL_MODE (decl) = VOIDmode;
3753
3754   /* Say where one reference is to the label,
3755      for the sake of the error if it is not defined.  */
3756   DECL_SOURCE_LINE (decl) = lineno;
3757   DECL_SOURCE_FILE (decl) = input_filename;
3758
3759   SET_IDENTIFIER_LABEL_VALUE (id, decl);
3760
3761   named_labels = tree_cons (NULL_TREE, decl, named_labels);
3762   named_label_uses->label_decl = decl;
3763
3764   return decl;
3765 }
3766
3767 /* Make a label named NAME in the current function,
3768    shadowing silently any that may be inherited from containing functions
3769    or containing scopes.
3770
3771    Note that valid use, if the label being shadowed
3772    comes from another scope in the same function,
3773    requires calling declare_nonlocal_label right away.  */
3774
3775 tree
3776 shadow_label (name)
3777      tree name;
3778 {
3779   register tree decl = IDENTIFIER_LABEL_VALUE (name);
3780
3781   if (decl != NULL_TREE)
3782     {
3783       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
3784       SET_IDENTIFIER_LABEL_VALUE (name, NULL_TREE);
3785       SET_IDENTIFIER_LABEL_VALUE (decl, NULL_TREE);
3786     }
3787
3788   return lookup_label (name);
3789 }
3790
3791 /* Define a label, specifying the location in the source file.
3792    Return the LABEL_DECL node for the label, if the definition is valid.
3793    Otherwise return 0.  */
3794
3795 tree
3796 define_label (filename, line, name)
3797      char *filename;
3798      int line;
3799      tree name;
3800 {
3801   tree decl;
3802
3803   if (minimal_parse_mode)
3804     {
3805       push_obstacks (&permanent_obstack, &permanent_obstack);
3806       decl = build_decl (LABEL_DECL, name, void_type_node);
3807       pop_obstacks ();
3808       DECL_SOURCE_LINE (decl) = line;
3809       DECL_SOURCE_FILE (decl) = filename;
3810       add_tree (decl);
3811       return decl;
3812     }
3813
3814   decl = lookup_label (name);
3815
3816   /* After labels, make any new cleanups go into their
3817      own new (temporary) binding contour.  */
3818   current_binding_level->more_cleanups_ok = 0;
3819
3820   /* If label with this name is known from an outer context, shadow it.  */
3821   if (decl != NULL_TREE && DECL_CONTEXT (decl) != current_function_decl)
3822     {
3823       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
3824       SET_IDENTIFIER_LABEL_VALUE (name, NULL_TREE);
3825       decl = lookup_label (name);
3826     }
3827
3828   if (name == get_identifier ("wchar_t"))
3829     cp_pedwarn ("label named wchar_t");
3830
3831   if (DECL_INITIAL (decl) != NULL_TREE)
3832     {
3833       cp_error ("duplicate label `%D'", decl);
3834       return 0;
3835     }
3836   else
3837     {
3838       struct named_label_list *uses, *prev;
3839       int identified = 0;
3840
3841       /* Mark label as having been defined.  */
3842       DECL_INITIAL (decl) = error_mark_node;
3843       /* Say where in the source.  */
3844       DECL_SOURCE_FILE (decl) = filename;
3845       DECL_SOURCE_LINE (decl) = line;
3846
3847       prev = NULL;
3848       uses = named_label_uses;
3849       while (uses != NULL)
3850         if (uses->label_decl == decl)
3851           {
3852             struct binding_level *b = current_binding_level;
3853             while (b)
3854               {
3855                 tree new_decls = b->names;
3856                 tree old_decls = (b == uses->binding_level)
3857                                   ? uses->names_in_scope : NULL_TREE;
3858                 while (new_decls != old_decls)
3859                   {
3860                     if (TREE_CODE (new_decls) == VAR_DECL
3861                         /* Don't complain about crossing initialization
3862                            of internal entities.  They can't be accessed,
3863                            and they should be cleaned up
3864                            by the time we get to the label.  */
3865                         && ! DECL_ARTIFICIAL (new_decls)
3866                         && ((DECL_INITIAL (new_decls) != NULL_TREE
3867                              && DECL_INITIAL (new_decls) != error_mark_node)
3868                             || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (new_decls))))
3869                       {
3870                         if (! identified) 
3871                           {
3872                             cp_error ("jump to label `%D'", decl);
3873                             error_with_file_and_line (uses->filename_o_goto,
3874                                                       uses->lineno_o_goto,
3875                                                       "  from here");
3876                             identified = 1;
3877                         }
3878                         cp_error_at ("  crosses initialization of `%#D'",
3879                                      new_decls);
3880                       }
3881                     new_decls = TREE_CHAIN (new_decls);
3882                   }
3883                 if (b == uses->binding_level)
3884                   break;
3885                 b = b->level_chain;
3886               }
3887
3888             if (prev != NULL)
3889               prev->next = uses->next;
3890             else
3891               named_label_uses = uses->next;
3892
3893             uses = uses->next;
3894           }
3895         else
3896           {
3897             prev = uses;
3898             uses = uses->next;
3899           }
3900       current_function_return_value = NULL_TREE;
3901       return decl;
3902     }
3903 }
3904
3905 struct cp_switch
3906 {
3907   struct binding_level *level;
3908   struct cp_switch *next;
3909 };
3910
3911 static struct cp_switch *switch_stack;
3912
3913 void
3914 push_switch ()
3915 {
3916   struct cp_switch *p
3917     = (struct cp_switch *) oballoc (sizeof (struct cp_switch));
3918   p->level = current_binding_level;
3919   p->next = switch_stack;
3920   switch_stack = p;
3921 }
3922
3923 void
3924 pop_switch ()
3925 {
3926   switch_stack = switch_stack->next;
3927 }
3928
3929 /* Same, but for CASE labels.  If DECL is NULL_TREE, it's the default.  */
3930 /* XXX Note decl is never actually used. (bpk) */
3931
3932 void
3933 define_case_label (decl)
3934      tree decl;
3935 {
3936   tree cleanup = last_cleanup_this_contour ();
3937   struct binding_level *b = current_binding_level;
3938   int identified = 0;
3939
3940   if (cleanup)
3941     {
3942       static int explained = 0;
3943       cp_warning_at ("destructor needed for `%#D'", TREE_PURPOSE (cleanup));
3944       warning ("where case label appears here");
3945       if (!explained)
3946         {
3947           warning ("(enclose actions of previous case statements requiring");
3948           warning ("destructors in their own binding contours.)");
3949           explained = 1;
3950         }
3951     }
3952
3953   for (; b && b != switch_stack->level; b = b->level_chain)
3954     {
3955       tree new_decls = b->names;
3956       for (; new_decls; new_decls = TREE_CHAIN (new_decls))
3957         {
3958           if (TREE_CODE (new_decls) == VAR_DECL
3959               /* Don't complain about crossing initialization
3960                  of internal entities.  They can't be accessed,
3961                  and they should be cleaned up
3962                  by the time we get to the label.  */
3963               && ! DECL_ARTIFICIAL (new_decls)
3964               && ((DECL_INITIAL (new_decls) != NULL_TREE
3965                    && DECL_INITIAL (new_decls) != error_mark_node)
3966                   || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (new_decls))))
3967             {
3968               if (! identified)
3969                 error ("jump to case label");
3970               identified = 1;
3971               cp_error_at ("  crosses initialization of `%#D'",
3972                            new_decls);
3973             }
3974         }
3975     }
3976
3977   /* After labels, make any new cleanups go into their
3978      own new (temporary) binding contour.  */
3979
3980   current_binding_level->more_cleanups_ok = 0;
3981   current_function_return_value = NULL_TREE;
3982 }
3983 \f
3984 /* Return the list of declarations of the current level.
3985    Note that this list is in reverse order unless/until
3986    you nreverse it; and when you do nreverse it, you must
3987    store the result back using `storedecls' or you will lose.  */
3988
3989 tree
3990 getdecls ()
3991 {
3992   return current_binding_level->names;
3993 }
3994
3995 /* Return the list of type-tags (for structs, etc) of the current level.  */
3996
3997 tree
3998 gettags ()
3999 {
4000   return current_binding_level->tags;
4001 }
4002
4003 /* Store the list of declarations of the current level.
4004    This is done for the parameter declarations of a function being defined,
4005    after they are modified in the light of any missing parameters.  */
4006
4007 static void
4008 storedecls (decls)
4009      tree decls;
4010 {
4011   current_binding_level->names = decls;
4012 }
4013
4014 /* Similarly, store the list of tags of the current level.  */
4015
4016 static void
4017 storetags (tags)
4018      tree tags;
4019 {
4020   current_binding_level->tags = tags;
4021 }
4022 \f
4023 /* Given NAME, an IDENTIFIER_NODE,
4024    return the structure (or union or enum) definition for that name.
4025    Searches binding levels from BINDING_LEVEL up to the global level.
4026    If THISLEVEL_ONLY is nonzero, searches only the specified context
4027    (but skips any tag-transparent contexts to find one that is
4028    meaningful for tags).
4029    FORM says which kind of type the caller wants;
4030    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
4031    If the wrong kind of type is found, and it's not a template, an error is
4032    reported.  */
4033
4034 static tree
4035 lookup_tag (form, name, binding_level, thislevel_only)
4036      enum tree_code form;
4037      tree name;
4038      struct binding_level *binding_level;
4039      int thislevel_only;
4040 {
4041   register struct binding_level *level;
4042
4043   for (level = binding_level; level; level = level->level_chain)
4044     {
4045       register tree tail;
4046       if (ANON_AGGRNAME_P (name))
4047         for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
4048           {
4049             /* There's no need for error checking here, because
4050                anon names are unique throughout the compilation.  */
4051             if (TYPE_IDENTIFIER (TREE_VALUE (tail)) == name)
4052               return TREE_VALUE (tail);
4053           }
4054       else
4055         for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
4056           {
4057             if (TREE_PURPOSE (tail) == name)
4058               {
4059                 enum tree_code code = TREE_CODE (TREE_VALUE (tail));
4060                 /* Should tighten this up; it'll probably permit
4061                    UNION_TYPE and a struct template, for example.  */
4062                 if (code != form
4063                     && !(form != ENUMERAL_TYPE && code == TEMPLATE_DECL))
4064                   {
4065                     /* Definition isn't the kind we were looking for.  */
4066                     cp_error ("`%#D' redeclared as %C", TREE_VALUE (tail),
4067                               form);
4068                     return NULL_TREE;
4069                   }
4070                 return TREE_VALUE (tail);
4071               }
4072           }
4073       if (thislevel_only && ! level->tag_transparent)
4074         {
4075           if (level->pseudo_global)
4076             {
4077               tree t = IDENTIFIER_GLOBAL_VALUE (name);
4078               if (t && TREE_CODE (t) == TEMPLATE_DECL
4079                   && TREE_CODE (DECL_TEMPLATE_RESULT (t)) == TYPE_DECL)
4080                 return TREE_TYPE (t);
4081             }
4082           return NULL_TREE;
4083         }
4084       if (current_class_type && level->level_chain == global_binding_level)
4085         {
4086           /* Try looking in this class's tags before heading into
4087              global binding level.  */
4088           tree context = current_class_type;
4089           while (context)
4090             {
4091               switch (TREE_CODE_CLASS (TREE_CODE (context)))
4092                 {
4093                 tree these_tags;
4094                 case 't':
4095                     these_tags = CLASSTYPE_TAGS (context);
4096                     if (ANON_AGGRNAME_P (name))
4097                       while (these_tags)
4098                         {
4099                           if (TYPE_IDENTIFIER (TREE_VALUE (these_tags))
4100                               == name)
4101                             return TREE_VALUE (tail);
4102                           these_tags = TREE_CHAIN (these_tags);
4103                         }
4104                     else
4105                       while (these_tags)
4106                         {
4107                           if (TREE_PURPOSE (these_tags) == name)
4108                             {
4109                               if (TREE_CODE (TREE_VALUE (these_tags)) != form)
4110                                 {
4111                                   cp_error ("`%#D' redeclared as %C in class scope",
4112                                             TREE_VALUE (tail), form);
4113                                   return NULL_TREE;
4114                                 }
4115                               return TREE_VALUE (tail);
4116                             }
4117                           these_tags = TREE_CHAIN (these_tags);
4118                         }
4119                     /* If this type is not yet complete, then don't
4120                        look at its context.  */
4121                     if (TYPE_SIZE (context) == NULL_TREE)
4122                       goto no_context;
4123                     /* Go to next enclosing type, if any.  */
4124                     context = DECL_CONTEXT (TYPE_NAME (context));
4125                     break;
4126                 case 'd':
4127                     context = DECL_CONTEXT (context);
4128                     break;
4129                 default:
4130                     my_friendly_abort (10);
4131                 }
4132               continue;
4133               no_context:
4134               break;
4135             }
4136         }
4137     }
4138   return NULL_TREE;
4139 }
4140
4141 void
4142 set_current_level_tags_transparency (tags_transparent)
4143      int tags_transparent;
4144 {
4145   current_binding_level->tag_transparent = tags_transparent;
4146 }
4147
4148 /* Given a type, find the tag that was defined for it and return the tag name.
4149    Otherwise return 0.  However, the value can never be 0
4150    in the cases in which this is used.
4151
4152    C++: If NAME is non-zero, this is the new name to install.  This is
4153    done when replacing anonymous tags with real tag names.  */
4154
4155 static tree
4156 lookup_tag_reverse (type, name)
4157      tree type;
4158      tree name;
4159 {
4160   register struct binding_level *level;
4161
4162   for (level = current_binding_level; level; level = level->level_chain)
4163     {
4164       register tree tail;
4165       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
4166         {
4167           if (TREE_VALUE (tail) == type)
4168             {
4169               if (name)
4170                 TREE_PURPOSE (tail) = name;
4171               return TREE_PURPOSE (tail);
4172             }
4173         }
4174     }
4175   return NULL_TREE;
4176 }
4177
4178 /* Given type TYPE which was not declared in C++ language context,
4179    attempt to find a name by which it is referred.  */
4180
4181 tree
4182 typedecl_for_tag (tag)
4183      tree tag;
4184 {
4185   struct binding_level *b = current_binding_level;
4186
4187   if (TREE_CODE (TYPE_NAME (tag)) == TYPE_DECL)
4188     return TYPE_NAME (tag);
4189
4190   while (b)
4191     {
4192       tree decls = b->names;
4193       while (decls)
4194         {
4195           if (TREE_CODE (decls) == TYPE_DECL && TREE_TYPE (decls) == tag)
4196             break;
4197           decls = TREE_CHAIN (decls);
4198         }
4199       if (decls)
4200         return decls;
4201       b = b->level_chain;
4202     }
4203   return NULL_TREE;
4204 }
4205 \f
4206 /* Lookup TYPE in CONTEXT (a chain of nested types or a FUNCTION_DECL).
4207    Return the type value, or NULL_TREE if not found.  */
4208
4209 static tree
4210 lookup_nested_type (type, context)
4211      tree type;
4212      tree context;
4213 {
4214   if (context == NULL_TREE)
4215     return NULL_TREE;
4216   while (context)
4217     {
4218       switch (TREE_CODE (context))
4219         {
4220         case TYPE_DECL:
4221           {
4222             tree ctype = TREE_TYPE (context);
4223             tree match = value_member (type, CLASSTYPE_TAGS (ctype));
4224             if (match)
4225               return TREE_VALUE (match);
4226             context = DECL_CONTEXT (context);
4227
4228             /* When we have a nested class whose member functions have
4229                local types (e.g., a set of enums), we'll arrive here
4230                with the DECL_CONTEXT as the actual RECORD_TYPE node for
4231                the enclosing class.  Instead, we want to make sure we
4232                come back in here with the TYPE_DECL, not the RECORD_TYPE.  */
4233             if (context && TREE_CODE (context) == RECORD_TYPE)
4234               context = TREE_CHAIN (context);
4235           }
4236           break;
4237         case FUNCTION_DECL:
4238           if (TYPE_NAME (type) && TYPE_IDENTIFIER (type))
4239             return lookup_name (TYPE_IDENTIFIER (type), 1);
4240           return NULL_TREE;
4241         default:
4242           my_friendly_abort (12);
4243         }
4244     }
4245   return NULL_TREE;
4246 }
4247
4248 /* Look up NAME in the NAMESPACE.  */
4249
4250 tree
4251 lookup_namespace_name (namespace, name)
4252      tree namespace, name;
4253 {
4254   struct binding_level *b = (struct binding_level *)NAMESPACE_LEVEL (namespace);
4255   tree x = NULL_TREE;
4256
4257 #if 1
4258   /* This searches just one level.  */
4259   if (b)
4260     {
4261       for (x = b->names; x; x = TREE_CHAIN (x))
4262         if (DECL_NAME (x) == name || DECL_ASSEMBLER_NAME (x) == name)
4263           break;
4264     }
4265 #else
4266   /* This searches all levels.  */
4267   for (; b && !x; b = b->level_chain)
4268     {
4269       for (x = b->names; x; x = TREE_CHAIN (x))
4270         if (DECL_NAME (x) == name || DECL_ASSEMBLER_NAME (x) == name)
4271           break;
4272     }
4273 #endif
4274   return x;
4275 }
4276
4277 tree
4278 make_typename_type (context, name)
4279      tree context, name;
4280 {
4281   tree t, d;
4282
4283   if (TREE_CODE (name) == TYPE_DECL)
4284     name = DECL_NAME (name);
4285   else if (TREE_CODE (name) != IDENTIFIER_NODE)
4286     my_friendly_abort (2000);
4287
4288   if (! processing_template_decl
4289       || ! uses_template_parms (context)
4290       || context == current_class_type)
4291     {
4292       t = lookup_field (context, name, 0, 1);
4293       if (t == NULL_TREE)
4294         {
4295           cp_error ("no type named `%#T' in `%#T'", name, context);
4296           return error_mark_node;
4297         }
4298       return TREE_TYPE (t);
4299     }
4300
4301   if (processing_template_decl)
4302     push_obstacks (&permanent_obstack, &permanent_obstack);
4303   t = make_lang_type (TYPENAME_TYPE);
4304   d = build_decl (TYPE_DECL, name, t);
4305   if (processing_template_decl)
4306     pop_obstacks ();
4307
4308   TYPE_CONTEXT (t) = context;
4309   TYPE_MAIN_DECL (TREE_TYPE (d)) = d;
4310   DECL_CONTEXT (d) = context;
4311   CLASSTYPE_GOT_SEMICOLON (t) = 1;
4312
4313   return t;
4314 }
4315
4316 /* Look up NAME in the current binding level and its superiors in the
4317    namespace of variables, functions and typedefs.  Return a ..._DECL
4318    node of some kind representing its definition if there is only one
4319    such declaration, or return a TREE_LIST with all the overloaded
4320    definitions if there are many, or return 0 if it is undefined.
4321
4322    If PREFER_TYPE is > 0, we prefer TYPE_DECLs.
4323    If PREFER_TYPE is -2, we're being called from yylex(). (UGLY)
4324    Otherwise we prefer non-TYPE_DECLs.  */
4325
4326 tree
4327 lookup_name_real (name, prefer_type, nonclass)
4328      tree name;
4329      int prefer_type, nonclass;
4330 {
4331   register tree val;
4332   int yylex = 0;
4333   tree from_obj = NULL_TREE;
4334   tree locval, classval;
4335
4336   if (prefer_type == -2)
4337     {
4338       extern int looking_for_typename;
4339       tree type = NULL_TREE;
4340
4341       yylex = 1;
4342       prefer_type = looking_for_typename;
4343
4344       if (got_scope)
4345         type = got_scope;
4346       else if (got_object != error_mark_node)
4347         type = got_object;
4348       
4349       if (type)
4350         {
4351           if (type == error_mark_node)
4352             return error_mark_node;
4353           if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
4354             type = TREE_TYPE (type);
4355
4356           type = complete_type (type);
4357
4358           if (type == void_type_node)
4359             val = IDENTIFIER_GLOBAL_VALUE (name);
4360           else if (TREE_CODE (type) == NAMESPACE_DECL)
4361             {
4362               val = lookup_namespace_name (type, name);
4363             }
4364           else if (! IS_AGGR_TYPE (type)
4365                    || TREE_CODE (type) == TEMPLATE_TYPE_PARM
4366                    || TREE_CODE (type) == TYPENAME_TYPE)
4367             /* Someone else will give an error about this if needed.  */
4368             val = NULL_TREE;
4369           else if (TYPE_BEING_DEFINED (type))
4370             {
4371               val = IDENTIFIER_CLASS_VALUE (name);
4372               if (val && DECL_CONTEXT (val) != type)
4373                 {
4374                   struct binding_level *b = class_binding_level;
4375                   for (val = NULL_TREE; b; b = b->level_chain)
4376                     {
4377                       tree t = purpose_member (name, b->class_shadowed);
4378                       if (t && TREE_VALUE (t)
4379                           && DECL_CONTEXT (TREE_VALUE (t)) == type)
4380                         {
4381                           val = TREE_VALUE (t);
4382                           break;
4383                         }
4384                     }
4385                 }
4386               if (val == NULL_TREE)
4387                 val = lookup_field (type, name, 0, 1);
4388             }
4389           else if (type == current_class_type)
4390             val = IDENTIFIER_CLASS_VALUE (name);
4391           else
4392             val = lookup_field (type, name, 0, prefer_type);
4393         }
4394       else
4395         val = NULL_TREE;
4396
4397 #if 1
4398       if (got_scope && processing_template_decl
4399           && got_scope != current_class_type
4400           && uses_template_parms (got_scope)
4401           && val && TREE_CODE (val) == TYPE_DECL
4402           && ! DECL_ARTIFICIAL (val))
4403         {
4404           tree t = make_typename_type (got_scope, DECL_NAME (val));
4405           TREE_TYPE (t) = TREE_TYPE (val);
4406           val = TYPE_MAIN_DECL (t);
4407         }
4408 #endif
4409
4410       if (got_scope)
4411         goto done;
4412       else if (got_object && val)
4413         from_obj = val;
4414     }
4415
4416   locval = classval = NULL_TREE;
4417
4418   if (current_binding_level != global_binding_level
4419       && IDENTIFIER_LOCAL_VALUE (name))
4420     locval = IDENTIFIER_LOCAL_VALUE (name);
4421
4422   /* In C++ class fields are between local and global scope,
4423      just before the global scope.  */
4424   if (current_class_type && ! nonclass)
4425     {
4426       classval = IDENTIFIER_CLASS_VALUE (name);
4427       if (classval == NULL_TREE && TYPE_BEING_DEFINED (current_class_type))
4428         /* Try to find values from base classes if we are presently
4429            defining a type.  We are presently only interested in
4430            TYPE_DECLs.  */
4431         classval = lookup_field (current_class_type, name, 0, 1);
4432
4433       /* yylex() calls this with -2, since we should never start digging for
4434          the nested name at the point where we haven't even, for example,
4435          created the COMPONENT_REF or anything like that.  */
4436       if (classval == NULL_TREE)
4437         classval = lookup_nested_field (name, ! yylex);
4438     }
4439
4440   if (locval && classval)
4441     {
4442       if (current_scope () == current_function_decl
4443           && ! hack_decl_function_context (current_function_decl))
4444         /* Not in a nested function.  */
4445         val = locval;
4446       else
4447         {
4448           /* This is incredibly horrible.  The whole concept of
4449              IDENTIFIER_LOCAL_VALUE / IDENTIFIER_CLASS_VALUE /
4450              IDENTIFIER_GLOBAL_VALUE needs to be scrapped for local
4451              classes.  */
4452           tree lctx = hack_decl_function_context (locval);
4453           tree cctx = hack_decl_function_context (classval);
4454
4455           if (lctx == current_scope ())
4456             val = locval;
4457           else if (lctx == cctx)
4458             val = classval;
4459           else
4460             /* I don't know which is right; let's just guess for now.  */
4461             val = locval;
4462         }
4463     }
4464   else if (locval)
4465     val = locval;
4466   else if (classval)
4467     val = classval;
4468   else
4469     val = IDENTIFIER_GLOBAL_VALUE (name);
4470
4471  done:
4472   if (val)
4473     {
4474       /* This should only warn about types used in qualified-ids.  */
4475       if (from_obj && from_obj != val)
4476         {
4477           if (looking_for_typename && TREE_CODE (from_obj) == TYPE_DECL
4478               && TREE_CODE (val) == TYPE_DECL
4479               && TREE_TYPE (from_obj) != TREE_TYPE (val))
4480             {
4481               cp_pedwarn ("lookup of `%D' in the scope of `%#T' (`%#T')",
4482                           name, got_object, TREE_TYPE (from_obj));
4483               cp_pedwarn ("  does not match lookup in the current scope (`%#T')",
4484                           TREE_TYPE (val));
4485             }
4486
4487           val = from_obj;
4488         }
4489
4490       if ((TREE_CODE (val) == TEMPLATE_DECL && looking_for_template)
4491           || TREE_CODE (val) == TYPE_DECL || prefer_type <= 0)
4492         ;
4493       else if (IDENTIFIER_HAS_TYPE_VALUE (name))
4494         val = TYPE_NAME (IDENTIFIER_TYPE_VALUE (name));
4495       else if (TREE_TYPE (val) == error_mark_node)
4496         val = error_mark_node;
4497     }
4498   else if (from_obj)
4499     val = from_obj;
4500
4501   return val;
4502 }
4503
4504 tree
4505 lookup_name_nonclass (name)
4506      tree name;
4507 {
4508   return lookup_name_real (name, 0, 1);
4509 }
4510
4511 tree
4512 lookup_name (name, prefer_type)
4513      tree name;
4514      int prefer_type;
4515 {
4516   return lookup_name_real (name, prefer_type, 0);
4517 }
4518
4519 /* Similar to `lookup_name' but look only at current binding level.  */
4520
4521 tree
4522 lookup_name_current_level (name)
4523      tree name;
4524 {
4525   register tree t = NULL_TREE;
4526
4527   if (current_binding_level == global_binding_level)
4528     {
4529       t = IDENTIFIER_GLOBAL_VALUE (name);
4530
4531       /* extern "C" function() */
4532       if (t != NULL_TREE && TREE_CODE (t) == TREE_LIST)
4533         t = TREE_VALUE (t);
4534     }
4535   else if (IDENTIFIER_LOCAL_VALUE (name) != NULL_TREE)
4536     {
4537       struct binding_level *b = current_binding_level;
4538       while (1)
4539         {
4540           for (t = b->names; t; t = TREE_CHAIN (t))
4541             if (DECL_NAME (t) == name || DECL_ASSEMBLER_NAME (t) == name)
4542               goto out;
4543           if (b->keep == 2)
4544             b = b->level_chain;
4545           else
4546             break;
4547         }
4548     out:
4549       ;
4550     }
4551
4552   return t;
4553 }
4554 \f
4555 /* Arrange for the user to get a source line number, even when the
4556    compiler is going down in flames, so that she at least has a
4557    chance of working around problems in the compiler.  We used to
4558    call error(), but that let the segmentation fault continue
4559    through; now, it's much more passive by asking them to send the
4560    maintainers mail about the problem.  */
4561
4562 static void
4563 signal_catch (sig)
4564      int sig;
4565 {
4566   signal (SIGSEGV, SIG_DFL);
4567 #ifdef SIGIOT
4568   signal (SIGIOT, SIG_DFL);
4569 #endif
4570 #ifdef SIGILL
4571   signal (SIGILL, SIG_DFL);
4572 #endif
4573 #ifdef SIGABRT
4574   signal (SIGABRT, SIG_DFL);
4575 #endif
4576 #ifdef SIGBUS
4577   signal (SIGBUS, SIG_DFL);
4578 #endif
4579   my_friendly_abort (0);
4580 }
4581
4582 /* Array for holding types considered "built-in".  These types
4583    are output in the module in which `main' is defined.  */
4584 static tree *builtin_type_tdescs_arr;
4585 static int builtin_type_tdescs_len, builtin_type_tdescs_max;
4586
4587 /* Push the declarations of builtin types into the namespace.
4588    RID_INDEX, if < RID_MAX is the index of the builtin type
4589    in the array RID_POINTERS.  NAME is the name used when looking
4590    up the builtin type.  TYPE is the _TYPE node for the builtin type.  */
4591
4592 static void
4593 record_builtin_type (rid_index, name, type)
4594      enum rid rid_index;
4595      char *name;
4596      tree type;
4597 {
4598   tree rname = NULL_TREE, tname = NULL_TREE;
4599   tree tdecl;
4600
4601   if ((int) rid_index < (int) RID_MAX)
4602     rname = ridpointers[(int) rid_index];
4603   if (name)
4604     tname = get_identifier (name);
4605
4606   TYPE_BUILT_IN (type) = 1;
4607   
4608   if (tname)
4609     {
4610       tdecl = pushdecl (build_decl (TYPE_DECL, tname, type));
4611       set_identifier_type_value (tname, NULL_TREE);
4612       if ((int) rid_index < (int) RID_MAX)
4613         IDENTIFIER_GLOBAL_VALUE (tname) = tdecl;
4614     }
4615   if (rname != NULL_TREE)
4616     {
4617       if (tname != NULL_TREE)
4618         {
4619           set_identifier_type_value (rname, NULL_TREE);
4620           IDENTIFIER_GLOBAL_VALUE (rname) = tdecl;
4621         }
4622       else
4623         {
4624           tdecl = pushdecl (build_decl (TYPE_DECL, rname, type));
4625           set_identifier_type_value (rname, NULL_TREE);
4626         }
4627     }
4628 }
4629
4630 /* Push overloaded decl, in global scope, with one argument so it
4631    can be used as a callback from define_function.  */
4632
4633 static void
4634 push_overloaded_decl_1 (x)
4635      tree x;
4636 {
4637   push_overloaded_decl (x, 0);
4638 }
4639
4640 #ifdef __GNUC__
4641 __inline
4642 #endif
4643 tree
4644 auto_function (name, type, code)
4645      tree name, type;
4646      enum built_in_function code;
4647 {
4648   return define_function
4649     (IDENTIFIER_POINTER (name), type, code, (void (*)())push_overloaded_decl_1,
4650      IDENTIFIER_POINTER (build_decl_overload (name, TYPE_ARG_TYPES (type),
4651                                               0)));
4652 }
4653
4654 /* Create the predefined scalar types of C,
4655    and some nodes representing standard constants (0, 1, (void *)0).
4656    Initialize the global binding level.
4657    Make definitions for built-in primitive functions.  */
4658
4659 void
4660 init_decl_processing ()
4661 {
4662   tree decl;
4663   register tree endlink, int_endlink, double_endlink;
4664   tree fields[20];
4665   /* Data type of memcpy.  */
4666   tree memcpy_ftype, strlen_ftype;
4667   int wchar_type_size;
4668   tree temp;
4669   tree array_domain_type;
4670   extern int flag_strict_prototype;
4671   tree vb_off_identifier;
4672   /* Function type `char *(char *, char *)' and similar ones */
4673   tree string_ftype_ptr_ptr, int_ftype_string_string;
4674
4675   /* Have to make these distinct before we try using them.  */
4676   lang_name_cplusplus = get_identifier ("C++");
4677   lang_name_c = get_identifier ("C");
4678
4679   if (flag_strict_prototype == 2)
4680     {
4681       if (pedantic)
4682         strict_prototypes_lang_c = strict_prototypes_lang_cplusplus;
4683     }
4684   else
4685     strict_prototypes_lang_c = flag_strict_prototype;
4686
4687   /* Initially, C.  */
4688   current_lang_name = lang_name_c;
4689
4690   current_function_decl = NULL_TREE;
4691   named_labels = NULL_TREE;
4692   named_label_uses = NULL;
4693   current_binding_level = NULL_BINDING_LEVEL;
4694   free_binding_level = NULL_BINDING_LEVEL;
4695
4696   /* Because most segmentation signals can be traced back into user
4697      code, catch them and at least give the user a chance of working
4698      around compiler bugs.  */
4699   signal (SIGSEGV, signal_catch);
4700
4701   /* We will also catch aborts in the back-end through signal_catch and
4702      give the user a chance to see where the error might be, and to defeat
4703      aborts in the back-end when there have been errors previously in their
4704      code.  */
4705 #ifdef SIGIOT
4706   signal (SIGIOT, signal_catch);
4707 #endif
4708 #ifdef SIGILL
4709   signal (SIGILL, signal_catch);
4710 #endif
4711 #ifdef SIGABRT
4712   signal (SIGABRT, signal_catch);
4713 #endif
4714 #ifdef SIGBUS
4715   signal (SIGBUS, signal_catch);
4716 #endif
4717
4718   gcc_obstack_init (&decl_obstack);
4719
4720   /* Must lay these out before anything else gets laid out.  */
4721   error_mark_node = make_node (ERROR_MARK);
4722   TREE_PERMANENT (error_mark_node) = 1;
4723   TREE_TYPE (error_mark_node) = error_mark_node;
4724   error_mark_list = build_tree_list (error_mark_node, error_mark_node);
4725   TREE_TYPE (error_mark_list) = error_mark_node;
4726
4727   /* Make the binding_level structure for global names.  */
4728   pushlevel (0);
4729   global_binding_level = current_binding_level;
4730
4731   this_identifier = get_identifier (THIS_NAME);
4732   in_charge_identifier = get_identifier (IN_CHARGE_NAME);
4733   ctor_identifier = get_identifier (CTOR_NAME);
4734   dtor_identifier = get_identifier (DTOR_NAME);
4735   pfn_identifier = get_identifier (VTABLE_PFN_NAME);
4736   index_identifier = get_identifier (VTABLE_INDEX_NAME);
4737   delta_identifier = get_identifier (VTABLE_DELTA_NAME);
4738   delta2_identifier = get_identifier (VTABLE_DELTA2_NAME);
4739   pfn_or_delta2_identifier = get_identifier ("__pfn_or_delta2");
4740   if (flag_handle_signatures)
4741     {
4742       tag_identifier = get_identifier (SIGTABLE_TAG_NAME);
4743       vb_off_identifier = get_identifier (SIGTABLE_VB_OFF_NAME);
4744       vt_off_identifier = get_identifier (SIGTABLE_VT_OFF_NAME);
4745     }
4746
4747   /* Define `int' and `char' first so that dbx will output them first.  */
4748
4749   integer_type_node = make_signed_type (INT_TYPE_SIZE);
4750   record_builtin_type (RID_INT, NULL_PTR, integer_type_node);
4751
4752   /* Define `char', which is like either `signed char' or `unsigned char'
4753      but not the same as either.  */
4754
4755   char_type_node =
4756     (flag_signed_char
4757      ? make_signed_type (CHAR_TYPE_SIZE)
4758      : make_unsigned_type (CHAR_TYPE_SIZE));
4759   record_builtin_type (RID_CHAR, "char", char_type_node);
4760
4761   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
4762   record_builtin_type (RID_LONG, "long int", long_integer_type_node);
4763
4764   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
4765   record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
4766
4767   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
4768   record_builtin_type (RID_MAX, "long unsigned int", long_unsigned_type_node);
4769   record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
4770
4771   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
4772   record_builtin_type (RID_MAX, "long long int", long_long_integer_type_node);
4773
4774   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
4775   record_builtin_type (RID_MAX, "long long unsigned int",
4776                        long_long_unsigned_type_node);
4777   record_builtin_type (RID_MAX, "long long unsigned",
4778                        long_long_unsigned_type_node);
4779
4780   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
4781   record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
4782   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
4783   record_builtin_type (RID_MAX, "short unsigned int", short_unsigned_type_node);
4784   record_builtin_type (RID_MAX, "unsigned short", short_unsigned_type_node);
4785
4786   /* `unsigned long' is the standard type for sizeof.
4787      Note that stddef.h uses `unsigned long',
4788      and this must agree, even of long and int are the same size.  */
4789   sizetype
4790     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE)));
4791
4792   ptrdiff_type_node
4793     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
4794
4795   TREE_TYPE (TYPE_SIZE (integer_type_node)) = sizetype;
4796   TREE_TYPE (TYPE_SIZE (char_type_node)) = sizetype;
4797   TREE_TYPE (TYPE_SIZE (unsigned_type_node)) = sizetype;
4798   TREE_TYPE (TYPE_SIZE (long_unsigned_type_node)) = sizetype;
4799   TREE_TYPE (TYPE_SIZE (long_integer_type_node)) = sizetype;
4800   TREE_TYPE (TYPE_SIZE (long_long_integer_type_node)) = sizetype;
4801   TREE_TYPE (TYPE_SIZE (long_long_unsigned_type_node)) = sizetype;
4802   TREE_TYPE (TYPE_SIZE (short_integer_type_node)) = sizetype;
4803   TREE_TYPE (TYPE_SIZE (short_unsigned_type_node)) = sizetype;
4804
4805   /* Define both `signed char' and `unsigned char'.  */
4806   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
4807   record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
4808   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
4809   record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
4810
4811   /* These are types that type_for_size and type_for_mode use.  */
4812   intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
4813   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
4814   intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
4815   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
4816   intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
4817   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
4818   intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
4819   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
4820   unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
4821   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
4822   unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
4823   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
4824   unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
4825   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
4826   unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
4827   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
4828
4829   float_type_node = make_node (REAL_TYPE);
4830   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
4831   record_builtin_type (RID_FLOAT, NULL_PTR, float_type_node);
4832   layout_type (float_type_node);
4833
4834   double_type_node = make_node (REAL_TYPE);
4835   if (flag_short_double)
4836     TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
4837   else
4838     TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
4839   record_builtin_type (RID_DOUBLE, NULL_PTR, double_type_node);
4840   layout_type (double_type_node);
4841
4842   long_double_type_node = make_node (REAL_TYPE);
4843   TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
4844   record_builtin_type (RID_MAX, "long double", long_double_type_node);
4845   layout_type (long_double_type_node);
4846
4847   integer_zero_node = build_int_2 (0, 0);
4848   TREE_TYPE (integer_zero_node) = integer_type_node;
4849   integer_one_node = build_int_2 (1, 0);
4850   TREE_TYPE (integer_one_node) = integer_type_node;
4851   integer_two_node = build_int_2 (2, 0);
4852   TREE_TYPE (integer_two_node) = integer_type_node;
4853   integer_three_node = build_int_2 (3, 0);
4854   TREE_TYPE (integer_three_node) = integer_type_node;
4855
4856   boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
4857   TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
4858   record_builtin_type (RID_BOOL, "bool", boolean_type_node);
4859   boolean_false_node = build_int_2 (0, 0);
4860   TREE_TYPE (boolean_false_node) = boolean_type_node;
4861   boolean_true_node = build_int_2 (1, 0);
4862   TREE_TYPE (boolean_true_node) = boolean_type_node;
4863
4864   /* These are needed by stor-layout.c.  */
4865   size_zero_node = size_int (0);
4866   size_one_node = size_int (1);
4867
4868   signed_size_zero_node = build_int_2 (0, 0);
4869   TREE_TYPE (signed_size_zero_node) = make_signed_type (TYPE_PRECISION (sizetype));
4870
4871   void_type_node = make_node (VOID_TYPE);
4872   record_builtin_type (RID_VOID, NULL_PTR, void_type_node);
4873   layout_type (void_type_node); /* Uses integer_zero_node.  */
4874   void_list_node = build_tree_list (NULL_TREE, void_type_node);
4875   TREE_PARMLIST (void_list_node) = 1;
4876
4877   null_pointer_node = build_int_2 (0, 0);
4878   TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
4879   layout_type (TREE_TYPE (null_pointer_node));
4880      
4881   if (flag_ansi)
4882     TREE_TYPE (null_node) = type_for_size (POINTER_SIZE, 0);
4883   else
4884     TREE_TYPE (null_node) = build_pointer_type (void_type_node);
4885
4886   /* Used for expressions that do nothing, but are not errors.  */
4887   void_zero_node = build_int_2 (0, 0);
4888   TREE_TYPE (void_zero_node) = void_type_node;
4889
4890   string_type_node = build_pointer_type (char_type_node);
4891   const_string_type_node =
4892     build_pointer_type (build_type_variant (char_type_node, 1, 0));
4893 #if 0
4894   record_builtin_type (RID_MAX, NULL_PTR, string_type_node);
4895 #endif
4896
4897   /* Make a type to be the domain of a few array types
4898      whose domains don't really matter.
4899      200 is small enough that it always fits in size_t
4900      and large enough that it can hold most function names for the
4901      initializations of __FUNCTION__ and __PRETTY_FUNCTION__.  */
4902   array_domain_type = build_index_type (build_int_2 (200, 0));
4903
4904   /* make a type for arrays of characters.
4905      With luck nothing will ever really depend on the length of this
4906      array type.  */
4907   char_array_type_node
4908     = build_array_type (char_type_node, array_domain_type);
4909   /* Likewise for arrays of ints.  */
4910   int_array_type_node
4911     = build_array_type (integer_type_node, array_domain_type);
4912
4913   /* This is just some anonymous class type.  Nobody should ever
4914      need to look inside this envelope.  */
4915   class_star_type_node = build_pointer_type (make_lang_type (RECORD_TYPE));
4916
4917   default_function_type
4918     = build_function_type (integer_type_node, NULL_TREE);
4919
4920   ptr_type_node = build_pointer_type (void_type_node);
4921   const_ptr_type_node =
4922     build_pointer_type (build_type_variant (void_type_node, 1, 0));
4923 #if 0
4924   record_builtin_type (RID_MAX, NULL_PTR, ptr_type_node);
4925 #endif
4926   endlink = void_list_node;
4927   int_endlink = tree_cons (NULL_TREE, integer_type_node, endlink);
4928   double_endlink = tree_cons (NULL_TREE, double_type_node, endlink);
4929
4930   float_ftype_float
4931     = build_function_type (float_type_node,
4932                            tree_cons (NULL_TREE, float_type_node, endlink));
4933
4934   double_ftype_double
4935     = build_function_type (double_type_node, double_endlink);
4936
4937   ldouble_ftype_ldouble
4938     = build_function_type (long_double_type_node,
4939                            tree_cons (NULL_TREE, long_double_type_node,
4940                                       endlink));
4941
4942   double_ftype_double_double
4943     = build_function_type (double_type_node,
4944                            tree_cons (NULL_TREE, double_type_node,
4945                                       double_endlink));
4946
4947   int_ftype_int
4948     = build_function_type (integer_type_node, int_endlink);
4949
4950   long_ftype_long
4951     = build_function_type (long_integer_type_node,
4952                            tree_cons (NULL_TREE, long_integer_type_node,
4953                                       endlink));
4954
4955   int_ftype_cptr_cptr_sizet
4956     = build_function_type (integer_type_node,
4957                            tree_cons (NULL_TREE, const_ptr_type_node,
4958                                       tree_cons (NULL_TREE, const_ptr_type_node,
4959                                                  tree_cons (NULL_TREE,
4960                                                             sizetype,
4961                                                             endlink))));
4962
4963   string_ftype_ptr_ptr          /* strcpy prototype */
4964     = build_function_type (string_type_node,
4965                            tree_cons (NULL_TREE, string_type_node,
4966                                       tree_cons (NULL_TREE,
4967                                                  const_string_type_node,
4968                                                  endlink)));
4969
4970   int_ftype_string_string       /* strcmp prototype */
4971     = build_function_type (integer_type_node,
4972                            tree_cons (NULL_TREE, const_string_type_node,
4973                                       tree_cons (NULL_TREE,
4974                                                  const_string_type_node,
4975                                                  endlink)));
4976
4977   strlen_ftype          /* strlen prototype */
4978     = build_function_type (sizetype,
4979                            tree_cons (NULL_TREE, const_string_type_node,
4980                                       endlink));
4981
4982   memcpy_ftype  /* memcpy prototype */
4983     = build_function_type (ptr_type_node,
4984                            tree_cons (NULL_TREE, ptr_type_node,
4985                                       tree_cons (NULL_TREE, const_ptr_type_node,
4986                                                  tree_cons (NULL_TREE,
4987                                                             sizetype,
4988                                                             endlink))));
4989
4990   if (flag_huge_objects)
4991     delta_type_node = long_integer_type_node;
4992   else
4993     delta_type_node = short_integer_type_node;
4994
4995   builtin_function ("__builtin_constant_p", int_ftype_int,
4996                     BUILT_IN_CONSTANT_P, NULL_PTR);
4997
4998   builtin_return_address_fndecl =
4999   builtin_function ("__builtin_return_address",
5000                     build_function_type (ptr_type_node, 
5001                                          tree_cons (NULL_TREE,
5002                                                     unsigned_type_node,
5003                                                     endlink)),
5004                     BUILT_IN_RETURN_ADDRESS, NULL_PTR);
5005
5006   builtin_function ("__builtin_frame_address",
5007                     build_function_type (ptr_type_node, 
5008                                          tree_cons (NULL_TREE,
5009                                                     unsigned_type_node,
5010                                                     endlink)),
5011                     BUILT_IN_FRAME_ADDRESS, NULL_PTR);
5012
5013   builtin_function ("__builtin_alloca",
5014                     build_function_type (ptr_type_node,
5015                                          tree_cons (NULL_TREE,
5016                                                     sizetype,
5017                                                     endlink)),
5018                     BUILT_IN_ALLOCA, "alloca");
5019   builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
5020   /* Define alloca, ffs as builtins.
5021      Declare _exit just to mark it as volatile.  */
5022   if (! flag_no_builtin && !flag_no_nonansi_builtin)
5023     {
5024       temp = builtin_function ("alloca",
5025                                build_function_type (ptr_type_node,
5026                                                     tree_cons (NULL_TREE,
5027                                                                sizetype,
5028                                                                endlink)),
5029                                BUILT_IN_ALLOCA, NULL_PTR);
5030       /* Suppress error if redefined as a non-function.  */
5031       DECL_BUILT_IN_NONANSI (temp) = 1;
5032       temp = builtin_function ("ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
5033       /* Suppress error if redefined as a non-function.  */
5034       DECL_BUILT_IN_NONANSI (temp) = 1;
5035       temp = builtin_function ("_exit", build_function_type (void_type_node,
5036                                                              int_endlink),
5037                                NOT_BUILT_IN, NULL_PTR);
5038       TREE_THIS_VOLATILE (temp) = 1;
5039       TREE_SIDE_EFFECTS (temp) = 1;
5040       /* Suppress error if redefined as a non-function.  */
5041       DECL_BUILT_IN_NONANSI (temp) = 1;
5042     }
5043
5044   builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
5045   builtin_function ("__builtin_fabsf", float_ftype_float, BUILT_IN_FABS,
5046                     NULL_PTR);
5047   builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS,
5048                     NULL_PTR);
5049   builtin_function ("__builtin_fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
5050                     NULL_PTR);
5051   builtin_function ("__builtin_labs", long_ftype_long,
5052                     BUILT_IN_LABS, NULL_PTR);
5053   builtin_function ("__builtin_saveregs",
5054                     build_function_type (ptr_type_node, NULL_TREE),
5055                     BUILT_IN_SAVEREGS, NULL_PTR);
5056   builtin_function ("__builtin_classify_type", default_function_type,
5057                     BUILT_IN_CLASSIFY_TYPE, NULL_PTR);
5058   builtin_function ("__builtin_next_arg",
5059                     build_function_type (ptr_type_node, NULL_TREE),
5060                     BUILT_IN_NEXT_ARG, NULL_PTR);
5061   builtin_function ("__builtin_args_info",
5062                     build_function_type (integer_type_node,
5063                                          tree_cons (NULL_TREE,
5064                                                     integer_type_node,
5065                                                     endlink)),
5066                     BUILT_IN_ARGS_INFO, NULL_PTR);
5067
5068   /* Untyped call and return.  */
5069   builtin_function ("__builtin_apply_args",
5070                     build_function_type (ptr_type_node, NULL_TREE),
5071                     BUILT_IN_APPLY_ARGS, NULL_PTR);
5072
5073   temp = tree_cons (NULL_TREE,
5074                     build_pointer_type (build_function_type (void_type_node,
5075                                                              NULL_TREE)),
5076                     tree_cons (NULL_TREE,
5077                                ptr_type_node,
5078                                tree_cons (NULL_TREE,
5079                                           sizetype,
5080                                           endlink)));
5081   builtin_function ("__builtin_apply",
5082                     build_function_type (ptr_type_node, temp),
5083                     BUILT_IN_APPLY, NULL_PTR);
5084   builtin_function ("__builtin_return",
5085                     build_function_type (void_type_node,
5086                                          tree_cons (NULL_TREE,
5087                                                     ptr_type_node,
5088                                                     endlink)),
5089                     BUILT_IN_RETURN, NULL_PTR);
5090
5091   /* Currently under experimentation.  */
5092   builtin_function ("__builtin_memcpy", memcpy_ftype,
5093                     BUILT_IN_MEMCPY, "memcpy");
5094   builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
5095                     BUILT_IN_MEMCMP, "memcmp");
5096   builtin_function ("__builtin_strcmp", int_ftype_string_string,
5097                     BUILT_IN_STRCMP, "strcmp");
5098   builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
5099                     BUILT_IN_STRCPY, "strcpy");
5100   builtin_function ("__builtin_strlen", strlen_ftype,
5101                     BUILT_IN_STRLEN, "strlen");
5102   builtin_function ("__builtin_sqrtf", float_ftype_float, 
5103                     BUILT_IN_FSQRT, "sqrtf");
5104   builtin_function ("__builtin_fsqrt", double_ftype_double,
5105                     BUILT_IN_FSQRT, NULL_PTR);
5106   builtin_function ("__builtin_sqrtl", ldouble_ftype_ldouble, 
5107                     BUILT_IN_FSQRT, "sqrtl");
5108   builtin_function ("__builtin_sinf", float_ftype_float, 
5109                     BUILT_IN_SIN, "sinf");
5110   builtin_function ("__builtin_sin", double_ftype_double, 
5111                     BUILT_IN_SIN, "sin");
5112   builtin_function ("__builtin_sinl", ldouble_ftype_ldouble, 
5113                     BUILT_IN_SIN, "sinl");
5114   builtin_function ("__builtin_cosf", float_ftype_float, 
5115                     BUILT_IN_COS, "cosf");
5116   builtin_function ("__builtin_cos", double_ftype_double, 
5117                     BUILT_IN_COS, "cos");
5118   builtin_function ("__builtin_cosl", ldouble_ftype_ldouble, 
5119                     BUILT_IN_COS, "cosl");
5120
5121   if (!flag_no_builtin)
5122     {
5123 #if 0 /* These do not work well with libg++.  */
5124       builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
5125       builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, NULL_PTR);
5126       builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, NULL_PTR);
5127 #endif
5128       builtin_function ("fabsf", float_ftype_float, BUILT_IN_FABS, NULL_PTR);
5129       builtin_function ("fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
5130                         NULL_PTR);
5131       builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, NULL_PTR);
5132       builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP,
5133                         NULL_PTR);
5134       builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP,
5135                         NULL_PTR);
5136       builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY,
5137                         NULL_PTR);
5138       builtin_function ("strlen", strlen_ftype, BUILT_IN_STRLEN, NULL_PTR);
5139       builtin_function ("sqrtf", float_ftype_float, BUILT_IN_FSQRT, NULL_PTR);
5140       builtin_function ("sqrt", double_ftype_double, BUILT_IN_FSQRT, NULL_PTR);
5141       builtin_function ("sqrtl", ldouble_ftype_ldouble, BUILT_IN_FSQRT,
5142                         NULL_PTR);
5143       builtin_function ("sinf", float_ftype_float, BUILT_IN_SIN, NULL_PTR);
5144       builtin_function ("sin", double_ftype_double, BUILT_IN_SIN, NULL_PTR);
5145       builtin_function ("sinl", ldouble_ftype_ldouble, BUILT_IN_SIN, NULL_PTR);
5146       builtin_function ("cosf", float_ftype_float, BUILT_IN_COS, NULL_PTR);
5147       builtin_function ("cos", double_ftype_double, BUILT_IN_COS, NULL_PTR);
5148       builtin_function ("cosl", ldouble_ftype_ldouble, BUILT_IN_COS, NULL_PTR);
5149
5150       /* Declare these functions volatile
5151          to avoid spurious "control drops through" warnings.  */
5152       temp = builtin_function ("abort",
5153                                build_function_type (void_type_node, endlink),
5154                                NOT_BUILT_IN, NULL_PTR);
5155       TREE_THIS_VOLATILE (temp) = 1;
5156       TREE_SIDE_EFFECTS (temp) = 1;
5157       /* Well, these are actually ANSI, but we can't set DECL_BUILT_IN on
5158          them...  */
5159       DECL_BUILT_IN_NONANSI (temp) = 1;
5160       temp = builtin_function ("exit", build_function_type (void_type_node,
5161                                                             int_endlink),
5162                                NOT_BUILT_IN, NULL_PTR);
5163       TREE_THIS_VOLATILE (temp) = 1;
5164       TREE_SIDE_EFFECTS (temp) = 1;
5165       DECL_BUILT_IN_NONANSI (temp) = 1;
5166     }
5167
5168 #if 0
5169   /* Support for these has not been written in either expand_builtin
5170      or build_function_call.  */
5171   builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, NULL_PTR);
5172   builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, NULL_PTR);
5173   builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR,
5174                     NULL_PTR);
5175   builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL,
5176                     NULL_PTR);
5177   builtin_function ("__builtin_fmod", double_ftype_double_double,
5178                     BUILT_IN_FMOD, NULL_PTR);
5179   builtin_function ("__builtin_frem", double_ftype_double_double,
5180                     BUILT_IN_FREM, NULL_PTR);
5181   builtin_function ("__builtin_memset", ptr_ftype_ptr_int_int,
5182                     BUILT_IN_MEMSET, NULL_PTR);
5183   builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP,
5184                     NULL_PTR);
5185   builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN,
5186                     NULL_PTR);
5187 #endif
5188
5189   /* C++ extensions */
5190
5191   unknown_type_node = make_node (UNKNOWN_TYPE);
5192   decl = pushdecl (build_decl (TYPE_DECL, get_identifier ("unknown type"),
5193                         unknown_type_node));
5194   /* Make sure the "unknown type" typedecl gets ignored for debug info.  */
5195   DECL_IGNORED_P (decl) = 1;
5196   TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
5197   TYPE_SIZE (unknown_type_node) = TYPE_SIZE (void_type_node);
5198   TYPE_ALIGN (unknown_type_node) = 1;
5199   TYPE_MODE (unknown_type_node) = TYPE_MODE (void_type_node);
5200   /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node.  */
5201   TREE_TYPE (unknown_type_node) = unknown_type_node;
5202   /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same result.  */
5203   TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
5204   TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
5205
5206   /* This is for handling opaque types in signatures.  */
5207   opaque_type_node = copy_node (ptr_type_node);
5208   TYPE_MAIN_VARIANT (opaque_type_node) = opaque_type_node;
5209   record_builtin_type (RID_MAX, 0, opaque_type_node);
5210
5211   /* This is special for C++ so functions can be overloaded.  */
5212   wchar_type_node
5213     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
5214   wchar_type_size = TYPE_PRECISION (wchar_type_node);
5215   signed_wchar_type_node = make_signed_type (wchar_type_size);
5216   unsigned_wchar_type_node = make_unsigned_type (wchar_type_size);
5217   wchar_type_node
5218     = TREE_UNSIGNED (wchar_type_node)
5219       ? unsigned_wchar_type_node
5220       : signed_wchar_type_node;
5221   record_builtin_type (RID_WCHAR, "__wchar_t", wchar_type_node);
5222
5223   /* Artificial declaration of wchar_t -- can be bashed */
5224   wchar_decl_node = build_decl (TYPE_DECL, get_identifier ("wchar_t"),
5225                                 wchar_type_node);
5226   pushdecl (wchar_decl_node);
5227
5228   /* This is for wide string constants.  */
5229   wchar_array_type_node
5230     = build_array_type (wchar_type_node, array_domain_type);
5231
5232   if (flag_vtable_thunks)
5233     {
5234       /* Make sure we get a unique function type, so we can give
5235          its pointer type a name.  (This wins for gdb.) */
5236       tree vfunc_type = make_node (FUNCTION_TYPE);
5237       TREE_TYPE (vfunc_type) = integer_type_node;
5238       TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
5239       layout_type (vfunc_type);
5240
5241       vtable_entry_type = build_pointer_type (vfunc_type);
5242     }
5243   else
5244     {
5245       vtable_entry_type = make_lang_type (RECORD_TYPE);
5246       fields[0] = build_lang_field_decl (FIELD_DECL, delta_identifier,
5247                                          delta_type_node);
5248       fields[1] = build_lang_field_decl (FIELD_DECL, index_identifier,
5249                                          delta_type_node);
5250       fields[2] = build_lang_field_decl (FIELD_DECL, pfn_identifier,
5251                                          ptr_type_node);
5252       finish_builtin_type (vtable_entry_type, VTBL_PTR_TYPE, fields, 2,
5253                            double_type_node);
5254
5255       /* Make this part of an invisible union.  */
5256       fields[3] = copy_node (fields[2]);
5257       TREE_TYPE (fields[3]) = delta_type_node;
5258       DECL_NAME (fields[3]) = delta2_identifier;
5259       DECL_MODE (fields[3]) = TYPE_MODE (delta_type_node);
5260       DECL_SIZE (fields[3]) = TYPE_SIZE (delta_type_node);
5261       TREE_UNSIGNED (fields[3]) = 0;
5262       TREE_CHAIN (fields[2]) = fields[3];
5263       vtable_entry_type = build_type_variant (vtable_entry_type, 1, 0);
5264     }
5265   record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
5266
5267   vtbl_type_node
5268     = build_array_type (vtable_entry_type, NULL_TREE);
5269   layout_type (vtbl_type_node);
5270   vtbl_type_node = cp_build_type_variant (vtbl_type_node, 1, 0);
5271   record_builtin_type (RID_MAX, NULL_PTR, vtbl_type_node);
5272
5273   /* Simplify life by making a "sigtable_entry_type".  Give its
5274      fields names so that the debugger can use them.  */
5275
5276   if (flag_handle_signatures)
5277     {
5278       sigtable_entry_type = make_lang_type (RECORD_TYPE);
5279       fields[0] = build_lang_field_decl (FIELD_DECL, tag_identifier,
5280                                          delta_type_node);
5281       fields[1] = build_lang_field_decl (FIELD_DECL, vb_off_identifier,
5282                                          delta_type_node);
5283       fields[2] = build_lang_field_decl (FIELD_DECL, delta_identifier,
5284                                          delta_type_node);
5285       fields[3] = build_lang_field_decl (FIELD_DECL, index_identifier,
5286                                          delta_type_node);
5287       fields[4] = build_lang_field_decl (FIELD_DECL, pfn_identifier,
5288                                          ptr_type_node);
5289
5290       /* Set the alignment to the max of the alignment of ptr_type_node and
5291          delta_type_node.  Double alignment wastes a word on the Sparc.  */
5292       finish_builtin_type (sigtable_entry_type, SIGTABLE_PTR_TYPE, fields, 4,
5293                            (TYPE_ALIGN (ptr_type_node) > TYPE_ALIGN (delta_type_node))
5294                            ? ptr_type_node
5295                            : delta_type_node);
5296
5297       /* Make this part of an invisible union.  */
5298       fields[5] = copy_node (fields[4]);
5299       TREE_TYPE (fields[5]) = delta_type_node;
5300       DECL_NAME (fields[5]) = vt_off_identifier;
5301       DECL_MODE (fields[5]) = TYPE_MODE (delta_type_node);
5302       DECL_SIZE (fields[5]) = TYPE_SIZE (delta_type_node);
5303       TREE_UNSIGNED (fields[5]) = 0;
5304       TREE_CHAIN (fields[4]) = fields[5];
5305
5306       sigtable_entry_type = build_type_variant (sigtable_entry_type, 1, 0);
5307       record_builtin_type (RID_MAX, SIGTABLE_PTR_TYPE, sigtable_entry_type);
5308     }
5309
5310 #if 0
5311   if (flag_rtti)
5312     {
5313       /* Must build __t_desc type.  Currently, type descriptors look like this:
5314
5315          struct __t_desc
5316          {
5317            const char *name;
5318            int size;
5319            int bits;
5320            struct __t_desc *points_to;
5321            int ivars_count, meths_count;
5322            struct __i_desc *ivars[];
5323            struct __m_desc *meths[];
5324            struct __t_desc *parents[];
5325            struct __t_desc *vbases[];
5326            int offsets[];
5327          };
5328
5329          ...as per Linton's paper.  */
5330
5331       __t_desc_type_node = make_lang_type (RECORD_TYPE);
5332       __i_desc_type_node = make_lang_type (RECORD_TYPE);
5333       __m_desc_type_node = make_lang_type (RECORD_TYPE);
5334       __t_desc_array_type =
5335         build_array_type (build_pointer_type (__t_desc_type_node), NULL_TREE);
5336       __i_desc_array_type =
5337         build_array_type (build_pointer_type (__i_desc_type_node), NULL_TREE);
5338       __m_desc_array_type =
5339         build_array_type (build_pointer_type (__m_desc_type_node), NULL_TREE);
5340
5341       fields[0] = build_lang_field_decl (FIELD_DECL, get_identifier ("name"),
5342                                          string_type_node);
5343       fields[1] = build_lang_field_decl (FIELD_DECL, get_identifier ("size"),
5344                                          unsigned_type_node);
5345       fields[2] = build_lang_field_decl (FIELD_DECL, get_identifier ("bits"),
5346                                          unsigned_type_node);
5347       fields[3] = build_lang_field_decl (FIELD_DECL,
5348                                          get_identifier ("points_to"),
5349                                          build_pointer_type (__t_desc_type_node));
5350       fields[4] = build_lang_field_decl (FIELD_DECL,
5351                                          get_identifier ("ivars_count"),
5352                                          integer_type_node);
5353       fields[5] = build_lang_field_decl (FIELD_DECL,
5354                                          get_identifier ("meths_count"),
5355                                          integer_type_node);
5356       fields[6] = build_lang_field_decl (FIELD_DECL, get_identifier ("ivars"),
5357                                          build_pointer_type (__i_desc_array_type));
5358       fields[7] = build_lang_field_decl (FIELD_DECL, get_identifier ("meths"),
5359                                          build_pointer_type (__m_desc_array_type));
5360       fields[8] = build_lang_field_decl (FIELD_DECL, get_identifier ("parents"),
5361                                          build_pointer_type (__t_desc_array_type));
5362       fields[9] = build_lang_field_decl (FIELD_DECL, get_identifier ("vbases"),
5363                                          build_pointer_type (__t_desc_array_type));
5364       fields[10] = build_lang_field_decl (FIELD_DECL, get_identifier ("offsets"),
5365                                          build_pointer_type (integer_type_node));
5366       finish_builtin_type (__t_desc_type_node, "__t_desc", fields, 10, integer_type_node);
5367
5368       /* ivar descriptors look like this:
5369
5370          struct __i_desc
5371          {
5372            const char *name;
5373            int offset;
5374            struct __t_desc *type;
5375          };
5376       */
5377
5378       fields[0] = build_lang_field_decl (FIELD_DECL, get_identifier ("name"),
5379                                          string_type_node);
5380       fields[1] = build_lang_field_decl (FIELD_DECL, get_identifier ("offset"),
5381                                          integer_type_node);
5382       fields[2] = build_lang_field_decl (FIELD_DECL, get_identifier ("type"),
5383                                          build_pointer_type (__t_desc_type_node));
5384       finish_builtin_type (__i_desc_type_node, "__i_desc", fields, 2,
5385                            integer_type_node);
5386
5387       /* method descriptors look like this:
5388
5389          struct __m_desc
5390          {
5391            const char *name;
5392            int vindex;
5393            struct __t_desc *vcontext;
5394            struct __t_desc *return_type;
5395            void (*address)();
5396            short parm_count;
5397            short required_parms;
5398            struct __t_desc *parm_types[];
5399          };
5400       */
5401
5402       fields[0] = build_lang_field_decl (FIELD_DECL, get_identifier ("name"),
5403                                          string_type_node);
5404       fields[1] = build_lang_field_decl (FIELD_DECL, get_identifier ("vindex"),
5405                                          integer_type_node);
5406       fields[2] = build_lang_field_decl (FIELD_DECL, get_identifier ("vcontext"),
5407                                          build_pointer_type (__t_desc_type_node));
5408       fields[3] = build_lang_field_decl (FIELD_DECL, get_identifier ("return_type"),
5409                                          build_pointer_type (__t_desc_type_node));
5410       fields[4] = build_lang_field_decl (FIELD_DECL, get_identifier ("address"),
5411                                          build_pointer_type (default_function_type));
5412       fields[5] = build_lang_field_decl (FIELD_DECL, get_identifier ("parm_count"),
5413                                          short_integer_type_node);
5414       fields[6] = build_lang_field_decl (FIELD_DECL, get_identifier ("required_parms"),
5415                                          short_integer_type_node);
5416       fields[7] = build_lang_field_decl (FIELD_DECL, get_identifier ("parm_types"),
5417                                          build_pointer_type (build_array_type (build_pointer_type (__t_desc_type_node), NULL_TREE)));
5418       finish_builtin_type (__m_desc_type_node, "__m_desc", fields, 7,
5419                            integer_type_node);
5420     }
5421 #endif /*flag_rtti*/
5422
5423   /* Now, C++.  */
5424   current_lang_name = lang_name_cplusplus;
5425
5426   auto_function (ansi_opname[(int) NEW_EXPR],
5427                  build_function_type (ptr_type_node,
5428                                       tree_cons (NULL_TREE, sizetype,
5429                                                  void_list_node)),
5430                  NOT_BUILT_IN);
5431   auto_function (ansi_opname[(int) VEC_NEW_EXPR],
5432                  build_function_type (ptr_type_node,
5433                                       tree_cons (NULL_TREE, sizetype,
5434                                                  void_list_node)),
5435                  NOT_BUILT_IN);
5436   auto_function (ansi_opname[(int) DELETE_EXPR],
5437                  build_function_type (void_type_node,
5438                                       tree_cons (NULL_TREE, ptr_type_node,
5439                                                  void_list_node)),
5440                  NOT_BUILT_IN);
5441   auto_function (ansi_opname[(int) VEC_DELETE_EXPR],
5442                  build_function_type (void_type_node,
5443                                       tree_cons (NULL_TREE, ptr_type_node,
5444                                                  void_list_node)),
5445                  NOT_BUILT_IN);
5446
5447   abort_fndecl
5448     = define_function ("__pure_virtual",
5449                        build_function_type (void_type_node, void_list_node),
5450                        NOT_BUILT_IN, 0, 0);
5451
5452   /* Perform other language dependent initializations.  */
5453   init_class_processing ();
5454   init_init_processing ();
5455   init_search_processing ();
5456   init_rtti_processing ();
5457
5458   if (flag_exceptions)
5459     init_exception_processing ();
5460   if (flag_no_inline)
5461     {
5462       flag_inline_functions = 0;
5463     }
5464
5465   if (! supports_one_only ())
5466     flag_weak = 0;
5467
5468   /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__.  */
5469   declare_function_name ();
5470
5471   /* Prepare to check format strings against argument lists.  */
5472   init_function_format_info ();
5473 }
5474
5475 /* initialize type descriptor type node of various rtti type.  */
5476
5477 int
5478 init_type_desc()
5479 {
5480   tree tdecl;
5481
5482   tdecl = lookup_name (get_identifier ("type_info"), 0);
5483   if (tdecl == NULL_TREE)
5484     return 0;
5485   __t_desc_type_node = TREE_TYPE (tdecl);
5486 #if 0
5487   __tp_desc_type_node = build_pointer_type (__t_desc_type_node);
5488 #endif
5489
5490 #if 0
5491   tdecl = lookup_name (get_identifier ("__baselist_type_info"), 0);
5492   if (tdecl == NULL_TREE)
5493     return 0;
5494   __baselist_desc_type_node = TREE_TYPE (tdecl);
5495 #endif
5496
5497   tdecl = lookup_name (get_identifier ("__builtin_type_info"), 0);
5498   if (tdecl == NULL_TREE)
5499     return 0;
5500   __bltn_desc_type_node = TREE_TYPE (tdecl);
5501
5502   tdecl = lookup_name (get_identifier ("__user_type_info"), 0);
5503   if (tdecl == NULL_TREE)
5504     return 0;
5505   __user_desc_type_node = TREE_TYPE (tdecl);
5506
5507   tdecl = lookup_name (get_identifier ("__class_type_info"), 0);
5508   if (tdecl == NULL_TREE)
5509     return 0;
5510   __class_desc_type_node = TREE_TYPE (tdecl);
5511
5512   tdecl = lookup_field (__class_desc_type_node, 
5513         get_identifier ("access_mode"), 0, 0);
5514   if (tdecl == NULL_TREE)
5515     return 0;
5516   __access_mode_type_node = TREE_TYPE (tdecl);
5517
5518   tdecl = lookup_name (get_identifier ("__attr_type_info"), 0);
5519   if (tdecl == NULL_TREE)
5520     return 0;
5521   __attr_desc_type_node = TREE_TYPE (tdecl);
5522
5523   tdecl = lookup_name (get_identifier ("__pointer_type_info"), 0);
5524   if (tdecl == NULL_TREE)
5525     return 0;
5526   __ptr_desc_type_node = TREE_TYPE (tdecl);
5527
5528   tdecl = lookup_name (get_identifier ("__func_type_info"), 0);
5529   if (tdecl == NULL_TREE)
5530     return 0;
5531   __func_desc_type_node = TREE_TYPE (tdecl);
5532
5533   tdecl = lookup_name (get_identifier ("__ptmf_type_info"), 0);
5534   if (tdecl == NULL_TREE)
5535     return 0;
5536   __ptmf_desc_type_node = TREE_TYPE (tdecl);
5537
5538   tdecl = lookup_name (get_identifier ("__ptmd_type_info"), 0);
5539   if (tdecl == NULL_TREE)
5540     return 0;
5541   __ptmd_desc_type_node = TREE_TYPE (tdecl);
5542
5543   return 1;
5544 }
5545 /* Make a definition for a builtin function named NAME and whose data type
5546    is TYPE.  TYPE should be a function type with argument types.
5547    FUNCTION_CODE tells later passes how to compile calls to this function.
5548    See tree.h for its possible values.
5549
5550    If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
5551    the name to be called if we can't opencode the function.  */
5552
5553 tree
5554 define_function (name, type, function_code, pfn, library_name)
5555      char *name;
5556      tree type;
5557      enum built_in_function function_code;
5558      void (*pfn)();
5559      char *library_name;
5560 {
5561   tree decl = build_lang_decl (FUNCTION_DECL, get_identifier (name), type);
5562   DECL_EXTERNAL (decl) = 1;
5563   TREE_PUBLIC (decl) = 1;
5564   DECL_ARTIFICIAL (decl) = 1;
5565
5566   /* Since `pushdecl' relies on DECL_ASSEMBLER_NAME instead of DECL_NAME,
5567      we cannot change DECL_ASSEMBLER_NAME until we have installed this
5568      function in the namespace.  */
5569   if (pfn) (*pfn) (decl);
5570   if (library_name)
5571     DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
5572   make_function_rtl (decl);
5573   if (function_code != NOT_BUILT_IN)
5574     {
5575       DECL_BUILT_IN (decl) = 1;
5576       DECL_FUNCTION_CODE (decl) = function_code;
5577     }
5578   return decl;
5579 }
5580 \f
5581 /* Called when a declaration is seen that contains no names to declare.
5582    If its type is a reference to a structure, union or enum inherited
5583    from a containing scope, shadow that tag name for the current scope
5584    with a forward reference.
5585    If its type defines a new named structure or union
5586    or defines an enum, it is valid but we need not do anything here.
5587    Otherwise, it is an error.
5588
5589    C++: may have to grok the declspecs to learn about static,
5590    complain for anonymous unions.  */
5591
5592 void
5593 shadow_tag (declspecs)
5594      tree declspecs;
5595 {
5596   int found_tag = 0;
5597   tree ob_modifier = NULL_TREE;
5598   register tree link;
5599   register enum tree_code code, ok_code = ERROR_MARK;
5600   register tree t = NULL_TREE;
5601
5602   for (link = declspecs; link; link = TREE_CHAIN (link))
5603     {
5604       register tree value = TREE_VALUE (link);
5605
5606       code = TREE_CODE (value);
5607       if (IS_AGGR_TYPE_CODE (code) || code == ENUMERAL_TYPE)
5608         {
5609           my_friendly_assert (TYPE_NAME (value) != NULL_TREE, 261);
5610
5611           if (IS_AGGR_TYPE (value) && CLASSTYPE_USE_TEMPLATE (value))
5612             {
5613               if (CLASSTYPE_IMPLICIT_INSTANTIATION (value)
5614                   && TYPE_SIZE (value) == NULL_TREE)
5615                 {
5616                   SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (value);
5617                   if (processing_template_decl)
5618                     push_template_decl (TYPE_MAIN_DECL (value));
5619                 }
5620               else if (CLASSTYPE_TEMPLATE_INSTANTIATION (value))
5621                 cp_error ("specialization after instantiation of `%T'", value);
5622             }
5623
5624           t = value;
5625           ok_code = code;
5626           found_tag++;
5627         }
5628       else if (value == ridpointers[(int) RID_STATIC]
5629                || value == ridpointers[(int) RID_EXTERN]
5630                || value == ridpointers[(int) RID_AUTO]
5631                || value == ridpointers[(int) RID_REGISTER]
5632                || value == ridpointers[(int) RID_INLINE]
5633                || value == ridpointers[(int) RID_VIRTUAL]
5634                || value == ridpointers[(int) RID_EXPLICIT])
5635         ob_modifier = value;
5636     }
5637
5638   /* This is where the variables in an anonymous union are
5639      declared.  An anonymous union declaration looks like:
5640      union { ... } ;
5641      because there is no declarator after the union, the parser
5642      sends that declaration here.  */
5643   if (ok_code == UNION_TYPE
5644       && t != NULL_TREE
5645       && ((TREE_CODE (TYPE_NAME (t)) == IDENTIFIER_NODE
5646            && ANON_AGGRNAME_P (TYPE_NAME (t)))
5647           || (TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
5648               && ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))))
5649     {
5650       tree fn;
5651
5652       /* ANSI C++ June 5 1992 WP 9.5.3.  Anonymous unions may not have
5653          function members.  */
5654       for (fn = TYPE_METHODS (t); fn; fn = TREE_CHAIN (fn))
5655         if (! DECL_ARTIFICIAL (fn))
5656           {
5657             error ("an anonymous union cannot have function members");
5658             break;
5659           }
5660
5661       if (TYPE_FIELDS (t))
5662         {
5663           tree decl = grokdeclarator (NULL_TREE, declspecs, NORMAL, 0,
5664                                       NULL_TREE);
5665           finish_anon_union (decl);
5666         }
5667     }
5668   else
5669     {
5670       /* Anonymous unions are objects, that's why we only check for
5671          inappropriate specifiers in this branch.  */
5672
5673       if (ob_modifier)
5674         {
5675           if (ob_modifier == ridpointers[(int) RID_INLINE]
5676               || ob_modifier == ridpointers[(int) RID_VIRTUAL])
5677             cp_error ("`%D' can only be specified for functions", ob_modifier);
5678           else if (ob_modifier == ridpointers[(int) RID_EXPLICIT])
5679             cp_error ("`%D' can only be specified for constructors",
5680                       ob_modifier);
5681           else
5682             cp_error ("`%D' can only be specified for objects and functions",
5683                       ob_modifier);
5684         }
5685
5686       if (found_tag == 0)
5687         pedwarn ("abstract declarator used as declaration");
5688       else if (found_tag > 1)
5689         pedwarn ("multiple types in one declaration");
5690     }
5691 }
5692 \f
5693 /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
5694
5695 tree
5696 groktypename (typename)
5697      tree typename;
5698 {
5699   if (TREE_CODE (typename) != TREE_LIST)
5700     return typename;
5701   return grokdeclarator (TREE_VALUE (typename),
5702                          TREE_PURPOSE (typename),
5703                          TYPENAME, 0, NULL_TREE);
5704 }
5705
5706 /* Decode a declarator in an ordinary declaration or data definition.
5707    This is called as soon as the type information and variable name
5708    have been parsed, before parsing the initializer if any.
5709    Here we create the ..._DECL node, fill in its type,
5710    and put it on the list of decls for the current context.
5711    The ..._DECL node is returned as the value.
5712
5713    Exception: for arrays where the length is not specified,
5714    the type is left null, to be filled in by `cp_finish_decl'.
5715
5716    Function definitions do not come here; they go to start_function
5717    instead.  However, external and forward declarations of functions
5718    do go through here.  Structure field declarations are done by
5719    grokfield and not through here.  */
5720
5721 /* Set this to zero to debug not using the temporary obstack
5722    to parse initializers.  */
5723 int debug_temp_inits = 1;
5724
5725 void start_decl_1 ();
5726
5727 tree
5728 start_decl (declarator, declspecs, initialized)
5729      tree declarator, declspecs;
5730      int initialized;
5731 {
5732   register tree decl;
5733   register tree type, tem;
5734   tree context;
5735   extern int have_extern_spec;
5736   extern int used_extern_spec;
5737
5738 #if 0
5739   /* See code below that used this.  */
5740   int init_written = initialized;
5741 #endif
5742
5743   /* This should only be done once on the top most decl.  */
5744   if (have_extern_spec && !used_extern_spec)
5745     {
5746       declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"),
5747                                   declspecs);
5748       used_extern_spec = 1;
5749     }
5750
5751   decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
5752                          NULL_TREE);
5753   if (decl == NULL_TREE || decl == void_type_node)
5754     return NULL_TREE;
5755
5756   type = TREE_TYPE (decl);
5757
5758   /* Don't lose if destructors must be executed at file-level.  */
5759   if (! processing_template_decl && TREE_STATIC (decl)
5760       && TYPE_NEEDS_DESTRUCTOR (complete_type (type))
5761       && !TREE_PERMANENT (decl))
5762     {
5763       push_obstacks (&permanent_obstack, &permanent_obstack);
5764       decl = copy_node (decl);
5765       if (TREE_CODE (type) == ARRAY_TYPE)
5766         {
5767           tree itype = TYPE_DOMAIN (type);
5768           if (itype && ! TREE_PERMANENT (itype))
5769             {
5770               itype = build_index_type (copy_to_permanent (TYPE_MAX_VALUE (itype)));
5771               type = build_cplus_array_type (TREE_TYPE (type), itype);
5772               TREE_TYPE (decl) = type;
5773             }
5774         }
5775       pop_obstacks ();
5776     }
5777
5778   context
5779     = (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
5780       ? DECL_CLASS_CONTEXT (decl)
5781       : DECL_CONTEXT (decl);
5782
5783   if (initialized)
5784     /* Is it valid for this decl to have an initializer at all?
5785        If not, set INITIALIZED to zero, which will indirectly
5786        tell `cp_finish_decl' to ignore the initializer once it is parsed.  */
5787     switch (TREE_CODE (decl))
5788       {
5789       case TYPE_DECL:
5790         /* typedef foo = bar  means give foo the same type as bar.
5791            We haven't parsed bar yet, so `cp_finish_decl' will fix that up.
5792            Any other case of an initialization in a TYPE_DECL is an error.  */
5793         if (pedantic || list_length (declspecs) > 1)
5794           {
5795             cp_error ("typedef `%D' is initialized", decl);
5796             initialized = 0;
5797           }
5798         break;
5799
5800       case FUNCTION_DECL:
5801         cp_error ("function `%#D' is initialized like a variable", decl);
5802         initialized = 0;
5803         break;
5804
5805       default:
5806         if (! processing_template_decl)
5807           {
5808             if (TYPE_SIZE (type) != NULL_TREE
5809                 && ! TREE_CONSTANT (TYPE_SIZE (type)))
5810               {
5811                 cp_error
5812                   ("variable-sized object `%D' may not be initialized", decl);
5813                 initialized = 0;
5814               }
5815
5816             if (TREE_CODE (type) == ARRAY_TYPE
5817                 && TYPE_SIZE (complete_type (TREE_TYPE (type))) == NULL_TREE)
5818               {
5819                 cp_error
5820                   ("elements of array `%#D' have incomplete type", decl);
5821                 initialized = 0;
5822               }
5823           }
5824       }
5825
5826   if (initialized)
5827     {
5828       if (! toplevel_bindings_p ()
5829           && DECL_EXTERNAL (decl))
5830         cp_warning ("declaration of `%#D' has `extern' and is initialized",
5831                     decl);
5832       DECL_EXTERNAL (decl) = 0;
5833       if (toplevel_bindings_p ())
5834         TREE_STATIC (decl) = 1;
5835
5836       /* Tell `pushdecl' this is an initialized decl
5837          even though we don't yet have the initializer expression.
5838          Also tell `cp_finish_decl' it may store the real initializer.  */
5839       DECL_INITIAL (decl) = error_mark_node;
5840     }
5841
5842   if (context && TYPE_SIZE (complete_type (context)) != NULL_TREE)
5843     {
5844       if (TREE_CODE (decl) == VAR_DECL)
5845         {
5846           tree field = lookup_field (context, DECL_NAME (decl), 0, 0);
5847           if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
5848             cp_error ("`%#D' is not a static member of `%#T'", decl, context);
5849           else
5850             {
5851               if (DECL_CONTEXT (field) != context)
5852                 cp_pedwarn ("ANSI C++ does not permit `%T::%D' to be defined as `%T::%D'", DECL_CONTEXT (field), DECL_NAME (decl), context, DECL_NAME (decl));
5853               if (duplicate_decls (decl, field))
5854                 decl = field;
5855             }
5856         }
5857       else
5858         {
5859           tree field = check_classfn (context, decl);
5860           if (field && duplicate_decls (decl, field))
5861             decl = field;
5862         }
5863
5864       /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set.  */
5865       if (DECL_LANG_SPECIFIC (decl))
5866         DECL_IN_AGGR_P (decl) = 0;
5867       if (DECL_USE_TEMPLATE (decl) || CLASSTYPE_USE_TEMPLATE (context))
5868         SET_DECL_TEMPLATE_SPECIALIZATION (decl);
5869
5870       /* Stupid stupid stupid stupid  (jason 7/21/95) */
5871       if (pedantic && DECL_EXTERNAL (decl)
5872           && ! DECL_TEMPLATE_SPECIALIZATION (decl))
5873         cp_pedwarn ("declaration of `%#D' outside of class is not definition",
5874                     decl);
5875
5876       pushclass (context, 2);
5877     }
5878
5879   /* Add this decl to the current binding level, but not if it
5880      comes from another scope, e.g. a static member variable.
5881      TEM may equal DECL or it may be a previous decl of the same name.  */
5882   
5883   if ((TREE_CODE (decl) != PARM_DECL && DECL_CONTEXT (decl) != NULL_TREE)
5884       || (TREE_CODE (decl) == TEMPLATE_DECL && !global_bindings_p ())
5885       || TREE_CODE (type) == LANG_TYPE)
5886     tem = decl;
5887   else
5888     tem = pushdecl (decl);
5889
5890   if (processing_template_decl)
5891     {
5892       if (! current_function_decl)
5893         push_template_decl (tem);
5894       else if (minimal_parse_mode)
5895         DECL_VINDEX (decl)
5896             = build_min_nt (DECL_STMT, copy_to_permanent (declarator),
5897                             copy_to_permanent (declspecs),
5898                             NULL_TREE);
5899     }
5900
5901
5902 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
5903   /* Tell the back-end to use or not use .common as appropriate.  If we say
5904      -fconserve-space, we want this to save .data space, at the expense of
5905      wrong semantics.  If we say -fno-conserve-space, we want this to
5906      produce errors about redefs; to do this we force variables into the
5907      data segment.  */
5908   DECL_COMMON (tem) = flag_conserve_space || ! TREE_PUBLIC (tem);
5909 #endif
5910
5911   if (! processing_template_decl)
5912     start_decl_1 (tem);
5913
5914   /* Corresponding pop_obstacks is done in `cp_finish_decl'.  */
5915   push_obstacks_nochange ();
5916
5917 #if 0
5918   /* We have no way of knowing whether the initializer will need to be
5919      evaluated at run-time or not until we've parsed it, so let's just put
5920      it in the permanent obstack.  (jason) */
5921   if (init_written
5922       && ! (TREE_CODE (tem) == PARM_DECL
5923             || (TREE_READONLY (tem)
5924                 && (TREE_CODE (tem) == VAR_DECL
5925                     || TREE_CODE (tem) == FIELD_DECL))))
5926     {
5927       /* When parsing and digesting the initializer,
5928          use temporary storage.  Do this even if we will ignore the value.  */
5929       if (toplevel_bindings_p () && debug_temp_inits)
5930         {
5931           if (processing_template_decl
5932               || TYPE_NEEDS_CONSTRUCTING (type)
5933               || TREE_CODE (type) == REFERENCE_TYPE)
5934             /* In this case, the initializer must lay down in permanent
5935                storage, since it will be saved until `finish_file' is run.   */
5936             ;
5937           else
5938             temporary_allocation ();
5939         }
5940     }
5941 #endif
5942
5943   return tem;
5944 }
5945
5946 void
5947 start_decl_1 (decl)
5948      tree decl;
5949 {
5950   tree type = TREE_TYPE (decl);
5951   int initialized = (DECL_INITIAL (decl) != NULL_TREE);
5952
5953   /* If this type of object needs a cleanup, and control may
5954      jump past it, make a new binding level so that it is cleaned
5955      up only when it is initialized first.  */
5956   if (TYPE_NEEDS_DESTRUCTOR (type)
5957       && current_binding_level->more_cleanups_ok == 0)
5958     pushlevel_temporary (1);
5959
5960   if (initialized)
5961     /* Is it valid for this decl to have an initializer at all?
5962        If not, set INITIALIZED to zero, which will indirectly
5963        tell `cp_finish_decl' to ignore the initializer once it is parsed.  */
5964     {
5965       /* Don't allow initializations for incomplete types except for
5966          arrays which might be completed by the initialization.  */
5967       if (type == error_mark_node)
5968         ;                       /* Don't complain again.  */
5969       else if (TYPE_SIZE (complete_type (type)) != NULL_TREE)
5970         ;                       /* A complete type is ok.  */
5971       else if (TREE_CODE (type) != ARRAY_TYPE)
5972         {
5973           cp_error ("variable `%#D' has initializer but incomplete type",
5974                     decl);
5975           initialized = 0;
5976         }
5977       else if (TYPE_SIZE (complete_type (TREE_TYPE (type))) == NULL_TREE)
5978         {
5979           if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
5980             cp_error ("elements of array `%#D' have incomplete type", decl);
5981           /* else we already gave an error in start_decl.  */
5982           initialized = 0;
5983         }
5984     }
5985
5986   if (!initialized
5987       && TREE_CODE (decl) != TYPE_DECL
5988       && TREE_CODE (decl) != TEMPLATE_DECL
5989       && IS_AGGR_TYPE (type) && ! DECL_EXTERNAL (decl))
5990     {
5991       if ((! processing_template_decl || ! uses_template_parms (type))
5992           && TYPE_SIZE (complete_type (type)) == NULL_TREE)
5993         {
5994           cp_error ("aggregate `%#D' has incomplete type and cannot be initialized",
5995                  decl);
5996           /* Change the type so that assemble_variable will give
5997              DECL an rtl we can live with: (mem (const_int 0)).  */
5998           TREE_TYPE (decl) = error_mark_node;
5999           type = error_mark_node;
6000         }
6001       else
6002         {
6003           /* If any base type in the hierarchy of TYPE needs a constructor,
6004              then we set initialized to 1.  This way any nodes which are
6005              created for the purposes of initializing this aggregate
6006              will live as long as it does.  This is necessary for global
6007              aggregates which do not have their initializers processed until
6008              the end of the file.  */
6009           initialized = TYPE_NEEDS_CONSTRUCTING (type);
6010         }
6011     }
6012
6013 #if 0
6014   /* We don't do this yet for GNU C++.  */
6015   /* For a local variable, define the RTL now.  */
6016   if (! toplevel_bindings_p ()
6017       /* But not if this is a duplicate decl
6018          and we preserved the rtl from the previous one
6019          (which may or may not happen).  */
6020       && DECL_RTL (tem) == NULL_RTX)
6021     {
6022       if (TYPE_SIZE (TREE_TYPE (tem)) != NULL_TREE)
6023         expand_decl (tem);
6024       else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
6025                && DECL_INITIAL (tem) != NULL_TREE)
6026         expand_decl (tem);
6027     }
6028 #endif
6029
6030   if (! initialized)
6031     DECL_INITIAL (decl) = NULL_TREE;
6032 }
6033
6034 /* Handle initialization of references.
6035    These three arguments from from `cp_finish_decl', and have the
6036    same meaning here that they do there.
6037
6038    Quotes on semantics can be found in ARM 8.4.3.  */
6039
6040 static void
6041 grok_reference_init (decl, type, init, cleanupp)
6042      tree decl, type, init;
6043      tree *cleanupp;
6044 {
6045   tree tmp;
6046
6047   if (init == NULL_TREE)
6048     {
6049       if ((DECL_LANG_SPECIFIC (decl) == 0
6050            || DECL_IN_AGGR_P (decl) == 0)
6051           && ! DECL_THIS_EXTERN (decl))
6052         {
6053           cp_error ("`%D' declared as reference but not initialized", decl);
6054           if (TREE_CODE (decl) == VAR_DECL)
6055             SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
6056         }
6057       return;
6058     }
6059
6060   if (init == error_mark_node)
6061     return;
6062
6063   if (TREE_CODE (type) == REFERENCE_TYPE
6064       && TREE_CODE (init) == CONSTRUCTOR)
6065     {
6066       cp_error ("ANSI C++ forbids use of initializer list to initialize reference `%D'", decl);
6067       return;
6068     }
6069
6070   if (TREE_TYPE (init) && TREE_CODE (TREE_TYPE (init)) == UNKNOWN_TYPE)
6071     /* decay_conversion is probably wrong for references to functions.  */
6072     init = decay_conversion (instantiate_type (TREE_TYPE (type), init, 1));
6073
6074   if (TREE_CODE (init) == TREE_LIST)
6075     init = build_compound_expr (init);
6076
6077   if (TREE_CODE (TREE_TYPE (init)) == REFERENCE_TYPE)
6078     init = convert_from_reference (init);
6079
6080   if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
6081       && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
6082     {
6083       /* Note: default conversion is only called in very special cases.  */
6084       init = default_conversion (init);
6085     }
6086
6087   tmp = convert_to_reference
6088     (type, init, CONV_IMPLICIT, LOOKUP_SPECULATIVELY|LOOKUP_NORMAL, decl);
6089
6090   if (tmp == error_mark_node)
6091     goto fail;
6092   else if (tmp != NULL_TREE)
6093     {
6094       init = tmp;
6095       DECL_INITIAL (decl) = save_expr (init);
6096     }
6097   else
6098     {
6099       cp_error ("cannot initialize `%T' from `%T'", type, TREE_TYPE (init));
6100       goto fail;
6101     }
6102
6103   /* ?? Can this be optimized in some cases to
6104      hand back the DECL_INITIAL slot??  */
6105   if (TYPE_SIZE (TREE_TYPE (type)))
6106     {
6107       init = convert_from_reference (decl);
6108       if (TREE_PERMANENT (decl))
6109         init = copy_to_permanent (init);
6110       SET_DECL_REFERENCE_SLOT (decl, init);
6111     }
6112
6113   if (TREE_STATIC (decl) && ! TREE_CONSTANT (DECL_INITIAL (decl)))
6114     {
6115       expand_static_init (decl, DECL_INITIAL (decl));
6116       DECL_INITIAL (decl) = NULL_TREE;
6117     }
6118   return;
6119
6120  fail:
6121   if (TREE_CODE (decl) == VAR_DECL)
6122     SET_DECL_REFERENCE_SLOT (decl, error_mark_node);
6123   return;
6124 }
6125
6126 /* Fill in DECL_INITIAL with some magical value to prevent expand_decl from
6127    mucking with forces it does not comprehend (i.e. initialization with a
6128    constructor).  If we are at global scope and won't go into COMMON, fill
6129    it in with a dummy CONSTRUCTOR to force the variable into .data;
6130    otherwise we can use error_mark_node.  */
6131
6132 static tree
6133 obscure_complex_init (decl, init)
6134      tree decl, init;
6135 {
6136   if (! flag_no_inline && TREE_STATIC (decl))
6137     {
6138       if (extract_init (decl, init))
6139         return NULL_TREE;
6140     }
6141
6142 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
6143   if (toplevel_bindings_p () && ! DECL_COMMON (decl))
6144     DECL_INITIAL (decl) = build (CONSTRUCTOR, TREE_TYPE (decl), NULL_TREE,
6145                                  NULL_TREE);
6146   else
6147 #endif
6148     DECL_INITIAL (decl) = error_mark_node;
6149
6150   return init;
6151 }
6152
6153 /* Finish processing of a declaration;
6154    install its line number and initial value.
6155    If the length of an array type is not known before,
6156    it must be determined now, from the initial value, or it is an error.
6157
6158    Call `pop_obstacks' iff NEED_POP is nonzero.
6159
6160    For C++, `cp_finish_decl' must be fairly evasive:  it must keep initializers
6161    for aggregates that have constructors alive on the permanent obstack,
6162    so that the global initializing functions can be written at the end.
6163
6164    INIT0 holds the value of an initializer that should be allowed to escape
6165    the normal rules.
6166
6167    FLAGS is LOOKUP_ONLYCONVERTING is the = init syntax was used, else 0
6168    if the (init) syntax was used.
6169
6170    For functions that take default parameters, DECL points to its
6171    "maximal" instantiation.  `cp_finish_decl' must then also declared its
6172    subsequently lower and lower forms of instantiation, checking for
6173    ambiguity as it goes.  This can be sped up later.  */
6174
6175 void
6176 cp_finish_decl (decl, init, asmspec_tree, need_pop, flags)
6177      tree decl, init;
6178      tree asmspec_tree;
6179      int need_pop;
6180      int flags;
6181 {
6182   register tree type;
6183   tree cleanup = NULL_TREE, ttype;
6184   int was_incomplete;
6185   int temporary = allocation_temporary_p ();
6186   char *asmspec = NULL;
6187   int was_readonly = 0;
6188
6189   /* If this is 0, then we did not change obstacks.  */
6190   if (! decl)
6191     {
6192       if (init)
6193         error ("assignment (not initialization) in declaration");
6194       return;
6195     }
6196
6197   /* If a name was specified, get the string.  */
6198   if (asmspec_tree)
6199       asmspec = TREE_STRING_POINTER (asmspec_tree);
6200
6201   /* If the type of the thing we are declaring either has
6202      a constructor, or has a virtual function table pointer,
6203      AND its initialization was accepted by `start_decl',
6204      then we stayed on the permanent obstack through the
6205      declaration, otherwise, changed obstacks as GCC would.  */
6206
6207   type = TREE_TYPE (decl);
6208
6209   if (type == error_mark_node)
6210     {
6211       if (toplevel_bindings_p () && temporary)
6212         end_temporary_allocation ();
6213
6214       return;
6215     }
6216
6217   if (processing_template_decl)
6218     {
6219       if (init && DECL_INITIAL (decl))
6220         DECL_INITIAL (decl) = init;
6221       if (minimal_parse_mode && ! DECL_ARTIFICIAL (decl))
6222         {
6223           tree stmt = DECL_VINDEX (decl);
6224           DECL_VINDEX (decl) = NULL_TREE;
6225           TREE_OPERAND (stmt, 2) = copy_to_permanent (init);
6226           add_tree (stmt);
6227         }
6228
6229       goto finish_end0;
6230     }
6231   /* Take care of TYPE_DECLs up front.  */
6232   if (TREE_CODE (decl) == TYPE_DECL)
6233     {
6234       if (init && DECL_INITIAL (decl))
6235         {
6236           /* typedef foo = bar; store the type of bar as the type of foo.  */
6237           TREE_TYPE (decl) = type = TREE_TYPE (init);
6238           DECL_INITIAL (decl) = init = NULL_TREE;
6239         }
6240       if (type != error_mark_node
6241           && IS_AGGR_TYPE (type) && DECL_NAME (decl))
6242         {
6243           if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
6244             cp_warning ("shadowing previous type declaration of `%#D'", decl);
6245           set_identifier_type_value (DECL_NAME (decl), type);
6246           CLASSTYPE_GOT_SEMICOLON (type) = 1;
6247         }
6248       GNU_xref_decl (current_function_decl, decl);
6249
6250       /* If we have installed this as the canonical typedef for this
6251          type, and that type has not been defined yet, delay emitting
6252          the debug informaion for it, as we will emit it later.  */
6253       if (TYPE_NAME (TREE_TYPE (decl)) == decl
6254           && TYPE_SIZE (TREE_TYPE (decl)) == NULL_TREE)
6255         TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
6256
6257       rest_of_decl_compilation (decl, NULL_PTR,
6258                                 DECL_CONTEXT (decl) == NULL_TREE, at_eof);
6259       goto finish_end;
6260     }
6261   if (TREE_CODE (decl) != FUNCTION_DECL)
6262     {
6263       ttype = target_type (type);
6264     }
6265
6266   if (! DECL_EXTERNAL (decl) && TREE_READONLY (decl)
6267       && TYPE_NEEDS_CONSTRUCTING (type))
6268     {
6269
6270       /* Currently, GNU C++ puts constants in text space, making them
6271          impossible to initialize.  In the future, one would hope for
6272          an operating system which understood the difference between
6273          initialization and the running of a program.  */
6274       was_readonly = 1;
6275       TREE_READONLY (decl) = 0;
6276     }
6277
6278   if (TREE_CODE (decl) == FIELD_DECL)
6279     {
6280       if (init && init != error_mark_node)
6281         my_friendly_assert (TREE_PERMANENT (init), 147);
6282
6283       if (asmspec)
6284         {
6285           /* This must override the asm specifier which was placed
6286              by grokclassfn.  Lay this out fresh.  */
6287           DECL_RTL (TREE_TYPE (decl)) = NULL_RTX;
6288           DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
6289           make_decl_rtl (decl, asmspec, 0);
6290         }
6291     }
6292   /* If `start_decl' didn't like having an initialization, ignore it now.  */
6293   else if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
6294     init = NULL_TREE;
6295   else if (DECL_EXTERNAL (decl))
6296     ;
6297   else if (TREE_CODE (type) == REFERENCE_TYPE
6298            || (TYPE_LANG_SPECIFIC (type) && IS_SIGNATURE_REFERENCE (type)))
6299     {
6300       if (TREE_STATIC (decl))
6301         make_decl_rtl (decl, NULL_PTR,
6302                        toplevel_bindings_p ()
6303                        || pseudo_global_level_p ());
6304       grok_reference_init (decl, type, init, &cleanup);
6305       init = NULL_TREE;
6306     }
6307
6308   GNU_xref_decl (current_function_decl, decl);
6309
6310   if (TREE_CODE (decl) == FIELD_DECL)
6311     ;
6312   else if (TREE_CODE (decl) == CONST_DECL)
6313     {
6314       my_friendly_assert (TREE_CODE (decl) != REFERENCE_TYPE, 148);
6315
6316       DECL_INITIAL (decl) = init;
6317
6318       /* This will keep us from needing to worry about our obstacks.  */
6319       my_friendly_assert (init != NULL_TREE, 149);
6320       init = NULL_TREE;
6321     }
6322   else if (init)
6323     {
6324       if (TYPE_HAS_CONSTRUCTOR (type) || TYPE_NEEDS_CONSTRUCTING (type))
6325         {
6326           if (TREE_CODE (type) == ARRAY_TYPE)
6327             init = digest_init (type, init, (tree *) 0);
6328           else if (TREE_CODE (init) == CONSTRUCTOR)
6329             {
6330               if (TYPE_NON_AGGREGATE_CLASS (type))
6331                 {
6332                   cp_error ("`%D' must be initialized by constructor, not by `{...}'",
6333                             decl);
6334                   init = error_mark_node;
6335                 }
6336               else
6337                 goto dont_use_constructor;
6338             }
6339         }
6340       else
6341         {
6342         dont_use_constructor:
6343           if (TREE_CODE (init) != TREE_VEC)
6344             init = store_init_value (decl, init);
6345         }
6346
6347       if (init)
6348         /* We must hide the initializer so that expand_decl
6349            won't try to do something it does not understand.  */
6350         init = obscure_complex_init (decl, init);
6351     }
6352   else if (DECL_EXTERNAL (decl))
6353     ;
6354   else if (TREE_CODE_CLASS (TREE_CODE (type)) == 't'
6355            && (IS_AGGR_TYPE (type) || TYPE_NEEDS_CONSTRUCTING (type)))
6356     {
6357       tree ctype = type;
6358       while (TREE_CODE (ctype) == ARRAY_TYPE)
6359         ctype = TREE_TYPE (ctype);
6360       if (! TYPE_NEEDS_CONSTRUCTING (ctype))
6361         {
6362           if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (ctype))
6363             cp_error ("structure `%D' with uninitialized const members", decl);
6364           if (CLASSTYPE_REF_FIELDS_NEED_INIT (ctype))
6365             cp_error ("structure `%D' with uninitialized reference members",
6366                       decl);
6367         }
6368
6369       if (TREE_CODE (decl) == VAR_DECL
6370           && !DECL_INITIAL (decl)
6371           && !TYPE_NEEDS_CONSTRUCTING (type)
6372           && (TYPE_READONLY (type) || TREE_READONLY (decl)))
6373         cp_error ("uninitialized const `%D'", decl);
6374
6375       if (TYPE_SIZE (type) != NULL_TREE
6376           && TYPE_NEEDS_CONSTRUCTING (type))
6377         init = obscure_complex_init (decl, NULL_TREE);
6378     }
6379   else if (TREE_CODE (decl) == VAR_DECL
6380            && TREE_CODE (type) != REFERENCE_TYPE
6381            && (TYPE_READONLY (type) || TREE_READONLY (decl)))
6382     {
6383       /* ``Unless explicitly declared extern, a const object does not have
6384          external linkage and must be initialized. ($8.4; $12.1)'' ARM 7.1.6
6385          However, if it's `const int foo = 1; const int foo;', don't complain
6386          about the second decl, since it does have an initializer before.
6387          We deliberately don't complain about arrays, because they're
6388          supposed to be initialized by a constructor.  */
6389       if (! DECL_INITIAL (decl)
6390           && TREE_CODE (type) != ARRAY_TYPE
6391           && (!pedantic || !current_class_type))
6392         cp_error ("uninitialized const `%#D'", decl);
6393     }
6394
6395   /* For top-level declaration, the initial value was read in
6396      the temporary obstack.  MAXINDEX, rtl, etc. to be made below
6397      must go in the permanent obstack; but don't discard the
6398      temporary data yet.  */
6399
6400   if (toplevel_bindings_p () && temporary)
6401     end_temporary_allocation ();
6402
6403   /* Deduce size of array from initialization, if not already known.  */
6404
6405   if (TREE_CODE (type) == ARRAY_TYPE
6406       && TYPE_DOMAIN (type) == NULL_TREE
6407       && TREE_CODE (decl) != TYPE_DECL)
6408     {
6409       int do_default
6410         = (TREE_STATIC (decl)
6411            /* Even if pedantic, an external linkage array
6412               may have incomplete type at first.  */
6413            ? pedantic && ! DECL_EXTERNAL (decl)
6414            : !DECL_EXTERNAL (decl));
6415       tree initializer = init ? init : DECL_INITIAL (decl);
6416       int failure = complete_array_type (type, initializer, do_default);
6417
6418       if (failure == 1)
6419         cp_error ("initializer fails to determine size of `%D'", decl);
6420
6421       if (failure == 2)
6422         {
6423           if (do_default)
6424             cp_error ("array size missing in `%D'", decl);
6425           /* If a `static' var's size isn't known, make it extern as
6426              well as static, so it does not get allocated.  If it's not
6427              `static', then don't mark it extern; finish_incomplete_decl
6428              will give it a default size and it will get allocated.  */
6429           else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
6430             DECL_EXTERNAL (decl) = 1;
6431         }
6432
6433       if (pedantic && TYPE_DOMAIN (type) != NULL_TREE
6434           && tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
6435                               integer_zero_node))
6436         cp_error ("zero-size array `%D'", decl);
6437
6438       layout_decl (decl, 0);
6439     }
6440
6441   if (TREE_CODE (decl) == VAR_DECL)
6442     {
6443       if (DECL_SIZE (decl) == NULL_TREE
6444           && TYPE_SIZE (complete_type (TREE_TYPE (decl))) != NULL_TREE)
6445         layout_decl (decl, 0);
6446
6447       if (TREE_STATIC (decl) && DECL_SIZE (decl) == NULL_TREE)
6448         {
6449           /* A static variable with an incomplete type:
6450              that is an error if it is initialized.
6451              Otherwise, let it through, but if it is not `extern'
6452              then it may cause an error message later.  */
6453           if (DECL_INITIAL (decl) != NULL_TREE)
6454             cp_error ("storage size of `%D' isn't known", decl);
6455           init = NULL_TREE;
6456         }
6457       else if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
6458         {
6459           /* An automatic variable with an incomplete type: that is an error.
6460              Don't talk about array types here, since we took care of that
6461              message in grokdeclarator.  */
6462           cp_error ("storage size of `%D' isn't known", decl);
6463           TREE_TYPE (decl) = error_mark_node;
6464         }
6465       else if (!DECL_EXTERNAL (decl) && IS_AGGR_TYPE (ttype))
6466         /* Let debugger know it should output info for this type.  */
6467         note_debug_info_needed (ttype);
6468
6469       if (TREE_STATIC (decl) && DECL_CONTEXT (decl)
6470           && TREE_CODE_CLASS (TREE_CODE (DECL_CONTEXT (decl))) == 't')
6471         note_debug_info_needed (DECL_CONTEXT (decl));
6472
6473       if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
6474           && DECL_SIZE (decl) != NULL_TREE
6475           && ! TREE_CONSTANT (DECL_SIZE (decl)))
6476         {
6477           if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
6478             constant_expression_warning (DECL_SIZE (decl));
6479           else
6480             cp_error ("storage size of `%D' isn't constant", decl);
6481         }
6482
6483       if (! DECL_EXTERNAL (decl) && TYPE_NEEDS_DESTRUCTOR (type)
6484           /* Cleanups for static variables are handled by `finish_file'.  */
6485           && ! TREE_STATIC (decl))
6486         {
6487           int yes = suspend_momentary ();
6488           cleanup = maybe_build_cleanup (decl);
6489           resume_momentary (yes);
6490         }
6491     }
6492   /* PARM_DECLs get cleanups, too.  */
6493   else if (TREE_CODE (decl) == PARM_DECL && TYPE_NEEDS_DESTRUCTOR (type))
6494     {
6495       if (temporary)
6496         end_temporary_allocation ();
6497       cleanup = maybe_build_cleanup (decl);
6498       if (temporary)
6499         resume_temporary_allocation ();
6500     }
6501
6502   /* Output the assembler code and/or RTL code for variables and functions,
6503      unless the type is an undefined structure or union.
6504      If not, it will get done when the type is completed.  */
6505
6506   was_incomplete = (DECL_SIZE (decl) == NULL_TREE);
6507
6508   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL
6509       || TREE_CODE (decl) == RESULT_DECL)
6510     {
6511       /* ??? FIXME: What about nested classes?  */
6512       int toplev = toplevel_bindings_p () || pseudo_global_level_p ();
6513       int was_temp
6514         = (TREE_STATIC (decl) && TYPE_NEEDS_DESTRUCTOR (type)
6515            && allocation_temporary_p ());
6516
6517       if (was_temp)
6518         end_temporary_allocation ();
6519
6520       if (TREE_CODE (decl) == VAR_DECL && DECL_VIRTUAL_P (decl))
6521         make_decl_rtl (decl, NULL_PTR, toplev);
6522       else if (TREE_CODE (decl) == VAR_DECL
6523                && TREE_READONLY (decl)
6524                && DECL_INITIAL (decl) != NULL_TREE
6525                && DECL_INITIAL (decl) != error_mark_node
6526                && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
6527         {
6528           DECL_INITIAL (decl) = save_expr (DECL_INITIAL (decl));
6529
6530           if (asmspec)
6531             DECL_ASSEMBLER_NAME (decl) = get_identifier (asmspec);
6532
6533           if (! toplev
6534               && TREE_STATIC (decl)
6535               && ! TREE_SIDE_EFFECTS (decl)
6536               && ! TREE_PUBLIC (decl)
6537               && ! DECL_EXTERNAL (decl)
6538               && ! TYPE_NEEDS_DESTRUCTOR (type)
6539               && DECL_MODE (decl) != BLKmode)
6540             {
6541               /* If this variable is really a constant, then fill its DECL_RTL
6542                  slot with something which won't take up storage.
6543                  If something later should take its address, we can always give
6544                  it legitimate RTL at that time.  */
6545               DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
6546               store_expr (DECL_INITIAL (decl), DECL_RTL (decl), 0);
6547               TREE_ASM_WRITTEN (decl) = 1;
6548             }
6549           else if (toplev && ! TREE_PUBLIC (decl))
6550             {
6551               /* If this is a static const, change its apparent linkage
6552                  if it belongs to a #pragma interface.  */
6553               if (!interface_unknown)
6554                 {
6555                   TREE_PUBLIC (decl) = 1;
6556                   DECL_EXTERNAL (decl) = interface_only;
6557                 }
6558               make_decl_rtl (decl, asmspec, toplev);
6559             }
6560           else
6561             rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
6562         }
6563       else if (TREE_CODE (decl) == VAR_DECL
6564                && DECL_LANG_SPECIFIC (decl)
6565                && DECL_IN_AGGR_P (decl))
6566         {
6567           if (TREE_STATIC (decl))
6568             {
6569               if (init == NULL_TREE
6570 #ifdef DEFAULT_STATIC_DEFS
6571                   /* If this code is dead, then users must
6572                      explicitly declare static member variables
6573                      outside the class def'n as well.  */
6574                   && TYPE_NEEDS_CONSTRUCTING (type)
6575 #endif
6576                   )
6577                 {
6578                   DECL_EXTERNAL (decl) = 1;
6579                   make_decl_rtl (decl, asmspec, 1);
6580                 }
6581               else
6582                 rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
6583             }
6584           else
6585             /* Just a constant field.  Should not need any rtl.  */
6586             goto finish_end0;
6587         }
6588       else
6589         rest_of_decl_compilation (decl, asmspec, toplev, at_eof);
6590
6591       if (was_temp)
6592         resume_temporary_allocation ();
6593
6594       if (type != error_mark_node
6595           && TYPE_LANG_SPECIFIC (type)
6596           && CLASSTYPE_ABSTRACT_VIRTUALS (type))
6597         abstract_virtuals_error (decl, type);
6598       else if ((TREE_CODE (type) == FUNCTION_TYPE
6599                 || TREE_CODE (type) == METHOD_TYPE)
6600                && TYPE_LANG_SPECIFIC (TREE_TYPE (type))
6601                && CLASSTYPE_ABSTRACT_VIRTUALS (TREE_TYPE (type)))
6602         abstract_virtuals_error (decl, TREE_TYPE (type));
6603
6604       if (TYPE_LANG_SPECIFIC (type) && IS_SIGNATURE (type))
6605         signature_error (decl, type);
6606       else if ((TREE_CODE (type) == FUNCTION_TYPE
6607                 || TREE_CODE (type) == METHOD_TYPE)
6608                && TYPE_LANG_SPECIFIC (TREE_TYPE (type))
6609                && IS_SIGNATURE (TREE_TYPE (type)))
6610         signature_error (decl, TREE_TYPE (type));
6611
6612       if (TREE_CODE (decl) == FUNCTION_DECL)
6613         ;
6614       else if (DECL_EXTERNAL (decl)
6615                && ! (DECL_LANG_SPECIFIC (decl)
6616                      && DECL_NOT_REALLY_EXTERN (decl)))
6617         {
6618           if (init)
6619             DECL_INITIAL (decl) = init;
6620         }
6621       else if (TREE_STATIC (decl) && type != error_mark_node)
6622         {
6623           /* Cleanups for static variables are handled by `finish_file'.  */
6624           if (TYPE_NEEDS_CONSTRUCTING (type) || init != NULL_TREE
6625               || TYPE_NEEDS_DESTRUCTOR (type))
6626             expand_static_init (decl, init);
6627         }
6628       else if (! toplev)
6629         {
6630           extern int temp_slot_level;
6631           extern int target_temp_slot_level;
6632           tree old_cleanups = cleanups_this_call;
6633           int old_temp_level = target_temp_slot_level;
6634
6635           /* This is a declared decl which must live until the
6636              end of the binding contour.  It may need a cleanup.  */
6637
6638           /* Recompute the RTL of a local array now
6639              if it used to be an incomplete type.  */
6640           if (was_incomplete && ! TREE_STATIC (decl))
6641             {
6642               /* If we used it already as memory, it must stay in memory.  */
6643               TREE_ADDRESSABLE (decl) = TREE_USED (decl);
6644               /* If it's still incomplete now, no init will save it.  */
6645               if (DECL_SIZE (decl) == NULL_TREE)
6646                 DECL_INITIAL (decl) = NULL_TREE;
6647               expand_decl (decl);
6648             }
6649           else if (! TREE_ASM_WRITTEN (decl)
6650                    && (TYPE_SIZE (type) != NULL_TREE
6651                        || TREE_CODE (type) == ARRAY_TYPE))
6652             {
6653               /* Do this here, because we did not expand this decl's
6654                  rtl in start_decl.  */
6655               if (DECL_RTL (decl) == NULL_RTX)
6656                 expand_decl (decl);
6657               else if (cleanup)
6658                 {
6659                   /* XXX: Why don't we use decl here?  */
6660                   /* Ans: Because it was already expanded? */
6661                   if (! expand_decl_cleanup (NULL_TREE, cleanup))
6662                     cp_error ("parser lost in parsing declaration of `%D'",
6663                               decl);
6664                   /* Cleanup used up here.  */
6665                   cleanup = NULL_TREE;
6666                 }
6667             }
6668
6669           if (current_binding_level->is_for_scope)
6670             {
6671               struct binding_level *outer = current_binding_level->level_chain;
6672
6673               /* Check to see if the same name is already bound at
6674                  the outer level, either because it was directly declared,
6675                  or because a dead for-decl got preserved.  In either case,
6676                  the code would not have been valid under the ARM
6677                  scope rules, so clear is_for_scope for the
6678                  current_binding_level.
6679
6680                  Otherwise, we need to preserve the temp slot for decl
6681                  to last into the outer binding level.  */
6682
6683               int handling_dead_for_vars = 0;
6684               tree link = outer->names;
6685               for (; ; link = TREE_CHAIN (link))
6686                 {
6687                   if (link == NULL && handling_dead_for_vars == 0)
6688                     {
6689                       link = outer->dead_vars_from_for;
6690                       handling_dead_for_vars = 1;
6691                     }
6692                   if (link == NULL)
6693                     {
6694                       if (DECL_IN_MEMORY_P (decl))
6695                         preserve_temp_slots (DECL_RTL (decl));
6696                       break;
6697                     }
6698                   if (DECL_NAME (link) == DECL_NAME (decl))
6699                     {
6700                       if (handling_dead_for_vars)
6701                         {
6702                           tree shadowing
6703                             = purpose_member (DECL_NAME (decl),
6704                                               current_binding_level->shadowed);
6705                           if (shadowing && TREE_VALUE (shadowing) == link)
6706                             TREE_VALUE (shadowing)
6707                               = DECL_SHADOWED_FOR_VAR (link);
6708                         }
6709                       current_binding_level->is_for_scope = 0;
6710                       break;
6711                     }
6712                 }
6713             }
6714
6715           push_temp_slots ();
6716           push_temp_slots ();
6717           target_temp_slot_level = temp_slot_level;
6718
6719           if (DECL_SIZE (decl) && type != error_mark_node)
6720             {
6721               /* Compute and store the initial value.  */
6722               expand_decl_init (decl);
6723
6724               if (init || TYPE_NEEDS_CONSTRUCTING (type))
6725                 {
6726                   emit_line_note (DECL_SOURCE_FILE (decl),
6727                                   DECL_SOURCE_LINE (decl));
6728                   expand_aggr_init (decl, init, 0, flags);
6729                 }
6730
6731               /* Set this to 0 so we can tell whether an aggregate which
6732                  was initialized was ever used.  Don't do this if it has a
6733                  destructor, so we don't complain about the 'resource
6734                  allocation is initialization' idiom.  */
6735               if (TYPE_NEEDS_CONSTRUCTING (type)
6736                   && cleanup == NULL_TREE
6737                   && DECL_NAME (decl))
6738                 TREE_USED (decl) = 0;
6739             }
6740           /* Cleanup any temporaries needed for the initial value.  */
6741           expand_cleanups_to (old_cleanups);
6742           pop_temp_slots ();
6743           pop_temp_slots ();
6744           target_temp_slot_level = old_temp_level;
6745
6746           if (DECL_SIZE (decl) && type != error_mark_node)
6747             {
6748               /* Store the cleanup, if there was one.  */
6749               if (cleanup)
6750                 {
6751                   if (! expand_decl_cleanup (decl, cleanup))
6752                     cp_error ("parser lost in parsing declaration of `%D'",
6753                               decl);
6754                 }
6755             }
6756         }
6757     finish_end0:
6758
6759       /* Undo call to `pushclass' that was done in `start_decl'
6760          due to initialization of qualified member variable.
6761          I.e., Foo::x = 10;  */
6762       {
6763         tree context = DECL_REAL_CONTEXT (decl);
6764         if (context
6765             && TREE_CODE_CLASS (TREE_CODE (context)) == 't'
6766             && (TREE_CODE (decl) == VAR_DECL
6767                 /* We also have a pushclass done that we need to undo here
6768                    if we're at top level and declare a method.  */
6769                 || TREE_CODE (decl) == FUNCTION_DECL)
6770             /* If size hasn't been set, we're still defining it,
6771                and therefore inside the class body; don't pop
6772                the binding level..  */
6773             && TYPE_SIZE (context) != NULL_TREE
6774             && context == current_class_type)
6775           popclass (1);
6776       }
6777     }
6778
6779  finish_end:
6780
6781   /* If requested, warn about definitions of large data objects.  */
6782
6783   if (warn_larger_than
6784       && ! processing_template_decl
6785       && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
6786       && !DECL_EXTERNAL (decl))
6787     {
6788       register tree decl_size = DECL_SIZE (decl);
6789
6790       if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
6791         {
6792           unsigned units = TREE_INT_CST_LOW (decl_size) / BITS_PER_UNIT;
6793
6794           if (units > larger_than_size)
6795             warning_with_decl (decl, "size of `%s' is %u bytes", units);
6796         }
6797     }
6798
6799   if (need_pop)
6800     {
6801       /* Resume permanent allocation, if not within a function.  */
6802       /* The corresponding push_obstacks_nochange is in start_decl,
6803          start_method, groktypename, and in grokfield.  */
6804       pop_obstacks ();
6805     }
6806
6807   if (was_readonly)
6808     TREE_READONLY (decl) = 1;
6809 }
6810
6811 /* This is here for a midend callback from c-common.c */
6812
6813 void
6814 finish_decl (decl, init, asmspec_tree)
6815      tree decl, init;
6816      tree asmspec_tree;
6817 {
6818   cp_finish_decl (decl, init, asmspec_tree, 1, 0);
6819 }
6820
6821 void
6822 expand_static_init (decl, init)
6823      tree decl;
6824      tree init;
6825 {
6826   tree oldstatic = value_member (decl, static_aggregates);
6827
6828   if (oldstatic)
6829     {
6830       if (TREE_PURPOSE (oldstatic) && init != NULL_TREE)
6831         cp_error ("multiple initializations given for `%D'", decl);
6832     }
6833   else if (! toplevel_bindings_p () && ! pseudo_global_level_p ())
6834     {
6835       /* Emit code to perform this initialization but once.  */
6836       tree temp;
6837
6838       extern int temp_slot_level;
6839       extern int target_temp_slot_level;
6840       tree old_cleanups;
6841       int old_temp_level;
6842
6843       /* Remember this information until end of file.  */
6844       push_obstacks (&permanent_obstack, &permanent_obstack);
6845
6846       /* Emit code to perform this initialization but once.  */
6847       temp = get_temp_name (integer_type_node, 1);
6848       rest_of_decl_compilation (temp, NULL_PTR, 0, 0);
6849       expand_start_cond (build_binary_op (EQ_EXPR, temp,
6850                                           integer_zero_node, 1), 0);
6851       old_cleanups = cleanups_this_call;
6852       old_temp_level = target_temp_slot_level;
6853       push_temp_slots ();
6854       push_temp_slots ();
6855       target_temp_slot_level = temp_slot_level;
6856
6857       expand_assignment (temp, integer_one_node, 0, 0);
6858       if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
6859           || (init && TREE_CODE (init) == TREE_LIST))
6860         {
6861           expand_aggr_init (decl, init, 0, 0);
6862           do_pending_stack_adjust ();
6863         }
6864       else if (init)
6865         expand_assignment (decl, init, 0, 0);
6866
6867       /* Cleanup any temporaries needed for the initial value.  */
6868       expand_cleanups_to (old_cleanups);
6869       pop_temp_slots ();
6870       pop_temp_slots ();
6871       target_temp_slot_level = old_temp_level;
6872
6873       if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (decl)))
6874         {
6875           tree cleanup, fcall;
6876           static tree Atexit = 0;
6877           if (Atexit == 0)
6878             {
6879               tree atexit_fndecl, PFV, pfvlist;
6880               /* Remember this information until end of file.  */
6881               push_obstacks (&permanent_obstack, &permanent_obstack);
6882               PFV = build_pointer_type (build_function_type
6883                                         (void_type_node, void_list_node));
6884
6885               pfvlist = tree_cons (NULL_TREE, PFV, void_list_node);
6886
6887               push_lang_context (lang_name_c);
6888               atexit_fndecl = 
6889                 builtin_function ("atexit",
6890                                   build_function_type (void_type_node,
6891                                                        pfvlist),
6892                                   NOT_BUILT_IN, NULL_PTR);
6893               assemble_external (atexit_fndecl);
6894               Atexit = default_conversion (atexit_fndecl);
6895               pop_lang_context ();
6896               pop_obstacks ();
6897             }
6898               
6899           cleanup = start_anon_func ();
6900           expand_expr_stmt (build_cleanup (decl));
6901           end_anon_func ();
6902           mark_addressable (cleanup);
6903           cleanup = build_unary_op (ADDR_EXPR, cleanup, 0);
6904           fcall = build_function_call (Atexit, tree_cons (NULL_TREE, cleanup, NULL_TREE));
6905           expand_expr_stmt (fcall);
6906         }
6907
6908       expand_end_cond ();
6909       if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (decl)))
6910         {
6911           static_aggregates = perm_tree_cons (temp, decl, static_aggregates);
6912           TREE_STATIC (static_aggregates) = 1;
6913         }
6914
6915       /* Resume old (possibly temporary) allocation.  */
6916       pop_obstacks ();
6917     }
6918   else
6919     {
6920       /* This code takes into account memory allocation
6921          policy of `start_decl'.  Namely, if TYPE_NEEDS_CONSTRUCTING
6922          does not hold for this object, then we must make permanent
6923          the storage currently in the temporary obstack.  */
6924       if (! TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
6925         preserve_initializer ();
6926       static_aggregates = perm_tree_cons (init, decl, static_aggregates);
6927     }
6928 }
6929 \f
6930 /* Make TYPE a complete type based on INITIAL_VALUE.
6931    Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
6932    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
6933
6934 int
6935 complete_array_type (type, initial_value, do_default)
6936      tree type, initial_value;
6937      int do_default;
6938 {
6939   register tree maxindex = NULL_TREE;
6940   int value = 0;
6941
6942   if (initial_value)
6943     {
6944       /* Note MAXINDEX  is really the maximum index,
6945          one less than the size.  */
6946       if (TREE_CODE (initial_value) == STRING_CST)
6947         {
6948           int eltsize
6949             = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
6950           maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
6951                                    / eltsize) - 1, 0);
6952         }
6953       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
6954         {
6955           tree elts = CONSTRUCTOR_ELTS (initial_value);
6956           maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
6957           for (; elts; elts = TREE_CHAIN (elts))
6958             {
6959               if (TREE_PURPOSE (elts))
6960                 maxindex = TREE_PURPOSE (elts);
6961               else
6962                 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
6963             }
6964           maxindex = copy_node (maxindex);
6965         }
6966       else
6967         {
6968           /* Make an error message unless that happened already.  */
6969           if (initial_value != error_mark_node)
6970             value = 1;
6971
6972           /* Prevent further error messages.  */
6973           maxindex = build_int_2 (0, 0);
6974         }
6975     }
6976
6977   if (!maxindex)
6978     {
6979       if (do_default)
6980         maxindex = build_int_2 (0, 0);
6981       value = 2;
6982     }
6983
6984   if (maxindex)
6985     {
6986       tree itype;
6987
6988       TYPE_DOMAIN (type) = build_index_type (maxindex);
6989       if (! TREE_TYPE (maxindex))
6990         TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
6991       if (initial_value)
6992         itype = TREE_TYPE (initial_value);
6993       else
6994         itype = NULL;
6995       if (itype && !TYPE_DOMAIN (itype))
6996         TYPE_DOMAIN (itype) = TYPE_DOMAIN (type);
6997       /* The type of the main variant should never be used for arrays
6998          of different sizes.  It should only ever be completed with the
6999          size of the array.  */
7000       if (! TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)))
7001         TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)) = TYPE_DOMAIN (type);
7002     }
7003
7004   /* Lay out the type now that we can get the real answer.  */
7005
7006   layout_type (type);
7007
7008   return value;
7009 }
7010 \f
7011 /* Return zero if something is declared to be a member of type
7012    CTYPE when in the context of CUR_TYPE.  STRING is the error
7013    message to print in that case.  Otherwise, quietly return 1.  */
7014
7015 static int
7016 member_function_or_else (ctype, cur_type, string)
7017      tree ctype, cur_type;
7018      char *string;
7019 {
7020   if (ctype && ctype != cur_type)
7021     {
7022       error (string, TYPE_NAME_STRING (ctype));
7023       return 0;
7024     }
7025   return 1;
7026 }
7027 \f
7028 /* Subroutine of `grokdeclarator'.  */
7029
7030 /* Generate errors possibly applicable for a given set of specifiers.
7031    This is for ARM $7.1.2.  */
7032
7033 static void
7034 bad_specifiers (object, type, virtualp, quals, inlinep, friendp, raises)
7035      tree object;
7036      char *type;
7037      int virtualp, quals, friendp, raises, inlinep;
7038 {
7039   if (virtualp)
7040     cp_error ("`%D' declared as a `virtual' %s", object, type);
7041   if (inlinep)
7042     cp_error ("`%D' declared as an `inline' %s", object, type);
7043   if (quals)
7044     cp_error ("`const' and `volatile' function specifiers on `%D' invalid in %s declaration",
7045               object, type);
7046   if (friendp)
7047     cp_error_at ("invalid friend declaration", object);
7048   if (raises)
7049     cp_error_at ("invalid exception specifications", object);
7050 }
7051
7052 /* CTYPE is class type, or null if non-class.
7053    TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
7054    or METHOD_TYPE.
7055    DECLARATOR is the function's name.
7056    VIRTUALP is truthvalue of whether the function is virtual or not.
7057    FLAGS are to be passed through to `grokclassfn'.
7058    QUALS are qualifiers indicating whether the function is `const'
7059    or `volatile'.
7060    RAISES is a list of exceptions that this function can raise.
7061    CHECK is 1 if we must find this method in CTYPE, 0 if we should
7062    not look, and -1 if we should not call `grokclassfn' at all.  */
7063
7064 static tree
7065 grokfndecl (ctype, type, declarator, virtualp, flags, quals,
7066             raises, attrlist, check, publicp, inlinep, funcdef_flag)
7067      tree ctype, type;
7068      tree declarator;
7069      int virtualp;
7070      enum overload_flags flags;
7071      tree quals, raises, attrlist;
7072      int check, publicp, inlinep, funcdef_flag;
7073 {
7074   tree cname, decl;
7075   int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
7076
7077   if (ctype)
7078     cname = TREE_CODE (TYPE_NAME (ctype)) == TYPE_DECL
7079       ? TYPE_IDENTIFIER (ctype) : TYPE_NAME (ctype);
7080   else
7081     cname = NULL_TREE;
7082
7083   if (raises)
7084     {
7085       type = build_exception_variant (type, raises);
7086     }
7087
7088   decl = build_lang_decl (FUNCTION_DECL, declarator, type);
7089   /* propagate volatile out from type to decl */
7090   if (TYPE_VOLATILE (type))
7091       TREE_THIS_VOLATILE (decl) = 1;
7092
7093   /* Should probably propagate const out from type to decl I bet (mrs).  */
7094   if (staticp)
7095     {
7096       DECL_STATIC_FUNCTION_P (decl) = 1;
7097       DECL_CONTEXT (decl) = ctype;
7098     }
7099
7100   if (ctype)
7101     DECL_CLASS_CONTEXT (decl) = ctype;
7102
7103   /* All function decls start out public; we'll fix their linkage later (at
7104      definition or EOF) if appropriate.  */
7105   TREE_PUBLIC (decl) = 1;
7106
7107   if (ctype == NULL_TREE && ! strcmp (IDENTIFIER_POINTER (declarator), "main"))
7108     {
7109       if (inlinep)
7110         error ("cannot declare `main' to be inline");
7111       else if (! publicp)
7112         error ("cannot declare `main' to be static");
7113       inlinep = 0;
7114       publicp = 1;
7115     }
7116           
7117   if (! publicp)
7118     DECL_C_STATIC (decl) = 1;
7119
7120   if (inlinep)
7121     DECL_THIS_INLINE (decl) = DECL_INLINE (decl) = 1;
7122
7123   DECL_EXTERNAL (decl) = 1;
7124   if (quals != NULL_TREE && TREE_CODE (type) == FUNCTION_TYPE)
7125     {
7126       cp_error ("%smember function `%D' cannot have `%T' method qualifier",
7127                 (ctype ? "static " : "non-"), decl, TREE_VALUE (quals));
7128       quals = NULL_TREE;
7129     }
7130
7131   if (IDENTIFIER_OPNAME_P (DECL_NAME (decl)))
7132     grok_op_properties (decl, virtualp, check < 0);
7133
7134   if (ctype && hack_decl_function_context (decl))
7135       DECL_NO_STATIC_CHAIN (decl) = 1;
7136
7137   /* Caller will do the rest of this.  */
7138   if (check < 0)
7139     return decl;
7140
7141   if (check && funcdef_flag)
7142     DECL_INITIAL (decl) = error_mark_node;
7143
7144   if (flags == NO_SPECIAL && ctype && constructor_name (cname) == declarator)
7145     {
7146       tree tmp;
7147       /* Just handle constructors here.  We could do this
7148          inside the following if stmt, but I think
7149          that the code is more legible by breaking this
7150          case out.  See comments below for what each of
7151          the following calls is supposed to do.  */
7152       DECL_CONSTRUCTOR_P (decl) = 1;
7153
7154       grokclassfn (ctype, declarator, decl, flags, quals);
7155       if (check)
7156         {
7157           tmp = check_classfn (ctype, decl);
7158           if (tmp && DECL_ARTIFICIAL (tmp))
7159             cp_error ("definition of implicitly-declared `%D'", tmp);
7160           if (tmp && duplicate_decls (decl, tmp))
7161             return tmp;
7162         }
7163       if (! grok_ctor_properties (ctype, decl))
7164         return NULL_TREE;
7165
7166       if (check == 0 && ! current_function_decl)
7167         {
7168           /* FIXME: this should only need to look at
7169              IDENTIFIER_GLOBAL_VALUE.  */
7170           tmp = lookup_name (DECL_ASSEMBLER_NAME (decl), 0);
7171           if (tmp == NULL_TREE)
7172             IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (decl)) = decl;
7173           else if (TREE_CODE (tmp) != TREE_CODE (decl))
7174             cp_error ("inconsistent declarations for `%D'", decl);
7175           else
7176             {
7177               duplicate_decls (decl, tmp);
7178               decl = tmp;
7179               /* avoid creating circularities.  */
7180               DECL_CHAIN (decl) = NULL_TREE;
7181             }
7182           make_decl_rtl (decl, NULL_PTR, 1);
7183         }
7184     }
7185   else
7186     {
7187       tree tmp;
7188
7189       /* Function gets the ugly name, field gets the nice one.
7190          This call may change the type of the function (because
7191          of default parameters)!  */
7192       if (ctype != NULL_TREE)
7193         grokclassfn (ctype, cname, decl, flags, quals);
7194
7195       if (ctype != NULL_TREE && check)
7196         {
7197           tmp = check_classfn (ctype, decl);
7198           if (tmp && DECL_STATIC_FUNCTION_P (tmp)
7199               && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
7200             {
7201               /* Remove the `this' parm added by grokclassfn.
7202                  XXX Isn't this done in start_function, too?  */
7203               revert_static_member_fn (&decl, NULL, NULL);
7204               last_function_parms = TREE_CHAIN (last_function_parms);
7205             }
7206           if (tmp && DECL_ARTIFICIAL (tmp))
7207             cp_error ("definition of implicitly-declared `%D'", tmp);
7208           if (tmp && duplicate_decls (decl, tmp))
7209             return tmp;
7210         }
7211
7212       if (ctype == NULL_TREE || check)
7213         return decl;
7214
7215       /* Now install the declaration of this function so that others may
7216          find it (esp. its DECL_FRIENDLIST).  Don't do this for local class
7217          methods, though.  */
7218       if (! current_function_decl)
7219         {
7220           /* FIXME: this should only need to look at
7221              IDENTIFIER_GLOBAL_VALUE.  */
7222           tmp = lookup_name (DECL_ASSEMBLER_NAME (decl), 0);
7223           if (tmp == NULL_TREE)
7224             IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (decl)) = decl;
7225           else if (TREE_CODE (tmp) != TREE_CODE (decl))
7226             cp_error ("inconsistent declarations for `%D'", decl);
7227           else
7228             {
7229               duplicate_decls (decl, tmp);
7230               decl = tmp;
7231               /* avoid creating circularities.  */
7232               DECL_CHAIN (decl) = NULL_TREE;
7233             }
7234
7235           if (attrlist)
7236             cplus_decl_attributes (decl, TREE_PURPOSE (attrlist),
7237                                    TREE_VALUE (attrlist));
7238           make_decl_rtl (decl, NULL_PTR, 1);
7239         }
7240       if (virtualp)
7241         {
7242           DECL_VIRTUAL_P (decl) = 1;
7243           if (DECL_VINDEX (decl) == NULL_TREE)
7244             DECL_VINDEX (decl) = error_mark_node;
7245           IDENTIFIER_VIRTUAL_P (DECL_NAME (decl)) = 1;
7246         }
7247     }
7248   return decl;
7249 }
7250
7251 static tree
7252 grokvardecl (type, declarator, specbits, initialized, constp)
7253      tree type;
7254      tree declarator;
7255      RID_BIT_TYPE specbits;
7256      int initialized;
7257      int constp;
7258 {
7259   tree decl;
7260
7261   if (TREE_CODE (type) == OFFSET_TYPE)
7262     {
7263       /* If you declare a static member so that it
7264          can be initialized, the code will reach here.  */
7265       tree basetype = TYPE_OFFSET_BASETYPE (type);
7266       type = TREE_TYPE (type);
7267       decl = build_lang_field_decl (VAR_DECL, declarator, type);
7268       DECL_CONTEXT (decl) = basetype;
7269       DECL_CLASS_CONTEXT (decl) = basetype;
7270       DECL_ASSEMBLER_NAME (decl) = build_static_name (basetype, declarator);
7271     }
7272   else
7273     decl = build_decl (VAR_DECL, declarator, complete_type (type));
7274
7275   DECL_ASSEMBLER_NAME (decl) = current_namespace_id (DECL_ASSEMBLER_NAME (decl));
7276
7277   if (RIDBIT_SETP (RID_EXTERN, specbits))
7278     {
7279       DECL_THIS_EXTERN (decl) = 1;
7280       DECL_EXTERNAL (decl) = !initialized;
7281     }
7282
7283   /* In class context, static means one per class,
7284      public access, and static storage.  */
7285   if (DECL_FIELD_CONTEXT (decl) != NULL_TREE
7286       && IS_AGGR_TYPE (DECL_FIELD_CONTEXT (decl)))
7287     {
7288       TREE_PUBLIC (decl) = 1;
7289       TREE_STATIC (decl) = 1;
7290       DECL_EXTERNAL (decl) = 0;
7291     }
7292   /* At top level, either `static' or no s.c. makes a definition
7293      (perhaps tentative), and absence of `static' makes it public.  */
7294   else if (toplevel_bindings_p ())
7295     {
7296       TREE_PUBLIC (decl) = (RIDBIT_NOTSETP (RID_STATIC, specbits)
7297                             && (DECL_THIS_EXTERN (decl) || ! constp));
7298       TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
7299     }
7300   /* Not at top level, only `static' makes a static definition.  */
7301   else
7302     {
7303       TREE_STATIC (decl) = !! RIDBIT_SETP (RID_STATIC, specbits);
7304       TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
7305     }
7306   return decl;
7307 }
7308
7309 /* Create a canonical pointer to member function type.  */
7310
7311 tree
7312 build_ptrmemfunc_type (type)
7313      tree type;
7314 {
7315   tree fields[4];
7316   tree t;
7317   tree u;
7318
7319   /* If a canonical type already exists for this type, use it.  We use
7320      this method instead of type_hash_canon, because it only does a
7321      simple equality check on the list of field members.  */
7322
7323   if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
7324     return t;
7325
7326   push_obstacks (TYPE_OBSTACK (type), TYPE_OBSTACK (type));
7327
7328   u = make_lang_type (UNION_TYPE);
7329   IS_AGGR_TYPE (u) = 0;
7330   fields[0] = build_lang_field_decl (FIELD_DECL, pfn_identifier, type);
7331   fields[1] = build_lang_field_decl (FIELD_DECL, delta2_identifier,
7332                                      delta_type_node);
7333   finish_builtin_type (u, "__ptrmemfunc_type", fields, 1, ptr_type_node);
7334   TYPE_NAME (u) = NULL_TREE;
7335
7336   t = make_lang_type (RECORD_TYPE);
7337
7338   /* Let the front-end know this is a pointer to member function.  */
7339   TYPE_PTRMEMFUNC_FLAG (t) = 1;
7340   /* and not really an aggregate.  */
7341   IS_AGGR_TYPE (t) = 0;
7342
7343   fields[0] = build_lang_field_decl (FIELD_DECL, delta_identifier,
7344                                      delta_type_node);
7345   fields[1] = build_lang_field_decl (FIELD_DECL, index_identifier,
7346                                      delta_type_node);
7347   fields[2] = build_lang_field_decl (FIELD_DECL, pfn_or_delta2_identifier, u);
7348   finish_builtin_type (t, "__ptrmemfunc_type", fields, 2, ptr_type_node);
7349
7350   pop_obstacks ();
7351
7352   /* Zap out the name so that the back-end will give us the debugging
7353      information for this anonymous RECORD_TYPE.  */
7354   TYPE_NAME (t) = NULL_TREE;
7355
7356   TYPE_SET_PTRMEMFUNC_TYPE (type, t);
7357
7358   /* Seems to be wanted.  */
7359   CLASSTYPE_GOT_SEMICOLON (t) = 1;
7360   return t;
7361 }
7362
7363 /* Given declspecs and a declarator,
7364    determine the name and type of the object declared
7365    and construct a ..._DECL node for it.
7366    (In one case we can return a ..._TYPE node instead.
7367     For invalid input we sometimes return 0.)
7368
7369    DECLSPECS is a chain of tree_list nodes whose value fields
7370     are the storage classes and type specifiers.
7371
7372    DECL_CONTEXT says which syntactic context this declaration is in:
7373      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
7374      FUNCDEF for a function definition.  Like NORMAL but a few different
7375       error messages in each case.  Return value may be zero meaning
7376       this definition is too screwy to try to parse.
7377      MEMFUNCDEF for a function definition.  Like FUNCDEF but prepares to
7378       handle member functions (which have FIELD context).
7379       Return value may be zero meaning this definition is too screwy to
7380       try to parse.
7381      PARM for a parameter declaration (either within a function prototype
7382       or before a function body).  Make a PARM_DECL, or return void_type_node.
7383      CATCHPARM for a parameter declaration before a catch clause.
7384      TYPENAME if for a typename (in a cast or sizeof).
7385       Don't make a DECL node; just return the ..._TYPE node.
7386      FIELD for a struct or union field; make a FIELD_DECL.
7387      BITFIELD for a field with specified width.
7388    INITIALIZED is 1 if the decl has an initializer.
7389
7390    In the TYPENAME case, DECLARATOR is really an absolute declarator.
7391    It may also be so in the PARM case, for a prototype where the
7392    argument type is specified but not the name.
7393
7394    This function is where the complicated C meanings of `static'
7395    and `extern' are interpreted.
7396
7397    For C++, if there is any monkey business to do, the function which
7398    calls this one must do it, i.e., prepending instance variables,
7399    renaming overloaded function names, etc.
7400
7401    Note that for this C++, it is an error to define a method within a class
7402    which does not belong to that class.
7403
7404    Except in the case where SCOPE_REFs are implicitly known (such as
7405    methods within a class being redundantly qualified),
7406    declarations which involve SCOPE_REFs are returned as SCOPE_REFs
7407    (class_name::decl_name).  The caller must also deal with this.
7408
7409    If a constructor or destructor is seen, and the context is FIELD,
7410    then the type gains the attribute TREE_HAS_x.  If such a declaration
7411    is erroneous, NULL_TREE is returned.
7412
7413    QUALS is used only for FUNCDEF and MEMFUNCDEF cases.  For a member
7414    function, these are the qualifiers to give to the `this' pointer.
7415
7416    May return void_type_node if the declarator turned out to be a friend.
7417    See grokfield for details.  */
7418
7419 enum return_types { return_normal, return_ctor, return_dtor, return_conversion };
7420
7421 tree
7422 grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
7423      tree declspecs;
7424      tree declarator;
7425      enum decl_context decl_context;
7426      int initialized;
7427      tree attrlist;
7428 {
7429   RID_BIT_TYPE specbits;
7430   int nclasses = 0;
7431   tree spec;
7432   tree type = NULL_TREE;
7433   int longlong = 0;
7434   int constp;
7435   int volatilep;
7436   int virtualp, explicitp, friendp, inlinep, staticp;
7437   int explicit_int = 0;
7438   int explicit_char = 0;
7439   int opaque_typedef = 0;
7440   tree typedef_decl = NULL_TREE;
7441   char *name;
7442   tree typedef_type = NULL_TREE;
7443   int funcdef_flag = 0;
7444   enum tree_code innermost_code = ERROR_MARK;
7445   int bitfield = 0;
7446 #if 0
7447   /* See the code below that used this.  */
7448   tree decl_machine_attr = NULL_TREE;
7449 #endif
7450   /* Set this to error_mark_node for FIELD_DECLs we could not handle properly.
7451      All FIELD_DECLs we build here have `init' put into their DECL_INITIAL.  */
7452   tree init = NULL_TREE;
7453
7454   /* Keep track of what sort of function is being processed
7455      so that we can warn about default return values, or explicit
7456      return values which do not match prescribed defaults.  */
7457   enum return_types return_type = return_normal;
7458
7459   tree dname = NULL_TREE;
7460   tree ctype = current_class_type;
7461   tree ctor_return_type = NULL_TREE;
7462   enum overload_flags flags = NO_SPECIAL;
7463   tree quals = NULL_TREE;
7464   tree raises = NULL_TREE;
7465
7466   RIDBIT_RESET_ALL (specbits);
7467   if (decl_context == FUNCDEF)
7468     funcdef_flag = 1, decl_context = NORMAL;
7469   else if (decl_context == MEMFUNCDEF)
7470     funcdef_flag = -1, decl_context = FIELD;
7471   else if (decl_context == BITFIELD)
7472     bitfield = 1, decl_context = FIELD;
7473
7474   /* Look inside a declarator for the name being declared
7475      and get it as a string, for an error message.  */
7476   {
7477     tree *next = &declarator;
7478     register tree decl;
7479     name = NULL;
7480
7481     while (next && *next)
7482       {
7483         decl = *next;
7484         switch (TREE_CODE (decl))
7485           {
7486           case COND_EXPR:
7487             ctype = NULL_TREE;
7488             next = &TREE_OPERAND (decl, 0);
7489             break;
7490
7491           case BIT_NOT_EXPR:    /* for C++ destructors!  */
7492             {
7493               tree name = TREE_OPERAND (decl, 0);
7494               tree rename = NULL_TREE;
7495
7496               my_friendly_assert (flags == NO_SPECIAL, 152);
7497               flags = DTOR_FLAG;
7498               return_type = return_dtor;
7499               if (TREE_CODE (name) == TYPE_DECL)
7500                 TREE_OPERAND (decl, 0) = name = constructor_name (name);
7501               my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 153);
7502               if (ctype == NULL_TREE)
7503                 {
7504                   if (current_class_type == NULL_TREE)
7505                     {
7506                       error ("destructors must be member functions");
7507                       flags = NO_SPECIAL;
7508                     }
7509                   else
7510                     {
7511                       tree t = constructor_name (current_class_name);
7512                       if (t != name)
7513                         rename = t;
7514                     }
7515                 }
7516               else
7517                 {
7518                   tree t = constructor_name (ctype);
7519                   if (t != name)
7520                     rename = t;
7521                 }
7522
7523               if (rename)
7524                 {
7525                   cp_error ("destructor `%T' must match class name `%T'",
7526                             name, rename);
7527                   TREE_OPERAND (decl, 0) = rename;
7528                 }
7529               next = &name;
7530             }
7531             break;
7532
7533           case ADDR_EXPR:       /* C++ reference declaration */
7534             /* fall through */
7535           case ARRAY_REF:
7536           case INDIRECT_REF:
7537             ctype = NULL_TREE;
7538             innermost_code = TREE_CODE (decl);
7539             next = &TREE_OPERAND (decl, 0);
7540             break;
7541
7542           case CALL_EXPR:
7543             if (parmlist_is_exprlist (TREE_OPERAND (decl, 1)))
7544               {
7545                 /* This is actually a variable declaration using constructor
7546                    syntax.  We need to call start_decl and cp_finish_decl so we
7547                    can get the variable initialized...  */
7548
7549                 *next = TREE_OPERAND (decl, 0);
7550                 init = TREE_OPERAND (decl, 1);
7551
7552                 decl = start_decl (declarator, declspecs, 1);
7553                 finish_decl (decl, init, NULL_TREE);
7554                 return 0;
7555               }
7556             innermost_code = TREE_CODE (decl);
7557             if (decl_context == FIELD && ctype == NULL_TREE)
7558               ctype = current_class_type;
7559             if (ctype
7560                 && TREE_OPERAND (decl, 0)
7561                 && (TREE_CODE (TREE_OPERAND (decl, 0)) == TYPE_DECL
7562                     && ((DECL_NAME (TREE_OPERAND (decl, 0))
7563                          == constructor_name_full (ctype))
7564                         || (DECL_NAME (TREE_OPERAND (decl, 0))
7565                             == constructor_name (ctype)))))
7566               TREE_OPERAND (decl, 0) = constructor_name (ctype);
7567             next = &TREE_OPERAND (decl, 0);
7568             decl = *next;
7569             if (ctype != NULL_TREE
7570                 && decl != NULL_TREE && flags != DTOR_FLAG
7571                 && decl == constructor_name (ctype))
7572               {
7573                 return_type = return_ctor;
7574                 ctor_return_type = ctype;
7575               }
7576             ctype = NULL_TREE;
7577             break;
7578
7579           case IDENTIFIER_NODE:
7580             dname = decl;
7581             next = 0;
7582
7583             if (is_rid (dname))
7584               {
7585                 cp_error ("declarator-id missing; using reserved word `%D'",
7586                           dname);
7587                 name = IDENTIFIER_POINTER (dname);
7588               }
7589             if (! IDENTIFIER_OPNAME_P (dname)
7590                 /* Linux headers use '__op'.  Arrgh.  */
7591                 || IDENTIFIER_TYPENAME_P (dname) && ! TREE_TYPE (dname))
7592               name = IDENTIFIER_POINTER (dname);
7593             else
7594               {
7595                 if (IDENTIFIER_TYPENAME_P (dname))
7596                   {
7597                     my_friendly_assert (flags == NO_SPECIAL, 154);
7598                     flags = TYPENAME_FLAG;
7599                     ctor_return_type = TREE_TYPE (dname);
7600                     return_type = return_conversion;
7601                   }
7602                 name = operator_name_string (dname);
7603               }
7604             break;
7605
7606             /* C++ extension */
7607           case SCOPE_REF:
7608             {
7609               /* Perform error checking, and decide on a ctype.  */
7610               tree cname = TREE_OPERAND (decl, 0);
7611               if (cname == NULL_TREE)
7612                 ctype = NULL_TREE;
7613               else if (! is_aggr_type (cname, 1))
7614                 TREE_OPERAND (decl, 0) = NULL_TREE;
7615               /* Must test TREE_OPERAND (decl, 1), in case user gives
7616                  us `typedef (class::memfunc)(int); memfunc *memfuncptr;'  */
7617               else if (TREE_OPERAND (decl, 1)
7618                        && TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)
7619                 ctype = cname;
7620               else if (TREE_CODE (cname) == TEMPLATE_TYPE_PARM)
7621                 {
7622                   cp_error ("`%T::%D' is not a valid declarator", cname,
7623                             TREE_OPERAND (decl, 1));
7624                   cp_error ("  perhaps you want `typename %T::%D' to make it a type",
7625                             cname, TREE_OPERAND (decl, 1));
7626                   return void_type_node;
7627                 }
7628               else if (ctype == NULL_TREE)
7629                 ctype = cname;
7630               else if (TREE_COMPLEXITY (decl) == current_class_depth)
7631                 TREE_OPERAND (decl, 0) = ctype;
7632               else
7633                 {
7634                   if (! UNIQUELY_DERIVED_FROM_P (cname, ctype))
7635                     {
7636                       cp_error ("type `%T' is not derived from type `%T'",
7637                                 cname, ctype);
7638                       TREE_OPERAND (decl, 0) = NULL_TREE;
7639                     }
7640                   else
7641                     ctype = cname;
7642                 }
7643
7644               if (ctype && TREE_CODE (TREE_OPERAND (decl, 1)) == TYPE_DECL
7645                   && ((DECL_NAME (TREE_OPERAND (decl, 1))
7646                        == constructor_name_full (ctype))
7647                       || (DECL_NAME (TREE_OPERAND (decl, 1))
7648                           == constructor_name (ctype))))
7649                 TREE_OPERAND (decl, 1) = constructor_name (ctype);
7650               next = &TREE_OPERAND (decl, 1);
7651               decl = *next;
7652               if (ctype)
7653                 {
7654                   if (TREE_CODE (decl) == IDENTIFIER_NODE
7655                       && constructor_name (ctype) == decl)
7656                     {
7657                       return_type = return_ctor;
7658                       ctor_return_type = ctype;
7659                     }
7660                   else if (TREE_CODE (decl) == BIT_NOT_EXPR
7661                            && TREE_CODE (TREE_OPERAND (decl, 0)) == IDENTIFIER_NODE
7662                            && (constructor_name (ctype) == TREE_OPERAND (decl, 0)
7663                                || constructor_name_full (ctype) == TREE_OPERAND (decl, 0)))
7664                     {
7665                       return_type = return_dtor;
7666                       ctor_return_type = ctype;
7667                       flags = DTOR_FLAG;
7668                       TREE_OPERAND (decl, 0) = constructor_name (ctype);
7669                       next = &TREE_OPERAND (decl, 0);
7670                     }
7671                 }
7672             }
7673             break;
7674
7675           case ERROR_MARK:
7676             next = 0;
7677             break;
7678
7679           case TYPE_DECL:
7680             /* Parse error puts this typespec where
7681                a declarator should go.  */
7682             cp_error ("`%T' specified as declarator-id", DECL_NAME (decl));
7683             if (TREE_TYPE (decl) == current_class_type)
7684               cp_error ("  perhaps you want `%T' for a constructor",
7685                         current_class_name);
7686             dname = DECL_NAME (decl);
7687             name = IDENTIFIER_POINTER (dname);
7688
7689             /* Avoid giving two errors for this.  */
7690             IDENTIFIER_CLASS_VALUE (dname) = NULL_TREE;
7691
7692             declspecs = temp_tree_cons (NULL_TREE, integer_type_node,
7693                                         declspecs);
7694             *next = dname;
7695             next = 0;
7696             break;
7697
7698           default:
7699             cp_compiler_error ("`%D' as declarator", decl);
7700             return 0; /* We used to do a 155 abort here.  */
7701           }
7702       }
7703     if (name == NULL)
7704       name = "type name";
7705   }
7706
7707   /* A function definition's declarator must have the form of
7708      a function declarator.  */
7709
7710   if (funcdef_flag && innermost_code != CALL_EXPR)
7711     return 0;
7712
7713   if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
7714       && innermost_code != CALL_EXPR
7715       && ! (ctype && declspecs == NULL_TREE))
7716     {
7717       cp_error ("declaration of `%D' as non-function", dname);
7718       return void_type_node;
7719     }
7720
7721   /* Anything declared one level down from the top level
7722      must be one of the parameters of a function
7723      (because the body is at least two levels down).  */
7724
7725   /* This heuristic cannot be applied to C++ nodes! Fixed, however,
7726      by not allowing C++ class definitions to specify their parameters
7727      with xdecls (must be spec.d in the parmlist).
7728
7729      Since we now wait to push a class scope until we are sure that
7730      we are in a legitimate method context, we must set oldcname
7731      explicitly (since current_class_name is not yet alive).
7732
7733      We also want to avoid calling this a PARM if it is in a namespace.  */
7734
7735   if (decl_context == NORMAL && ! namespace_bindings_p ()
7736       && ! pseudo_global_level_p ())
7737     {
7738       struct binding_level *b = current_binding_level;
7739       current_binding_level = b->level_chain;
7740       if (current_binding_level != 0 && toplevel_bindings_p ())
7741         decl_context = PARM;
7742       current_binding_level = b;
7743     }
7744
7745   /* Look through the decl specs and record which ones appear.
7746      Some typespecs are defined as built-in typenames.
7747      Others, the ones that are modifiers of other types,
7748      are represented by bits in SPECBITS: set the bits for
7749      the modifiers that appear.  Storage class keywords are also in SPECBITS.
7750
7751      If there is a typedef name or a type, store the type in TYPE.
7752      This includes builtin typedefs such as `int'.
7753
7754      Set EXPLICIT_INT if the type is `int' or `char' and did not
7755      come from a user typedef.
7756
7757      Set LONGLONG if `long' is mentioned twice.
7758
7759      For C++, constructors and destructors have their own fast treatment.  */
7760
7761   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
7762     {
7763       register int i;
7764       register tree id;
7765
7766       /* Certain parse errors slip through.  For example,
7767          `int class;' is not caught by the parser. Try
7768          weakly to recover here.  */
7769       if (TREE_CODE (spec) != TREE_LIST)
7770         return 0;
7771
7772       id = TREE_VALUE (spec);
7773
7774       if (TREE_CODE (id) == IDENTIFIER_NODE)
7775         {
7776           if (id == ridpointers[(int) RID_INT]
7777               || id == ridpointers[(int) RID_CHAR]
7778               || id == ridpointers[(int) RID_BOOL]
7779               || id == ridpointers[(int) RID_WCHAR])
7780             {
7781               if (type)
7782                 {
7783                   if (id == ridpointers[(int) RID_BOOL])
7784                     error ("`bool' is now a keyword");
7785                   else
7786                     cp_error ("extraneous `%T' ignored", id);
7787                 }
7788               else
7789                 {
7790                   if (id == ridpointers[(int) RID_INT])
7791                     explicit_int = 1;
7792                   else if (id == ridpointers[(int) RID_CHAR])
7793                     explicit_char = 1;
7794                   type = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (id));
7795                 }
7796               goto found;
7797             }
7798           /* C++ aggregate types.  */
7799           if (IDENTIFIER_HAS_TYPE_VALUE (id))
7800             {
7801               if (type)
7802                 cp_error ("multiple declarations `%T' and `%T'", type, id);
7803               else
7804                 type = IDENTIFIER_TYPE_VALUE (id);
7805               goto found;
7806             }
7807
7808           for (i = (int) RID_FIRST_MODIFIER; i <= (int) RID_LAST_MODIFIER; i++)
7809             {
7810               if (ridpointers[i] == id)
7811                 {
7812                   if (i == (int) RID_LONG && RIDBIT_SETP (i, specbits))
7813                     {
7814                       if (pedantic && ! in_system_header)
7815                         pedwarn ("ANSI C++ does not support `long long'");
7816                       else if (longlong)
7817                         error ("`long long long' is too long for GCC");
7818                       else
7819                         longlong = 1;
7820                     }
7821                   else if (RIDBIT_SETP (i, specbits))
7822                     pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
7823                   RIDBIT_SET (i, specbits);
7824                   goto found;
7825                 }
7826             }
7827         }
7828       /* C++ aggregate types.  */
7829       else if (TREE_CODE (id) == TYPE_DECL)
7830         {
7831           if (type)
7832             cp_error ("multiple declarations `%T' and `%T'", type,
7833                       TREE_TYPE (id));
7834           else
7835             {
7836               type = TREE_TYPE (id);
7837               if (TREE_CODE (type) == TYPENAME_TYPE
7838                   && TYPE_CONTEXT (type) == current_class_type)
7839                 {
7840                   /* Members of the current class get resolved immediately;
7841                      we couldn't catch this one earlier because we hadn't
7842                      pushed into the class yet.  */
7843                   if (TREE_TYPE (type))
7844                     type = TREE_TYPE (type);
7845                   else
7846                     type = make_typename_type (TYPE_CONTEXT (type),
7847                                                TYPE_IDENTIFIER (type));
7848                 }
7849               TREE_VALUE (spec) = type;
7850             }
7851           goto found;
7852         }
7853       if (type)
7854         error ("two or more data types in declaration of `%s'", name);
7855       else if (TREE_CODE (id) == IDENTIFIER_NODE)
7856         {
7857           register tree t = lookup_name (id, 1);
7858           if (!t || TREE_CODE (t) != TYPE_DECL)
7859             error ("`%s' fails to be a typedef or built in type",
7860                    IDENTIFIER_POINTER (id));
7861           else
7862             {
7863               type = TREE_TYPE (t);
7864 #if 0
7865               /* See the code below that used this.  */
7866               decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
7867 #endif
7868               typedef_decl = t;
7869             }
7870         }
7871       else if (TREE_CODE (id) != ERROR_MARK)
7872         /* Can't change CLASS nodes into RECORD nodes here!  */
7873         type = id;
7874
7875     found: ;
7876     }
7877
7878   typedef_type = type;
7879
7880   /* No type at all: default to `int', and set EXPLICIT_INT
7881      because it was not a user-defined typedef.
7882      Except when we have a `typedef' inside a signature, in
7883      which case the type defaults to `unknown type' and is
7884      instantiated when assigning to a signature pointer or ref.  */
7885
7886   if (type == NULL_TREE
7887       && (RIDBIT_SETP (RID_SIGNED, specbits)
7888           || RIDBIT_SETP (RID_UNSIGNED, specbits)
7889           || RIDBIT_SETP (RID_LONG, specbits)
7890           || RIDBIT_SETP (RID_SHORT, specbits)))
7891     {
7892       /* These imply 'int'.  */
7893       type = integer_type_node;
7894       explicit_int = 1;
7895     }
7896
7897   if (type == NULL_TREE)
7898     {
7899       explicit_int = -1;
7900       if (return_type == return_dtor)
7901         type = void_type_node;
7902       else if (return_type == return_ctor)
7903         type = build_pointer_type (ctor_return_type);
7904       else if (return_type == return_conversion)
7905         type = ctor_return_type;
7906       else if (current_class_type
7907                && IS_SIGNATURE (current_class_type)
7908                && RIDBIT_SETP (RID_TYPEDEF, specbits)
7909                && (decl_context == FIELD || decl_context == NORMAL))
7910         {
7911           explicit_int = 0;
7912           opaque_typedef = 1;
7913           type = copy_node (opaque_type_node);
7914         }
7915       else
7916         {
7917           if (funcdef_flag)
7918             {
7919               if (warn_return_type
7920                   && return_type == return_normal)
7921                 /* Save warning until we know what is really going on.  */
7922                 warn_about_return_type = 1;
7923             }
7924           else if (RIDBIT_SETP (RID_TYPEDEF, specbits))
7925             pedwarn ("ANSI C++ forbids typedef which does not specify a type");
7926           else if (declspecs == NULL_TREE &&
7927                    (innermost_code != CALL_EXPR || pedantic))
7928             cp_pedwarn ("ANSI C++ forbids declaration `%D' with no type or storage class",
7929                         dname);
7930           type = integer_type_node;
7931         }
7932     }
7933   else if (return_type == return_dtor)
7934     {
7935       error ("return type specification for destructor invalid");
7936       type = void_type_node;
7937     }
7938   else if (return_type == return_ctor)
7939     {
7940       error ("return type specification for constructor invalid");
7941       type = build_pointer_type (ctor_return_type);
7942     }
7943   else if (return_type == return_conversion)
7944     {
7945       if (comptypes (type, ctor_return_type, 1) == 0)
7946         cp_error ("operator `%T' declared to return `%T'",
7947                   ctor_return_type, type);
7948       else
7949         cp_pedwarn ("return type specified for `operator %T'",
7950                     ctor_return_type);
7951
7952       type = ctor_return_type;
7953     }
7954
7955   ctype = NULL_TREE;
7956
7957   /* Now process the modifiers that were specified
7958      and check for invalid combinations.  */
7959
7960   /* Long double is a special combination.  */
7961
7962   if (RIDBIT_SETP (RID_LONG, specbits)
7963       && TYPE_MAIN_VARIANT (type) == double_type_node)
7964     {
7965       RIDBIT_RESET (RID_LONG, specbits);
7966       type = build_type_variant (long_double_type_node, TYPE_READONLY (type),
7967                                  TYPE_VOLATILE (type));
7968     }
7969
7970   /* Check all other uses of type modifiers.  */
7971
7972   if (RIDBIT_SETP (RID_UNSIGNED, specbits)
7973       || RIDBIT_SETP (RID_SIGNED, specbits)
7974       || RIDBIT_SETP (RID_LONG, specbits)
7975       || RIDBIT_SETP (RID_SHORT, specbits))
7976     {
7977       int ok = 0;
7978
7979       if (TREE_CODE (type) == REAL_TYPE)
7980         error ("short, signed or unsigned invalid for `%s'", name);
7981       else if (TREE_CODE (type) != INTEGER_TYPE)
7982         error ("long, short, signed or unsigned invalid for `%s'", name);
7983       else if (RIDBIT_SETP (RID_LONG, specbits)
7984                && RIDBIT_SETP (RID_SHORT, specbits))
7985         error ("long and short specified together for `%s'", name);
7986       else if ((RIDBIT_SETP (RID_LONG, specbits)
7987                 || RIDBIT_SETP (RID_SHORT, specbits))
7988                && explicit_char)
7989         error ("long or short specified with char for `%s'", name);
7990       else if ((RIDBIT_SETP (RID_LONG, specbits)
7991                 || RIDBIT_SETP (RID_SHORT, specbits))
7992                && TREE_CODE (type) == REAL_TYPE)
7993         error ("long or short specified with floating type for `%s'", name);
7994       else if (RIDBIT_SETP (RID_SIGNED, specbits)
7995                && RIDBIT_SETP (RID_UNSIGNED, specbits))
7996         error ("signed and unsigned given together for `%s'", name);
7997       else
7998         {
7999           ok = 1;
8000           if (!explicit_int && !explicit_char && pedantic)
8001             {
8002               pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
8003                        name);
8004               if (flag_pedantic_errors)
8005                 ok = 0;
8006             }
8007         }
8008
8009       /* Discard the type modifiers if they are invalid.  */
8010       if (! ok)
8011         {
8012           RIDBIT_RESET (RID_UNSIGNED, specbits);
8013           RIDBIT_RESET (RID_SIGNED, specbits);
8014           RIDBIT_RESET (RID_LONG, specbits);
8015           RIDBIT_RESET (RID_SHORT, specbits);
8016           longlong = 0;
8017         }
8018     }
8019
8020   /* Decide whether an integer type is signed or not.
8021      Optionally treat bitfields as signed by default.  */
8022   if (RIDBIT_SETP (RID_UNSIGNED, specbits)
8023       || (bitfield && ! flag_signed_bitfields
8024           && (explicit_int || explicit_char
8025               /* A typedef for plain `int' without `signed'
8026                  can be controlled just like plain `int'.  */
8027               || ! (typedef_decl != NULL_TREE
8028                     && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
8029           && TREE_CODE (type) != ENUMERAL_TYPE
8030           && RIDBIT_NOTSETP (RID_SIGNED, specbits)))
8031     {
8032       if (longlong)
8033         type = long_long_unsigned_type_node;
8034       else if (RIDBIT_SETP (RID_LONG, specbits))
8035         type = long_unsigned_type_node;
8036       else if (RIDBIT_SETP (RID_SHORT, specbits))
8037         type = short_unsigned_type_node;
8038       else if (type == char_type_node)
8039         type = unsigned_char_type_node;
8040       else if (typedef_decl)
8041         type = unsigned_type (type);
8042       else
8043         type = unsigned_type_node;
8044     }
8045   else if (RIDBIT_SETP (RID_SIGNED, specbits)
8046            && type == char_type_node)
8047     type = signed_char_type_node;
8048   else if (longlong)
8049     type = long_long_integer_type_node;
8050   else if (RIDBIT_SETP (RID_LONG, specbits))
8051     type = long_integer_type_node;
8052   else if (RIDBIT_SETP (RID_SHORT, specbits))
8053     type = short_integer_type_node;
8054
8055   /* Set CONSTP if this declaration is `const', whether by
8056      explicit specification or via a typedef.
8057      Likewise for VOLATILEP.  */
8058
8059   constp = !! RIDBIT_SETP (RID_CONST, specbits) + TYPE_READONLY (type);
8060   volatilep = !! RIDBIT_SETP (RID_VOLATILE, specbits) + TYPE_VOLATILE (type);
8061   staticp = 0;
8062   inlinep = !! RIDBIT_SETP (RID_INLINE, specbits);
8063   virtualp = RIDBIT_SETP (RID_VIRTUAL, specbits);
8064   RIDBIT_RESET (RID_VIRTUAL, specbits);
8065   explicitp = RIDBIT_SETP (RID_EXPLICIT, specbits) != 0;
8066   RIDBIT_RESET (RID_EXPLICIT, specbits);
8067
8068   if (RIDBIT_SETP (RID_STATIC, specbits))
8069     staticp = 1 + (decl_context == FIELD);
8070
8071   if (virtualp && staticp == 2)
8072     {
8073       cp_error ("member `%D' cannot be declared both virtual and static",
8074                 dname);
8075       staticp = 0;
8076     }
8077   friendp = RIDBIT_SETP (RID_FRIEND, specbits);
8078   RIDBIT_RESET (RID_FRIEND, specbits);
8079
8080   if (RIDBIT_SETP (RID_MUTABLE, specbits))
8081     {
8082       if (decl_context == PARM)
8083         {
8084           error ("non-member `%s' cannot be declared `mutable'", name);
8085           RIDBIT_RESET (RID_MUTABLE, specbits);
8086         }
8087       else if (friendp || decl_context == TYPENAME)
8088         {
8089           error ("non-object member `%s' cannot be declared `mutable'", name);
8090           RIDBIT_RESET (RID_MUTABLE, specbits);
8091         }
8092     }
8093
8094   /* Warn if two storage classes are given. Default to `auto'.  */
8095
8096   if (RIDBIT_ANY_SET (specbits))
8097     {
8098       if (RIDBIT_SETP (RID_STATIC, specbits)) nclasses++;
8099       if (RIDBIT_SETP (RID_EXTERN, specbits)) nclasses++;
8100       if (decl_context == PARM && nclasses > 0)
8101         error ("storage class specifiers invalid in parameter declarations");
8102       if (RIDBIT_SETP (RID_TYPEDEF, specbits))
8103         {
8104           if (decl_context == PARM)
8105             error ("typedef declaration invalid in parameter declaration");
8106           nclasses++;
8107         }
8108       if (RIDBIT_SETP (RID_AUTO, specbits)) nclasses++;
8109       if (RIDBIT_SETP (RID_REGISTER, specbits)) nclasses++;
8110     }
8111
8112   /* Give error if `virtual' is used outside of class declaration.  */
8113   if (virtualp
8114       && (current_class_name == NULL_TREE || decl_context != FIELD))
8115     {
8116       error ("virtual outside class declaration");
8117       virtualp = 0;
8118     }
8119   if (current_class_name == NULL_TREE && RIDBIT_SETP (RID_MUTABLE, specbits))
8120     {
8121       error ("only members can be declared mutable");
8122       RIDBIT_RESET (RID_MUTABLE, specbits);
8123     }
8124
8125   /* Static anonymous unions are dealt with here.  */
8126   if (staticp && decl_context == TYPENAME
8127       && TREE_CODE (declspecs) == TREE_LIST
8128       && TREE_CODE (TREE_VALUE (declspecs)) == UNION_TYPE
8129       && ANON_AGGRNAME_P (TYPE_IDENTIFIER (TREE_VALUE (declspecs))))
8130     decl_context = FIELD;
8131
8132   /* Give error if `const,' `volatile,' `inline,' `friend,' or `virtual'
8133      is used in a signature member function declaration.  */
8134   if (decl_context == FIELD
8135       && IS_SIGNATURE (current_class_type)
8136       && RIDBIT_NOTSETP (RID_TYPEDEF, specbits))
8137     {
8138       if (constp)
8139         {
8140           error ("`const' specified for signature member function `%s'", name);
8141           constp = 0;
8142         }
8143       if (volatilep)
8144         {
8145           error ("`volatile' specified for signature member function `%s'",
8146                  name);
8147           volatilep = 0;
8148         }
8149       if (inlinep)
8150         {
8151           error ("`inline' specified for signature member function `%s'", name);
8152           /* Later, we'll make signature member functions inline.  */
8153           inlinep = 0;
8154         }
8155       if (friendp)
8156         {
8157           error ("`friend' declaration in signature definition");
8158           friendp = 0;
8159         }
8160       if (virtualp)
8161         {
8162           error ("`virtual' specified for signature member function `%s'",
8163                  name);
8164           /* Later, we'll make signature member functions virtual.  */
8165           virtualp = 0;
8166         }
8167     }
8168
8169   /* Warn about storage classes that are invalid for certain
8170      kinds of declarations (parameters, typenames, etc.).  */
8171
8172   if (nclasses > 1)
8173     error ("multiple storage classes in declaration of `%s'", name);
8174   else if (decl_context != NORMAL && nclasses > 0)
8175     {
8176       if ((decl_context == PARM || decl_context == CATCHPARM)
8177           && (RIDBIT_SETP (RID_REGISTER, specbits)
8178               || RIDBIT_SETP (RID_AUTO, specbits)))
8179         ;
8180       else if (RIDBIT_SETP (RID_TYPEDEF, specbits))
8181         ;
8182       else if (decl_context == FIELD
8183                && ! IS_SIGNATURE (current_class_type)
8184                /* C++ allows static class elements  */
8185                && RIDBIT_SETP (RID_STATIC, specbits))
8186         /* C++ also allows inlines and signed and unsigned elements,
8187            but in those cases we don't come in here.  */
8188         ;
8189       else
8190         {
8191           if (decl_context == FIELD)
8192             {
8193               tree tmp = NULL_TREE;
8194               register int op = 0;
8195
8196               if (declarator)
8197                 {
8198                   /* Avoid trying to get an operand off an identifier node.  */ 
8199                   if (TREE_CODE (declarator) == IDENTIFIER_NODE)
8200                     tmp = declarator;
8201                   else
8202                     tmp = TREE_OPERAND (declarator, 0);
8203                   op = IDENTIFIER_OPNAME_P (tmp);
8204                 }
8205               error ("storage class specified for %s `%s'",
8206                      IS_SIGNATURE (current_class_type)
8207                      ? (op
8208                         ? "signature member operator"
8209                         : "signature member function")
8210                      : (op ? "member operator" : "field"),
8211                      op ? operator_name_string (tmp) : name);
8212             }
8213           else
8214             error (((decl_context == PARM || decl_context == CATCHPARM)
8215                     ? "storage class specified for parameter `%s'"
8216                     : "storage class specified for typename"), name);
8217           RIDBIT_RESET (RID_REGISTER, specbits);
8218           RIDBIT_RESET (RID_AUTO, specbits);
8219           RIDBIT_RESET (RID_EXTERN, specbits);
8220
8221           if (decl_context == FIELD && IS_SIGNATURE (current_class_type))
8222             {
8223               RIDBIT_RESET (RID_STATIC, specbits);
8224               staticp = 0;
8225             }
8226         }
8227     }
8228   else if (RIDBIT_SETP (RID_EXTERN, specbits) && initialized && !funcdef_flag)
8229     {
8230       if (toplevel_bindings_p ())
8231         {
8232           /* It's common practice (and completely valid) to have a const
8233              be initialized and declared extern.  */
8234           if (! constp)
8235             warning ("`%s' initialized and declared `extern'", name);
8236         }
8237       else
8238         error ("`%s' has both `extern' and initializer", name);
8239     }
8240   else if (RIDBIT_SETP (RID_EXTERN, specbits) && funcdef_flag
8241            && ! toplevel_bindings_p ())
8242     error ("nested function `%s' declared `extern'", name);
8243   else if (toplevel_bindings_p ())
8244     {
8245       if (RIDBIT_SETP (RID_AUTO, specbits))
8246         error ("top-level declaration of `%s' specifies `auto'", name);
8247     }
8248
8249   if (nclasses > 0 && friendp)
8250     error ("storage class specifiers invalid in friend function declarations");
8251
8252   /* Now figure out the structure of the declarator proper.
8253      Descend through it, creating more complex types, until we reach
8254      the declared identifier (or NULL_TREE, in an absolute declarator).  */
8255
8256   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
8257     {
8258       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
8259          an INDIRECT_REF (for *...),
8260          a CALL_EXPR (for ...(...)),
8261          an identifier (for the name being declared)
8262          or a null pointer (for the place in an absolute declarator
8263          where the name was omitted).
8264          For the last two cases, we have just exited the loop.
8265
8266          For C++ it could also be
8267          a SCOPE_REF (for class :: ...).  In this case, we have converted
8268          sensible names to types, and those are the values we use to
8269          qualify the member name.
8270          an ADDR_EXPR (for &...),
8271          a BIT_NOT_EXPR (for destructors)
8272
8273          At this point, TYPE is the type of elements of an array,
8274          or for a function to return, or for a pointer to point to.
8275          After this sequence of ifs, TYPE is the type of the
8276          array or function or pointer, and DECLARATOR has had its
8277          outermost layer removed.  */
8278
8279       if (TREE_CODE (type) == ERROR_MARK)
8280         {
8281           if (TREE_CODE (declarator) == SCOPE_REF)
8282             declarator = TREE_OPERAND (declarator, 1);
8283           else
8284             declarator = TREE_OPERAND (declarator, 0);
8285           continue;
8286         }
8287       if (quals != NULL_TREE
8288           && (declarator == NULL_TREE
8289               || TREE_CODE (declarator) != SCOPE_REF))
8290         {
8291           if (ctype == NULL_TREE && TREE_CODE (type) == METHOD_TYPE)
8292             ctype = TYPE_METHOD_BASETYPE (type);
8293           if (ctype != NULL_TREE)
8294             {
8295               tree dummy = build_decl (TYPE_DECL, NULL_TREE, type);
8296               ctype = grok_method_quals (ctype, dummy, quals);
8297               type = TREE_TYPE (dummy);
8298               quals = NULL_TREE;
8299             }
8300         }
8301       switch (TREE_CODE (declarator))
8302         {
8303         case ARRAY_REF:
8304           {
8305             register tree itype = NULL_TREE;
8306             register tree size = TREE_OPERAND (declarator, 1);
8307             /* The index is a signed object `sizetype' bits wide.  */
8308             tree index_type = signed_type (sizetype);
8309
8310             declarator = TREE_OPERAND (declarator, 0);
8311
8312             /* Check for some types that there cannot be arrays of.  */
8313
8314             if (TYPE_MAIN_VARIANT (type) == void_type_node)
8315               {
8316                 cp_error ("declaration of `%D' as array of voids", dname);
8317                 type = error_mark_node;
8318               }
8319
8320             if (TREE_CODE (type) == FUNCTION_TYPE)
8321               {
8322                 cp_error ("declaration of `%D' as array of functions", dname);
8323                 type = error_mark_node;
8324               }
8325
8326             /* ARM $8.4.3: Since you can't have a pointer to a reference,
8327                you can't have arrays of references.  If we allowed them,
8328                then we'd be saying x[i] is valid for an array x, but
8329                then you'd have to ask: what does `*(x + i)' mean?  */
8330             if (TREE_CODE (type) == REFERENCE_TYPE)
8331               {
8332                 if (decl_context == TYPENAME)
8333                   cp_error ("cannot make arrays of references");
8334                 else
8335                   cp_error ("declaration of `%D' as array of references",
8336                             dname);
8337                 type = error_mark_node;
8338               }
8339
8340             if (TREE_CODE (type) == OFFSET_TYPE)
8341               {
8342                   cp_error ("declaration of `%D' as array of data members",
8343                             dname);
8344                 type = error_mark_node;
8345               }
8346
8347             if (TREE_CODE (type) == METHOD_TYPE)
8348               {
8349                 cp_error ("declaration of `%D' as array of function members",
8350                           dname);
8351                 type = error_mark_node;
8352               }
8353
8354             if (size == error_mark_node)
8355               type = error_mark_node;
8356
8357             if (type == error_mark_node)
8358               continue;
8359
8360             if (size)
8361               {
8362                 /* Must suspend_momentary here because the index
8363                    type may need to live until the end of the function.
8364                    For example, it is used in the declaration of a
8365                    variable which requires destructing at the end of
8366                    the function; then build_vec_delete will need this
8367                    value.  */
8368                 int yes = suspend_momentary ();
8369                 /* might be a cast */
8370                 if (TREE_CODE (size) == NOP_EXPR
8371                     && TREE_TYPE (size) == TREE_TYPE (TREE_OPERAND (size, 0)))
8372                   size = TREE_OPERAND (size, 0);
8373
8374                 /* If this involves a template parameter, it'll be
8375                    constant, but we don't know what the value is yet.  */
8376                 if (processing_template_decl)
8377                   {
8378                     itype = make_node (INTEGER_TYPE);
8379                     TYPE_MIN_VALUE (itype) = size_zero_node;
8380                     TYPE_MAX_VALUE (itype) = build_min
8381                       (MINUS_EXPR, sizetype, size, integer_one_node);
8382                     goto dont_grok_size;
8383                   }
8384
8385                 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
8386                     && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
8387                   {
8388                     cp_error ("size of array `%D' has non-integer type",
8389                               dname);
8390                     size = integer_one_node;
8391                   }
8392                 if (TREE_READONLY_DECL_P (size))
8393                   size = decl_constant_value (size);
8394                 if (pedantic && integer_zerop (size))
8395                   cp_pedwarn ("ANSI C++ forbids zero-size array `%D'", dname);
8396                 if (TREE_CONSTANT (size))
8397                   {
8398                     int old_flag_pedantic_errors = flag_pedantic_errors;
8399                     int old_pedantic = pedantic;
8400                     pedantic = flag_pedantic_errors = 1;
8401                     /* Always give overflow errors on array subscripts.  */
8402                     constant_expression_warning (size);
8403                     pedantic = old_pedantic;
8404                     flag_pedantic_errors = old_flag_pedantic_errors;
8405                     if (INT_CST_LT (size, integer_zero_node))
8406                       {
8407                         cp_error ("size of array `%D' is negative", dname);
8408                         size = integer_one_node;
8409                       }
8410                   }
8411                 else
8412                   {
8413                     if (pedantic)
8414                       {
8415                         if (dname)
8416                           cp_pedwarn ("ANSI C++ forbids variable-size array `%D'",
8417                                       dname);
8418                         else
8419                           cp_pedwarn ("ANSI C++ forbids variable-size array");
8420                       }
8421                   }
8422
8423                 itype =
8424                   fold (build_binary_op (MINUS_EXPR,
8425                                          convert (index_type, size),
8426                                          convert (index_type,
8427                                                   integer_one_node), 1));
8428                 if (! TREE_CONSTANT (itype))
8429                   itype = variable_size (itype);
8430                 else if (TREE_OVERFLOW (itype))
8431                   {
8432                     error ("overflow in array dimension");
8433                     TREE_OVERFLOW (itype) = 0;
8434                   }
8435
8436                 /* If we're a parm, we need to have a permanent type so
8437                    mangling checks for re-use will work right.  If both the
8438                    element and index types are permanent, the array type
8439                    will be, too.  */
8440                 if (decl_context == PARM
8441                     && allocation_temporary_p () && TREE_PERMANENT (type))
8442                   {
8443                     push_obstacks (&permanent_obstack, &permanent_obstack);
8444                     itype = build_index_type (itype);
8445                     pop_obstacks ();
8446                   }
8447                 else
8448                   itype = build_index_type (itype);
8449
8450               dont_grok_size:
8451                 resume_momentary (yes);
8452               }
8453
8454           /* Build the array type itself, then merge any constancy or
8455              volatility into the target type.  We must do it in this order
8456              to ensure that the TYPE_MAIN_VARIANT field of the array type
8457              is set correctly.  */
8458
8459             type = build_cplus_array_type (type, itype);
8460             if (constp || volatilep)
8461               type = cp_build_type_variant (type, constp, volatilep);
8462
8463             ctype = NULL_TREE;
8464           }
8465           break;
8466
8467         case CALL_EXPR:
8468           {
8469             tree arg_types;
8470             int funcdecl_p;
8471             tree inner_parms = TREE_OPERAND (declarator, 1);
8472             tree inner_decl = TREE_OPERAND (declarator, 0);
8473
8474             /* Declaring a function type.
8475                Make sure we have a valid type for the function to return.  */
8476 #if 0
8477             /* Is this an error?  Should they be merged into TYPE here?  */
8478             if (pedantic && (constp || volatilep))
8479               pedwarn ("function declared to return const or volatile result");
8480 #else
8481             /* Merge any constancy or volatility into the function return
8482                type.  */
8483
8484             if (constp || volatilep)
8485               {
8486                 type = cp_build_type_variant (type, constp, volatilep);
8487                 if (IS_AGGR_TYPE (type))
8488                   build_pointer_type (type);
8489                 constp = 0;
8490                 volatilep = 0;
8491               }
8492 #endif
8493
8494             /* Warn about some types functions can't return.  */
8495
8496             if (TREE_CODE (type) == FUNCTION_TYPE)
8497               {
8498                 error ("`%s' declared as function returning a function", name);
8499                 type = integer_type_node;
8500               }
8501             if (TREE_CODE (type) == ARRAY_TYPE)
8502               {
8503                 error ("`%s' declared as function returning an array", name);
8504                 type = integer_type_node;
8505               }
8506
8507             if (inner_decl && TREE_CODE (inner_decl) == SCOPE_REF)
8508               inner_decl = TREE_OPERAND (inner_decl, 1);
8509
8510             /* Pick up type qualifiers which should be applied to `this'.  */
8511             quals = TREE_OPERAND (declarator, 2);
8512
8513             /* Pick up the exception specifications.  */
8514             raises = TREE_TYPE (declarator);
8515
8516             /* Say it's a definition only for the CALL_EXPR
8517                closest to the identifier.  */
8518             funcdecl_p =
8519               inner_decl && (TREE_CODE (inner_decl) == IDENTIFIER_NODE
8520                              || TREE_CODE (inner_decl) == BIT_NOT_EXPR);
8521
8522             if (ctype == NULL_TREE
8523                 && decl_context == FIELD
8524                 && funcdecl_p
8525                 && (friendp == 0 || dname == current_class_name))
8526               ctype = current_class_type;
8527
8528             if (ctype && return_type == return_conversion)
8529               TYPE_HAS_CONVERSION (ctype) = 1;
8530             if (ctype && constructor_name (ctype) == dname)
8531               {
8532                 /* We are within a class's scope. If our declarator name
8533                    is the same as the class name, and we are defining
8534                    a function, then it is a constructor/destructor, and
8535                    therefore returns a void type.  */
8536
8537                 if (flags == DTOR_FLAG)
8538                   {
8539                     /* ANSI C++ June 5 1992 WP 12.4.1.  A destructor may
8540                        not be declared const or volatile.  A destructor
8541                        may not be static.  */
8542                     if (staticp == 2)
8543                       error ("destructor cannot be static member function");
8544                     if (quals)
8545                       {
8546                         error ("destructors cannot be declared `const' or `volatile'");
8547                         return void_type_node;
8548                       }
8549                     if (decl_context == FIELD)
8550                       {
8551                         if (! member_function_or_else (ctype, current_class_type,
8552                                                        "destructor for alien class `%s' cannot be a member"))
8553                           return void_type_node;
8554                       }
8555                   }
8556                 else            /* it's a constructor.  */
8557                   {
8558                     if (explicitp == 1)
8559                       explicitp = 2;
8560                     /* ANSI C++ June 5 1992 WP 12.1.2.  A constructor may
8561                        not be declared const or volatile.  A constructor may
8562                        not be virtual.  A constructor may not be static.  */
8563                     if (staticp == 2)
8564                       error ("constructor cannot be static member function");
8565                     if (virtualp)
8566                       {
8567                         pedwarn ("constructors cannot be declared virtual");
8568                         virtualp = 0;
8569                       }
8570                     if (quals)
8571                       {
8572                         error ("constructors cannot be declared `const' or `volatile'");
8573                         return void_type_node;
8574                       }
8575                     {
8576                       RID_BIT_TYPE tmp_bits;
8577                       bcopy ((void*)&specbits, (void*)&tmp_bits, sizeof (RID_BIT_TYPE));
8578                       RIDBIT_RESET (RID_INLINE, tmp_bits);
8579                       RIDBIT_RESET (RID_STATIC, tmp_bits);
8580                       if (RIDBIT_ANY_SET (tmp_bits))
8581                         error ("return value type specifier for constructor ignored");
8582                     }
8583                     type = build_pointer_type (ctype);
8584                     if (decl_context == FIELD &&
8585                         IS_SIGNATURE (current_class_type))
8586                       {
8587                         error ("constructor not allowed in signature");
8588                         return void_type_node;
8589                       }                   
8590                     else if (decl_context == FIELD)
8591                       {
8592                         if (! member_function_or_else (ctype, current_class_type,
8593                                                        "constructor for alien class `%s' cannot be member"))
8594                           return void_type_node;
8595                         TYPE_HAS_CONSTRUCTOR (ctype) = 1;
8596                         if (return_type != return_ctor)
8597                           return NULL_TREE;
8598                       }
8599                   }
8600                 if (decl_context == FIELD)
8601                   staticp = 0;
8602               }
8603             else if (friendp)
8604               {
8605                 if (initialized)
8606                   error ("can't initialize friend function `%s'", name);
8607                 if (virtualp)
8608                   {
8609                     /* Cannot be both friend and virtual.  */
8610                     error ("virtual functions cannot be friends");
8611                     RIDBIT_RESET (RID_FRIEND, specbits);
8612                     friendp = 0;
8613                   }
8614                 if (decl_context == NORMAL)
8615                   error ("friend declaration not in class definition");
8616                 if (current_function_decl && funcdef_flag)
8617                   cp_error ("can't define friend function `%s' in a local class definition",
8618                             name);
8619               }
8620
8621             /* Construct the function type and go to the next
8622                inner layer of declarator.  */
8623
8624             declarator = TREE_OPERAND (declarator, 0);
8625
8626             /* FIXME: This is where default args should be fully
8627                processed.  */
8628
8629             arg_types = grokparms (inner_parms, funcdecl_p ? funcdef_flag : 0);
8630
8631             if (declarator)
8632               {
8633                 /* Get past destructors, etc.
8634                    We know we have one because FLAGS will be non-zero.
8635
8636                    Complain about improper parameter lists here.  */
8637                 if (TREE_CODE (declarator) == BIT_NOT_EXPR)
8638                   {
8639                     declarator = TREE_OPERAND (declarator, 0);
8640
8641                     if (strict_prototype == 0 && arg_types == NULL_TREE)
8642                       arg_types = void_list_node;
8643                     else if (arg_types == NULL_TREE
8644                              || arg_types != void_list_node)
8645                       {
8646                         error ("destructors cannot be specified with parameters");
8647                         arg_types = void_list_node;
8648                       }
8649                   }
8650               }
8651
8652             /* ANSI says that `const int foo ();'
8653                does not make the function foo const.  */
8654             type = build_function_type (type, arg_types);
8655           }
8656           break;
8657
8658         case ADDR_EXPR:
8659         case INDIRECT_REF:
8660           /* Filter out pointers-to-references and references-to-references.
8661              We can get these if a TYPE_DECL is used.  */
8662
8663           if (TREE_CODE (type) == REFERENCE_TYPE)
8664             {
8665               error ("cannot declare %s to references",
8666                      TREE_CODE (declarator) == ADDR_EXPR
8667                      ? "references" : "pointers");
8668               declarator = TREE_OPERAND (declarator, 0);
8669               continue;
8670             }
8671
8672           if (TREE_CODE (type) == OFFSET_TYPE
8673               && (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE
8674                   || TREE_CODE (TREE_TYPE (type)) == REFERENCE_TYPE))
8675             {
8676               cp_error ("cannot declare pointer to `%#T' member",
8677                         TREE_TYPE (type));
8678               type = TREE_TYPE (type);
8679             }
8680
8681           /* Merge any constancy or volatility into the target type
8682              for the pointer.  */
8683
8684           if (constp || volatilep)
8685             {
8686               /* A const or volatile signature pointer/reference is
8687                  pointing to a const or volatile object, i.e., the
8688                  `optr' is const or volatile, respectively, not the
8689                  signature pointer/reference itself.  */
8690               if (! IS_SIGNATURE (type))
8691                 {
8692                   type = cp_build_type_variant (type, constp, volatilep);
8693                   if (IS_AGGR_TYPE (type))
8694                     build_pointer_type (type);
8695                   constp = 0;
8696                   volatilep = 0;
8697                 }
8698             }
8699
8700           if (IS_SIGNATURE (type))
8701             {
8702               if (TREE_CODE (declarator) == ADDR_EXPR)
8703                 {
8704                   if (CLASSTYPE_METHOD_VEC (type) == NULL_TREE
8705                       && TYPE_SIZE (type))
8706                     cp_warning ("empty signature `%T' used in signature reference declaration",
8707                                 type);
8708 #if 0
8709                   type = build_signature_reference_type (type,
8710                                                          constp, volatilep);
8711 #else
8712                   sorry ("signature reference");
8713                   return NULL_TREE;
8714 #endif
8715                 }
8716               else
8717                 {
8718                   if (CLASSTYPE_METHOD_VEC (type) == NULL_TREE
8719                       && TYPE_SIZE (type))
8720                     cp_warning ("empty signature `%T' used in signature pointer declaration",
8721                                 type);
8722                   type = build_signature_pointer_type (type,
8723                                                        constp, volatilep);
8724                 }
8725               constp = 0;
8726               volatilep = 0;
8727             }
8728           else if (TREE_CODE (declarator) == ADDR_EXPR)
8729             {
8730               if (TREE_CODE (type) == FUNCTION_TYPE)
8731                 {
8732                   error ("cannot declare references to functions; use pointer to function instead");
8733                   type = build_pointer_type (type);
8734                 }
8735               else
8736                 {
8737                   if (TYPE_MAIN_VARIANT (type) == void_type_node)
8738                     error ("invalid type: `void &'");
8739                   else
8740                     type = build_reference_type (type);
8741                 }
8742             }
8743           else if (TREE_CODE (type) == METHOD_TYPE)
8744             {
8745               type = build_ptrmemfunc_type (build_pointer_type (type));
8746             }
8747           else
8748             type = build_pointer_type (type);
8749
8750           /* Process a list of type modifier keywords (such as
8751              const or volatile) that were given inside the `*' or `&'.  */
8752
8753           if (TREE_TYPE (declarator))
8754             {
8755               register tree typemodlist;
8756               int erred = 0;
8757               for (typemodlist = TREE_TYPE (declarator); typemodlist;
8758                    typemodlist = TREE_CHAIN (typemodlist))
8759                 {
8760                   if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
8761                     constp++;
8762                   else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
8763                     volatilep++;
8764                   else if (!erred)
8765                     {
8766                       erred = 1;
8767                       error ("invalid type modifier within %s declarator",
8768                              TREE_CODE (declarator) == ADDR_EXPR
8769                              ? "reference" : "pointer");
8770                     }
8771                 }
8772               if (constp > 1)
8773                 pedwarn ("duplicate `const'");
8774               if (volatilep > 1)
8775                 pedwarn ("duplicate `volatile'");
8776               if (TREE_CODE (declarator) == ADDR_EXPR
8777                   && (constp || volatilep))
8778                 {
8779                   if (constp)
8780                     pedwarn ("discarding `const' applied to a reference");
8781                   if (volatilep)
8782                     pedwarn ("discarding `volatile' applied to a reference");
8783                   constp = volatilep = 0;
8784                 }
8785             }
8786           declarator = TREE_OPERAND (declarator, 0);
8787           ctype = NULL_TREE;
8788           break;
8789
8790         case SCOPE_REF:
8791           {
8792             /* We have converted type names to NULL_TREE if the
8793                name was bogus, or to a _TYPE node, if not.
8794
8795                The variable CTYPE holds the type we will ultimately
8796                resolve to.  The code here just needs to build
8797                up appropriate member types.  */
8798             tree sname = TREE_OPERAND (declarator, 1);
8799             /* Destructors can have their visibilities changed as well.  */
8800             if (TREE_CODE (sname) == BIT_NOT_EXPR)
8801               sname = TREE_OPERAND (sname, 0);
8802
8803             if (TREE_COMPLEXITY (declarator) == 0)
8804               /* This needs to be here, in case we are called
8805                  multiple times.  */ ;
8806             else if (friendp && (TREE_COMPLEXITY (declarator) < 2))
8807               /* don't fall out into global scope. Hides real bug? --eichin */ ;
8808             else if (! IS_AGGR_TYPE_CODE
8809                      (TREE_CODE (TREE_OPERAND (declarator, 0))))
8810               ;
8811             else if (TREE_COMPLEXITY (declarator) == current_class_depth)
8812               {
8813                 /* This pop_nested_class corresponds to the
8814                    push_nested_class used to push into class scope for
8815                    parsing the argument list of a function decl, in
8816                    qualified_id.  */
8817                 pop_nested_class (1);
8818                 TREE_COMPLEXITY (declarator) = current_class_depth;
8819               }
8820             else
8821               my_friendly_abort (16);
8822
8823             if (TREE_OPERAND (declarator, 0) == NULL_TREE)
8824               {
8825                 /* We had a reference to a global decl, or
8826                    perhaps we were given a non-aggregate typedef,
8827                    in which case we cleared this out, and should just
8828                    keep going as though it wasn't there.  */
8829                 declarator = sname;
8830                 continue;
8831               }
8832             ctype = TREE_OPERAND (declarator, 0);
8833
8834             if (TREE_CODE (ctype) == TYPENAME_TYPE
8835                 && TYPE_CONTEXT (ctype) == current_class_type)
8836               {
8837                 /* Members of the current class get resolved immediately;
8838                    we couldn't catch this one earlier because we hadn't
8839                    pushed into the class yet.  */
8840                 if (TREE_TYPE (ctype))
8841                   ctype = TREE_TYPE (ctype);
8842                 else
8843                   ctype = make_typename_type (TYPE_CONTEXT (ctype),
8844                                               TYPE_IDENTIFIER (ctype));
8845               }
8846
8847             if (sname == NULL_TREE)
8848               goto done_scoping;
8849
8850             if (TREE_CODE (sname) == IDENTIFIER_NODE)
8851               {
8852                 /* This is the `standard' use of the scoping operator:
8853                    basetype :: member .  */
8854
8855                 if (ctype == current_class_type)
8856                   {
8857                     /* class A {
8858                          void A::f ();
8859                        };
8860
8861                        Is this ill-formed?  */
8862
8863                     if (pedantic)
8864                       cp_pedwarn ("extra qualification `%T::' on member `%s' ignored",
8865                                   ctype, name);
8866                   }
8867                 else if (TREE_CODE (type) == FUNCTION_TYPE)
8868                   {
8869                     if (current_class_type == NULL_TREE
8870                         || friendp)
8871                       type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep),
8872                                                       TREE_TYPE (type), TYPE_ARG_TYPES (type));
8873                     else
8874                       {
8875                         cp_error ("cannot declare member function `%T::%s' within `%T'",
8876                                   ctype, name, current_class_type);
8877                         return void_type_node;
8878                       }
8879                   }
8880                 else if (RIDBIT_SETP (RID_TYPEDEF, specbits)
8881                          || TYPE_SIZE (complete_type (ctype)) != NULL_TREE)
8882                   {
8883                     /* have to move this code elsewhere in this function.
8884                        this code is used for i.e., typedef int A::M; M *pm;
8885
8886                        It is?  How? jason 10/2/94 */
8887
8888                     if (current_class_type)
8889                       {
8890                         cp_error ("cannot declare member `%T::%s' within `%T'",
8891                                   ctype, name, current_class_type);
8892                         return void_type_node;
8893                       }
8894                     type = build_offset_type (ctype, type);
8895                   }
8896                 else if (uses_template_parms (ctype))
8897                   {
8898                     if (TREE_CODE (type) == FUNCTION_TYPE)
8899                       type = 
8900                         build_cplus_method_type (build_type_variant (ctype,
8901                                                                      constp,
8902                                                                      volatilep),
8903                                                  TREE_TYPE (type),
8904                                                  TYPE_ARG_TYPES (type));
8905                   }
8906                 else
8907                   {
8908                     cp_error ("structure `%T' not yet defined", ctype);
8909                     return error_mark_node;
8910                   }
8911
8912                 declarator = sname;
8913               }
8914             else if (TREE_CODE (sname) == SCOPE_REF)
8915               my_friendly_abort (17);
8916             else
8917               {
8918               done_scoping:
8919                 declarator = TREE_OPERAND (declarator, 1);
8920                 if (declarator && TREE_CODE (declarator) == CALL_EXPR)
8921                   /* In this case, we will deal with it later.  */
8922                   ;
8923                 else
8924                   {
8925                     if (TREE_CODE (type) == FUNCTION_TYPE)
8926                       type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep), TREE_TYPE (type), TYPE_ARG_TYPES (type));
8927                     else
8928                       type = build_offset_type (ctype, type);
8929                   }
8930               }
8931           }
8932           break;
8933
8934         case BIT_NOT_EXPR:
8935           declarator = TREE_OPERAND (declarator, 0);
8936           break;
8937
8938         case RECORD_TYPE:
8939         case UNION_TYPE:
8940         case ENUMERAL_TYPE:
8941           declarator = NULL_TREE;
8942           break;
8943
8944         case ERROR_MARK:
8945           declarator = NULL_TREE;
8946           break;
8947
8948         default:
8949           my_friendly_abort (158);
8950         }
8951     }
8952
8953   if (explicitp == 1)
8954     {
8955       error ("only constructors can be declared `explicit'");
8956       explicitp = 0;
8957     }
8958
8959   /* Now TYPE has the actual type.  */
8960
8961   /* If this is declaring a typedef name, return a TYPE_DECL.  */
8962
8963   if (RIDBIT_SETP (RID_MUTABLE, specbits))
8964     {
8965       if (constp)
8966         {
8967           error ("const `%s' cannot be declared `mutable'", name);
8968           RIDBIT_RESET (RID_MUTABLE, specbits);
8969         }
8970       else if (staticp)
8971         {
8972           error ("static `%s' cannot be declared `mutable'", name);
8973           RIDBIT_RESET (RID_MUTABLE, specbits);
8974         }
8975     }
8976
8977   if (RIDBIT_SETP (RID_TYPEDEF, specbits) && decl_context != TYPENAME)
8978     {
8979       tree decl;
8980
8981       /* Note that the grammar rejects storage classes
8982          in typenames, fields or parameters.  */
8983       if (constp || volatilep)
8984         type = cp_build_type_variant (type, constp, volatilep);
8985
8986       /* If the user declares "struct {...} foo" then `foo' will have
8987          an anonymous name.  Fill that name in now.  Nothing can
8988          refer to it, so nothing needs know about the name change.
8989          The TYPE_NAME field was filled in by build_struct_xref.  */
8990       if (type != error_mark_node
8991           && TYPE_NAME (type)
8992           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8993           && ANON_AGGRNAME_P (TYPE_IDENTIFIER (type)))
8994         {
8995           /* replace the anonymous name with the real name everywhere.  */
8996           lookup_tag_reverse (type, declarator);
8997           TYPE_IDENTIFIER (type) = declarator;
8998
8999           if (TYPE_LANG_SPECIFIC (type))
9000             TYPE_WAS_ANONYMOUS (type) = 1;
9001
9002           {
9003             tree d = TYPE_NAME (type), c = DECL_CONTEXT (d);
9004
9005             DECL_ASSEMBLER_NAME (d) = DECL_NAME (d);
9006             DECL_ASSEMBLER_NAME (d)
9007               = get_identifier (build_overload_name (type, 1, 1));
9008           }
9009         }
9010
9011       if (decl_context == FIELD)
9012         {
9013           if (declarator == current_class_name)
9014             cp_pedwarn ("ANSI C++ forbids nested type `%D' with same name as enclosing class",
9015                         declarator);
9016           decl = build_lang_decl (TYPE_DECL, declarator, type);
9017           if (IS_SIGNATURE (current_class_type) && opaque_typedef)
9018             SIGNATURE_HAS_OPAQUE_TYPEDECLS (current_class_type) = 1;
9019         }
9020       else
9021         decl = build_decl (TYPE_DECL, declarator, type);
9022
9023       if (TREE_CODE (type) == OFFSET_TYPE || TREE_CODE (type) == METHOD_TYPE)
9024         {
9025           cp_error_at ("typedef name may not be class-qualified", decl);
9026           return NULL_TREE;
9027         }
9028       else if (quals)
9029         {
9030           if (ctype == NULL_TREE)
9031             {
9032               if (TREE_CODE (type) != METHOD_TYPE)
9033                 cp_error_at ("invalid type qualifier for non-method type", decl);
9034               else
9035                 ctype = TYPE_METHOD_BASETYPE (type);
9036             }
9037           if (ctype != NULL_TREE)
9038             grok_method_quals (ctype, decl, quals);
9039         }
9040
9041       if (RIDBIT_SETP (RID_SIGNED, specbits)
9042           || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
9043         C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
9044
9045       if (RIDBIT_SETP (RID_MUTABLE, specbits))
9046         {
9047           error ("non-object member `%s' cannot be declared mutable", name);
9048         }
9049
9050       bad_specifiers (decl, "type", virtualp, quals != NULL_TREE,
9051                       inlinep, friendp, raises != NULL_TREE);
9052
9053       if (initialized)
9054         error ("typedef declaration includes an initializer");
9055
9056       return decl;
9057     }
9058
9059   /* Detect the case of an array type of unspecified size
9060      which came, as such, direct from a typedef name.
9061      We must copy the type, so that each identifier gets
9062      a distinct type, so that each identifier's size can be
9063      controlled separately by its own initializer.  */
9064
9065   if (type == typedef_type && TREE_CODE (type) == ARRAY_TYPE
9066       && TYPE_DOMAIN (type) == NULL_TREE)
9067     {
9068       type = build_cplus_array_type (TREE_TYPE (type), TYPE_DOMAIN (type));
9069     }
9070
9071   /* If this is a type name (such as, in a cast or sizeof),
9072      compute the type and return it now.  */
9073
9074   if (decl_context == TYPENAME)
9075     {
9076       /* Note that the grammar rejects storage classes
9077          in typenames, fields or parameters.  */
9078       if (constp || volatilep)
9079         if (IS_SIGNATURE (type))
9080           error ("`const' or `volatile' specified with signature type");
9081         else  
9082           type = cp_build_type_variant (type, constp, volatilep);
9083
9084       /* Special case: "friend class foo" looks like a TYPENAME context.  */
9085       if (friendp)
9086         {
9087           if (volatilep)
9088             {
9089               cp_error ("`volatile' specified for friend class declaration");
9090               volatilep = 0;
9091             }
9092           if (inlinep)
9093             {
9094               cp_error ("`inline' specified for friend class declaration");
9095               inlinep = 0;
9096             }
9097
9098           /* Only try to do this stuff if we didn't already give up.  */
9099           if (type != integer_type_node)
9100             {
9101               /* A friendly class?  */
9102               if (current_class_type)
9103                 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type));
9104               else
9105                 error ("trying to make class `%s' a friend of global scope",
9106                        TYPE_NAME_STRING (type));
9107               type = void_type_node;
9108             }
9109         }
9110       else if (quals)
9111         {
9112           tree dummy = build_decl (TYPE_DECL, declarator, type);
9113           if (ctype == NULL_TREE)
9114             {
9115               my_friendly_assert (TREE_CODE (type) == METHOD_TYPE, 159);
9116               ctype = TYPE_METHOD_BASETYPE (type);
9117             }
9118           grok_method_quals (ctype, dummy, quals);
9119           type = TREE_TYPE (dummy);
9120         }
9121
9122       return type;
9123     }
9124   else if (declarator == NULL_TREE && decl_context != PARM
9125            && decl_context != CATCHPARM
9126            && TREE_CODE (type) != UNION_TYPE
9127            && ! bitfield)
9128     {
9129       cp_error ("abstract declarator `%T' used as declaration", type);
9130       declarator = make_anon_name ();
9131     }
9132
9133   /* `void' at top level (not within pointer)
9134      is allowed only in typedefs or type names.
9135      We don't complain about parms either, but that is because
9136      a better error message can be made later.  */
9137
9138   if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM)
9139     {
9140       if (! declarator)
9141         error ("unnamed variable or field declared void");
9142       else if (TREE_CODE (declarator) == IDENTIFIER_NODE)
9143         {
9144           if (IDENTIFIER_OPNAME_P (declarator))
9145             my_friendly_abort (356);
9146           else
9147             error ("variable or field `%s' declared void", name);
9148         }
9149       else
9150         error ("variable or field declared void");
9151       type = integer_type_node;
9152     }
9153
9154   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
9155      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
9156
9157   {
9158     register tree decl;
9159
9160     if (decl_context == PARM)
9161       {
9162         if (ctype)
9163           error ("cannot use `::' in parameter declaration");
9164
9165         /* A parameter declared as an array of T is really a pointer to T.
9166            One declared as a function is really a pointer to a function.
9167            One declared as a member is really a pointer to member.  */
9168
9169         if (TREE_CODE (type) == ARRAY_TYPE)
9170           {
9171             /* Transfer const-ness of array into that of type pointed to.  */
9172             type = build_pointer_type
9173               (cp_build_type_variant (TREE_TYPE (type), constp, volatilep));
9174             volatilep = constp = 0;
9175           }
9176         else if (TREE_CODE (type) == FUNCTION_TYPE)
9177           type = build_pointer_type (type);
9178         else if (TREE_CODE (type) == OFFSET_TYPE)
9179           type = build_pointer_type (type);
9180         else if (type == void_type_node && declarator)
9181           {
9182             error ("declaration of `%s' as void", name);
9183             return NULL_TREE;
9184           }
9185
9186         decl = build_decl (PARM_DECL, declarator, complete_type (type));
9187
9188         bad_specifiers (decl, "parameter", virtualp, quals != NULL_TREE,
9189                         inlinep, friendp, raises != NULL_TREE);
9190         if (current_class_type
9191             && IS_SIGNATURE (current_class_type))
9192           {
9193             if (inlinep)
9194               error ("parameter of signature member function declared `inline'");
9195             if (RIDBIT_SETP (RID_AUTO, specbits))
9196               error ("parameter of signature member function declared `auto'");
9197             if (RIDBIT_SETP (RID_REGISTER, specbits))
9198               error ("parameter of signature member function declared `register'");
9199           }
9200
9201         /* Compute the type actually passed in the parmlist,
9202            for the case where there is no prototype.
9203            (For example, shorts and chars are passed as ints.)
9204            When there is a prototype, this is overridden later.  */
9205
9206         DECL_ARG_TYPE (decl) = type_promotes_to (type);
9207       }
9208     else if (decl_context == FIELD)
9209       {
9210         if (type == error_mark_node)
9211           {
9212             /* Happens when declaring arrays of sizes which
9213                are error_mark_node, for example.  */
9214             decl = NULL_TREE;
9215           }
9216         else if (TREE_CODE (type) == FUNCTION_TYPE)
9217           {
9218             int publicp = 0;
9219
9220             /* We catch the others as conflicts with the builtin
9221                typedefs.  */
9222             if (friendp && declarator == ridpointers[(int) RID_SIGNED])
9223               {
9224                 cp_error ("function `%D' cannot be declared friend",
9225                           declarator);
9226                 friendp = 0;
9227               }
9228
9229             if (friendp == 0)
9230               {
9231                 if (ctype == NULL_TREE)
9232                   ctype = current_class_type;
9233
9234                 if (ctype == NULL_TREE)
9235                   {
9236                     cp_error ("can't make `%D' into a method -- not in a class",
9237                               declarator);
9238                     return void_type_node;
9239                   }
9240
9241                 /* ``A union may [ ... ] not [ have ] virtual functions.''
9242                    ARM 9.5 */
9243                 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
9244                   {
9245                     cp_error ("function `%D' declared virtual inside a union",
9246                               declarator);
9247                     return void_type_node;
9248                   }
9249
9250                 if (declarator == ansi_opname[(int) NEW_EXPR]
9251                     || declarator == ansi_opname[(int) VEC_NEW_EXPR]
9252                     || declarator == ansi_opname[(int) DELETE_EXPR]
9253                     || declarator == ansi_opname[(int) VEC_DELETE_EXPR])
9254                   {
9255                     if (virtualp)
9256                       {
9257                         cp_error ("`%D' cannot be declared virtual, since it is always static",
9258                                   declarator);
9259                         virtualp = 0;
9260                       }
9261                   }
9262                 else if (staticp < 2)
9263                   type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep),
9264                                                   TREE_TYPE (type), TYPE_ARG_TYPES (type));
9265               }
9266
9267             /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node.  */
9268             publicp = (! friendp
9269                        || RIDBIT_SETP (RID_EXTERN, specbits)
9270                        || ! (funcdef_flag < 0 || inlinep));
9271             decl = grokfndecl (ctype, type, declarator,
9272                                virtualp, flags, quals, raises, attrlist,
9273                                friendp ? -1 : 0, publicp, inlinep,
9274                                funcdef_flag);
9275             if (decl == NULL_TREE)
9276               return NULL_TREE;
9277 #if 0
9278             /* This clobbers the attrs stored in `decl' from `attrlist'.  */
9279             /* The decl and setting of decl_machine_attr is also turned off.  */
9280             decl = build_decl_attribute_variant (decl, decl_machine_attr);
9281 #endif
9282
9283             if (explicitp == 2)
9284               DECL_NONCONVERTING_P (decl) = 1;
9285           }
9286         else if (TREE_CODE (type) == METHOD_TYPE)
9287           {
9288             /* We only get here for friend declarations of
9289                members of other classes.  */
9290             /* All method decls are public, so tell grokfndecl to set
9291                TREE_PUBLIC, also.  */
9292             decl = grokfndecl (ctype, type, declarator,
9293                                virtualp, flags, quals, raises, attrlist,
9294                                friendp ? -1 : 0, 1, 0, funcdef_flag);
9295             if (decl == NULL_TREE)
9296               return NULL_TREE;
9297           }
9298         else if (!staticp && ! processing_template_decl
9299                  && TYPE_SIZE (complete_type (type)) == NULL_TREE
9300                  && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
9301           {
9302             if (declarator)
9303               cp_error ("field `%D' has incomplete type", declarator);
9304             else
9305               cp_error ("name `%T' has incomplete type", type);
9306
9307             /* If we're instantiating a template, tell them which
9308                instantiation made the field's type be incomplete.  */
9309             if (current_class_type
9310                 && TYPE_NAME (current_class_type)
9311                 && IDENTIFIER_TEMPLATE (DECL_NAME (TYPE_NAME (current_class_type)))
9312                 && declspecs && TREE_VALUE (declspecs)
9313                 && TREE_TYPE (TREE_VALUE (declspecs)) == type)
9314               cp_error ("  in instantiation of template `%T'",
9315                         current_class_type);
9316
9317             type = error_mark_node;
9318             decl = NULL_TREE;
9319           }
9320         else
9321           {
9322             if (friendp)
9323               {
9324                 error ("`%s' is neither function nor method; cannot be declared friend",
9325                        IDENTIFIER_POINTER (declarator));
9326                 friendp = 0;
9327               }
9328             decl = NULL_TREE;
9329           }
9330
9331         if (friendp)
9332           {
9333             /* Friends are treated specially.  */
9334             if (ctype == current_class_type)
9335               warning ("member functions are implicitly friends of their class");
9336             else
9337               {
9338                 tree t = NULL_TREE;
9339                 if (decl && DECL_NAME (decl))
9340                   t = do_friend (ctype, declarator, decl,
9341                                  last_function_parms, flags, quals,
9342                                  funcdef_flag);
9343                 if (t && funcdef_flag)
9344                   return t;
9345                 
9346                 return void_type_node;
9347               }
9348           }
9349
9350         /* Structure field.  It may not be a function, except for C++ */
9351
9352         if (decl == NULL_TREE)
9353           {
9354             if (initialized)
9355               {
9356                 /* Motion 10 at San Diego: If a static const integral data
9357                    member is initialized with an integral constant
9358                    expression, the initializer may appear either in the
9359                    declaration (within the class), or in the definition,
9360                    but not both.  If it appears in the class, the member is
9361                    a member constant.  The file-scope definition is always
9362                    required.  */
9363                 if (staticp)
9364                   {
9365                     if (pedantic)
9366                       {
9367                         if (! constp)
9368                           cp_pedwarn ("ANSI C++ forbids in-class initialization of non-const static member `%D'",
9369                                       declarator);
9370
9371                         else if (! INTEGRAL_TYPE_P (type))
9372                           cp_pedwarn ("ANSI C++ forbids member constant `%D' of non-integral type `%T'", declarator, type);
9373                       }
9374                   }
9375
9376                 /* Note that initialization of const members is prohibited
9377                    by the draft ANSI standard, though it appears to be in
9378                    common practice.  12.6.2: The argument list is used to
9379                    initialize the named nonstatic member....  This (or an
9380                    initializer list) is the only way to initialize
9381                    nonstatic const and reference members.  */
9382                 else if (pedantic || ! constp)
9383                   cp_pedwarn ("ANSI C++ forbids initialization of %s `%D'",
9384                               constp ? "const member" : "member", declarator);
9385               }
9386
9387             if (staticp || (constp && initialized))
9388               {
9389                 /* ANSI C++ Apr '95 wp 9.2 */
9390                 if (staticp && declarator == current_class_name)
9391                   cp_pedwarn ("ANSI C++ forbids static member `%D' with same name as enclosing class",
9392                               declarator);
9393
9394                 /* C++ allows static class members.
9395                    All other work for this is done by grokfield.
9396                    This VAR_DECL is built by build_lang_field_decl.
9397                    All other VAR_DECLs are built by build_decl.  */
9398                 decl = build_lang_field_decl (VAR_DECL, declarator, type);
9399                 TREE_STATIC (decl) = 1;
9400                 /* In class context, 'static' means public access.  */
9401                 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl) = !!staticp;
9402               }
9403             else
9404               {
9405                 decl = build_lang_field_decl (FIELD_DECL, declarator, type);
9406                 if (RIDBIT_SETP (RID_MUTABLE, specbits))
9407                   {
9408                     DECL_MUTABLE_P (decl) = 1;
9409                     RIDBIT_RESET (RID_MUTABLE, specbits);
9410                   }
9411               }
9412
9413             bad_specifiers (decl, "field", virtualp, quals != NULL_TREE,
9414                             inlinep, friendp, raises != NULL_TREE);
9415           }
9416       }
9417     else if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
9418       {
9419         tree original_name = declarator;
9420         int publicp = 0;
9421
9422         if (! declarator)
9423           return NULL_TREE;
9424
9425         if (RIDBIT_SETP (RID_AUTO, specbits))
9426           error ("storage class `auto' invalid for function `%s'", name);
9427         else if (RIDBIT_SETP (RID_REGISTER, specbits))
9428           error ("storage class `register' invalid for function `%s'", name);
9429
9430         /* Function declaration not at top level.
9431            Storage classes other than `extern' are not allowed
9432            and `extern' makes no difference.  */
9433         if (! toplevel_bindings_p ()
9434             && (RIDBIT_SETP (RID_STATIC, specbits)
9435                 || RIDBIT_SETP (RID_INLINE, specbits))
9436             && pedantic)
9437           {
9438             if (RIDBIT_SETP (RID_STATIC, specbits))
9439               pedwarn ("storage class `static' invalid for function `%s' declared out of global scope", name);
9440             else
9441               pedwarn ("storage class `inline' invalid for function `%s' declared out of global scope", name);
9442           }
9443         
9444         if (ctype == NULL_TREE)
9445           {
9446             if (virtualp)
9447               {
9448                 error ("virtual non-class function `%s'", name);
9449                 virtualp = 0;
9450               }
9451
9452             if (current_lang_name == lang_name_cplusplus
9453                 && ! processing_template_decl
9454                 && ! (IDENTIFIER_LENGTH (original_name) == 4
9455                       && IDENTIFIER_POINTER (original_name)[0] == 'm'
9456                       && strcmp (IDENTIFIER_POINTER (original_name), "main") == 0)
9457                 && ! (IDENTIFIER_LENGTH (original_name) > 10
9458                       && IDENTIFIER_POINTER (original_name)[0] == '_'
9459                       && IDENTIFIER_POINTER (original_name)[1] == '_'
9460                       && strncmp (IDENTIFIER_POINTER (original_name)+2, "builtin_", 8) == 0))
9461               /* Plain overloading: will not be grok'd by grokclassfn.  */
9462               declarator = build_decl_overload (dname, TYPE_ARG_TYPES (type), 0);
9463           }
9464         else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2)
9465           type = build_cplus_method_type (build_type_variant (ctype, constp, volatilep),
9466                                           TREE_TYPE (type), TYPE_ARG_TYPES (type));
9467
9468         /* Record presence of `static'.  In C++, `inline' implies `static'.  */
9469         publicp = (ctype != NULL_TREE
9470                    || RIDBIT_SETP (RID_EXTERN, specbits)
9471                    || (!RIDBIT_SETP (RID_STATIC, specbits)
9472                        && !RIDBIT_SETP (RID_INLINE, specbits)));
9473
9474         decl = grokfndecl (ctype, type, original_name,
9475                            virtualp, flags, quals, raises, attrlist,
9476                            friendp ? 2 : 1,
9477                            publicp, inlinep, funcdef_flag);
9478         if (decl == NULL_TREE)
9479           return NULL_TREE;
9480
9481         if (ctype == NULL_TREE && DECL_LANGUAGE (decl) != lang_c)
9482           DECL_ASSEMBLER_NAME (decl) = current_namespace_id (declarator);
9483
9484         if (staticp == 1)
9485           {
9486             int illegal_static = 0;
9487
9488             /* Don't allow a static member function in a class, and forbid
9489                declaring main to be static.  */
9490             if (TREE_CODE (type) == METHOD_TYPE)
9491               {
9492                 cp_pedwarn ("cannot declare member function `%D' to have static linkage", decl);
9493                 illegal_static = 1;
9494               }
9495             else if (current_function_decl)
9496               {
9497                 /* FIXME need arm citation */
9498                 error ("cannot declare static function inside another function");
9499                 illegal_static = 1;
9500               }
9501
9502             if (illegal_static)
9503               {
9504                 staticp = 0;
9505                 RIDBIT_RESET (RID_STATIC, specbits);
9506               }
9507           }
9508       }
9509     else
9510       {
9511         /* It's a variable.  */
9512
9513         if (decl_context == CATCHPARM)
9514           {
9515             if (ctype)
9516               {
9517                 ctype = NULL_TREE;
9518                 error ("cannot use `::' in parameter declaration");
9519               }
9520
9521             /* A parameter declared as an array of T is really a pointer to T.
9522                One declared as a function is really a pointer to a function.
9523                One declared as a member is really a pointer to member.  */
9524
9525             if (TREE_CODE (type) == ARRAY_TYPE)
9526               {
9527                 /* Transfer const-ness of array into that of type
9528                    pointed to.  */
9529                 type = build_pointer_type
9530                   (cp_build_type_variant (TREE_TYPE (type), constp, volatilep));
9531                 volatilep = constp = 0;
9532               }
9533             else if (TREE_CODE (type) == FUNCTION_TYPE)
9534               type = build_pointer_type (type);
9535             else if (TREE_CODE (type) == OFFSET_TYPE)
9536               type = build_pointer_type (type);
9537           }
9538
9539         /* An uninitialized decl with `extern' is a reference.  */
9540         decl = grokvardecl (type, declarator, specbits, initialized, constp);
9541         bad_specifiers (decl, "variable", virtualp, quals != NULL_TREE,
9542                         inlinep, friendp, raises != NULL_TREE);
9543
9544         if (ctype)
9545           {
9546             DECL_CONTEXT (decl) = ctype;
9547             if (staticp == 1)
9548               {
9549                 cp_pedwarn ("static member `%D' re-declared as static", decl);
9550                 staticp = 0;
9551                 RIDBIT_RESET (RID_STATIC, specbits);
9552               }
9553             if (RIDBIT_SETP (RID_REGISTER, specbits) && TREE_STATIC (decl))
9554               {
9555                 cp_error ("static member `%D' declared `register'", decl);
9556                 RIDBIT_RESET (RID_REGISTER, specbits);
9557               }
9558             if (RIDBIT_SETP (RID_EXTERN, specbits) && pedantic)
9559               {
9560                 cp_pedwarn ("cannot explicitly declare member `%#D' to have extern linkage",
9561                             decl);
9562                 RIDBIT_RESET (RID_EXTERN, specbits);
9563               }
9564           }
9565       }
9566
9567     if (RIDBIT_SETP (RID_MUTABLE, specbits))
9568       {
9569         error ("`%s' cannot be declared mutable", name);
9570       }
9571
9572     /* Record `register' declaration for warnings on &
9573        and in case doing stupid register allocation.  */
9574
9575     if (RIDBIT_SETP (RID_REGISTER, specbits))
9576       DECL_REGISTER (decl) = 1;
9577
9578     if (RIDBIT_SETP (RID_EXTERN, specbits))
9579       DECL_THIS_EXTERN (decl) = 1;
9580
9581     if (RIDBIT_SETP (RID_STATIC, specbits))
9582       DECL_THIS_STATIC (decl) = 1;
9583
9584     /* Record constancy and volatility.  */
9585
9586     if (constp)
9587       TREE_READONLY (decl) = TREE_CODE (type) != REFERENCE_TYPE;
9588     if (volatilep)
9589       {
9590         TREE_SIDE_EFFECTS (decl) = 1;
9591         TREE_THIS_VOLATILE (decl) = 1;
9592       }
9593
9594     return decl;
9595   }
9596 }
9597 \f
9598 /* Tell if a parmlist/exprlist looks like an exprlist or a parmlist.
9599    An empty exprlist is a parmlist.  An exprlist which
9600    contains only identifiers at the global level
9601    is a parmlist.  Otherwise, it is an exprlist.  */
9602
9603 int
9604 parmlist_is_exprlist (exprs)
9605      tree exprs;
9606 {
9607   if (exprs == NULL_TREE || TREE_PARMLIST (exprs))
9608     return 0;
9609
9610   if (toplevel_bindings_p ())
9611     {
9612       /* At the global level, if these are all identifiers,
9613          then it is a parmlist.  */
9614       while (exprs)
9615         {
9616           if (TREE_CODE (TREE_VALUE (exprs)) != IDENTIFIER_NODE)
9617             return 1;
9618           exprs = TREE_CHAIN (exprs);
9619         }
9620       return 0;
9621     }
9622   return 1;
9623 }
9624
9625 /* Subroutine of `grokparms'.  In a fcn definition, arg types must
9626    be complete.
9627
9628    C++: also subroutine of `start_function'.  */
9629
9630 static void
9631 require_complete_types_for_parms (parms)
9632      tree parms;
9633 {
9634   if (processing_template_decl)
9635     return;
9636
9637   while (parms)
9638     {
9639       tree type = TREE_TYPE (parms);
9640       if (TYPE_SIZE (complete_type (type)) == NULL_TREE)
9641         {
9642           if (DECL_NAME (parms))
9643             error ("parameter `%s' has incomplete type",
9644                    IDENTIFIER_POINTER (DECL_NAME (parms)));
9645           else
9646             error ("parameter has incomplete type");
9647           TREE_TYPE (parms) = error_mark_node;
9648         }
9649 #if 0
9650       /* If the arg types are incomplete in a declaration,
9651          they must include undefined tags.
9652          These tags can never be defined in the scope of the declaration,
9653          so the types can never be completed,
9654          and no call can be compiled successfully.  */
9655       /* This is not the right behavior for C++, but not having
9656          it is also probably wrong.  */
9657       else
9658         {
9659           /* Now warn if is a pointer to an incomplete type.  */
9660           while (TREE_CODE (type) == POINTER_TYPE
9661                  || TREE_CODE (type) == REFERENCE_TYPE)
9662             type = TREE_TYPE (type);
9663           type = TYPE_MAIN_VARIANT (type);
9664           if (TYPE_SIZE (type) == NULL_TREE)
9665             {
9666               if (DECL_NAME (parm) != NULL_TREE)
9667                 warning ("parameter `%s' points to incomplete type",
9668                          IDENTIFIER_POINTER (DECL_NAME (parm)));
9669               else
9670                 warning ("parameter points to incomplete type");
9671             }
9672         }
9673 #endif
9674       parms = TREE_CHAIN (parms);
9675     }
9676 }
9677
9678 /* Decode the list of parameter types for a function type.
9679    Given the list of things declared inside the parens,
9680    return a list of types.
9681
9682    The list we receive can have three kinds of elements:
9683    an IDENTIFIER_NODE for names given without types,
9684    a TREE_LIST node for arguments given as typespecs or names with typespecs,
9685    or void_type_node, to mark the end of an argument list
9686    when additional arguments are not permitted (... was not used).
9687
9688    FUNCDEF_FLAG is nonzero for a function definition, 0 for
9689    a mere declaration.  A nonempty identifier-list gets an error message
9690    when FUNCDEF_FLAG is zero.
9691    If FUNCDEF_FLAG is 1, then parameter types must be complete.
9692    If FUNCDEF_FLAG is -1, then parameter types may be incomplete.
9693
9694    If all elements of the input list contain types,
9695    we return a list of the types.
9696    If all elements contain no type (except perhaps a void_type_node
9697    at the end), we return a null list.
9698    If some have types and some do not, it is an error, and we
9699    return a null list.
9700
9701    Also set last_function_parms to either
9702    a list of names (IDENTIFIER_NODEs) or a chain of PARM_DECLs.
9703    A list of names is converted to a chain of PARM_DECLs
9704    by store_parm_decls so that ultimately it is always a chain of decls.
9705
9706    Note that in C++, parameters can take default values.  These default
9707    values are in the TREE_PURPOSE field of the TREE_LIST.  It is
9708    an error to specify default values which are followed by parameters
9709    that have no default values, or an ELLIPSES.  For simplicities sake,
9710    only parameters which are specified with their types can take on
9711    default values.  */
9712
9713 static tree
9714 grokparms (first_parm, funcdef_flag)
9715      tree first_parm;
9716      int funcdef_flag;
9717 {
9718   tree result = NULL_TREE;
9719   tree decls = NULL_TREE;
9720
9721   if (first_parm != NULL_TREE
9722       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
9723     {
9724       if (! funcdef_flag)
9725         pedwarn ("parameter names (without types) in function declaration");
9726       last_function_parms = first_parm;
9727       return NULL_TREE;
9728     }
9729   else if (first_parm != NULL_TREE
9730            && TREE_CODE (TREE_VALUE (first_parm)) != TREE_LIST
9731            && TREE_VALUE (first_parm) != void_type_node)
9732     my_friendly_abort (145);
9733   else
9734     {
9735       /* Types were specified.  This is a list of declarators
9736          each represented as a TREE_LIST node.  */
9737       register tree parm, chain;
9738       int any_init = 0, any_error = 0;
9739
9740       if (first_parm != NULL_TREE)
9741         {
9742           tree last_result = NULL_TREE;
9743           tree last_decl = NULL_TREE;
9744
9745           for (parm = first_parm; parm != NULL_TREE; parm = chain)
9746             {
9747               tree type, list_node = parm;
9748               register tree decl = TREE_VALUE (parm);
9749               tree init = TREE_PURPOSE (parm);
9750
9751               chain = TREE_CHAIN (parm);
9752               /* @@ weak defense against parse errors.  */
9753               if (decl != void_type_node && TREE_CODE (decl) != TREE_LIST)
9754                 {
9755                   /* Give various messages as the need arises.  */
9756                   if (TREE_CODE (decl) == STRING_CST)
9757                     cp_error ("invalid string constant `%E'", decl);
9758                   else if (TREE_CODE (decl) == INTEGER_CST)
9759                     error ("invalid integer constant in parameter list, did you forget to give parameter name?");
9760                   continue;
9761                 }
9762
9763               if (decl != void_type_node)
9764                 {
9765                   decl = grokdeclarator (TREE_VALUE (decl),
9766                                          TREE_PURPOSE (decl),
9767                                          PARM, init != NULL_TREE,
9768                                          NULL_TREE);
9769                   if (! decl)
9770                     continue;
9771                   type = TREE_TYPE (decl);
9772                   if (TYPE_MAIN_VARIANT (type) == void_type_node)
9773                     decl = void_type_node;
9774                   else if (TREE_CODE (type) == METHOD_TYPE)
9775                     {
9776                       if (DECL_NAME (decl))
9777                         /* Cannot use the decl here because
9778                            we don't have DECL_CONTEXT set up yet.  */
9779                         cp_error ("parameter `%D' invalidly declared method type",
9780                                   DECL_NAME (decl));
9781                       else
9782                         error ("parameter invalidly declared method type");
9783                       type = build_pointer_type (type);
9784                       TREE_TYPE (decl) = type;
9785                     }
9786                   else if (TREE_CODE (type) == OFFSET_TYPE)
9787                     {
9788                       if (DECL_NAME (decl))
9789                         cp_error ("parameter `%D' invalidly declared offset type",
9790                                   DECL_NAME (decl));
9791                       else
9792                         error ("parameter invalidly declared offset type");
9793                       type = build_pointer_type (type);
9794                       TREE_TYPE (decl) = type;
9795                     }
9796                   else if (TREE_CODE (type) == RECORD_TYPE
9797                            && TYPE_LANG_SPECIFIC (type)
9798                            && CLASSTYPE_ABSTRACT_VIRTUALS (type))
9799                     {
9800                       abstract_virtuals_error (decl, type);
9801                       any_error = 1;  /* seems like a good idea */
9802                     }
9803                   else if (TREE_CODE (type) == RECORD_TYPE
9804                            && TYPE_LANG_SPECIFIC (type)
9805                            && IS_SIGNATURE (type))
9806                     {
9807                       signature_error (decl, type);
9808                       any_error = 1;  /* seems like a good idea */
9809                     }
9810                 }
9811
9812               if (decl == void_type_node)
9813                 {
9814                   if (result == NULL_TREE)
9815                     {
9816                       result = void_list_node;
9817                       last_result = result;
9818                     }
9819                   else
9820                     {
9821                       TREE_CHAIN (last_result) = void_list_node;
9822                       last_result = void_list_node;
9823                     }
9824                   if (chain
9825                       && (chain != void_list_node || TREE_CHAIN (chain)))
9826                     error ("`void' in parameter list must be entire list");
9827                   break;
9828                 }
9829
9830               /* Since there is a prototype, args are passed in their own types.  */
9831               DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
9832 #ifdef PROMOTE_PROTOTYPES
9833               if ((TREE_CODE (type) == INTEGER_TYPE
9834                    || TREE_CODE (type) == ENUMERAL_TYPE)
9835                   && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
9836                 DECL_ARG_TYPE (decl) = integer_type_node;
9837 #endif
9838               if (!any_error)
9839                 {
9840                   if (init)
9841                     {
9842                       any_init++;
9843                       if (TREE_CODE (init) == SAVE_EXPR)
9844                         PARM_DECL_EXPR (init) = 1;
9845                       else if (processing_template_decl)
9846                         ;
9847                       else if (TREE_CODE (init) == VAR_DECL
9848                                || TREE_CODE (init) == PARM_DECL)
9849                         {
9850                           if (IDENTIFIER_LOCAL_VALUE (DECL_NAME (init)))
9851                             {
9852                               /* ``Local variables may not be used in default
9853                                  argument expressions.'' dpANSI C++ 8.2.6 */
9854                               /* If extern int i; within a function is not
9855                                  considered a local variable, then this code is
9856                                  wrong.  */
9857                               cp_error ("local variable `%D' may not be used as a default argument", init);
9858                               any_error = 1;
9859                             }
9860                           else if (TREE_READONLY_DECL_P (init))
9861                             init = decl_constant_value (init);
9862                         }
9863                       else
9864                         init = require_instantiated_type (type, init, integer_zero_node);
9865                       if (! processing_template_decl
9866                           && ! can_convert_arg (type, TREE_TYPE (init), init))
9867                         cp_pedwarn ("invalid type `%T' for default argument to `%#D'",
9868                                     TREE_TYPE (init), decl);
9869                     }
9870                 }
9871               else
9872                 init = NULL_TREE;
9873
9874               if (decls == NULL_TREE)
9875                 {
9876                   decls = decl;
9877                   last_decl = decls;
9878                 }
9879               else
9880                 {
9881                   TREE_CHAIN (last_decl) = decl;
9882                   last_decl = decl;
9883                 }
9884               if (TREE_PERMANENT (list_node))
9885                 {
9886                   TREE_PURPOSE (list_node) = init;
9887                   TREE_VALUE (list_node) = type;
9888                   TREE_CHAIN (list_node) = NULL_TREE;
9889                 }
9890               else
9891                 list_node = saveable_tree_cons (init, type, NULL_TREE);
9892               if (result == NULL_TREE)
9893                 {
9894                   result = list_node;
9895                   last_result = result;
9896                 }
9897               else
9898                 {
9899                   TREE_CHAIN (last_result) = list_node;
9900                   last_result = list_node;
9901                 }
9902             }
9903           if (last_result)
9904             TREE_CHAIN (last_result) = NULL_TREE;
9905           /* If there are no parameters, and the function does not end
9906              with `...', then last_decl will be NULL_TREE.  */
9907           if (last_decl != NULL_TREE)
9908             TREE_CHAIN (last_decl) = NULL_TREE;
9909         }
9910     }
9911
9912   last_function_parms = decls;
9913
9914   /* In a fcn definition, arg types must be complete.  */
9915   if (funcdef_flag > 0)
9916     require_complete_types_for_parms (last_function_parms);
9917
9918   return result;
9919 }
9920 \f
9921 int
9922 copy_args_p (d)
9923      tree d;
9924 {
9925   tree t = FUNCTION_ARG_CHAIN (d);
9926   if (t && TREE_CODE (TREE_VALUE (t)) == REFERENCE_TYPE
9927       && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (t)))
9928           == DECL_CLASS_CONTEXT (d))
9929       && (TREE_CHAIN (t) == NULL_TREE
9930           || TREE_CHAIN (t) == void_list_node
9931           || TREE_PURPOSE (TREE_CHAIN (t))))
9932     return 1;
9933   return 0;
9934 }
9935
9936 /* These memoizing functions keep track of special properties which
9937    a class may have.  `grok_ctor_properties' notices whether a class
9938    has a constructor of the form X(X&), and also complains
9939    if the class has a constructor of the form X(X).
9940    `grok_op_properties' takes notice of the various forms of
9941    operator= which are defined, as well as what sorts of type conversion
9942    may apply.  Both functions take a FUNCTION_DECL as an argument.  */
9943
9944 int
9945 grok_ctor_properties (ctype, decl)
9946      tree ctype, decl;
9947 {
9948   tree parmtypes = FUNCTION_ARG_CHAIN (decl);
9949   tree parmtype = parmtypes ? TREE_VALUE (parmtypes) : void_type_node;
9950
9951   /* When a type has virtual baseclasses, a magical first int argument is
9952      added to any ctor so we can tell if the class has been initialized
9953      yet.  This could screw things up in this function, so we deliberately
9954      ignore the leading int if we're in that situation.  */
9955   if (parmtypes
9956       && TREE_VALUE (parmtypes) == integer_type_node
9957       && TYPE_USES_VIRTUAL_BASECLASSES (ctype))
9958     {
9959       parmtypes = TREE_CHAIN (parmtypes);
9960       parmtype = TREE_VALUE (parmtypes);
9961     }
9962
9963   if (TREE_CODE (parmtype) == REFERENCE_TYPE
9964       && TYPE_MAIN_VARIANT (TREE_TYPE (parmtype)) == ctype)
9965     {
9966       if (TREE_CHAIN (parmtypes) == NULL_TREE
9967           || TREE_CHAIN (parmtypes) == void_list_node
9968           || TREE_PURPOSE (TREE_CHAIN (parmtypes)))
9969         {
9970           TYPE_HAS_INIT_REF (ctype) = 1;
9971           if (TYPE_READONLY (TREE_TYPE (parmtype)))
9972             TYPE_HAS_CONST_INIT_REF (ctype) = 1;
9973         }
9974       else
9975         TYPE_GETS_INIT_AGGR (ctype) = 1;
9976     }
9977   else if (TYPE_MAIN_VARIANT (parmtype) == ctype)
9978     {
9979       if (TREE_CHAIN (parmtypes) != NULL_TREE
9980           && TREE_CHAIN (parmtypes) == void_list_node)
9981         {
9982           cp_error ("invalid constructor; you probably meant `%T (%T&)'",
9983                     ctype, ctype);
9984           SET_IDENTIFIER_ERROR_LOCUS (DECL_NAME (decl), ctype);
9985
9986           return 0;
9987         }
9988       else
9989         TYPE_GETS_INIT_AGGR (ctype) = 1;
9990     }
9991   else if (TREE_CODE (parmtype) == VOID_TYPE
9992            || TREE_PURPOSE (parmtypes) != NULL_TREE)
9993     TYPE_HAS_DEFAULT_CONSTRUCTOR (ctype) = 1;
9994
9995   return 1;
9996 }
9997
9998 /* An operator with this name can be either unary or binary.  */
9999
10000 static int
10001 ambi_op_p (name)
10002      tree name;
10003 {
10004   return (name == ansi_opname [(int) INDIRECT_REF]
10005           || name == ansi_opname [(int) ADDR_EXPR]
10006           || name == ansi_opname [(int) NEGATE_EXPR]
10007           || name == ansi_opname[(int) POSTINCREMENT_EXPR]
10008           || name == ansi_opname[(int) POSTDECREMENT_EXPR]
10009           || name == ansi_opname [(int) CONVERT_EXPR]);
10010 }
10011
10012 /* An operator with this name can only be unary.  */
10013
10014 static int
10015 unary_op_p (name)
10016      tree name;
10017 {
10018   return (name == ansi_opname [(int) TRUTH_NOT_EXPR]
10019           || name == ansi_opname [(int) BIT_NOT_EXPR]
10020           || name == ansi_opname [(int) COMPONENT_REF]
10021           || OPERATOR_TYPENAME_P (name));
10022 }
10023
10024 /* Do a little sanity-checking on how they declared their operator.  */
10025
10026 void
10027 grok_op_properties (decl, virtualp, friendp)
10028      tree decl;
10029      int virtualp, friendp;
10030 {
10031   tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
10032   int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
10033   tree name = DECL_NAME (decl);
10034
10035   if (current_class_type == NULL_TREE)
10036     friendp = 1;
10037
10038   if (! friendp)
10039     {
10040       if (name == ansi_opname[(int) MODIFY_EXPR])
10041         TYPE_HAS_ASSIGNMENT (current_class_type) = 1;
10042       else if (name == ansi_opname[(int) CALL_EXPR])
10043         TYPE_OVERLOADS_CALL_EXPR (current_class_type) = 1;
10044       else if (name == ansi_opname[(int) ARRAY_REF])
10045         TYPE_OVERLOADS_ARRAY_REF (current_class_type) = 1;
10046       else if (name == ansi_opname[(int) COMPONENT_REF]
10047                || name == ansi_opname[(int) MEMBER_REF])
10048         TYPE_OVERLOADS_ARROW (current_class_type) = 1;
10049       else if (name == ansi_opname[(int) NEW_EXPR])
10050         TYPE_GETS_NEW (current_class_type) |= 1;
10051       else if (name == ansi_opname[(int) DELETE_EXPR])
10052         TYPE_GETS_DELETE (current_class_type) |= 1;
10053       else if (name == ansi_opname[(int) VEC_NEW_EXPR])
10054         TYPE_GETS_NEW (current_class_type) |= 2;
10055       else if (name == ansi_opname[(int) VEC_DELETE_EXPR])
10056         TYPE_GETS_DELETE (current_class_type) |= 2;
10057     }
10058
10059   if (name == ansi_opname[(int) NEW_EXPR]
10060       || name == ansi_opname[(int) VEC_NEW_EXPR])
10061     {
10062       /* When the compiler encounters the definition of A::operator new, it
10063          doesn't look at the class declaration to find out if it's static.  */
10064       if (methodp)
10065         revert_static_member_fn (&decl, NULL, NULL);
10066      
10067       /* Take care of function decl if we had syntax errors.  */
10068       if (argtypes == NULL_TREE)
10069         TREE_TYPE (decl) =
10070           build_function_type (ptr_type_node,
10071                                hash_tree_chain (integer_type_node,
10072                                                 void_list_node));
10073       else
10074         TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
10075     }
10076   else if (name == ansi_opname[(int) DELETE_EXPR]
10077            || name == ansi_opname[(int) VEC_DELETE_EXPR])
10078     {
10079       if (methodp)
10080         revert_static_member_fn (&decl, NULL, NULL);
10081      
10082       if (argtypes == NULL_TREE)
10083         TREE_TYPE (decl) =
10084           build_function_type (void_type_node,
10085                                hash_tree_chain (ptr_type_node,
10086                                                 void_list_node));
10087       else
10088         {
10089           TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
10090
10091           if (! friendp && name == ansi_opname[(int) VEC_DELETE_EXPR]
10092               && (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
10093                   != void_list_node))
10094             TYPE_VEC_DELETE_TAKES_SIZE (current_class_type) = 1;
10095         }
10096     }
10097   else
10098     {
10099       /* An operator function must either be a non-static member function
10100          or have at least one parameter of a class, a reference to a class,
10101          an enumeration, or a reference to an enumeration.  13.4.0.6 */
10102       if (! methodp || DECL_STATIC_FUNCTION_P (decl))
10103         {
10104           if (OPERATOR_TYPENAME_P (name)
10105               || name == ansi_opname[(int) CALL_EXPR]
10106               || name == ansi_opname[(int) MODIFY_EXPR]
10107               || name == ansi_opname[(int) COMPONENT_REF]
10108               || name == ansi_opname[(int) ARRAY_REF])
10109             cp_error ("`%D' must be a nonstatic member function", decl);
10110           else
10111             {
10112               tree p = argtypes;
10113
10114               if (DECL_STATIC_FUNCTION_P (decl))
10115                 cp_error ("`%D' must be either a non-static member function or a non-member function", decl);
10116
10117               if (p)
10118                 for (; TREE_VALUE (p) != void_type_node ; p = TREE_CHAIN (p))
10119                   {
10120                     tree arg = TREE_VALUE (p);
10121                     if (TREE_CODE (arg) == REFERENCE_TYPE)
10122                       arg = TREE_TYPE (arg);
10123
10124                     /* This lets bad template code slip through.  */
10125                     if (IS_AGGR_TYPE (arg)
10126                         || TREE_CODE (arg) == ENUMERAL_TYPE
10127                         || TREE_CODE (arg) == TEMPLATE_TYPE_PARM)
10128                       goto foundaggr;
10129                   }
10130               cp_error
10131                 ("`%D' must have an argument of class or enumerated type",
10132                  decl);
10133             foundaggr:
10134               ;
10135             }
10136         }
10137       
10138       if (name == ansi_opname[(int) CALL_EXPR]
10139           || name == ansi_opname[(int) METHOD_CALL_EXPR])
10140         return;                 /* no restrictions on args */
10141
10142       if (IDENTIFIER_TYPENAME_P (name))
10143         {
10144           tree t = TREE_TYPE (name);
10145           if (TREE_CODE (t) == VOID_TYPE)
10146             pedwarn ("void is not a valid type conversion operator");
10147           else if (! friendp)
10148             {
10149               int ref = (TREE_CODE (t) == REFERENCE_TYPE);
10150               char *what = 0;
10151               if (ref)
10152                 t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
10153
10154               if (t == current_class_type)
10155                 what = "the same type";
10156               else if (IS_AGGR_TYPE (t)
10157                        && DERIVED_FROM_P (t, current_class_type))
10158                 what = "a base class";
10159
10160               if (what)
10161                 warning ("conversion to %s%s will never use a type conversion operator",
10162                          ref ? "a reference to " : "", what);
10163             }
10164         }
10165
10166       if (name == ansi_opname[(int) MODIFY_EXPR])
10167         {
10168           tree parmtype;
10169
10170           if (list_length (argtypes) != 3 && methodp)
10171             {
10172               cp_error ("`%D' must take exactly one argument", decl);
10173               return;
10174             }
10175           parmtype = TREE_VALUE (TREE_CHAIN (argtypes));
10176
10177           if (copy_assignment_arg_p (parmtype, virtualp)
10178               && ! friendp)
10179             {
10180               TYPE_HAS_ASSIGN_REF (current_class_type) = 1;
10181               if (TREE_CODE (parmtype) != REFERENCE_TYPE
10182                   || TYPE_READONLY (TREE_TYPE (parmtype)))
10183                 TYPE_HAS_CONST_ASSIGN_REF (current_class_type) = 1;
10184             }
10185         }
10186       else if (name == ansi_opname[(int) COND_EXPR])
10187         {
10188           /* 13.4.0.3 */
10189           pedwarn ("ANSI C++ prohibits overloading operator ?:");
10190           if (list_length (argtypes) != 4)
10191             cp_error ("`%D' must take exactly three arguments", decl);
10192         }         
10193       else if (ambi_op_p (name))
10194         {
10195           if (list_length (argtypes) == 2)
10196             /* prefix */;
10197           else if (list_length (argtypes) == 3)
10198             {
10199               if ((name == ansi_opname[(int) POSTINCREMENT_EXPR]
10200                    || name == ansi_opname[(int) POSTDECREMENT_EXPR])
10201                   && ! processing_template_decl
10202                   && TREE_VALUE (TREE_CHAIN (argtypes)) != integer_type_node)
10203                 {
10204                   if (methodp)
10205                     cp_error ("postfix `%D' must take `int' as its argument",
10206                               decl);
10207                   else
10208                     cp_error
10209                       ("postfix `%D' must take `int' as its second argument",
10210                        decl);
10211                 }
10212             }
10213           else
10214             {
10215               if (methodp)
10216                 cp_error ("`%D' must take either zero or one argument", decl);
10217               else
10218                 cp_error ("`%D' must take either one or two arguments", decl);
10219             }
10220         }
10221       else if (unary_op_p (name))
10222         {
10223           if (list_length (argtypes) != 2)
10224             {
10225               if (methodp)
10226                 cp_error ("`%D' must take `void'", decl);
10227               else
10228                 cp_error ("`%D' must take exactly one argument", decl);
10229             }
10230         }
10231       else /* if (binary_op_p (name)) */
10232         {
10233           if (list_length (argtypes) != 3)
10234             {
10235               if (methodp)
10236                 cp_error ("`%D' must take exactly one argument", decl);
10237               else
10238                 cp_error ("`%D' must take exactly two arguments", decl);
10239             }
10240         }
10241
10242       /* 13.4.0.8 */
10243       if (argtypes)
10244         for (; argtypes != void_list_node ; argtypes = TREE_CHAIN (argtypes))
10245           if (TREE_PURPOSE (argtypes))
10246             {
10247               TREE_PURPOSE (argtypes) = NULL_TREE;
10248               if (name == ansi_opname[(int) POSTINCREMENT_EXPR]
10249                   || name == ansi_opname[(int) POSTDECREMENT_EXPR])
10250                 {
10251                   if (pedantic)
10252                     cp_pedwarn ("`%D' cannot have default arguments", decl);
10253                 }
10254               else
10255                 cp_error ("`%D' cannot have default arguments", decl);
10256             }
10257     }
10258 }
10259 \f
10260 /* Get the struct, enum or union (CODE says which) with tag NAME.
10261    Define the tag as a forward-reference if it is not defined.
10262
10263    C++: If a class derivation is given, process it here, and report
10264    an error if multiple derivation declarations are not identical.
10265
10266    If this is a definition, come in through xref_tag and only look in
10267    the current frame for the name (since C++ allows new names in any
10268    scope.)  */
10269
10270 tree
10271 xref_tag (code_type_node, name, binfo, globalize)
10272      tree code_type_node;
10273      tree name, binfo;
10274      int globalize;
10275 {
10276   enum tag_types tag_code;
10277   enum tree_code code;
10278   int temp = 0;
10279   register tree ref, t;
10280   struct binding_level *b = inner_binding_level;
10281   int got_type = 0;
10282
10283   tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
10284   switch (tag_code)
10285     {
10286     case record_type:
10287     case class_type:
10288     case signature_type:
10289       code = RECORD_TYPE;
10290       break;
10291     case union_type:
10292       code = UNION_TYPE;
10293       break;
10294     case enum_type:
10295       code = ENUMERAL_TYPE;
10296       break;
10297     default:
10298       my_friendly_abort (18);
10299     }
10300
10301   /* If a cross reference is requested, look up the type
10302      already defined for this tag and return it.  */
10303   if (TREE_CODE_CLASS (TREE_CODE (name)) == 't')
10304     {
10305       t = name;
10306       name = TYPE_IDENTIFIER (t);
10307       got_type = 1;
10308     }
10309   else
10310     t = IDENTIFIER_TYPE_VALUE (name);
10311   if (t && TREE_CODE (t) != code && TREE_CODE (t) != TEMPLATE_TYPE_PARM)
10312     t = NULL_TREE;
10313
10314   if (! globalize)
10315     {
10316       if (pedantic && t && TREE_CODE (t) == TEMPLATE_TYPE_PARM)
10317         {
10318           cp_pedwarn ("redeclaration of template type-parameter `%T'", name);
10319           cp_pedwarn_at ("  previously declared here", t);
10320         }
10321       if (t && TYPE_CONTEXT (t) && got_type)
10322         ref = t;
10323       else
10324         {
10325           /* If we know we are defining this tag, only look it up in
10326              this scope and don't try to find it as a type.  */
10327           ref = lookup_tag (code, name, b, 1);
10328         }
10329     }
10330   else
10331     {
10332       if (t)
10333         ref = t;
10334       else
10335         ref = lookup_tag (code, name, b, 0);
10336
10337       if (! ref)
10338         {
10339           /* Try finding it as a type declaration.  If that wins, use it.  */
10340           ref = lookup_name (name, 1);
10341           if (ref && TREE_CODE (ref) == TYPE_DECL
10342               && TREE_CODE (TREE_TYPE (ref)) == code)
10343             ref = TREE_TYPE (ref);
10344           else
10345             ref = NULL_TREE;
10346         }
10347     }
10348
10349   push_obstacks_nochange ();
10350
10351   if (! ref)
10352     {
10353       /* If no such tag is yet defined, create a forward-reference node
10354          and record it as the "definition".
10355          When a real declaration of this type is found,
10356          the forward-reference will be altered into a real type.  */
10357
10358       /* In C++, since these migrate into the global scope, we must
10359          build them on the permanent obstack.  */
10360
10361       temp = allocation_temporary_p ();
10362       if (temp)
10363         end_temporary_allocation ();
10364
10365       if (code == ENUMERAL_TYPE)
10366         {
10367           cp_error ("use of enum `%#D' without previous declaration", name);
10368
10369           ref = make_node (ENUMERAL_TYPE);
10370
10371           /* Give the type a default layout like unsigned int
10372              to avoid crashing if it does not get defined.  */
10373           TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
10374           TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
10375           TREE_UNSIGNED (ref) = 1;
10376           TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
10377           TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
10378           TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
10379
10380           /* Enable us to recognize when a type is created in class context.
10381              To do nested classes correctly, this should probably be cleared
10382              out when we leave this classes scope.  Currently this in only
10383              done in `start_enum'.  */
10384
10385           pushtag (name, ref, globalize);
10386         }
10387       else
10388         {
10389           struct binding_level *old_b = class_binding_level;
10390
10391           ref = make_lang_type (code);
10392
10393           if (tag_code == signature_type)
10394             {
10395               SET_SIGNATURE (ref);
10396               /* Since a signature type will be turned into the type
10397                  of signature tables, it's not only an interface.  */
10398               CLASSTYPE_INTERFACE_ONLY (ref) = 0;
10399               SET_CLASSTYPE_INTERFACE_KNOWN (ref);
10400               /* A signature doesn't have a vtable.  */
10401               CLASSTYPE_VTABLE_NEEDS_WRITING (ref) = 0;
10402             }
10403
10404 #ifdef NONNESTED_CLASSES
10405           /* Class types don't nest the way enums do.  */
10406           class_binding_level = (struct binding_level *)0;
10407 #endif
10408           pushtag (name, ref, globalize);
10409           class_binding_level = old_b;
10410         }
10411     }
10412   else
10413     {
10414       /* If it no longer looks like a nested type, make sure it's
10415          in global scope.  */
10416       if (b == global_binding_level && !class_binding_level
10417           && IDENTIFIER_GLOBAL_VALUE (name) == NULL_TREE)
10418         IDENTIFIER_GLOBAL_VALUE (name) = TYPE_NAME (ref);
10419     }
10420
10421   if (binfo)
10422     xref_basetypes (code_type_node, name, ref, binfo);
10423
10424  just_return:
10425
10426   /* Until the type is defined, tentatively accept whatever
10427      structure tag the user hands us.  */
10428   if (TYPE_SIZE (ref) == NULL_TREE
10429       && ref != current_class_type
10430       /* Have to check this, in case we have contradictory tag info.  */
10431       && IS_AGGR_TYPE_CODE (TREE_CODE (ref)))
10432     {
10433       if (tag_code == class_type)
10434         CLASSTYPE_DECLARED_CLASS (ref) = 1;
10435       else if (tag_code == record_type || tag_code == signature_type)
10436         CLASSTYPE_DECLARED_CLASS (ref) = 0;
10437     }
10438
10439   pop_obstacks ();
10440
10441   return ref;
10442 }
10443
10444 tree
10445 xref_tag_from_type (old, id, globalize)
10446      tree old, id;
10447      int globalize;
10448 {
10449   tree code_type_node;
10450
10451   if (TREE_CODE (old) == RECORD_TYPE)
10452     code_type_node = (CLASSTYPE_DECLARED_CLASS (old)
10453                       ? class_type_node : record_type_node);
10454   else
10455     code_type_node = union_type_node;
10456
10457   if (id == NULL_TREE)
10458     id = TYPE_IDENTIFIER (old);
10459
10460   return xref_tag (code_type_node, id, NULL_TREE, globalize);
10461 }
10462
10463 void
10464 xref_basetypes (code_type_node, name, ref, binfo)
10465      tree code_type_node;
10466      tree name, ref;
10467      tree binfo;
10468 {
10469   /* In the declaration `A : X, Y, ... Z' we mark all the types
10470      (A, X, Y, ..., Z) so we can check for duplicates.  */
10471   tree binfos;
10472   int i, len;
10473   enum tag_types tag_code = (enum tag_types) TREE_INT_CST_LOW (code_type_node);
10474
10475   if (tag_code == union_type)
10476     {
10477       cp_error ("derived union `%T' invalid", ref);
10478       return;
10479     }
10480
10481   len = list_length (binfo);
10482   push_obstacks (TYPE_OBSTACK (ref), TYPE_OBSTACK (ref));
10483
10484   SET_CLASSTYPE_MARKED (ref);
10485   BINFO_BASETYPES (TYPE_BINFO (ref)) = binfos = make_tree_vec (len);
10486
10487   for (i = 0; binfo; binfo = TREE_CHAIN (binfo))
10488     {
10489       /* The base of a derived struct is public by default.  */
10490       int via_public
10491         = (TREE_PURPOSE (binfo) == access_public_node
10492            || TREE_PURPOSE (binfo) == access_public_virtual_node
10493            || (tag_code != class_type
10494                && (TREE_PURPOSE (binfo) == access_default_node
10495                    || TREE_PURPOSE (binfo) == access_default_virtual_node)));
10496       int via_protected = TREE_PURPOSE (binfo) == access_protected_node;
10497       int via_virtual
10498         = (TREE_PURPOSE (binfo) == access_private_virtual_node
10499            || TREE_PURPOSE (binfo) == access_public_virtual_node
10500            || TREE_PURPOSE (binfo) == access_default_virtual_node);
10501       tree basetype = TREE_VALUE (binfo);
10502       tree base_binfo;
10503
10504       GNU_xref_hier (IDENTIFIER_POINTER (name),
10505                      IDENTIFIER_POINTER (TREE_VALUE (binfo)),
10506                      via_public, via_virtual, 0);
10507
10508       if (basetype && TREE_CODE (basetype) == TYPE_DECL)
10509         basetype = TREE_TYPE (basetype);
10510       if (!basetype
10511           || (TREE_CODE (basetype) != RECORD_TYPE
10512               && TREE_CODE (basetype) != TYPENAME_TYPE
10513               && TREE_CODE (basetype) != TEMPLATE_TYPE_PARM))
10514         {
10515           cp_error ("base type `%T' fails to be a struct or class type",
10516                     TREE_VALUE (binfo));
10517           continue;
10518         }
10519 #if 1
10520       /* This code replaces similar code in layout_basetypes.  */
10521       else if (TREE_CODE (basetype) != TEMPLATE_TYPE_PARM
10522                && TREE_CODE (basetype) != TYPENAME_TYPE
10523                && TYPE_SIZE (complete_type (basetype)) == NULL_TREE)
10524         {
10525           cp_error ("base class `%T' has incomplete type", basetype);
10526           continue;
10527         }
10528 #endif
10529       else
10530         {
10531           if (CLASSTYPE_MARKED (basetype))
10532             {
10533               if (basetype == ref)
10534                 cp_error ("recursive type `%T' undefined", basetype);
10535               else
10536                 cp_error ("duplicate base type `%T' invalid", basetype);
10537               continue;
10538             }
10539
10540           /* Note that the BINFO records which describe individual
10541              inheritances are *not* shared in the lattice!  They
10542              cannot be shared because a given baseclass may be
10543              inherited with different `accessibility' by different
10544              derived classes.  (Each BINFO record describing an
10545              individual inheritance contains flags which say what
10546              the `accessibility' of that particular inheritance is.)  */
10547   
10548           base_binfo = make_binfo (integer_zero_node, basetype,
10549                                    TYPE_BINFO_VTABLE (basetype),
10550                                    TYPE_BINFO_VIRTUALS (basetype), NULL_TREE);
10551  
10552           TREE_VEC_ELT (binfos, i) = base_binfo;
10553           TREE_VIA_PUBLIC (base_binfo) = via_public;
10554           TREE_VIA_PROTECTED (base_binfo) = via_protected;
10555           TREE_VIA_VIRTUAL (base_binfo) = via_virtual;
10556           BINFO_INHERITANCE_CHAIN (base_binfo) = TYPE_BINFO (ref);
10557
10558           SET_CLASSTYPE_MARKED (basetype);
10559
10560           /* We are free to modify these bits because they are meaningless
10561              at top level, and BASETYPE is a top-level type.  */
10562           if (via_virtual || TYPE_USES_VIRTUAL_BASECLASSES (basetype))
10563             {
10564               TYPE_USES_VIRTUAL_BASECLASSES (ref) = 1;
10565               TYPE_USES_COMPLEX_INHERITANCE (ref) = 1;
10566             }
10567
10568           TYPE_OVERLOADS_METHOD_CALL_EXPR (ref) |= TYPE_OVERLOADS_METHOD_CALL_EXPR (basetype);
10569           TYPE_GETS_NEW (ref) |= TYPE_GETS_NEW (basetype);
10570           TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
10571           CLASSTYPE_LOCAL_TYPEDECLS (ref) |= CLASSTYPE_LOCAL_TYPEDECLS (basetype);
10572           i += 1;
10573         }
10574     }
10575   if (i)
10576     TREE_VEC_LENGTH (binfos) = i;
10577   else
10578     BINFO_BASETYPES (TYPE_BINFO (ref)) = NULL_TREE;
10579
10580   if (i > 1)
10581     TYPE_USES_MULTIPLE_INHERITANCE (ref) = 1;
10582   else if (i == 1)
10583     TYPE_USES_MULTIPLE_INHERITANCE (ref)
10584       = TYPE_USES_MULTIPLE_INHERITANCE (BINFO_TYPE (TREE_VEC_ELT (binfos, 0)));
10585   if (TYPE_USES_MULTIPLE_INHERITANCE (ref))
10586     TYPE_USES_COMPLEX_INHERITANCE (ref) = 1;
10587
10588   /* Unmark all the types.  */
10589   while (--i >= 0)
10590     CLEAR_CLASSTYPE_MARKED (BINFO_TYPE (TREE_VEC_ELT (binfos, i)));
10591   CLEAR_CLASSTYPE_MARKED (ref);
10592
10593   pop_obstacks ();
10594 }
10595   
10596 \f
10597 static tree current_local_enum = NULL_TREE;
10598
10599 /* Begin compiling the definition of an enumeration type.
10600    NAME is its name (or null if anonymous).
10601    Returns the type object, as yet incomplete.
10602    Also records info about it so that build_enumerator
10603    may be used to declare the individual values as they are read.  */
10604
10605 tree
10606 start_enum (name)
10607      tree name;
10608 {
10609   register tree enumtype = NULL_TREE;
10610   struct binding_level *b = inner_binding_level;
10611
10612   /* If this is the real definition for a previous forward reference,
10613      fill in the contents in the same object that used to be the
10614      forward reference.  */
10615
10616   if (name != NULL_TREE)
10617     enumtype = lookup_tag (ENUMERAL_TYPE, name, b, 1);
10618
10619   if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
10620     cp_error ("multiple definition of `%#T'", enumtype);
10621   else
10622     {
10623       enumtype = make_node (ENUMERAL_TYPE);
10624       pushtag (name, enumtype, 0);
10625     }
10626
10627   if (b->pseudo_global)
10628     cp_error ("template declaration of `%#T'", enumtype);
10629
10630   if (current_class_type)
10631     TREE_ADDRESSABLE (b->tags) = 1;
10632
10633   current_local_enum = NULL_TREE;
10634
10635   /* We don't copy this value because build_enumerator needs to do it.  */
10636   enum_next_value = integer_zero_node;
10637   enum_overflow = 0;
10638
10639   GNU_xref_decl (current_function_decl, enumtype);
10640   return enumtype;
10641 }
10642
10643 /* After processing and defining all the values of an enumeration type,
10644    install their decls in the enumeration type and finish it off.
10645    ENUMTYPE is the type object and VALUES a list of name-value pairs.
10646    Returns ENUMTYPE.  */
10647
10648 tree
10649 finish_enum (enumtype, values)
10650      register tree enumtype, values;
10651 {
10652   register tree minnode, maxnode;
10653   /* Calculate the maximum value of any enumerator in this type.  */
10654
10655   if (values)
10656     {
10657       register tree pair;
10658       register tree value = DECL_INITIAL (TREE_VALUE (values));
10659
10660       if (! processing_template_decl)
10661         {
10662           /* Speed up the main loop by performing some precalculations */
10663           TREE_TYPE (TREE_VALUE (values)) = enumtype;
10664           TREE_TYPE (value) = enumtype;
10665           minnode = maxnode = value;
10666         }
10667       TREE_VALUE (values) = value;
10668       
10669       for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
10670         {
10671           value = DECL_INITIAL (TREE_VALUE (pair));
10672           if (! processing_template_decl)
10673             {
10674               TREE_TYPE (TREE_VALUE (pair)) = enumtype;
10675               TREE_TYPE (value) = enumtype;
10676               if (tree_int_cst_lt (maxnode, value))
10677                 maxnode = value;
10678               else if (tree_int_cst_lt (value, minnode))
10679                 minnode = value;
10680             }
10681           TREE_VALUE (pair) = value;
10682         }
10683     }
10684   else
10685     maxnode = minnode = integer_zero_node;
10686
10687   TYPE_VALUES (enumtype) = values;
10688
10689   if (processing_template_decl)
10690     return enumtype;
10691
10692   {
10693     int unsignedp = tree_int_cst_sgn (minnode) >= 0;
10694     int lowprec = min_precision (minnode, unsignedp);
10695     int highprec = min_precision (maxnode, unsignedp);
10696     int precision = MAX (lowprec, highprec);
10697
10698     TYPE_SIZE (enumtype) = NULL_TREE;
10699
10700     /* Set TYPE_MIN_VALUE and TYPE_MAX_VALUE according to `precision'.  */
10701
10702     TYPE_PRECISION (enumtype) = precision;
10703     if (unsignedp)
10704       fixup_unsigned_type (enumtype);
10705     else
10706       fixup_signed_type (enumtype);
10707
10708     if (flag_short_enums || (precision > TYPE_PRECISION (integer_type_node)))
10709       /* Use the width of the narrowest normal C type which is wide enough.  */
10710       TYPE_PRECISION (enumtype) = TYPE_PRECISION (type_for_size
10711                                                   (precision, 1));
10712     else
10713       TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
10714
10715     TYPE_SIZE (enumtype) = 0;
10716     layout_type (enumtype);
10717   }
10718
10719   {
10720     register tree tem;
10721     
10722     /* Fix up all variant types of this enum type.  */
10723     for (tem = TYPE_MAIN_VARIANT (enumtype); tem;
10724          tem = TYPE_NEXT_VARIANT (tem))
10725       {
10726         TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
10727         TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
10728         TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
10729         TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
10730         TYPE_MODE (tem) = TYPE_MODE (enumtype);
10731         TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
10732         TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
10733         TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
10734       }
10735   }
10736
10737   /* Finish debugging output for this type.  */
10738   rest_of_type_compilation (enumtype, global_bindings_p ());
10739
10740   return enumtype;
10741 }
10742
10743 /* Build and install a CONST_DECL for one value of the
10744    current enumeration type (one that was begun with start_enum).
10745    Return a tree-list containing the name and its value.
10746    Assignment of sequential values by default is handled here.  */
10747
10748 tree
10749 build_enumerator (name, value)
10750      tree name, value;
10751 {
10752   tree decl, result;
10753
10754   /* Remove no-op casts from the value.  */
10755   if (value)
10756     STRIP_TYPE_NOPS (value);
10757
10758  if (! processing_template_decl)
10759    {
10760      /* Validate and default VALUE.  */
10761      if (value != NULL_TREE)
10762        {
10763          if (TREE_READONLY_DECL_P (value))
10764            value = decl_constant_value (value);
10765
10766          if (TREE_CODE (value) == INTEGER_CST)
10767            {
10768              value = default_conversion (value);
10769              constant_expression_warning (value);
10770            }
10771          else
10772            {
10773              cp_error ("enumerator value for `%D' not integer constant", name);
10774              value = NULL_TREE;
10775            }
10776        }
10777
10778      /* Default based on previous value.  */
10779      if (value == NULL_TREE && ! processing_template_decl)
10780        {
10781          value = enum_next_value;
10782          if (enum_overflow)
10783            cp_error ("overflow in enumeration values at `%D'", name);
10784        }
10785
10786      /* Remove no-op casts from the value.  */
10787      if (value)
10788        STRIP_TYPE_NOPS (value);
10789
10790      /* We have to always copy here; not all INTEGER_CSTs are unshared,
10791         and there's no wedding ring. Look at size_int()...*/
10792      value = copy_node (value);
10793      TREE_TYPE (value) = integer_type_node;
10794    }
10795
10796   /* C++ associates enums with global, function, or class declarations.  */
10797
10798   decl = current_scope ();
10799   if (decl && decl == current_class_type)
10800     {
10801       /* This enum declaration is local to the class, so we must put
10802          it in that class's list of decls.  */
10803       decl = build_lang_field_decl (CONST_DECL, name, integer_type_node);
10804       DECL_INITIAL (decl) = value;
10805       TREE_READONLY (decl) = 1;
10806       pushdecl_class_level (decl);
10807       TREE_CHAIN (decl) = current_local_enum;
10808       current_local_enum = decl;
10809     }
10810   else
10811     {
10812       /* It's a global enum, or it's local to a function.  (Note local to
10813          a function could mean local to a class method.  */
10814       decl = build_decl (CONST_DECL, name, integer_type_node);
10815       DECL_INITIAL (decl) = value;
10816
10817       pushdecl (decl);
10818       GNU_xref_decl (current_function_decl, decl);
10819     }
10820
10821  if (! processing_template_decl)
10822    {
10823      /* Set basis for default for next value.  */
10824      enum_next_value = build_binary_op_nodefault (PLUS_EXPR, value,
10825                                                   integer_one_node, PLUS_EXPR);
10826      enum_overflow = tree_int_cst_lt (enum_next_value, value);
10827    }
10828
10829   result = saveable_tree_cons (name, decl, NULL_TREE);
10830   return result;
10831 }
10832
10833 tree
10834 grok_enum_decls (type, decl)
10835      tree type, decl;
10836 {
10837   tree d = current_local_enum;
10838   
10839   if (d == NULL_TREE)
10840     return decl;
10841   
10842   while (1)
10843     {
10844       TREE_TYPE (d) = type;
10845       if (TREE_CHAIN (d) == NULL_TREE)
10846         {
10847           TREE_CHAIN (d) = decl;
10848           break;
10849         }
10850       d = TREE_CHAIN (d);
10851     }
10852
10853   decl = current_local_enum;
10854   current_local_enum = NULL_TREE;
10855   
10856   return decl;
10857 }
10858 \f
10859 static int function_depth;
10860
10861 /* Create the FUNCTION_DECL for a function definition.
10862    DECLSPECS and DECLARATOR are the parts of the declaration;
10863    they describe the function's name and the type it returns,
10864    but twisted together in a fashion that parallels the syntax of C.
10865
10866    This function creates a binding context for the function body
10867    as well as setting up the FUNCTION_DECL in current_function_decl.
10868
10869    Returns 1 on success.  If the DECLARATOR is not suitable for a function
10870    (it defines a datum instead), we return 0, which tells
10871    yyparse to report a parse error.
10872
10873    For C++, we must first check whether that datum makes any sense.
10874    For example, "class A local_a(1,2);" means that variable local_a
10875    is an aggregate of type A, which should have a constructor
10876    applied to it with the argument list [1, 2].
10877
10878    @@ There is currently no way to retrieve the storage
10879    @@ allocated to FUNCTION (or all of its parms) if we return
10880    @@ something we had previously.  */
10881
10882 int
10883 start_function (declspecs, declarator, attrs, pre_parsed_p)
10884      tree declspecs, declarator, attrs;
10885      int pre_parsed_p;
10886 {
10887   tree decl1;
10888   tree ctype = NULL_TREE;
10889   tree fntype;
10890   tree restype;
10891   extern int have_extern_spec;
10892   extern int used_extern_spec;
10893   int doing_friend = 0;
10894
10895   /* Sanity check.  */
10896   my_friendly_assert (TREE_VALUE (void_list_node) == void_type_node, 160);
10897   my_friendly_assert (TREE_CHAIN (void_list_node) == NULL_TREE, 161);
10898
10899   /* Assume, until we see it does.  */
10900   current_function_returns_value = 0;
10901   current_function_returns_null = 0;
10902   warn_about_return_type = 0;
10903   named_labels = 0;
10904   shadowed_labels = 0;
10905   current_function_assigns_this = 0;
10906   current_function_just_assigned_this = 0;
10907   current_function_parms_stored = 0;
10908   original_result_rtx = NULL_RTX;
10909   base_init_expr = NULL_TREE;
10910   current_base_init_list = NULL_TREE;
10911   current_member_init_list = NULL_TREE;
10912   ctor_label = dtor_label = NULL_TREE;
10913
10914   clear_temp_name ();
10915
10916   /* This should only be done once on the top most decl.  */
10917   if (have_extern_spec && !used_extern_spec)
10918     {
10919       declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"), declspecs);
10920       used_extern_spec = 1;
10921     }
10922
10923   if (pre_parsed_p)
10924     {
10925       decl1 = declarator;
10926
10927       if (! DECL_ARGUMENTS (decl1)
10928           && !DECL_STATIC_FUNCTION_P (decl1)
10929           && DECL_CONTEXT (decl1)
10930           && DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl1)))
10931           && IDENTIFIER_TEMPLATE (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl1)))))
10932         {
10933           cp_error ("redeclaration of `%#D'", decl1);
10934           if (IDENTIFIER_CLASS_VALUE (DECL_NAME (decl1)))
10935             cp_error_at ("previous declaration here", IDENTIFIER_CLASS_VALUE (DECL_NAME (decl1)));
10936           else if (IDENTIFIER_GLOBAL_VALUE (DECL_NAME (decl1)))
10937             cp_error_at ("previous declaration here", IDENTIFIER_GLOBAL_VALUE (DECL_NAME (decl1)));
10938         }
10939
10940       fntype = TREE_TYPE (decl1);
10941       if (TREE_CODE (fntype) == METHOD_TYPE)
10942         ctype = TYPE_METHOD_BASETYPE (fntype);
10943
10944       /* ANSI C++ June 5 1992 WP 11.4.5.  A friend function defined in a
10945          class is in the (lexical) scope of the class in which it is
10946          defined.  */
10947       if (!ctype && DECL_FRIEND_P (decl1))
10948         {
10949           ctype = DECL_CLASS_CONTEXT (decl1);
10950
10951           /* CTYPE could be null here if we're dealing with a template;
10952              for example, `inline friend float foo()' inside a template
10953              will have no CTYPE set.  */
10954           if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
10955             ctype = NULL_TREE;
10956           else
10957             doing_friend = 1;
10958         }
10959
10960       /* In a fcn definition, arg types must be complete.  */
10961       require_complete_types_for_parms (DECL_ARGUMENTS (decl1));
10962
10963       /* In case some arg types were completed since the declaration was
10964          parsed, fix up the decls.  */
10965       {
10966         tree t = DECL_ARGUMENTS (decl1);
10967         for (; t; t = TREE_CHAIN (t))
10968           layout_decl (t, 0);
10969       }
10970
10971       last_function_parms = DECL_ARGUMENTS (decl1);
10972       last_function_parm_tags = NULL_TREE;
10973     }
10974   else
10975     {
10976       decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, NULL_TREE);
10977       /* If the declarator is not suitable for a function definition,
10978          cause a syntax error.  */
10979       if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL) return 0;
10980
10981       fntype = TREE_TYPE (decl1);
10982
10983       restype = TREE_TYPE (fntype);
10984       if (IS_AGGR_TYPE (restype) && ! TYPE_PTRMEMFUNC_P (restype)
10985           && ! CLASSTYPE_GOT_SEMICOLON (restype))
10986         {
10987           cp_error ("semicolon missing after declaration of `%#T'", restype);
10988           shadow_tag (build_tree_list (NULL_TREE, restype));
10989           CLASSTYPE_GOT_SEMICOLON (restype) = 1;
10990           if (TREE_CODE (fntype) == FUNCTION_TYPE)
10991             fntype = build_function_type (integer_type_node,
10992                                           TYPE_ARG_TYPES (fntype));
10993           else
10994             fntype = build_cplus_method_type (build_type_variant (TYPE_METHOD_BASETYPE (fntype), TREE_READONLY (decl1), TREE_SIDE_EFFECTS (decl1)),
10995                                               integer_type_node,
10996                                               TYPE_ARG_TYPES (fntype));
10997           TREE_TYPE (decl1) = fntype;
10998         }
10999
11000       if (TREE_CODE (fntype) == METHOD_TYPE)
11001         ctype = TYPE_METHOD_BASETYPE (fntype);
11002       else if (IDENTIFIER_LENGTH (DECL_NAME (decl1)) == 4
11003                && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (decl1)), "main")
11004                && DECL_CONTEXT (decl1) == NULL_TREE)
11005         {
11006           /* If this doesn't return integer_type, complain.  */
11007           if (TREE_TYPE (TREE_TYPE (decl1)) != integer_type_node)
11008             {
11009               if (pedantic || warn_return_type)
11010                 pedwarn ("return type for `main' changed to `int'");
11011               TREE_TYPE (decl1) = fntype = default_function_type;
11012             }
11013           warn_about_return_type = 0;
11014         }
11015     }
11016
11017   /* Warn if function was previously implicitly declared
11018      (but not if we warned then).  */
11019   if (! warn_implicit
11020       && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)) != NULL_TREE)
11021     cp_warning_at ("`%D' implicitly declared before its definition", IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)));
11022
11023   current_function_decl = decl1;
11024   /* Save the parm names or decls from this function's declarator
11025      where store_parm_decls will find them.  */
11026   current_function_parms = last_function_parms;
11027   current_function_parm_tags = last_function_parm_tags;
11028
11029   announce_function (decl1);
11030
11031   if (! processing_template_decl)
11032     {
11033       if (TYPE_SIZE (complete_type (TREE_TYPE (fntype))) == NULL_TREE)
11034         {
11035           cp_error ("return-type `%#T' is an incomplete type",
11036                     TREE_TYPE (fntype));
11037
11038           /* Make it return void instead, but don't change the
11039              type of the DECL_RESULT, in case we have a named return value.  */
11040           if (ctype)
11041             TREE_TYPE (decl1)
11042               = build_cplus_method_type (build_type_variant (ctype,
11043                                                              TREE_READONLY (decl1),
11044                                                              TREE_SIDE_EFFECTS (decl1)),
11045                                          void_type_node,
11046                                          FUNCTION_ARG_CHAIN (decl1));
11047           else
11048             TREE_TYPE (decl1)
11049               = build_function_type (void_type_node,
11050                                      TYPE_ARG_TYPES (TREE_TYPE (decl1)));
11051           DECL_RESULT (decl1)
11052             = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (TREE_TYPE (fntype)));
11053           TREE_READONLY (DECL_RESULT (decl1)) = TYPE_READONLY (TREE_TYPE (fntype));
11054           TREE_THIS_VOLATILE (DECL_RESULT (decl1)) = TYPE_VOLATILE (TREE_TYPE (fntype));
11055         }
11056
11057       if (TYPE_LANG_SPECIFIC (TREE_TYPE (fntype))
11058           && CLASSTYPE_ABSTRACT_VIRTUALS (TREE_TYPE (fntype)))
11059         abstract_virtuals_error (decl1, TREE_TYPE (fntype));
11060     }
11061
11062   if (warn_about_return_type)
11063     warning ("return-type defaults to `int'");
11064
11065   /* Make the init_value nonzero so pushdecl knows this is not tentative.
11066      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
11067   DECL_INITIAL (decl1) = error_mark_node;
11068
11069   /* This function exists in static storage.
11070      (This does not mean `static' in the C sense!)  */
11071   TREE_STATIC (decl1) = 1;
11072
11073   /* Record the decl so that the function name is defined.
11074      If we already have a decl for this name, and it is a FUNCTION_DECL,
11075      use the old decl.  */
11076
11077   if (processing_template_decl)
11078     push_template_decl (decl1);
11079   else if (pre_parsed_p == 0)
11080     {
11081       decl1 = pushdecl (decl1);
11082       DECL_MAIN_VARIANT (decl1) = decl1;
11083       fntype = TREE_TYPE (decl1);
11084     }
11085
11086   current_function_decl = decl1;
11087
11088   if (DECL_INTERFACE_KNOWN (decl1))
11089     {
11090       if (DECL_NOT_REALLY_EXTERN (decl1))
11091         DECL_EXTERNAL (decl1) = 0;
11092     }
11093   /* If this function belongs to an interface, it is public.
11094      If it belongs to someone else's interface, it is also external.
11095      It doesn't matter whether it's inline or not.  */
11096   else if (interface_unknown == 0
11097            && (! DECL_TEMPLATE_INSTANTIATION (decl1)
11098                || flag_alt_external_templates))
11099     {
11100       if (DECL_THIS_INLINE (decl1) || DECL_TEMPLATE_INSTANTIATION (decl1)
11101           || processing_template_decl)
11102         DECL_EXTERNAL (decl1)
11103           = (interface_only
11104              || (DECL_THIS_INLINE (decl1) && ! flag_implement_inlines));
11105       else
11106         {
11107           DECL_EXTERNAL (decl1) = 0;
11108           if (DECL_C_STATIC (decl1))
11109             TREE_PUBLIC (decl1) = 0;
11110         }         
11111       DECL_NOT_REALLY_EXTERN (decl1) = 0;
11112       DECL_INTERFACE_KNOWN (decl1) = 1;
11113     }
11114   else
11115     {
11116       /* This is a definition, not a reference.
11117          So clear DECL_EXTERNAL.  */
11118       DECL_EXTERNAL (decl1) = 0;
11119
11120       if ((DECL_THIS_INLINE (decl1) || DECL_TEMPLATE_INSTANTIATION (decl1))
11121           && ! DECL_INTERFACE_KNOWN (decl1)
11122           /* Don't try to defer nested functions for now.  */
11123           && ! hack_decl_function_context (decl1))
11124         DECL_DEFER_OUTPUT (decl1) = 1;
11125       else
11126         {
11127           DECL_INTERFACE_KNOWN (decl1) = 1;
11128           if (DECL_C_STATIC (decl1))
11129             TREE_PUBLIC (decl1) = 0;
11130         }
11131     }
11132
11133   if (ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1))
11134     {
11135       if (TREE_CODE (fntype) == METHOD_TYPE)
11136         TREE_TYPE (decl1) = fntype
11137           = build_function_type (TREE_TYPE (fntype),
11138                                  TREE_CHAIN (TYPE_ARG_TYPES (fntype)));
11139       current_function_parms = TREE_CHAIN (current_function_parms);
11140       DECL_ARGUMENTS (decl1) = current_function_parms;
11141       ctype = NULL_TREE;
11142     }
11143   restype = TREE_TYPE (fntype);
11144
11145   if (ctype)
11146     {
11147       push_nested_class (ctype, 1);
11148
11149       /* If we're compiling a friend function, neither of the variables
11150          current_class_ptr nor current_class_type will have values.  */
11151       if (! doing_friend)
11152         {
11153           /* We know that this was set up by `grokclassfn'.
11154              We do not wait until `store_parm_decls', since evil
11155              parse errors may never get us to that point.  Here
11156              we keep the consistency between `current_class_type'
11157              and `current_class_ptr'.  */
11158           tree t = current_function_parms;
11159
11160           my_friendly_assert (t != NULL_TREE
11161                               && TREE_CODE (t) == PARM_DECL, 162);
11162
11163           if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE)
11164             {
11165               int i = suspend_momentary ();
11166
11167               /* Fool build_indirect_ref.  */
11168               current_class_ptr = NULL_TREE;
11169               current_class_ref = build_indirect_ref (t, NULL_PTR);
11170               current_class_ptr = t;
11171               resume_momentary (i);
11172             }
11173           else
11174             /* We're having a signature pointer here.  */
11175             current_class_ref = current_class_ptr = t;
11176
11177         }
11178     }
11179   else
11180     {
11181       if (DECL_STATIC_FUNCTION_P (decl1))
11182         push_nested_class (DECL_CONTEXT (decl1), 2);
11183       else
11184         push_memoized_context (0, 1);
11185       current_class_ptr = current_class_ref = NULL_TREE;
11186     }
11187
11188   pushlevel (0);
11189   current_binding_level->parm_flag = 1;
11190
11191   GNU_xref_function (decl1, current_function_parms);
11192
11193   if (attrs)
11194     cplus_decl_attributes (decl1, NULL_TREE, attrs);
11195   make_function_rtl (decl1);
11196
11197   /* Promote the value to int before returning it.  */
11198   if (C_PROMOTING_INTEGER_TYPE_P (restype))
11199     restype = type_promotes_to (restype);
11200
11201   /* If this fcn was already referenced via a block-scope `extern' decl
11202      (or an implicit decl), propagate certain information about the usage.  */
11203   if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (decl1)))
11204     TREE_ADDRESSABLE (decl1) = 1;
11205
11206   if (DECL_RESULT (decl1) == NULL_TREE)
11207     {
11208       DECL_RESULT (decl1)
11209         = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
11210       TREE_READONLY (DECL_RESULT (decl1)) = TYPE_READONLY (restype);
11211       TREE_THIS_VOLATILE (DECL_RESULT (decl1)) = TYPE_VOLATILE (restype);
11212     }
11213
11214     /* Allocate further tree nodes temporarily during compilation
11215        of this function only.  Tiemann moved up here from bottom of fn.  */
11216     temporary_allocation ();
11217
11218   if (processing_template_decl)
11219     {
11220       extern tree last_tree;
11221       ++minimal_parse_mode;
11222       last_tree = DECL_SAVED_TREE (decl1)
11223         = build_nt (EXPR_STMT, void_zero_node);
11224     }
11225
11226   ++function_depth;
11227
11228   if (DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (decl1))
11229       && DECL_LANGUAGE (decl1) == lang_cplusplus)
11230     {
11231       dtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
11232       ctor_label = NULL_TREE;
11233     }
11234   else
11235     {
11236       dtor_label = NULL_TREE;
11237       if (DECL_CONSTRUCTOR_P (decl1))
11238         ctor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
11239     }
11240
11241   return 1;
11242 }
11243 \f
11244 void
11245 store_after_parms (insns)
11246      rtx insns;
11247 {
11248   rtx x;
11249
11250   for (x = get_insns (); x; x = next_insn (x))
11251     {
11252       if (GET_CODE (x) == NOTE && NOTE_LINE_NUMBER (x) == NOTE_INSN_FUNCTION_BEG)
11253         {
11254           emit_insns_after (insns, x);
11255           return;
11256         }
11257     }
11258 #if 0
11259   /* This doesn't work, because the inline output routine doesn't reset
11260      last_parm_insn correctly for get_first_nonparm_insn () to work.  */
11261
11262   last_parm_insn = get_first_nonparm_insn ();
11263   if (last_parm_insn == NULL_RTX)
11264     emit_insns (insns);
11265   else
11266     emit_insns_before (insns,  last_parm_insn);
11267 #endif
11268 }
11269
11270 void
11271 expand_start_early_try_stmts ()
11272 {
11273   rtx insns;
11274   start_sequence ();
11275   expand_start_try_stmts ();
11276   insns = get_insns ();
11277   end_sequence ();
11278 #if 1
11279   emit_insns_after (insns, get_insns ());
11280 #else
11281   store_after_parms (insns);
11282 #endif
11283 }
11284
11285 /* Store the parameter declarations into the current function declaration.
11286    This is called after parsing the parameter declarations, before
11287    digesting the body of the function.
11288
11289    Also install to binding contour return value identifier, if any.  */
11290
11291 void
11292 store_parm_decls ()
11293 {
11294   register tree fndecl = current_function_decl;
11295   register tree parm;
11296   int parms_have_cleanups = 0;
11297
11298   /* This is either a chain of PARM_DECLs (when a prototype is used).  */
11299   tree specparms = current_function_parms;
11300
11301   /* This is a list of types declared among parms in a prototype.  */
11302   tree parmtags = current_function_parm_tags;
11303
11304   /* This is a chain of any other decls that came in among the parm
11305      declarations.  If a parm is declared with  enum {foo, bar} x;
11306      then CONST_DECLs for foo and bar are put here.  */
11307   tree nonparms = NULL_TREE;
11308
11309   if (toplevel_bindings_p ())
11310     fatal ("parse errors have confused me too much");
11311
11312   /* Initialize RTL machinery.  */
11313   init_function_start (fndecl, input_filename, lineno);
11314
11315   /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function.  */
11316   declare_function_name ();
11317
11318   /* Create a binding level for the parms.  */
11319   expand_start_bindings (0);
11320
11321   if (specparms != NULL_TREE)
11322     {
11323       /* This case is when the function was defined with an ANSI prototype.
11324          The parms already have decls, so we need not do anything here
11325          except record them as in effect
11326          and complain if any redundant old-style parm decls were written.  */
11327
11328       register tree next;
11329
11330       /* Must clear this because it might contain TYPE_DECLs declared
11331          at class level.  */
11332       storedecls (NULL_TREE);
11333
11334       for (parm = nreverse (specparms); parm; parm = next)
11335         {
11336           next = TREE_CHAIN (parm);
11337           if (TREE_CODE (parm) == PARM_DECL)
11338             {
11339               tree cleanup;
11340               if (DECL_NAME (parm) == NULL_TREE)
11341                 {
11342                   pushdecl (parm);
11343                 }
11344               else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
11345                 cp_error ("parameter `%D' declared void", parm);
11346               else
11347                 {
11348                   /* Now fill in DECL_REFERENCE_SLOT for any of the parm decls.
11349                      A parameter is assumed not to have any side effects.
11350                      If this should change for any reason, then this
11351                      will have to wrap the bashed reference type in a save_expr.
11352                      
11353                      Also, if the parameter type is declared to be an X
11354                      and there is an X(X&) constructor, we cannot lay it
11355                      into the stack (any more), so we make this parameter
11356                      look like it is really of reference type.  Functions
11357                      which pass parameters to this function will know to
11358                      create a temporary in their frame, and pass a reference
11359                      to that.  */
11360
11361                   if (TREE_CODE (TREE_TYPE (parm)) == REFERENCE_TYPE
11362                       && TYPE_SIZE (TREE_TYPE (TREE_TYPE (parm))))
11363                     SET_DECL_REFERENCE_SLOT (parm, convert_from_reference (parm));
11364
11365                   pushdecl (parm);
11366                 }
11367               if (! processing_template_decl
11368                   && (cleanup = maybe_build_cleanup (parm), cleanup))
11369                 {
11370                   expand_decl (parm);
11371                   if (! expand_decl_cleanup (parm, cleanup))
11372                     cp_error ("parser lost in parsing declaration of `%D'",
11373                               parm);
11374                   parms_have_cleanups = 1;
11375                 }
11376             }
11377           else
11378             {
11379               /* If we find an enum constant or a type tag,
11380                  put it aside for the moment.  */
11381               TREE_CHAIN (parm) = NULL_TREE;
11382               nonparms = chainon (nonparms, parm);
11383             }
11384         }
11385
11386       /* Get the decls in their original chain order
11387          and record in the function.  This is all and only the
11388          PARM_DECLs that were pushed into scope by the loop above.  */
11389       DECL_ARGUMENTS (fndecl) = getdecls ();
11390
11391       storetags (chainon (parmtags, gettags ()));
11392     }
11393   else
11394     DECL_ARGUMENTS (fndecl) = NULL_TREE;
11395
11396   /* Now store the final chain of decls for the arguments
11397      as the decl-chain of the current lexical scope.
11398      Put the enumerators in as well, at the front so that
11399      DECL_ARGUMENTS is not modified.  */
11400
11401   storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
11402
11403   /* Initialize the RTL code for the function.  */
11404   DECL_SAVED_INSNS (fndecl) = NULL_RTX;
11405   if (! processing_template_decl)
11406     expand_function_start (fndecl, parms_have_cleanups);
11407
11408   /* Create a binding contour which can be used to catch
11409      cleanup-generated temporaries.  Also, if the return value needs or
11410      has initialization, deal with that now.  */
11411   if (parms_have_cleanups)
11412     {
11413       pushlevel (0);
11414       expand_start_bindings (0);
11415     }
11416
11417   current_function_parms_stored = 1;
11418
11419   /* If this function is `main', emit a call to `__main'
11420      to run global initializers, etc.  */
11421   if (DECL_NAME (fndecl)
11422       && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 4
11423       && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
11424       && DECL_CONTEXT (fndecl) == NULL_TREE)
11425     {
11426       expand_main_function ();
11427     }
11428
11429   /* Take care of exception handling things. */
11430   if (! processing_template_decl && flag_exceptions)
11431     {
11432       rtx insns;
11433       start_sequence ();
11434
11435 #if 0
11436       /* Mark the start of a stack unwinder if we need one.  */
11437       start_eh_unwinder ();
11438 #endif
11439
11440 #if 0
11441       /* Do the starting of the exception specifications, if we have any.  */
11442       if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (current_function_decl)))
11443         expand_start_eh_spec ();
11444 #endif
11445
11446       insns = get_insns ();
11447       end_sequence ();
11448
11449       if (insns)
11450         store_after_parms (insns);
11451     }
11452   last_dtor_insn = get_last_insn ();
11453 }
11454
11455 /* Bind a name and initialization to the return value of
11456    the current function.  */
11457
11458 void
11459 store_return_init (return_id, init)
11460      tree return_id, init;
11461 {
11462   tree decl = DECL_RESULT (current_function_decl);
11463
11464   if (pedantic)
11465     /* Give this error as many times as there are occurrences,
11466        so that users can use Emacs compilation buffers to find
11467        and fix all such places.  */
11468     pedwarn ("ANSI C++ does not permit named return values");
11469
11470   if (return_id != NULL_TREE)
11471     {
11472       if (DECL_NAME (decl) == NULL_TREE)
11473         {
11474           DECL_NAME (decl) = return_id;
11475           DECL_ASSEMBLER_NAME (decl) = return_id;
11476         }
11477       else
11478         cp_error ("return identifier `%D' already in place", decl);
11479     }
11480
11481   /* Can't let this happen for constructors.  */
11482   if (DECL_CONSTRUCTOR_P (current_function_decl))
11483     {
11484       error ("can't redefine default return value for constructors");
11485       return;
11486     }
11487
11488   /* If we have a named return value, put that in our scope as well.  */
11489   if (DECL_NAME (decl) != NULL_TREE)
11490     {
11491       /* If this named return value comes in a register,
11492          put it in a pseudo-register.  */
11493       if (DECL_REGISTER (decl))
11494         {
11495           original_result_rtx = DECL_RTL (decl);
11496           DECL_RTL (decl) = gen_reg_rtx (DECL_MODE (decl));
11497         }
11498
11499       /* Let `cp_finish_decl' know that this initializer is ok.  */
11500       DECL_INITIAL (decl) = init;
11501       pushdecl (decl);
11502
11503       if (minimal_parse_mode)
11504         add_tree (build_min_nt (RETURN_INIT, return_id,
11505                                 copy_to_permanent (init)));
11506       else
11507         cp_finish_decl (decl, init, NULL_TREE, 0, LOOKUP_ONLYCONVERTING);
11508     }
11509 }
11510
11511 \f
11512 /* Finish up a function declaration and compile that function
11513    all the way to assembler language output.  The free the storage
11514    for the function definition.
11515
11516    This is called after parsing the body of the function definition.
11517    LINENO is the current line number.
11518
11519    C++: CALL_POPLEVEL is non-zero if an extra call to poplevel
11520    (and expand_end_bindings) must be made to take care of the binding
11521    contour for the base initializers.  This is only relevant for
11522    constructors.
11523
11524    NESTED is nonzero if we were in the middle of compiling another function
11525    when we started on this one.  */
11526
11527 void
11528 finish_function (lineno, call_poplevel, nested)
11529      int lineno;
11530      int call_poplevel;
11531      int nested;
11532 {
11533   register tree fndecl = current_function_decl;
11534   tree fntype, ctype = NULL_TREE;
11535   rtx last_parm_insn, insns;
11536   /* Label to use if this function is supposed to return a value.  */
11537   tree no_return_label = NULL_TREE;
11538   tree decls = NULL_TREE;
11539
11540   /* When we get some parse errors, we can end up without a
11541      current_function_decl, so cope.  */
11542   if (fndecl == NULL_TREE)
11543     return;
11544
11545   if (! nested && function_depth > 1)
11546     nested = 1;
11547
11548   fntype = TREE_TYPE (fndecl);
11549
11550 /*  TREE_READONLY (fndecl) = 1;
11551     This caused &foo to be of type ptr-to-const-function
11552     which then got a warning when stored in a ptr-to-function variable.  */
11553
11554   /* This happens on strange parse errors.  */
11555   if (! current_function_parms_stored)
11556     {
11557       call_poplevel = 0;
11558       store_parm_decls ();
11559     }
11560
11561   if (processing_template_decl)
11562     {
11563       if (DECL_CONSTRUCTOR_P (fndecl) && call_poplevel)
11564         {
11565           decls = getdecls ();
11566           expand_end_bindings (decls, decls != NULL_TREE, 0);
11567           poplevel (decls != NULL_TREE, 0, 0);
11568         }
11569     }
11570   else
11571     {
11572       if (write_symbols != NO_DEBUG /*&& TREE_CODE (fntype) != METHOD_TYPE*/)
11573         {
11574           tree ttype = target_type (fntype);
11575           tree parmdecl;
11576
11577           if (IS_AGGR_TYPE (ttype))
11578             /* Let debugger know it should output info for this type.  */
11579             note_debug_info_needed (ttype);
11580
11581           for (parmdecl = DECL_ARGUMENTS (fndecl); parmdecl; parmdecl = TREE_CHAIN (parmdecl))
11582             {
11583               ttype = target_type (TREE_TYPE (parmdecl));
11584               if (IS_AGGR_TYPE (ttype))
11585                 /* Let debugger know it should output info for this type.  */
11586                 note_debug_info_needed (ttype);
11587             }
11588         }
11589
11590       /* Clean house because we will need to reorder insns here.  */
11591       do_pending_stack_adjust ();
11592
11593       if (dtor_label)
11594         {
11595           tree binfo = TYPE_BINFO (current_class_type);
11596           tree cond = integer_one_node;
11597           tree exprstmt;
11598           tree in_charge_node = lookup_name (in_charge_identifier, 0);
11599           tree virtual_size;
11600           int ok_to_optimize_dtor = 0;
11601           int empty_dtor = get_last_insn () == last_dtor_insn;
11602
11603           if (current_function_assigns_this)
11604             cond = build (NE_EXPR, boolean_type_node,
11605                           current_class_ptr, integer_zero_node);
11606           else
11607             {
11608               int n_baseclasses = CLASSTYPE_N_BASECLASSES (current_class_type);
11609
11610               /* If this destructor is empty, then we don't need to check
11611                  whether `this' is NULL in some cases.  */
11612               if ((flag_this_is_variable & 1) == 0)
11613                 ok_to_optimize_dtor = 1;
11614               else if (empty_dtor)
11615                 ok_to_optimize_dtor
11616                   = (n_baseclasses == 0
11617                      || (n_baseclasses == 1
11618                          && TYPE_HAS_DESTRUCTOR (TYPE_BINFO_BASETYPE (current_class_type, 0))));
11619             }
11620
11621           /* These initializations might go inline.  Protect
11622              the binding level of the parms.  */
11623           pushlevel (0);
11624           expand_start_bindings (0);
11625
11626           if (current_function_assigns_this)
11627             {
11628               current_function_assigns_this = 0;
11629               current_function_just_assigned_this = 0;
11630             }
11631
11632           /* Generate the code to call destructor on base class.
11633              If this destructor belongs to a class with virtual
11634              functions, then set the virtual function table
11635              pointer to represent the type of our base class.  */
11636
11637           /* This side-effect makes call to `build_delete' generate the
11638              code we have to have at the end of this destructor.  */
11639           TYPE_HAS_DESTRUCTOR (current_class_type) = 0;
11640
11641           /* These are two cases where we cannot delegate deletion.  */
11642           if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)
11643               || TYPE_GETS_REG_DELETE (current_class_type))
11644             exprstmt = build_delete (current_class_type, current_class_ref, integer_zero_node,
11645                                      LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL, 0);
11646           else
11647             exprstmt = build_delete (current_class_type, current_class_ref, in_charge_node,
11648                                      LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL, 0);
11649
11650           /* If we did not assign to this, then `this' is non-zero at
11651              the end of a destructor.  As a special optimization, don't
11652              emit test if this is an empty destructor.  If it does nothing,
11653              it does nothing.  If it calls a base destructor, the base
11654              destructor will perform the test.  */
11655
11656           if (exprstmt != error_mark_node
11657               && (TREE_CODE (exprstmt) != NOP_EXPR
11658                   || TREE_OPERAND (exprstmt, 0) != integer_zero_node
11659                   || TYPE_USES_VIRTUAL_BASECLASSES (current_class_type)))
11660             {
11661               expand_label (dtor_label);
11662               if (cond != integer_one_node)
11663                 expand_start_cond (cond, 0);
11664               if (exprstmt != void_zero_node)
11665                 /* Don't call `expand_expr_stmt' if we're not going to do
11666                    anything, since -Wall will give a diagnostic.  */
11667                 expand_expr_stmt (exprstmt);
11668
11669               /* Run destructor on all virtual baseclasses.  */
11670               if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
11671                 {
11672                   tree vbases = nreverse (copy_list (CLASSTYPE_VBASECLASSES (current_class_type)));
11673                   expand_start_cond (build (BIT_AND_EXPR, integer_type_node,
11674                                             in_charge_node, integer_two_node), 0);
11675                   while (vbases)
11676                     {
11677                       if (TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (vbases)))
11678                         {
11679                           tree ptr = convert_pointer_to_vbase (BINFO_TYPE (vbases), current_class_ptr);
11680                           expand_expr_stmt
11681                             (build_delete
11682                              (build_pointer_type (BINFO_TYPE (vbases)),
11683                               ptr, integer_zero_node,
11684                               (LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR
11685                                |LOOKUP_HAS_IN_CHARGE|LOOKUP_NORMAL),
11686                               0));
11687                         }
11688                       vbases = TREE_CHAIN (vbases);
11689                     }
11690                   expand_end_cond ();
11691                 }
11692
11693               do_pending_stack_adjust ();
11694               if (cond != integer_one_node)
11695                 expand_end_cond ();
11696             }
11697
11698           TYPE_HAS_DESTRUCTOR (current_class_type) = 1;
11699
11700           virtual_size = c_sizeof (current_class_type);
11701
11702           /* At the end, call delete if that's what's requested.  */
11703           if (TYPE_GETS_REG_DELETE (current_class_type))
11704             /* This NOP_EXPR means we are in a static call context.  */
11705             exprstmt =
11706               build_method_call
11707                 (build_indirect_ref
11708                  (build1 (NOP_EXPR, build_pointer_type (current_class_type),
11709                           error_mark_node),
11710                   NULL_PTR),
11711                  ansi_opname[(int) DELETE_EXPR],
11712                  tree_cons (NULL_TREE, current_class_ptr,
11713                             build_tree_list (NULL_TREE, virtual_size)),
11714                  NULL_TREE, LOOKUP_NORMAL);
11715           else if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
11716             exprstmt = build_x_delete (ptr_type_node, current_class_ptr, 0,
11717                                        virtual_size);
11718           else
11719             exprstmt = NULL_TREE;
11720
11721           if (exprstmt)
11722             {
11723               cond = build (BIT_AND_EXPR, integer_type_node,
11724                             in_charge_node, integer_one_node);
11725               expand_start_cond (cond, 0);
11726               expand_expr_stmt (exprstmt);
11727               expand_end_cond ();
11728             }
11729
11730           /* End of destructor.  */
11731           expand_end_bindings (NULL_TREE, getdecls () != NULL_TREE, 0);
11732           poplevel (2, 0, 0);   /* XXX change to 1 */
11733
11734           /* Back to the top of destructor.  */
11735           /* Dont execute destructor code if `this' is NULL.  */
11736
11737           start_sequence ();
11738
11739           /* If the dtor is empty, and we know there is not possible way we
11740              could use any vtable entries, before they are possibly set by
11741              a base class dtor, we don't have to setup the vtables, as we
11742              know that any base class dtoring will set up any vtables it
11743              needs.  We avoid MI, because one base class dtor can do a
11744              virtual dispatch to an overridden function that would need to
11745              have a non-related vtable set up, we cannot avoid setting up
11746              vtables in that case.  We could change this to see if there is
11747              just one vtable.  */
11748           if (! empty_dtor || TYPE_USES_COMPLEX_INHERITANCE (current_class_type))
11749             {
11750               /* Make all virtual function table pointers in non-virtual base
11751                  classes point to CURRENT_CLASS_TYPE's virtual function
11752                  tables.  */
11753               expand_direct_vtbls_init (binfo, binfo, 1, 0, current_class_ptr);
11754
11755               if (TYPE_USES_VIRTUAL_BASECLASSES (current_class_type))
11756                 expand_indirect_vtbls_init (binfo, current_class_ref, current_class_ptr);
11757             }
11758           
11759           if (! ok_to_optimize_dtor)
11760             {
11761               cond = build_binary_op (NE_EXPR,
11762                                       current_class_ptr, integer_zero_node, 1);
11763               expand_start_cond (cond, 0);
11764             }
11765
11766           insns = get_insns ();
11767           end_sequence ();
11768
11769           last_parm_insn = get_first_nonparm_insn ();
11770           if (last_parm_insn == NULL_RTX)
11771             last_parm_insn = get_last_insn ();
11772           else
11773             last_parm_insn = previous_insn (last_parm_insn);
11774
11775           emit_insns_after (insns, last_parm_insn);
11776
11777           if (! ok_to_optimize_dtor)
11778             expand_end_cond ();
11779         }
11780       else if (current_function_assigns_this)
11781         {
11782           /* Does not need to call emit_base_init, because
11783              that is done (if needed) just after assignment to this
11784              is seen.  */
11785
11786           if (DECL_CONSTRUCTOR_P (current_function_decl))
11787             {
11788               end_protect_partials ();
11789               expand_label (ctor_label);
11790               ctor_label = NULL_TREE;
11791
11792               if (call_poplevel)
11793                 {
11794                   decls = getdecls ();
11795                   expand_end_bindings (decls, decls != NULL_TREE, 0);
11796                   poplevel (decls != NULL_TREE, 0, 0);
11797                 }
11798               c_expand_return (current_class_ptr);
11799             }
11800           else if (TYPE_MAIN_VARIANT (TREE_TYPE (
11801                                                  DECL_RESULT (current_function_decl))) != void_type_node
11802                    && return_label != NULL_RTX)
11803             no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
11804
11805           current_function_assigns_this = 0;
11806           current_function_just_assigned_this = 0;
11807           base_init_expr = NULL_TREE;
11808         }
11809       else if (DECL_CONSTRUCTOR_P (fndecl))
11810         {
11811           tree cond, thenclause;
11812           /* Allow constructor for a type to get a new instance of the object
11813              using `build_new'.  */
11814           tree abstract_virtuals = CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type);
11815           CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = NULL_TREE;
11816
11817           DECL_RETURNS_FIRST_ARG (fndecl) = 1;
11818
11819           if (flag_this_is_variable > 0)
11820             {
11821               cond = build_binary_op (EQ_EXPR,
11822                                       current_class_ptr, integer_zero_node, 1);
11823               thenclause = build_modify_expr (current_class_ptr, NOP_EXPR,
11824                                               build_new (NULL_TREE, current_class_type, void_type_node, 0));
11825             }
11826
11827           CLASSTYPE_ABSTRACT_VIRTUALS (current_class_type) = abstract_virtuals;
11828
11829           start_sequence ();
11830
11831           if (flag_this_is_variable > 0)
11832             {
11833               expand_start_cond (cond, 0);
11834               expand_expr_stmt (thenclause);
11835               expand_end_cond ();
11836             }
11837
11838           /* Emit insns from `emit_base_init' which sets up virtual
11839              function table pointer(s).  */
11840           if (base_init_expr)
11841             {
11842               expand_expr_stmt (base_init_expr);
11843               base_init_expr = NULL_TREE;
11844             }
11845
11846           insns = get_insns ();
11847           end_sequence ();
11848
11849           /* This is where the body of the constructor begins.
11850              If there were no insns in this function body, then the
11851              last_parm_insn is also the last insn.
11852              
11853              If optimization is enabled, last_parm_insn may move, so
11854              we don't hold on to it (across emit_base_init).  */
11855           last_parm_insn = get_first_nonparm_insn ();
11856           if (last_parm_insn == NULL_RTX)
11857             last_parm_insn = get_last_insn ();
11858           else
11859             last_parm_insn = previous_insn (last_parm_insn);
11860
11861           emit_insns_after (insns, last_parm_insn);
11862
11863           end_protect_partials ();
11864
11865           /* This is where the body of the constructor ends.  */
11866           expand_label (ctor_label);
11867           ctor_label = NULL_TREE;
11868
11869           if (call_poplevel)
11870             {
11871               decls = getdecls ();
11872               expand_end_bindings (decls, decls != NULL_TREE, 0);
11873               poplevel (decls != NULL_TREE, 1, 0);
11874             }
11875
11876           c_expand_return (current_class_ptr);
11877
11878           current_function_assigns_this = 0;
11879           current_function_just_assigned_this = 0;
11880         }
11881       else if (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 4
11882                && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main")
11883                && DECL_CONTEXT (fndecl) == NULL_TREE)
11884         {
11885           /* Make it so that `main' always returns 0 by default.  */
11886 #ifdef VMS
11887           c_expand_return (integer_one_node);
11888 #else
11889           c_expand_return (integer_zero_node);
11890 #endif
11891         }
11892       else if (return_label != NULL_RTX
11893                && current_function_return_value == NULL_TREE
11894                && ! DECL_NAME (DECL_RESULT (current_function_decl)))
11895         no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
11896
11897       /* If this function is supposed to return a value, ensure that
11898          we do not fall into the cleanups by mistake.  The end of our
11899          function will look like this:
11900          
11901          user code (may have return stmt somewhere)
11902          goto no_return_label
11903          cleanup_label:
11904          cleanups
11905          goto return_label
11906          no_return_label:
11907          NOTE_INSN_FUNCTION_END
11908          return_label:
11909          things for return
11910          
11911          If the user omits a return stmt in the USER CODE section, we
11912          will have a control path which reaches NOTE_INSN_FUNCTION_END.
11913          Otherwise, we won't.  */
11914       if (no_return_label)
11915         {
11916           DECL_CONTEXT (no_return_label) = fndecl;
11917           DECL_INITIAL (no_return_label) = error_mark_node;
11918           DECL_SOURCE_FILE (no_return_label) = input_filename;
11919           DECL_SOURCE_LINE (no_return_label) = lineno;
11920           expand_goto (no_return_label);
11921         }
11922
11923       if (cleanup_label)
11924         {
11925           /* remove the binding contour which is used
11926              to catch cleanup-generated temporaries.  */
11927           expand_end_bindings (0, 0, 0);
11928           poplevel (0, 0, 0);
11929         }
11930
11931       if (cleanup_label)
11932         /* Emit label at beginning of cleanup code for parameters.  */
11933         emit_label (cleanup_label);
11934
11935       /* Get return value into register if that's where it's supposed to be.  */
11936       if (original_result_rtx)
11937         fixup_result_decl (DECL_RESULT (fndecl), original_result_rtx);
11938
11939       /* Finish building code that will trigger warnings if users forget
11940          to make their functions return values.  */
11941       if (no_return_label || cleanup_label)
11942         emit_jump (return_label);
11943       if (no_return_label)
11944         {
11945           /* We don't need to call `expand_*_return' here because we
11946              don't need any cleanups here--this path of code is only
11947              for error checking purposes.  */
11948           expand_label (no_return_label);
11949         }
11950
11951       /* Generate rtl for function exit.  */
11952       expand_function_end (input_filename, lineno, 1);
11953
11954       if (flag_exceptions)
11955         expand_exception_blocks ();
11956     }
11957
11958   /* This must come after expand_function_end because cleanups might
11959      have declarations (from inline functions) that need to go into
11960      this function's blocks.  */
11961   if (current_binding_level->parm_flag != 1)
11962     my_friendly_abort (122);
11963   poplevel (1, 0, 1);
11964
11965   /* reset scope for C++: if we were in the scope of a class,
11966      then when we finish this function, we are not longer so.
11967      This cannot be done until we know for sure that no more
11968      class members will ever be referenced in this function
11969      (i.e., calls to destructors).  */
11970   if (current_class_name)
11971     {
11972       ctype = current_class_type;
11973       pop_nested_class (1);
11974     }
11975   else
11976     pop_memoized_context (1);
11977
11978   /* Must mark the RESULT_DECL as being in this function.  */
11979   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
11980
11981   /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
11982      to the FUNCTION_DECL node itself.  */
11983   BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
11984
11985   if (! processing_template_decl)
11986     {
11987       /* So we can tell if jump_optimize sets it to 1.  */
11988       can_reach_end = 0;
11989
11990       /* Run the optimizers and output the assembler code for this function.  */
11991       rest_of_compilation (fndecl);
11992
11993       if (DECL_SAVED_INSNS (fndecl) && ! TREE_ASM_WRITTEN (fndecl))
11994         {
11995           /* Set DECL_EXTERNAL so that assemble_external will be called as
11996              necessary.  We'll clear it again in finish_file.  */
11997           if (! DECL_EXTERNAL (fndecl))
11998             DECL_NOT_REALLY_EXTERN (fndecl) = 1;
11999           DECL_EXTERNAL (fndecl) = 1;
12000           mark_inline_for_output (fndecl);
12001         }
12002
12003       if (ctype && TREE_ASM_WRITTEN (fndecl))
12004         note_debug_info_needed (ctype);
12005
12006       current_function_returns_null |= can_reach_end;
12007
12008       /* Since we don't normally go through c_expand_return for constructors,
12009          this normally gets the wrong value.
12010          Also, named return values have their return codes emitted after
12011          NOTE_INSN_FUNCTION_END, confusing jump.c.  */
12012       if (DECL_CONSTRUCTOR_P (fndecl)
12013           || DECL_NAME (DECL_RESULT (fndecl)) != NULL_TREE)
12014         current_function_returns_null = 0;
12015
12016       if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
12017         cp_warning ("`noreturn' function `%D' does return", fndecl);
12018       else if ((warn_return_type || pedantic)
12019                && current_function_returns_null
12020                && TYPE_MAIN_VARIANT (TREE_TYPE (fntype)) != void_type_node)
12021         {
12022           /* If this function returns non-void and control can drop through,
12023              complain.  */
12024           cp_pedwarn ("control reaches end of non-void function `%D'", fndecl);
12025         }
12026       /* With just -W, complain only if function returns both with
12027          and without a value.  */
12028       else if (extra_warnings
12029                && current_function_returns_value && current_function_returns_null)
12030         warning ("this function may return with or without a value");
12031     }
12032
12033   --function_depth;
12034
12035   /* Free all the tree nodes making up this function.  */
12036   /* Switch back to allocating nodes permanently
12037      until we start another function.  */
12038   if (processing_template_decl)
12039     {
12040       --minimal_parse_mode;
12041       DECL_SAVED_TREE (fndecl) = TREE_CHAIN (DECL_SAVED_TREE (fndecl));
12042     }
12043
12044   if (! nested)
12045     permanent_allocation (1);
12046
12047   if (DECL_SAVED_INSNS (fndecl) == NULL_RTX)
12048     {
12049       /* Stop pointing to the local nodes about to be freed.  */
12050       /* But DECL_INITIAL must remain nonzero so we know this
12051          was an actual function definition.  */
12052       DECL_INITIAL (fndecl) = error_mark_node;
12053       /* And we need the arguments for template instantiation.  */
12054       if (! processing_template_decl)
12055         DECL_ARGUMENTS (fndecl) = NULL_TREE;
12056     }
12057
12058   if (DECL_STATIC_CONSTRUCTOR (fndecl))
12059     static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
12060   if (DECL_STATIC_DESTRUCTOR (fndecl))
12061     static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
12062
12063   if (! nested)
12064     {
12065       /* Let the error reporting routines know that we're outside a
12066          function.  For a nested function, this value is used in
12067          pop_cp_function_context and then reset via pop_function_context.  */
12068       current_function_decl = NULL_TREE;
12069     }
12070
12071   named_label_uses = NULL;
12072   current_class_ptr = NULL_TREE;
12073   current_class_ref = NULL_TREE;
12074 }
12075 \f
12076 /* Create the FUNCTION_DECL for a function definition.
12077    LINE1 is the line number that the definition absolutely begins on.
12078    LINE2 is the line number that the name of the function appears on.
12079    DECLSPECS and DECLARATOR are the parts of the declaration;
12080    they describe the return type and the name of the function,
12081    but twisted together in a fashion that parallels the syntax of C.
12082
12083    This function creates a binding context for the function body
12084    as well as setting up the FUNCTION_DECL in current_function_decl.
12085
12086    Returns a FUNCTION_DECL on success.
12087
12088    If the DECLARATOR is not suitable for a function (it defines a datum
12089    instead), we return 0, which tells yyparse to report a parse error.
12090
12091    May return void_type_node indicating that this method is actually
12092    a friend.  See grokfield for more details.
12093
12094    Came here with a `.pushlevel' .
12095
12096    DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
12097    CHANGES TO CODE IN `grokfield'.  */
12098
12099 tree
12100 start_method (declspecs, declarator)
12101      tree declarator, declspecs;
12102 {
12103   tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
12104                                 NULL_TREE);
12105
12106   /* Something too ugly to handle.  */
12107   if (fndecl == NULL_TREE)
12108     return NULL_TREE;
12109
12110   /* Pass friends other than inline friend functions back.  */
12111   if (TYPE_MAIN_VARIANT (fndecl) == void_type_node)
12112     return fndecl;
12113
12114   if (TREE_CODE (fndecl) != FUNCTION_DECL)
12115     /* Not a function, tell parser to report parse error.  */
12116     return NULL_TREE;
12117
12118   if (IS_SIGNATURE (current_class_type))
12119     {
12120       IS_DEFAULT_IMPLEMENTATION (fndecl) = 1;
12121       /* In case we need this info later.  */
12122       HAS_DEFAULT_IMPLEMENTATION (current_class_type) = 1;
12123     }
12124
12125   if (DECL_IN_AGGR_P (fndecl))
12126     {
12127       if (IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (fndecl)) != current_class_type)
12128         {
12129           if (DECL_CONTEXT (fndecl))
12130             cp_error ("`%D' is already defined in class %s", fndecl,
12131                              TYPE_NAME_STRING (DECL_CONTEXT (fndecl)));
12132         }
12133       return void_type_node;
12134     }
12135
12136   DECL_THIS_INLINE (fndecl) = 1;
12137
12138   if (flag_default_inline)
12139     DECL_INLINE (fndecl) = 1;
12140
12141   if (processing_template_decl && ! current_function_decl)
12142     push_template_decl (fndecl);
12143
12144   /* We read in the parameters on the maybepermanent_obstack,
12145      but we won't be getting back to them until after we
12146      may have clobbered them.  So the call to preserve_data
12147      will keep them safe.  */
12148   preserve_data ();
12149
12150   if (! DECL_FRIEND_P (fndecl))
12151     {
12152       if (DECL_CHAIN (fndecl) != NULL_TREE)
12153         {
12154           /* Need a fresh node here so that we don't get circularity
12155              when we link these together.  If FNDECL was a friend, then
12156              `pushdecl' does the right thing, which is nothing wrt its
12157              current value of DECL_CHAIN.  */
12158           fndecl = copy_node (fndecl);
12159         }
12160       if (TREE_CHAIN (fndecl))
12161         {
12162           fndecl = copy_node (fndecl);
12163           TREE_CHAIN (fndecl) = NULL_TREE;
12164         }
12165
12166       if (DECL_CONSTRUCTOR_P (fndecl))
12167         {
12168           if (! grok_ctor_properties (current_class_type, fndecl))
12169             return void_type_node;
12170         }
12171       else if (IDENTIFIER_OPNAME_P (DECL_NAME (fndecl)))
12172         grok_op_properties (fndecl, DECL_VIRTUAL_P (fndecl), 0);
12173     }
12174
12175   cp_finish_decl (fndecl, NULL_TREE, NULL_TREE, 0, 0);
12176
12177   /* Make a place for the parms */
12178   pushlevel (0);
12179   current_binding_level->parm_flag = 1;
12180   
12181   DECL_IN_AGGR_P (fndecl) = 1;
12182   return fndecl;
12183 }
12184
12185 /* Go through the motions of finishing a function definition.
12186    We don't compile this method until after the whole class has
12187    been processed.
12188
12189    FINISH_METHOD must return something that looks as though it
12190    came from GROKFIELD (since we are defining a method, after all).
12191
12192    This is called after parsing the body of the function definition.
12193    STMTS is the chain of statements that makes up the function body.
12194
12195    DECL is the ..._DECL that `start_method' provided.  */
12196
12197 tree
12198 finish_method (decl)
12199      tree decl;
12200 {
12201   register tree fndecl = decl;
12202   tree old_initial;
12203
12204   register tree link;
12205
12206   if (TYPE_MAIN_VARIANT (decl) == void_type_node)
12207     return decl;
12208
12209   old_initial = DECL_INITIAL (fndecl);
12210
12211   /* Undo the level for the parms (from start_method).
12212      This is like poplevel, but it causes nothing to be
12213      saved.  Saving information here confuses symbol-table
12214      output routines.  Besides, this information will
12215      be correctly output when this method is actually
12216      compiled.  */
12217
12218   /* Clear out the meanings of the local variables of this level;
12219      also record in each decl which block it belongs to.  */
12220
12221   for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
12222     {
12223       if (DECL_NAME (link) != NULL_TREE)
12224         IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
12225       my_friendly_assert (TREE_CODE (link) != FUNCTION_DECL, 163);
12226       DECL_CONTEXT (link) = NULL_TREE;
12227     }
12228
12229   /* Restore all name-meanings of the outer levels
12230      that were shadowed by this level.  */
12231
12232   for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
12233       IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
12234   for (link = current_binding_level->class_shadowed;
12235        link; link = TREE_CHAIN (link))
12236     IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
12237   for (link = current_binding_level->type_shadowed;
12238        link; link = TREE_CHAIN (link))
12239     IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
12240
12241   GNU_xref_end_scope ((HOST_WIDE_INT) current_binding_level,
12242                       (HOST_WIDE_INT) current_binding_level->level_chain,
12243                       current_binding_level->parm_flag,
12244                       current_binding_level->keep);
12245
12246   poplevel (0, 0, 0);
12247
12248   DECL_INITIAL (fndecl) = old_initial;
12249
12250   /* We used to check if the context of FNDECL was different from
12251      current_class_type as another way to get inside here.  This didn't work
12252      for String.cc in libg++.  */
12253   if (DECL_FRIEND_P (fndecl))
12254     {
12255       CLASSTYPE_INLINE_FRIENDS (current_class_type)
12256         = tree_cons (NULL_TREE, fndecl, CLASSTYPE_INLINE_FRIENDS (current_class_type));
12257       decl = void_type_node;
12258     }
12259
12260   return decl;
12261 }
12262 \f
12263 /* Called when a new struct TYPE is defined.
12264    If this structure or union completes the type of any previous
12265    variable declaration, lay it out and output its rtl.  */
12266
12267 void
12268 hack_incomplete_structures (type)
12269      tree type;
12270 {
12271   tree *list;
12272
12273   if (current_binding_level->incomplete == NULL_TREE)
12274     return;
12275
12276   if (!type) /* Don't do this for class templates.  */
12277     return;
12278
12279   for (list = &current_binding_level->incomplete; *list; )
12280     {
12281       tree decl = TREE_VALUE (*list);
12282       if (decl && TREE_TYPE (decl) == type
12283           || (TREE_TYPE (decl)
12284               && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
12285               && TREE_TYPE (TREE_TYPE (decl)) == type))
12286         {
12287           int toplevel = toplevel_bindings_p ();
12288           if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
12289               && TREE_TYPE (TREE_TYPE (decl)) == type)
12290             layout_type (TREE_TYPE (decl));
12291           layout_decl (decl, 0);
12292           rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
12293           if (! toplevel)
12294             {
12295               tree cleanup;
12296               expand_decl (decl);
12297               cleanup = maybe_build_cleanup (decl);
12298               expand_decl_init (decl);
12299               if (! expand_decl_cleanup (decl, cleanup))
12300                 cp_error ("parser lost in parsing declaration of `%D'",
12301                           decl);
12302             }
12303           *list = TREE_CHAIN (*list);
12304         }
12305       else
12306         list = &TREE_CHAIN (*list);
12307     }
12308 }
12309
12310 /* If DECL is of a type which needs a cleanup, build that cleanup here.
12311    See build_delete for information about AUTO_DELETE.
12312
12313    Don't build these on the momentary obstack; they must live
12314    the life of the binding contour.  */
12315
12316 static tree
12317 maybe_build_cleanup_1 (decl, auto_delete)
12318      tree decl, auto_delete;
12319 {
12320   tree type = TREE_TYPE (decl);
12321   if (TYPE_NEEDS_DESTRUCTOR (type))
12322     {
12323       int temp = 0, flags = LOOKUP_NORMAL|LOOKUP_DESTRUCTOR;
12324       tree rval;
12325
12326       if (TREE_CODE (decl) != PARM_DECL)
12327         temp = suspend_momentary ();
12328
12329       if (TREE_CODE (type) == ARRAY_TYPE)
12330         rval = decl;
12331       else
12332         {
12333           mark_addressable (decl);
12334           rval = build_unary_op (ADDR_EXPR, decl, 0);
12335         }
12336
12337       /* Optimize for space over speed here.  */
12338       if (! TYPE_USES_VIRTUAL_BASECLASSES (type)
12339           || flag_expensive_optimizations)
12340         flags |= LOOKUP_NONVIRTUAL;
12341
12342       rval = build_delete (TREE_TYPE (rval), rval, auto_delete, flags, 0);
12343
12344       if (TYPE_USES_VIRTUAL_BASECLASSES (type)
12345           && ! TYPE_HAS_DESTRUCTOR (type))
12346         rval = build_compound_expr (tree_cons (NULL_TREE, rval,
12347                                                build_tree_list (NULL_TREE, build_vbase_delete (type, decl))));
12348
12349       /* Since this is a cleanup, UNSAVE it now.  */
12350       rval = unsave_expr (rval);
12351
12352       if (TREE_CODE (decl) != PARM_DECL)
12353         resume_momentary (temp);
12354
12355       return rval;
12356     }
12357   return 0;
12358 }
12359
12360 /* If DECL is of a type which needs a cleanup, build that cleanup
12361    here.  The cleanup does free the storage with a call to delete.  */
12362
12363 tree
12364 maybe_build_cleanup_and_delete (decl)
12365      tree decl;
12366 {
12367   return maybe_build_cleanup_1 (decl, integer_three_node);
12368 }
12369
12370 /* If DECL is of a type which needs a cleanup, build that cleanup
12371    here.  The cleanup does not free the storage with a call a delete.  */
12372
12373 tree
12374 maybe_build_cleanup (decl)
12375      tree decl;
12376 {
12377   return maybe_build_cleanup_1 (decl, integer_two_node);
12378 }
12379 \f
12380 /* Expand a C++ expression at the statement level.
12381    This is needed to ferret out nodes which have UNKNOWN_TYPE.
12382    The C++ type checker should get all of these out when
12383    expressions are combined with other, type-providing, expressions,
12384    leaving only orphan expressions, such as:
12385
12386    &class::bar;         / / takes its address, but does nothing with it.  */
12387
12388 void
12389 cplus_expand_expr_stmt (exp)
12390      tree exp;
12391 {
12392   extern int temp_slot_level;
12393   extern int target_temp_slot_level; 
12394   tree old_cleanups = cleanups_this_call;
12395   int old_temp_level = target_temp_slot_level;
12396   push_temp_slots ();
12397   push_temp_slots ();
12398   target_temp_slot_level = temp_slot_level;
12399
12400   if (processing_template_decl)
12401     {
12402       add_tree (build_min_nt (EXPR_STMT, exp));
12403       return;
12404     }
12405
12406   if (TREE_TYPE (exp) == unknown_type_node)
12407     {
12408       if (TREE_CODE (exp) == ADDR_EXPR || TREE_CODE (exp) == TREE_LIST)
12409         error ("address of overloaded function with no contextual type information");
12410       else if (TREE_CODE (exp) == COMPONENT_REF)
12411         warning ("useless reference to a member function name, did you forget the ()?");
12412     }
12413   else
12414     {
12415       if (TREE_CODE (exp) == FUNCTION_DECL)
12416         {
12417           cp_warning ("reference, not call, to function `%D'", exp);
12418           warning ("at this point in file");
12419         }
12420
12421 #if 0
12422       /* We should do this eventually, but right now this causes regex.o from
12423          libg++ to miscompile, and tString to core dump.  */
12424       exp = build1 (CLEANUP_POINT_EXPR, TREE_TYPE (exp), exp);
12425 #endif
12426       expand_expr_stmt (break_out_cleanups (exp));
12427     }
12428
12429   /* Clean up any pending cleanups.  This happens when a function call
12430      returns a cleanup-needing value that nobody uses.  */
12431   expand_cleanups_to (old_cleanups);
12432   pop_temp_slots ();
12433   pop_temp_slots ();
12434   target_temp_slot_level = old_temp_level;
12435   /* There might something left from building the trees.  */
12436   if (cleanups_this_call)
12437     {
12438       expand_cleanups_to (NULL_TREE);
12439     }
12440   free_temp_slots ();
12441 }
12442
12443 /* When a stmt has been parsed, this function is called.
12444
12445    Currently, this function only does something within a
12446    constructor's scope: if a stmt has just assigned to this,
12447    and we are in a derived class, we call `emit_base_init'.  */
12448
12449 void
12450 finish_stmt ()
12451 {
12452   extern struct nesting *cond_stack, *loop_stack, *case_stack;
12453
12454   
12455   if (current_function_assigns_this
12456       || ! current_function_just_assigned_this)
12457     return;
12458   if (DECL_CONSTRUCTOR_P (current_function_decl))
12459     {
12460       /* Constructors must wait until we are out of control
12461          zones before calling base constructors.  */
12462       if (cond_stack || loop_stack || case_stack)
12463         return;
12464       expand_expr_stmt (base_init_expr);
12465       check_base_init (current_class_type);
12466     }
12467   current_function_assigns_this = 1;
12468 }
12469
12470 /* Change a static member function definition into a FUNCTION_TYPE, instead
12471    of the METHOD_TYPE that we create when it's originally parsed.
12472
12473    WARNING: DO NOT pass &TREE_TYPE (decl) to FN or &TYPE_ARG_TYPES
12474    (TREE_TYPE (decl)) to ARGTYPES, as doing so will corrupt the types of
12475    other decls.  Either pass the addresses of local variables or NULL.  */
12476
12477 void
12478 revert_static_member_fn (decl, fn, argtypes)
12479      tree *decl, *fn, *argtypes;
12480 {
12481   tree tmp;
12482   tree function = fn ? *fn : TREE_TYPE (*decl);
12483   tree args = argtypes ? *argtypes : TYPE_ARG_TYPES (function);
12484
12485   if (TYPE_READONLY (TREE_TYPE (TREE_VALUE (args))))
12486     cp_error ("static member function `%#D' declared const", *decl);
12487   if (TYPE_VOLATILE (TREE_TYPE (TREE_VALUE (args))))
12488     cp_error ("static member function `%#D' declared volatile", *decl);
12489
12490   args = TREE_CHAIN (args);
12491   tmp = build_function_type (TREE_TYPE (function), args);
12492   tmp = build_type_variant (tmp, TYPE_READONLY (function),
12493                             TYPE_VOLATILE (function));
12494   tmp = build_exception_variant (tmp,
12495                                  TYPE_RAISES_EXCEPTIONS (function));
12496   TREE_TYPE (*decl) = tmp;
12497   if (DECL_ARGUMENTS (*decl))
12498     DECL_ARGUMENTS (*decl) = TREE_CHAIN (DECL_ARGUMENTS (*decl));
12499   DECL_STATIC_FUNCTION_P (*decl) = 1;
12500   if (fn)
12501     *fn = tmp;
12502   if (argtypes)
12503     *argtypes = args;
12504 }
12505
12506 int
12507 id_in_current_class (id)
12508      tree id;
12509 {
12510   return !!purpose_member (id, class_binding_level->class_shadowed);
12511 }
12512
12513 struct cp_function
12514 {
12515   int returns_value;
12516   int returns_null;
12517   int warn_about_return_type;
12518   int assigns_this;
12519   int just_assigned_this;
12520   int parms_stored;
12521   int temp_name_counter;
12522   tree named_labels;
12523   tree shadowed_labels;
12524   tree ctor_label;
12525   tree dtor_label;
12526   rtx last_dtor_insn;
12527   tree base_init_list;
12528   tree member_init_list;
12529   tree base_init_expr;
12530   tree current_class_ptr;
12531   tree current_class_ref;
12532   rtx result_rtx;
12533   struct cp_function *next;
12534   struct binding_level *binding_level;
12535 };
12536
12537
12538
12539 struct cp_function *cp_function_chain;
12540
12541 extern int temp_name_counter;
12542
12543 /* Save and reinitialize the variables
12544    used during compilation of a C++ function.  */
12545
12546 void
12547 push_cp_function_context (context)
12548      tree context;
12549 {
12550   struct cp_function *p
12551     = (struct cp_function *) xmalloc (sizeof (struct cp_function));
12552
12553   push_function_context_to (context);
12554
12555   p->next = cp_function_chain;
12556   cp_function_chain = p;
12557
12558   p->named_labels = named_labels;
12559   p->shadowed_labels = shadowed_labels;
12560   p->returns_value = current_function_returns_value;
12561   p->returns_null = current_function_returns_null;
12562   p->warn_about_return_type = warn_about_return_type;
12563   p->binding_level = current_binding_level;
12564   p->ctor_label = ctor_label;
12565   p->dtor_label = dtor_label;
12566   p->last_dtor_insn = last_dtor_insn;
12567   p->assigns_this = current_function_assigns_this;
12568   p->just_assigned_this = current_function_just_assigned_this;
12569   p->parms_stored = current_function_parms_stored;
12570   p->result_rtx = original_result_rtx;
12571   p->base_init_expr = base_init_expr;
12572   p->temp_name_counter = temp_name_counter;
12573   p->base_init_list = current_base_init_list;
12574   p->member_init_list = current_member_init_list;
12575   p->current_class_ptr = current_class_ptr;
12576   p->current_class_ref = current_class_ref;
12577 }
12578
12579 /* Restore the variables used during compilation of a C++ function.  */
12580
12581 void
12582 pop_cp_function_context (context)
12583      tree context;
12584 {
12585   struct cp_function *p = cp_function_chain;
12586   tree link;
12587
12588   /* Bring back all the labels that were shadowed.  */
12589   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
12590     if (DECL_NAME (TREE_VALUE (link)) != 0)
12591       SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)),
12592                                   TREE_VALUE (link));
12593
12594   pop_function_context_from (context);
12595
12596   cp_function_chain = p->next;
12597
12598   named_labels = p->named_labels;
12599   shadowed_labels = p->shadowed_labels;
12600   current_function_returns_value = p->returns_value;
12601   current_function_returns_null = p->returns_null;
12602   warn_about_return_type = p->warn_about_return_type;
12603   current_binding_level = p->binding_level;
12604   ctor_label = p->ctor_label;
12605   dtor_label = p->dtor_label;
12606   last_dtor_insn = p->last_dtor_insn;
12607   current_function_assigns_this = p->assigns_this;
12608   current_function_just_assigned_this = p->just_assigned_this;
12609   current_function_parms_stored = p->parms_stored;
12610   original_result_rtx = p->result_rtx;
12611   base_init_expr = p->base_init_expr;
12612   temp_name_counter = p->temp_name_counter;
12613   current_base_init_list = p->base_init_list;
12614   current_member_init_list = p->member_init_list;
12615   current_class_ptr = p->current_class_ptr;
12616   current_class_ref = p->current_class_ref;
12617
12618   free (p);
12619 }
12620
12621 int
12622 in_function_p ()
12623 {
12624   return function_depth != 0;
12625 }
12626
12627 /* FSF LOCAL dje prefix attributes */
12628 /* Strip attributes from SPECS_ATTRS, a list of declspecs and attributes.
12629    This function is used by the parser when a rule will accept attributes
12630    in a particular position, but we don't want to support that just yet.
12631
12632    A warning is issued for every ignored attribute.  */
12633
12634 tree
12635 strip_attrs (specs_attrs)
12636      tree specs_attrs;
12637 {
12638   tree specs, attrs;
12639
12640   split_specs_attrs (specs_attrs, &specs, &attrs);
12641
12642   while (attrs)
12643     {
12644       warning ("`%s' attribute ignored",
12645                IDENTIFIER_POINTER (TREE_PURPOSE (attrs)));
12646       attrs = TREE_CHAIN (attrs);
12647     }
12648
12649   return specs;
12650 }
12651 /* END FSF LOCAL */
12652