OSDN Git Service

gcc
[pf3gnuchains/gcc-fork.git] / gcc / cp / decl2.c
1 /* Process declarations and variables for C compiler.
2    Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000 Free Software Foundation, Inc.
4    Hacked by Michael Tiemann (tiemann@cygnus.com)
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23
24 /* Process declarations and symbol lookup for C front end.
25    Also constructs types; the standard scalar types at initialization,
26    and structure, union, array and enum types when they are declared.  */
27
28 /* ??? not all decl nodes are given the most useful possible
29    line numbers.  For example, the CONST_DECLs for enum values.  */
30
31 #include "config.h"
32 #include "system.h"
33 #include "tree.h"
34 #include "rtl.h"
35 #include "flags.h"
36 #include "cp-tree.h"
37 #include "decl.h"
38 #include "lex.h"
39 #include "output.h"
40 #include "except.h"
41 #include "expr.h"
42 #include "defaults.h"
43 #include "toplev.h"
44 #include "dwarf2out.h"
45 #include "dwarfout.h"
46 #include "ggc.h"
47
48 #if USE_CPPLIB
49 #include "cpplib.h"
50 extern cpp_reader  parse_in;
51 #endif
52
53 /* This structure contains information about the initializations
54    and/or destructions required for a particular priority level.  */
55 typedef struct priority_info_s {
56   /* Non-zero if there have been any initializations at this priority
57      throughout the translation unit.  */
58   int initializations_p;
59   /* Non-zero if there have been any destructions at this priority
60      throughout the translation unit.  */
61   int destructions_p;
62 } *priority_info;
63
64 static tree get_sentry PARAMS ((tree));
65 static void mark_vtable_entries PARAMS ((tree));
66 static void grok_function_init PARAMS ((tree, tree));
67 static int finish_vtable_vardecl PARAMS ((tree *, void *));
68 static int prune_vtable_vardecl PARAMS ((tree *, void *));
69 static int is_namespace_ancestor PARAMS ((tree, tree));
70 static void add_using_namespace PARAMS ((tree, tree, int));
71 static tree ambiguous_decl PARAMS ((tree, tree, tree,int));
72 static tree build_anon_union_vars PARAMS ((tree, tree*, int, int));
73 static int acceptable_java_type PARAMS ((tree));
74 static void output_vtable_inherit PARAMS ((tree));
75 static tree start_objects PARAMS ((int, int));
76 static void finish_objects PARAMS ((int, int, tree));
77 static tree merge_functions PARAMS ((tree, tree));
78 static tree decl_namespace PARAMS ((tree));
79 static tree validate_nonmember_using_decl PARAMS ((tree, tree *, tree *));
80 static void do_nonmember_using_decl PARAMS ((tree, tree, tree, tree,
81                                            tree *, tree *));
82 static tree start_static_storage_duration_function PARAMS ((void));
83 static void finish_static_storage_duration_function PARAMS ((tree));
84 static priority_info get_priority_info PARAMS ((int));
85 static void do_static_initialization PARAMS ((tree, tree));
86 static void do_static_destruction PARAMS ((tree));
87 static tree start_static_initialization_or_destruction PARAMS ((tree, int));
88 static void finish_static_initialization_or_destruction PARAMS ((tree));
89 static void generate_ctor_or_dtor_function PARAMS ((int, int));
90 static int generate_ctor_and_dtor_functions_for_priority
91                                   PARAMS ((splay_tree_node, void *));
92 static tree prune_vars_needing_no_initialization PARAMS ((tree));
93 static void write_out_vars PARAMS ((tree));
94 static void import_export_class PARAMS ((tree));
95 static tree key_method PARAMS ((tree));
96
97 extern int current_class_depth;
98
99 /* A list of virtual function tables we must make sure to write out.  */
100 tree pending_vtables;
101
102 /* A list of static class variables.  This is needed, because a
103    static class variable can be declared inside the class without
104    an initializer, and then initialized, staticly, outside the class.  */
105 static varray_type pending_statics;
106 #define pending_statics_used \
107   (pending_statics ? pending_statics->elements_used : 0)
108
109 /* A list of functions which were declared inline, but which we
110    may need to emit outline anyway.  */
111 static varray_type saved_inlines;
112 #define saved_inlines_used \
113   (saved_inlines ? saved_inlines->elements_used : 0)
114
115 /* Same, but not reset.  Local temp variables and global temp variables
116    can have the same name.  */
117 static int global_temp_name_counter;
118
119 /* Flag used when debugging spew.c */
120
121 extern int spew_debug;
122
123 /* Nonzero if we're done parsing and into end-of-file activities.  */
124
125 int at_eof;
126
127 /* Functions called along with real static constructors and destructors.  */
128
129 tree static_ctors, static_dtors;
130
131 /* The :: namespace. */
132
133 tree global_namespace;
134
135 /* The stack for namespaces of current declarations. */
136
137 static tree decl_namespace_list;
138
139 \f
140 /* C (and C++) language-specific option variables.  */
141
142 /* Nonzero means allow type mismatches in conditional expressions;
143    just make their values `void'.   */
144
145 int flag_cond_mismatch;
146
147 /* Nonzero means give `double' the same size as `float'.  */
148
149 int flag_short_double;
150
151 /* Nonzero means don't recognize the keyword `asm'.  */
152
153 int flag_no_asm;
154
155 /* Nonzero means don't recognize any extension keywords.  */
156
157 int flag_no_gnu_keywords;
158
159 /* Nonzero means don't recognize the non-ANSI builtin functions.  */
160
161 int flag_no_builtin;
162
163 /* Nonzero means don't recognize the non-ANSI builtin functions.
164    -ansi sets this.  */
165
166 int flag_no_nonansi_builtin;
167
168 /* Nonzero means do some things the same way PCC does.  Only provided so
169    the compiler will link.  */
170
171 int flag_traditional;
172
173 /* Nonzero means to treat bitfields as unsigned unless they say `signed'.  */
174
175 int flag_signed_bitfields = 1;
176
177 /* Nonzero means enable obscure standard features and disable GNU
178    extensions that might cause standard-compliant code to be
179    miscompiled.  */
180
181 int flag_ansi;
182
183 /* Nonzero means do emit exported implementations of functions even if
184    they can be inlined.  */
185
186 int flag_implement_inlines = 1;
187
188 /* Nonzero means do emit exported implementations of templates, instead of
189    multiple static copies in each file that needs a definition.  */
190
191 int flag_external_templates;
192
193 /* Nonzero means that the decision to emit or not emit the implementation of a
194    template depends on where the template is instantiated, rather than where
195    it is defined.  */
196
197 int flag_alt_external_templates;
198
199 /* Nonzero means that implicit instantiations will be emitted if needed.  */
200
201 int flag_implicit_templates = 1;
202
203 /* Nonzero means that implicit instantiations of inline templates will be
204    emitted if needed, even if instantiations of non-inline templates
205    aren't.  */
206
207 int flag_implicit_inline_templates = 1;
208
209 /* Nonzero means warn about implicit declarations.  */
210
211 int warn_implicit = 1;
212
213 /* Nonzero means warn about usage of long long when `-pedantic'.  */
214
215 int warn_long_long = 1;
216
217 /* Nonzero means warn when all ctors or dtors are private, and the class
218    has no friends.  */
219
220 int warn_ctor_dtor_privacy = 1;
221
222 /* True if we want to implement vtables using "thunks".
223    The default is off.  */
224
225 #ifndef DEFAULT_VTABLE_THUNKS
226 #define DEFAULT_VTABLE_THUNKS 0
227 #endif
228 int flag_vtable_thunks = DEFAULT_VTABLE_THUNKS;
229
230 /* Nonzero means generate separate instantiation control files and juggle
231    them at link time.  */
232
233 int flag_use_repository;
234
235 /* Nonzero if we want to issue diagnostics that the standard says are not
236    required.  */
237
238 int flag_optional_diags = 1;
239
240 /* Nonzero means give string constants the type `const char *', as mandated
241    by the standard.  */
242
243 int flag_const_strings = 1;
244
245 /* If non-NULL, dump the tree structure for the entire translation
246    unit to this file.  */
247
248 char *flag_dump_translation_unit = 0;
249
250 /* Nonzero means warn about deprecated conversion from string constant to
251    `char *'.  */
252
253 int warn_write_strings;
254
255 /* Nonzero means warn about pointer casts that can drop a type qualifier
256    from the pointer target type.  */
257
258 int warn_cast_qual;
259
260 /* Nonzero means warn about sizeof(function) or addition/subtraction
261    of function pointers.  */
262
263 int warn_pointer_arith = 1;
264
265 /* Nonzero means warn for any function def without prototype decl.  */
266
267 int warn_missing_prototypes;
268
269 /* Nonzero means warn about multiple (redundant) decls for the same single
270    variable or function.  */
271
272 int warn_redundant_decls;
273
274 /* Warn if initializer is not completely bracketed.  */
275
276 int warn_missing_braces;
277
278 /* Warn about comparison of signed and unsigned values.  */
279
280 int warn_sign_compare;
281
282 /* Warn about testing equality of floating point numbers. */
283
284 int warn_float_equal = 0;
285
286 /* Warn about *printf or *scanf format/argument anomalies.  */
287
288 int warn_format;
289
290 /* Warn about a subscript that has type char.  */
291
292 int warn_char_subscripts;
293
294 /* Warn if a type conversion is done that might have confusing results.  */
295
296 int warn_conversion;
297
298 /* Warn if adding () is suggested.  */
299
300 int warn_parentheses;
301
302 /* Non-zero means warn in function declared in derived class has the
303    same name as a virtual in the base class, but fails to match the
304    type signature of any virtual function in the base class.  */
305 int warn_overloaded_virtual;
306
307 /* Non-zero means warn when declaring a class that has a non virtual
308    destructor, when it really ought to have a virtual one.  */
309 int warn_nonvdtor;
310
311 /* Non-zero means warn when a function is declared extern and later inline.  */
312 int warn_extern_inline;
313
314 /* Non-zero means warn when the compiler will reorder code.  */
315 int warn_reorder;
316
317 /* Non-zero means warn when synthesis behavior differs from Cfront's.  */
318 int warn_synth;
319
320 /* Non-zero means warn when we convert a pointer to member function
321    into a pointer to (void or function).  */
322 int warn_pmf2ptr = 1;
323
324 /* Nonzero means warn about violation of some Effective C++ style rules.  */
325
326 int warn_ecpp;
327
328 /* Nonzero means warn where overload resolution chooses a promotion from
329    unsigned to signed over a conversion to an unsigned of the same size.  */
330
331 int warn_sign_promo;
332
333 /* Nonzero means warn when an old-style cast is used.  */
334
335 int warn_old_style_cast;
336
337 /* Warn about #pragma directives that are not recognised.  */      
338
339 int warn_unknown_pragmas; /* Tri state variable.  */  
340
341 /* Nonzero means warn about use of multicharacter literals.  */
342
343 int warn_multichar = 1;
344
345 /* Nonzero means warn when non-templatized friend functions are
346    declared within a template */
347
348 int warn_nontemplate_friend = 1;
349
350 /* Nonzero means complain about deprecated features.  */
351
352 int warn_deprecated = 1;
353
354 /* Nonzero means `$' can be in an identifier.  */
355
356 #ifndef DOLLARS_IN_IDENTIFIERS
357 #define DOLLARS_IN_IDENTIFIERS 1
358 #endif
359 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
360
361 /* Nonzero for -fno-strict-prototype switch: do not consider empty
362    argument prototype to mean function takes no arguments.  */
363
364 int flag_strict_prototype = 2;
365 int strict_prototype = 1;
366 int strict_prototypes_lang_c, strict_prototypes_lang_cplusplus = 1;
367
368 /* Nonzero means that labels can be used as first-class objects */
369
370 int flag_labels_ok;
371
372 /* Nonzero means allow Microsoft extensions without a pedwarn.  */
373
374 int flag_ms_extensions;
375
376 /* Non-zero means to collect statistics which might be expensive
377    and to print them when we are done.  */
378 int flag_detailed_statistics;
379
380 /* C++ specific flags.  */   
381 /* Zero means that `this' is a *const.  This gives nice behavior in the
382    2.0 world.  1 gives 1.2-compatible behavior.  2 gives Spring behavior.
383    -2 means we're constructing an object and it has fixed type.  */
384
385 int flag_this_is_variable;
386
387 /* Nonzero means we should attempt to elide constructors when possible.  */
388
389 int flag_elide_constructors = 1;
390
391 /* Nonzero means that member functions defined in class scope are
392    inline by default.  */
393
394 int flag_default_inline = 1;
395
396 /* Controls whether compiler generates 'type descriptor' that give
397    run-time type information.  */
398 int flag_rtti = 1;
399
400 /* Nonzero if we wish to output cross-referencing information
401    for the GNU class browser.  */
402 extern int flag_gnu_xref;
403
404 /* Nonzero if we want to support huge (> 2^(sizeof(short)*8-1) bytes)
405    objects.  */
406
407 int flag_huge_objects;
408
409 /* Nonzero if we want to conserve space in the .o files.  We do this
410    by putting uninitialized data and runtime initialized data into
411    .common instead of .data at the expense of not flagging multiple
412    definitions.  */
413
414 int flag_conserve_space;
415
416 /* Nonzero if we want to obey access control semantics.  */
417
418 int flag_access_control = 1;
419
420 /* Nonzero if we want to understand the operator names, i.e. 'bitand'.  */
421
422 int flag_operator_names;
423
424 /* Nonzero if we want to check the return value of new and avoid calling
425    constructors if it is a null pointer.  */
426
427 int flag_check_new;
428
429 /* Nonzero if we want the new ISO rules for pushing a new scope for `for'
430    initialization variables.
431    0: Old rules, set by -fno-for-scope.
432    2: New ISO rules, set by -ffor-scope.
433    1: Try to implement new ISO rules, but with backup compatibility
434    (and warnings).  This is the default, for now.  */
435
436 int flag_new_for_scope = 1;
437
438 /* Nonzero if we want to emit defined symbols with common-like linkage as
439    weak symbols where possible, in order to conform to C++ semantics.
440    Otherwise, emit them as local symbols.  */
441
442 int flag_weak = 1;
443
444 /* Nonzero to enable experimental ABI changes.  */
445
446 int flag_new_abi;
447
448 /* Nonzero to use __cxa_atexit, rather than atexit, to register
449    destructors for local statics and global objects.  */
450
451 int flag_use_cxa_atexit;
452
453 /* Nonzero to not ignore namespace std. */
454
455 int flag_honor_std;
456
457 /* Nonzero if we should expand functions calls inline at the tree
458    level, rather than at the RTL level.  */
459
460 int flag_inline_trees = 0;
461
462 /* Maximum template instantiation depth. Must be at least 17 for ISO
463    compliance. */
464
465 int max_tinst_depth = 17;
466
467 /* The name-mangling scheme to use.  Must be 1 or greater to support
468    template functions with identical types, but different template
469    arguments.  */
470 int name_mangling_version = 2;
471
472 /* Nonzero means that guiding declarations are allowed.  */
473 int flag_guiding_decls;
474
475 /* Nonzero if wchar_t should be `unsigned short' instead of whatever it
476    would normally be, for use with WINE.  */
477 int flag_short_wchar;
478
479 /* Nonzero if squashed mangling is to be performed. 
480    This uses the B and K codes to reference previously seen class types 
481    and class qualifiers.       */
482 int flag_do_squangling;
483
484 /* Nonzero means output .vtable_{entry,inherit} for use in doing vtable gc.  */
485
486 int flag_vtable_gc;
487
488 /* Nonzero means make the default pedwarns warnings instead of errors.
489    The value of this flag is ignored if -pedantic is specified.  */
490
491 int flag_permissive;
492
493 /* Nonzero means to implement standard semantics for exception
494    specifications, calling unexpected if an exception is thrown that
495    doesn't match the specification.  Zero means to treat them as
496    assertions and optimize accordingly, but not check them.  */
497
498 int flag_enforce_eh_specs = 1;
499
500 /* If this variable is defined to a non-NULL value, it will be called
501    after the file has been completely parsed.  */
502
503 void (*back_end_hook) PARAMS ((tree));
504
505 /* Table of language-dependent -f options.
506    STRING is the option name.  VARIABLE is the address of the variable.
507    ON_VALUE is the value to store in VARIABLE
508     if `-fSTRING' is seen as an option.
509    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
510
511 static struct { const char *string; int *variable; int on_value;}
512 lang_f_options[] =
513 {
514   /* C/C++ options.  */
515   {"signed-char", &flag_signed_char, 1},
516   {"unsigned-char", &flag_signed_char, 0},
517   {"signed-bitfields", &flag_signed_bitfields, 1},
518   {"unsigned-bitfields", &flag_signed_bitfields, 0},
519   {"short-enums", &flag_short_enums, 1},
520   {"short-double", &flag_short_double, 1},
521   {"short-wchar", &flag_short_wchar, 1},
522   {"cond-mismatch", &flag_cond_mismatch, 1},
523   {"asm", &flag_no_asm, 0},
524   {"builtin", &flag_no_builtin, 0},
525
526   /* C++-only options.  */
527   {"access-control", &flag_access_control, 1},
528   {"check-new", &flag_check_new, 1},
529   {"conserve-space", &flag_conserve_space, 1},
530   {"const-strings", &flag_const_strings, 1},
531   {"default-inline", &flag_default_inline, 1},
532   {"dollars-in-identifiers", &dollars_in_ident, 1},
533   {"elide-constructors", &flag_elide_constructors, 1},
534   {"enforce-eh-specs", &flag_enforce_eh_specs, 1},
535   {"external-templates", &flag_external_templates, 1},
536   {"for-scope", &flag_new_for_scope, 2},
537   {"gnu-keywords", &flag_no_gnu_keywords, 0},
538   {"handle-exceptions", &flag_exceptions, 1},
539   {"honor-std", &flag_honor_std, 1},
540   {"huge-objects", &flag_huge_objects, 1},
541   {"implement-inlines", &flag_implement_inlines, 1},
542   {"implicit-inline-templates", &flag_implicit_inline_templates, 1},
543   {"implicit-templates", &flag_implicit_templates, 1},
544   {"labels-ok", &flag_labels_ok, 1},
545   {"ms-extensions", &flag_ms_extensions, 1},
546   {"nonansi-builtins", &flag_no_nonansi_builtin, 0},
547   {"operator-names", &flag_operator_names, 1},
548   {"optional-diags", &flag_optional_diags, 1},
549   {"permissive", &flag_permissive, 1},
550   {"repo", &flag_use_repository, 1},
551   {"rtti", &flag_rtti, 1},
552   {"squangle", &flag_do_squangling, 1},
553   {"stats", &flag_detailed_statistics, 1},
554   {"strict-prototype", &flag_strict_prototype, 1},
555   {"use-cxa-atexit", &flag_use_cxa_atexit, 1},
556   {"vtable-gc", &flag_vtable_gc, 1},
557   {"vtable-thunks", &flag_vtable_thunks, 1},
558   {"weak", &flag_weak, 1},
559   {"xref", &flag_gnu_xref, 1}
560 };
561
562 /* Decode the string P as a language-specific option.
563    Return the number of strings consumed for a valid option.
564    Otherwise return 0.  Should not complain if it does not
565    recognise the option.  */
566
567 int   
568 lang_decode_option (argc, argv)
569      int argc
570 #if !USE_CPPLIB
571   ATTRIBUTE_UNUSED
572 #endif
573   ;
574      char **argv;
575
576 {
577   int strings_processed;
578   char *p = argv[0];
579 #if USE_CPPLIB
580   strings_processed = cpp_handle_option (&parse_in, argc, argv);
581 #else
582   strings_processed = 0;
583 #endif /* ! USE_CPPLIB */
584
585   if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
586     /* ignore */;
587   else if (p[0] == '-' && p[1] == 'f')
588     {
589       /* Some kind of -f option.
590          P's value is the option sans `-f'.
591          Search for it in the table of options.  */
592       size_t j;
593
594       p += 2;
595       /* Try special -f options.  */
596
597       if (!strcmp (p, "handle-exceptions")
598           || !strcmp (p, "no-handle-exceptions"))
599         warning ("-fhandle-exceptions has been renamed to -fexceptions (and is now on by default)");
600       else if (!strcmp (p, "all-virtual")
601                || !strcmp (p, "enum-int-equiv")
602                || !strcmp (p, "no-nonnull-objects")
603                || !strcmp (p, "this-is-variable"))
604         warning ("-f%s is no longer supported", p);
605       else if (! strcmp (p, "alt-external-templates"))
606         {
607           flag_external_templates = 1;
608           flag_alt_external_templates = 1;
609           cp_deprecated ("-falt-external-templates");
610         }
611       else if (! strcmp (p, "no-alt-external-templates"))
612         flag_alt_external_templates = 0;
613       else if (!strcmp (p, "repo"))
614         {
615           flag_use_repository = 1;
616           flag_implicit_templates = 0;
617         }
618       else if (!strcmp (p, "guiding-decls"))
619         {
620           flag_guiding_decls = 1;
621           name_mangling_version = 0;
622         }
623       else if (!strcmp (p, "no-guiding-decls"))
624         flag_guiding_decls = 0;
625       else if (!strcmp (p, "external-templates"))
626         {
627           flag_external_templates = 1;
628           cp_deprecated ("-fexternal-templates");
629         }
630       else if (!strcmp (p, "new-abi"))
631         {
632           flag_new_abi = 1;
633           flag_do_squangling = 1;
634           flag_vtable_thunks = 1;
635         }
636       else if (!strcmp (p, "no-new-abi"))
637         {
638           flag_new_abi = 0;
639           flag_do_squangling = 0;
640         }
641       else if (!strncmp (p, "template-depth-", 15))
642         max_tinst_depth
643           = read_integral_parameter (p + 15, p - 2, max_tinst_depth);
644       else if (!strncmp (p, "name-mangling-version-", 22))
645         name_mangling_version 
646           = read_integral_parameter (p + 22, p - 2, name_mangling_version);
647       else if (!strncmp (p, "message-length=", 15))
648         set_message_length
649           (read_integral_parameter (p + 15, p - 2,
650                                     /* default line-wrap length */ 72));
651       else if (!strncmp (p, "dump-translation-unit-", 22))
652         {
653           if (p[22] == '\0')
654             error ("no file specified with -fdump-translation-unit");
655           else
656             flag_dump_translation_unit = p + 22;
657         }
658       else 
659         {
660           int found = 0;
661
662           for (j = 0;
663                !found && j < (sizeof (lang_f_options) 
664                               / sizeof (lang_f_options[0]));
665                j++)
666             {
667               if (!strcmp (p, lang_f_options[j].string))
668                 {
669                   *lang_f_options[j].variable = lang_f_options[j].on_value;
670                   /* A goto here would be cleaner,
671                      but breaks the vax pcc.  */
672                   found = 1;
673                 }
674               if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
675                   && ! strcmp (p+3, lang_f_options[j].string))
676                 {
677                   *lang_f_options[j].variable = ! lang_f_options[j].on_value;
678                   found = 1;
679                 }
680             }
681               
682           return found;
683         }
684     }
685   else if (p[0] == '-' && p[1] == 'W')
686     {
687       int setting = 1;
688
689       /* The -W options control the warning behavior of the compiler.  */
690       p += 2;
691
692       if (p[0] == 'n' && p[1] == 'o' && p[2] == '-')
693         setting = 0, p += 3;
694
695       if (!strcmp (p, "implicit"))
696         warn_implicit = setting;
697       else if (!strcmp (p, "long-long"))
698         warn_long_long = setting;
699       else if (!strcmp (p, "return-type"))
700         warn_return_type = setting;
701       else if (!strcmp (p, "ctor-dtor-privacy"))
702         warn_ctor_dtor_privacy = setting;
703       else if (!strcmp (p, "write-strings"))
704         warn_write_strings = setting;
705       else if (!strcmp (p, "cast-qual"))
706         warn_cast_qual = setting;
707       else if (!strcmp (p, "char-subscripts"))
708         warn_char_subscripts = setting;
709       else if (!strcmp (p, "pointer-arith"))
710         warn_pointer_arith = setting;
711       else if (!strcmp (p, "missing-prototypes"))
712         warn_missing_prototypes = setting;
713       else if (!strcmp (p, "redundant-decls"))
714         warn_redundant_decls = setting;
715       else if (!strcmp (p, "missing-braces"))
716         warn_missing_braces = setting;
717       else if (!strcmp (p, "sign-compare"))
718         warn_sign_compare = setting;
719       else if (!strcmp (p, "float-equal"))
720         warn_float_equal = setting;
721       else if (!strcmp (p, "format"))
722         warn_format = setting;
723       else if (!strcmp (p, "conversion"))
724         warn_conversion = setting;
725       else if (!strcmp (p, "parentheses"))
726         warn_parentheses = setting;
727       else if (!strcmp (p, "non-virtual-dtor"))
728         warn_nonvdtor = setting;
729       else if (!strcmp (p, "extern-inline"))
730         warn_extern_inline = setting;
731       else if (!strcmp (p, "reorder"))
732         warn_reorder = setting;
733       else if (!strcmp (p, "synth"))
734         warn_synth = setting;
735       else if (!strcmp (p, "pmf-conversions"))
736         warn_pmf2ptr = setting;
737       else if (!strcmp (p, "effc++"))
738         warn_ecpp = setting;
739       else if (!strcmp (p, "sign-promo"))
740         warn_sign_promo = setting;
741       else if (!strcmp (p, "old-style-cast"))
742         warn_old_style_cast = setting;
743       else if (!strcmp (p, "overloaded-virtual"))
744         warn_overloaded_virtual = setting;
745       else if (!strcmp (p, "multichar"))
746         warn_multichar = setting;
747       else if (!strcmp (p, "unknown-pragmas"))
748         /* Set to greater than 1, so that even unknown pragmas in
749            system headers will be warned about.  */  
750         warn_unknown_pragmas = setting * 2;
751       else if (!strcmp (p, "non-template-friend"))
752         warn_nontemplate_friend = setting;
753       else if (!strcmp (p, "deprecated"))
754         warn_deprecated = setting;
755       else if (!strcmp (p, "comment"))
756         ;                       /* cpp handles this one.  */
757       else if (!strcmp (p, "comments"))
758         ;                       /* cpp handles this one.  */
759       else if (!strcmp (p, "trigraphs"))
760         ;                       /* cpp handles this one.  */
761       else if (!strcmp (p, "import"))
762         ;                       /* cpp handles this one.  */
763       else if (!strcmp (p, "all"))
764         {
765           warn_return_type = setting;
766           warn_unused = setting;
767           warn_implicit = setting;
768           warn_switch = setting;
769           warn_format = setting;
770           warn_parentheses = setting;
771           warn_missing_braces = setting;
772           warn_sign_compare = setting;
773           warn_multichar = setting;
774           /* We save the value of warn_uninitialized, since if they put
775              -Wuninitialized on the command line, we need to generate a
776              warning about not using it without also specifying -O.  */
777           if (warn_uninitialized != 1)
778             warn_uninitialized = (setting ? 2 : 0);
779           /* Only warn about unknown pragmas that are not in system
780              headers.  */                                        
781           warn_unknown_pragmas = 1;       
782
783           /* C++-specific warnings.  */
784           warn_ctor_dtor_privacy = setting;
785           warn_nonvdtor = setting;
786           warn_reorder = setting;
787           warn_nontemplate_friend = setting;           
788         }
789       else return strings_processed;
790     }
791   else if (!strcmp (p, "-ansi"))
792     flag_no_nonansi_builtin = 1, flag_ansi = 1,
793     flag_no_gnu_keywords = 1, flag_operator_names = 1;
794 #ifdef SPEW_DEBUG
795   /* Undocumented, only ever used when you're invoking cc1plus by hand, since
796      it's probably safe to assume no sane person would ever want to use this
797      under normal circumstances.  */
798   else if (!strcmp (p, "-spew-debug"))
799     spew_debug = 1;
800 #endif
801   else
802     return strings_processed;
803
804   return 1;
805 }
806 \f
807 /* Incorporate `const' and `volatile' qualifiers for member functions.
808    FUNCTION is a TYPE_DECL or a FUNCTION_DECL.
809    QUALS is a list of qualifiers.  Returns any explicit
810    top-level qualifiers of the method's this pointer, anything other than
811    TYPE_UNQUALIFIED will be an extension.  */
812
813 int
814 grok_method_quals (ctype, function, quals)
815      tree ctype, function, quals;
816 {
817   tree fntype = TREE_TYPE (function);
818   tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
819   int type_quals = TYPE_UNQUALIFIED;
820   int dup_quals = TYPE_UNQUALIFIED;
821   int this_quals = TYPE_UNQUALIFIED;
822
823   do
824     {
825       int tq = cp_type_qual_from_rid (TREE_VALUE (quals));
826       
827       if ((type_quals | this_quals) & tq)
828         dup_quals |= tq;
829       else if (tq & TYPE_QUAL_RESTRICT)
830         this_quals |= tq;
831       else
832         type_quals |= tq;
833       quals = TREE_CHAIN (quals);
834     } 
835   while (quals);
836
837   if (dup_quals != TYPE_UNQUALIFIED)
838     cp_error ("duplicate type qualifiers in %s declaration",
839               TREE_CODE (function) == FUNCTION_DECL 
840               ? "member function" : "type");
841
842   ctype = cp_build_qualified_type (ctype, type_quals);
843   fntype = build_cplus_method_type (ctype, TREE_TYPE (fntype),
844                                     (TREE_CODE (fntype) == METHOD_TYPE
845                                      ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
846                                      : TYPE_ARG_TYPES (fntype)));
847   if (raises)
848     fntype = build_exception_variant (fntype, raises);
849
850   TREE_TYPE (function) = fntype;
851   return this_quals;
852 }
853
854 /* Warn when -fexternal-templates is used and #pragma
855    interface/implementation is not used all the times it should be,
856    inform the user.  */
857
858 void
859 warn_if_unknown_interface (decl)
860      tree decl;
861 {
862   static int already_warned = 0;
863   if (already_warned++)
864     return;
865
866   if (flag_alt_external_templates)
867     {
868       struct tinst_level *til = tinst_for_decl ();
869       int sl = lineno;
870       char *sf = input_filename;
871
872       if (til)
873         {
874           lineno = til->line;
875           input_filename = til->file;
876         }
877       cp_warning ("template `%#D' instantiated in file without #pragma interface",
878                   decl);
879       lineno = sl;
880       input_filename = sf;
881     }
882   else
883     cp_warning_at ("template `%#D' defined in file without #pragma interface",
884                    decl);
885 }
886
887 /* A subroutine of the parser, to handle a component list.  */
888
889 void
890 grok_x_components (specs)
891      tree specs;
892 {
893   struct pending_inline **p;
894   tree t;
895
896   specs = strip_attrs (specs);
897
898   check_tag_decl (specs);
899   t = groktypename (build_decl_list (specs, NULL_TREE)); 
900
901   /* The only case where we need to do anything additional here is an
902      anonymous union field, e.g.: `struct S { union { int i; }; };'.  */
903   if (t == NULL_TREE || !ANON_AGGR_TYPE_P (t))
904     return;
905
906   fixup_anonymous_aggr (t);
907   finish_member_declaration (build_lang_decl (FIELD_DECL, NULL_TREE, t)); 
908
909   /* Ignore any inline function definitions in the anonymous union
910      since an anonymous union may not have function members.  */
911   p = &pending_inlines;
912   for (; *p; *p = (*p)->next)
913     if (DECL_CONTEXT ((*p)->fndecl) != t)
914       break;
915 }
916
917 /* Constructors for types with virtual baseclasses need an "in-charge" flag
918    saying whether this constructor is responsible for initialization of
919    virtual baseclasses or not.  All destructors also need this "in-charge"
920    flag, which additionally determines whether or not the destructor should
921    free the memory for the object.
922
923    This function adds the "in-charge" flag to member function FN if
924    appropriate.  It is called from grokclassfn and tsubst.
925    FN must be either a constructor or destructor.  */
926
927 void
928 maybe_retrofit_in_chrg (fn)
929      tree fn;
930 {
931   tree basetype, arg_types, parms, parm, fntype;
932
933   if (DECL_CONSTRUCTOR_P (fn)
934       && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (fn))
935       && ! DECL_CONSTRUCTOR_FOR_VBASE_P (fn))
936     /* OK */;
937   else if (! DECL_CONSTRUCTOR_P (fn)
938            && TREE_CHAIN (DECL_ARGUMENTS (fn)) == NULL_TREE)
939     /* OK */;
940   else
941     return;
942
943   if (DECL_CONSTRUCTOR_P (fn))
944     DECL_CONSTRUCTOR_FOR_VBASE_P (fn) = 1;
945
946   /* First add it to DECL_ARGUMENTS...  */
947   parm = build_decl (PARM_DECL, in_charge_identifier, integer_type_node);
948   /* Mark the artificial `__in_chrg' parameter as "artificial".  */
949   SET_DECL_ARTIFICIAL (parm);
950   DECL_ARG_TYPE (parm) = integer_type_node;
951   TREE_READONLY (parm) = 1;
952   parms = DECL_ARGUMENTS (fn);
953   TREE_CHAIN (parm) = TREE_CHAIN (parms);
954   TREE_CHAIN (parms) = parm;
955
956   /* ...and then to TYPE_ARG_TYPES.  */
957   arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
958   basetype = TREE_TYPE (TREE_VALUE (arg_types));
959   arg_types = hash_tree_chain (integer_type_node, TREE_CHAIN (arg_types));
960   fntype = build_cplus_method_type (basetype, TREE_TYPE (TREE_TYPE (fn)),
961                                     arg_types);
962   if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
963     fntype = build_exception_variant (fntype,
964                                       TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
965   TREE_TYPE (fn) = fntype;
966 }
967
968 /* Classes overload their constituent function names automatically.
969    When a function name is declared in a record structure,
970    its name is changed to it overloaded name.  Since names for
971    constructors and destructors can conflict, we place a leading
972    '$' for destructors.
973
974    CNAME is the name of the class we are grokking for.
975
976    FUNCTION is a FUNCTION_DECL.  It was created by `grokdeclarator'.
977
978    FLAGS contains bits saying what's special about today's
979    arguments.  1 == DESTRUCTOR.  2 == OPERATOR.
980
981    If FUNCTION is a destructor, then we must add the `auto-delete' field
982    as a second parameter.  There is some hair associated with the fact
983    that we must "declare" this variable in the manner consistent with the
984    way the rest of the arguments were declared.
985
986    QUALS are the qualifiers for the this pointer.  */
987
988 void
989 grokclassfn (ctype, function, flags, quals)
990      tree ctype, function;
991      enum overload_flags flags;
992      tree quals;
993 {
994   tree fn_name = DECL_NAME (function);
995   int this_quals = TYPE_UNQUALIFIED;
996
997   if (fn_name == NULL_TREE)
998     {
999       error ("name missing for member function");
1000       fn_name = get_identifier ("<anonymous>");
1001       DECL_NAME (function) = fn_name;
1002     }
1003
1004   if (quals)
1005     this_quals = grok_method_quals (ctype, function, quals);
1006
1007   if (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
1008     {
1009       /* Must add the class instance variable up front.  */
1010       /* Right now we just make this a pointer.  But later
1011          we may wish to make it special.  */
1012       tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (function)));
1013
1014       tree parm = build_decl (PARM_DECL, this_identifier,
1015                          cp_build_qualified_type (type, this_quals | TYPE_QUAL_CONST));
1016       /* Mark the artificial `this' parameter as "artificial".  */
1017       SET_DECL_ARTIFICIAL (parm);
1018       DECL_ARG_TYPE (parm) = type;
1019       /* We can make this a register, so long as we don't
1020          accidentally complain if someone tries to take its address.  */
1021       DECL_REGISTER (parm) = 1;
1022       TREE_CHAIN (parm) = last_function_parms;
1023       last_function_parms = parm;
1024     }
1025
1026   DECL_ARGUMENTS (function) = last_function_parms;
1027   DECL_CONTEXT (function) = ctype;
1028
1029   if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
1030     maybe_retrofit_in_chrg (function);
1031
1032   if (flags == DTOR_FLAG)
1033     {
1034       DECL_ASSEMBLER_NAME (function) = build_destructor_name (ctype);
1035       TYPE_HAS_DESTRUCTOR (ctype) = 1;
1036     }
1037   else
1038     set_mangled_name_for_decl (function);
1039 }
1040
1041 /* Work on the expr used by alignof (this is only called by the parser).  */
1042
1043 tree
1044 grok_alignof (expr)
1045      tree expr;
1046 {
1047   tree best, t;
1048   int bestalign;
1049
1050   if (processing_template_decl)
1051     return build_min (ALIGNOF_EXPR, sizetype, expr);
1052
1053   if (TREE_CODE (expr) == COMPONENT_REF
1054       && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
1055     error ("`__alignof__' applied to a bit-field");
1056
1057   if (TREE_CODE (expr) == INDIRECT_REF)
1058     {
1059       best = t = TREE_OPERAND (expr, 0);
1060       bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
1061
1062       while (TREE_CODE (t) == NOP_EXPR
1063              && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
1064         {
1065           int thisalign;
1066           t = TREE_OPERAND (t, 0);
1067           thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
1068           if (thisalign > bestalign)
1069             best = t, bestalign = thisalign;
1070         }
1071       return c_alignof (TREE_TYPE (TREE_TYPE (best)));
1072     }
1073   else
1074     return c_alignof (TREE_TYPE (expr));
1075 }
1076
1077 /* Create an ARRAY_REF, checking for the user doing things backwards
1078    along the way.  */
1079
1080 tree
1081 grok_array_decl (array_expr, index_exp)
1082      tree array_expr, index_exp;
1083 {
1084   tree type = TREE_TYPE (array_expr);
1085   tree p1, p2, i1, i2;
1086
1087   if (type == error_mark_node || index_exp == error_mark_node)
1088     return error_mark_node;
1089   if (processing_template_decl)
1090     return build_min (ARRAY_REF, type ? TREE_TYPE (type) : NULL_TREE,
1091                       array_expr, index_exp);
1092
1093   if (type == NULL_TREE)
1094     {
1095       /* Something has gone very wrong.  Assume we are mistakenly reducing
1096          an expression instead of a declaration.  */
1097       error ("parser may be lost: is there a '{' missing somewhere?");
1098       return NULL_TREE;
1099     }
1100
1101   if (TREE_CODE (type) == OFFSET_TYPE
1102       || TREE_CODE (type) == REFERENCE_TYPE)
1103     type = TREE_TYPE (type);
1104
1105   /* If they have an `operator[]', use that.  */
1106   if (IS_AGGR_TYPE (type) || IS_AGGR_TYPE (TREE_TYPE (index_exp)))
1107     return build_opfncall (ARRAY_REF, LOOKUP_NORMAL,
1108                            array_expr, index_exp, NULL_TREE);
1109
1110   /* Otherwise, create an ARRAY_REF for a pointer or array type.  It
1111      is a little-known fact that, if `a' is an array and `i' is an
1112      int, you can write `i[a]', which means the same thing as `a[i]'.  */
1113
1114   if (TREE_CODE (type) == ARRAY_TYPE)
1115     p1 = array_expr;
1116   else
1117     p1 = build_expr_type_conversion (WANT_POINTER, array_expr, 0);
1118
1119   if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
1120     p2 = index_exp;
1121   else
1122     p2 = build_expr_type_conversion (WANT_POINTER, index_exp, 0);
1123
1124   i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr, 0);
1125   i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp, 0);
1126
1127   if ((p1 && i2) && (i1 && p2))
1128     error ("ambiguous conversion for array subscript");
1129
1130   if (p1 && i2)
1131     array_expr = p1, index_exp = i2;
1132   else if (i1 && p2)
1133     array_expr = p2, index_exp = i1;
1134   else
1135     {
1136       cp_error ("invalid types `%T[%T]' for array subscript",
1137                 type, TREE_TYPE (index_exp));
1138       return error_mark_node;
1139     }
1140
1141   if (array_expr == error_mark_node || index_exp == error_mark_node)
1142     error ("ambiguous conversion for array subscript");
1143
1144   return build_array_ref (array_expr, index_exp);
1145 }
1146
1147 /* Given the cast expression EXP, checking out its validity.   Either return
1148    an error_mark_node if there was an unavoidable error, return a cast to
1149    void for trying to delete a pointer w/ the value 0, or return the
1150    call to delete.  If DOING_VEC is 1, we handle things differently
1151    for doing an array delete.  If DOING_VEC is 2, they gave us the
1152    array size as an argument to delete.
1153    Implements ARM $5.3.4.  This is called from the parser.  */
1154
1155 tree
1156 delete_sanity (exp, size, doing_vec, use_global_delete)
1157      tree exp, size;
1158      int doing_vec, use_global_delete;
1159 {
1160   tree t, type;
1161   /* For a regular vector delete (aka, no size argument) we will pass
1162      this down as a NULL_TREE into build_vec_delete.  */
1163   tree maxindex = NULL_TREE;
1164
1165   if (exp == error_mark_node)
1166     return exp;
1167
1168   if (processing_template_decl)
1169     {
1170       t = build_min (DELETE_EXPR, void_type_node, exp, size);
1171       DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
1172       DELETE_EXPR_USE_VEC (t) = doing_vec;
1173       return t;
1174     }
1175
1176   if (TREE_CODE (exp) == OFFSET_REF)
1177     exp = resolve_offset_ref (exp);
1178   exp = convert_from_reference (exp);
1179   t = stabilize_reference (exp);
1180   t = build_expr_type_conversion (WANT_POINTER, t, 1);
1181
1182   if (t == NULL_TREE || t == error_mark_node)
1183     {
1184       cp_error ("type `%#T' argument given to `delete', expected pointer",
1185                 TREE_TYPE (exp));
1186       return error_mark_node;
1187     }
1188
1189   if (doing_vec == 2)
1190     {
1191       maxindex = build_binary_op (MINUS_EXPR, size, integer_one_node);
1192       pedwarn ("anachronistic use of array size in vector delete");
1193     }
1194
1195   type = TREE_TYPE (t);
1196
1197   /* As of Valley Forge, you can delete a pointer to const.  */
1198
1199   /* You can't delete functions.  */
1200   if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
1201     {
1202       error ("cannot delete a function.  Only pointer-to-objects are valid arguments to `delete'");
1203       return error_mark_node;
1204     }
1205
1206   /* Deleting ptr to void is undefined behaviour [expr.delete/3].  */
1207   if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
1208     cp_warning ("`%T' is not a pointer-to-object type", type);
1209   
1210   /* An array can't have been allocated by new, so complain.  */
1211   if (TREE_CODE (t) == ADDR_EXPR
1212       && TREE_CODE (TREE_OPERAND (t, 0)) == VAR_DECL
1213       && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == ARRAY_TYPE)
1214     cp_warning ("deleting array `%#D'", TREE_OPERAND (t, 0));
1215
1216   /* Deleting a pointer with the value zero is valid and has no effect.  */
1217   if (integer_zerop (t))
1218     return build1 (NOP_EXPR, void_type_node, t);
1219
1220   if (doing_vec)
1221     return build_vec_delete (t, maxindex, integer_one_node, use_global_delete);
1222   else
1223     {
1224       if (IS_AGGR_TYPE (TREE_TYPE (type))
1225           && TYPE_GETS_REG_DELETE (TREE_TYPE (type)))
1226         {
1227           /* Only do access checking here; we'll be calling op delete
1228              from the destructor.  */
1229           tree tmp = build_op_delete_call (DELETE_EXPR, t, size_zero_node,
1230                                            LOOKUP_NORMAL, NULL_TREE);
1231           if (tmp == error_mark_node)
1232             return error_mark_node;
1233         }
1234
1235       return build_delete (type, t, integer_three_node,
1236                            LOOKUP_NORMAL, use_global_delete);
1237     }
1238 }
1239
1240 /* Report an error if the indicated template declaration is not the
1241    sort of thing that should be a member template.  */
1242
1243 void
1244 check_member_template (tmpl)
1245      tree tmpl;
1246 {
1247   tree decl;
1248
1249   my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
1250   decl = DECL_TEMPLATE_RESULT (tmpl);
1251
1252   if (TREE_CODE (decl) == FUNCTION_DECL
1253       || (TREE_CODE (decl) == TYPE_DECL
1254           && IS_AGGR_TYPE (TREE_TYPE (decl))))
1255     {
1256       if (current_function_decl)
1257         /* 14.5.2.2 [temp.mem]
1258            
1259            A local class shall not have member templates. */
1260         cp_error ("invalid declaration of member template `%#D' in local class",
1261                   decl);
1262       
1263       if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
1264         {
1265           /* 14.5.2.3 [temp.mem]
1266
1267              A member function template shall not be virtual.  */
1268           cp_error 
1269             ("invalid use of `virtual' in template declaration of `%#D'",
1270              decl);
1271           DECL_VIRTUAL_P (decl) = 0;
1272         }
1273
1274       /* The debug-information generating code doesn't know what to do
1275          with member templates.  */ 
1276       DECL_IGNORED_P (tmpl) = 1;
1277     } 
1278   else
1279     cp_error ("template declaration of `%#D'", decl);
1280 }
1281
1282 /* Return true iff TYPE is a valid Java parameter or return type. */
1283
1284 static int
1285 acceptable_java_type (type)
1286      tree type;
1287 {
1288   if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
1289     return 1;
1290   if (TREE_CODE (type) == POINTER_TYPE)
1291     {
1292       type = TREE_TYPE (type);
1293       if (TREE_CODE (type) == RECORD_TYPE)
1294         {
1295           tree args;  int i;
1296           if (! TYPE_FOR_JAVA (type))
1297             return 0;
1298           if (! CLASSTYPE_TEMPLATE_INFO (type))
1299             return 1;
1300           args = CLASSTYPE_TI_ARGS (type);
1301           i = TREE_VEC_LENGTH (args);
1302           while (--i >= 0)
1303             {
1304               type = TREE_VEC_ELT (args, i);
1305               if (TREE_CODE (type) == POINTER_TYPE)
1306                 type = TREE_TYPE (type);
1307               if (! TYPE_FOR_JAVA (type))
1308                 return 0;
1309             }
1310           return 1;
1311         }
1312     }
1313   return 0;
1314 }
1315
1316 /* For a METHOD in a Java class CTYPE, return 1 if
1317    the parameter and return types are valid Java types.
1318    Otherwise, print appropriate error messages, and return 0.  */
1319
1320 int
1321 check_java_method (method)
1322      tree method;
1323 {
1324   int jerr = 0;
1325   tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
1326   tree ret_type = TREE_TYPE (TREE_TYPE (method));
1327   if (! acceptable_java_type (ret_type))
1328     {
1329       cp_error ("Java method '%D' has non-Java return type `%T'",
1330                 method, ret_type);
1331       jerr++;
1332     }
1333   for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
1334     {
1335       tree type = TREE_VALUE (arg_types);
1336       if (! acceptable_java_type (type))
1337         {
1338           cp_error ("Java method '%D' has non-Java parameter type `%T'",
1339                     method, type);
1340           jerr++;
1341         }
1342     }
1343   return jerr ? 0 : 1;
1344 }
1345
1346 /* Sanity check: report error if this function FUNCTION is not
1347    really a member of the class (CTYPE) it is supposed to belong to.
1348    CNAME is the same here as it is for grokclassfn above.  */
1349
1350 tree
1351 check_classfn (ctype, function)
1352      tree ctype, function;
1353 {
1354   tree fn_name = DECL_NAME (function);
1355   tree fndecl, fndecls;
1356   tree method_vec = CLASSTYPE_METHOD_VEC (complete_type (ctype));
1357   tree *methods = 0;
1358   tree *end = 0;
1359   
1360   if (DECL_USE_TEMPLATE (function)
1361       && !(TREE_CODE (function) == TEMPLATE_DECL
1362            && DECL_TEMPLATE_SPECIALIZATION (function))
1363       && is_member_template (DECL_TI_TEMPLATE (function)))
1364     /* Since this is a specialization of a member template,
1365        we're not going to find the declaration in the class.
1366        For example, in:
1367        
1368          struct S { template <typename T> void f(T); };
1369          template <> void S::f(int);
1370        
1371        we're not going to find `S::f(int)', but there's no
1372        reason we should, either.  We let our callers know we didn't
1373        find the method, but we don't complain.  */
1374     return NULL_TREE;
1375       
1376   if (method_vec != 0)
1377     {
1378       methods = &TREE_VEC_ELT (method_vec, 0);
1379       end = TREE_VEC_END (method_vec);
1380
1381       /* First suss out ctors and dtors.  */
1382       if (*methods && fn_name == DECL_NAME (OVL_CURRENT (*methods))
1383           && DECL_CONSTRUCTOR_P (function))
1384         goto got_it;
1385       if (*++methods && fn_name == DECL_NAME (OVL_CURRENT (*methods))
1386           && DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (function)))
1387         goto got_it;
1388
1389       while (++methods != end && *methods)
1390         {
1391           fndecl = *methods;
1392           if (fn_name == DECL_NAME (OVL_CURRENT (*methods)))
1393             {
1394             got_it:
1395               for (fndecls = *methods; fndecls != NULL_TREE;
1396                    fndecls = OVL_NEXT (fndecls))
1397                 {
1398                   fndecl = OVL_CURRENT (fndecls);
1399                   /* The DECL_ASSEMBLER_NAME for a TEMPLATE_DECL, or
1400                      for a for member function of a template class, is
1401                      not mangled, so the check below does not work
1402                      correctly in that case.  Since mangled destructor
1403                      names do not include the type of the arguments,
1404                      we can't use this short-cut for them, either.
1405                      (It's not legal to declare arguments for a
1406                      destructor, but some people try.)  */
1407                   if (!DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (function))
1408                       && (DECL_ASSEMBLER_NAME (function)
1409                           != DECL_NAME (function))
1410                       && (DECL_ASSEMBLER_NAME (fndecl)
1411                           != DECL_NAME (fndecl))
1412                       && (DECL_ASSEMBLER_NAME (function) 
1413                           == DECL_ASSEMBLER_NAME (fndecl)))
1414                     return fndecl;
1415
1416                   /* We cannot simply call decls_match because this
1417                      doesn't work for static member functions that are 
1418                      pretending to be methods, and because the name
1419                      may have been changed by asm("new_name").  */ 
1420                   if (DECL_NAME (function) == DECL_NAME (fndecl))
1421                     {
1422                       tree p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
1423                       tree p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1424
1425                       /* Get rid of the this parameter on functions that become
1426                          static.  */
1427                       if (DECL_STATIC_FUNCTION_P (fndecl)
1428                           && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
1429                         p1 = TREE_CHAIN (p1);
1430
1431                       if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
1432                                        TREE_TYPE (TREE_TYPE (fndecl)))
1433                           && compparms (p1, p2)
1434                           && (DECL_TEMPLATE_SPECIALIZATION (function)
1435                               == DECL_TEMPLATE_SPECIALIZATION (fndecl))
1436                           && (!DECL_TEMPLATE_SPECIALIZATION (function)
1437                               || (DECL_TI_TEMPLATE (function) 
1438                                   == DECL_TI_TEMPLATE (fndecl))))
1439                         return fndecl;
1440                     }
1441                 }
1442               break;            /* loser */
1443             }
1444         }
1445     }
1446
1447   if (methods != end && *methods)
1448     {
1449       tree fndecl = *methods;
1450       cp_error ("prototype for `%#D' does not match any in class `%T'",
1451                 function, ctype);
1452       cp_error_at ("candidate%s: %+#D", OVL_NEXT (fndecl) ? "s are" : " is",
1453                    OVL_CURRENT (fndecl));
1454       while (fndecl = OVL_NEXT (fndecl), fndecl)
1455         cp_error_at ("                %#D", OVL_CURRENT(fndecl));
1456     }
1457   else
1458     {
1459       methods = 0;
1460       if (!COMPLETE_TYPE_P (ctype))
1461         incomplete_type_error (function, ctype);
1462       else
1463         cp_error ("no `%#D' member function declared in class `%T'",
1464                   function, ctype);
1465     }
1466
1467   /* If we did not find the method in the class, add it to avoid
1468      spurious errors (unless the CTYPE is not yet defined, in which
1469      case we'll only confuse ourselves when the function is declared
1470      properly within the class.  */
1471   if (COMPLETE_TYPE_P (ctype))
1472     add_method (ctype, methods, function);
1473   return NULL_TREE;
1474 }
1475
1476 /* We have just processed the DECL, which is a static data member.
1477    Its initializer, if present, is INIT.  The ASMSPEC_TREE, if
1478    present, is the assembly-language name for the data member.
1479    FLAGS is as for cp_finish_decl.  */
1480
1481 void
1482 finish_static_data_member_decl (decl, init, asmspec_tree, flags)
1483      tree decl;
1484      tree init;
1485      tree asmspec_tree;
1486      int flags;
1487 {
1488   const char *asmspec = 0;
1489
1490   if (asmspec_tree)
1491     asmspec = TREE_STRING_POINTER (asmspec_tree);
1492
1493   my_friendly_assert (TREE_PUBLIC (decl), 0);
1494
1495   /* We cannot call pushdecl here, because that would fill in the
1496      decl of our TREE_CHAIN.  Instead, we modify cp_finish_decl to do
1497      the right thing, namely, to put this decl out straight away.  */
1498   /* current_class_type can be NULL_TREE in case of error.  */
1499   if (!asmspec && current_class_type)
1500     {
1501       DECL_INITIAL (decl) = error_mark_node;
1502       DECL_ASSEMBLER_NAME (decl)
1503         = build_static_name (current_class_type, DECL_NAME (decl));
1504     }
1505   if (! processing_template_decl)
1506     {
1507       if (!pending_statics)
1508         VARRAY_TREE_INIT (pending_statics, 32, "pending_statics");
1509       VARRAY_PUSH_TREE (pending_statics, decl);
1510     }
1511
1512   /* Static consts need not be initialized in the class definition.  */
1513   if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
1514     {
1515       static int explanation = 0;
1516           
1517       error ("initializer invalid for static member with constructor");
1518       if (explanation++ == 0)
1519         error ("(you really want to initialize it separately)");
1520       init = 0;
1521     }
1522   /* Force the compiler to know when an uninitialized static const
1523      member is being used.  */
1524   if (CP_TYPE_CONST_P (TREE_TYPE (decl)) && init == 0)
1525     TREE_USED (decl) = 1;
1526   DECL_INITIAL (decl) = init;
1527   DECL_IN_AGGR_P (decl) = 1;
1528   DECL_CONTEXT (decl) = current_class_type;
1529
1530   cp_finish_decl (decl, init, asmspec_tree, flags);
1531 }
1532
1533 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
1534    of a structure component, returning a FIELD_DECL node.
1535    QUALS is a list of type qualifiers for this decl (such as for declaring
1536    const member functions).
1537
1538    This is done during the parsing of the struct declaration.
1539    The FIELD_DECL nodes are chained together and the lot of them
1540    are ultimately passed to `build_struct' to make the RECORD_TYPE node.
1541
1542    C++:
1543
1544    If class A defines that certain functions in class B are friends, then
1545    the way I have set things up, it is B who is interested in permission
1546    granted by A.  However, it is in A's context that these declarations
1547    are parsed.  By returning a void_type_node, class A does not attempt
1548    to incorporate the declarations of the friends within its structure.
1549
1550    DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
1551    CHANGES TO CODE IN `start_method'.  */
1552
1553 tree
1554 grokfield (declarator, declspecs, init, asmspec_tree, attrlist)
1555      tree declarator, declspecs, init, asmspec_tree, attrlist;
1556 {
1557   register tree value;
1558   const char *asmspec = 0;
1559   int flags = LOOKUP_ONLYCONVERTING;
1560
1561   /* Convert () initializers to = initializers.  */
1562   if (init == NULL_TREE && declarator != NULL_TREE
1563       && TREE_CODE (declarator) == CALL_EXPR
1564       && TREE_OPERAND (declarator, 0)
1565       && (TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE
1566           || TREE_CODE (TREE_OPERAND (declarator, 0)) == SCOPE_REF)
1567       && parmlist_is_exprlist (CALL_DECLARATOR_PARMS (declarator)))
1568     {
1569       init = TREE_OPERAND (declarator, 1);
1570       declarator = TREE_OPERAND (declarator, 0);
1571       flags = 0;
1572     }
1573
1574   if (declspecs == NULL_TREE
1575       && TREE_CODE (declarator) == SCOPE_REF
1576       && TREE_CODE (TREE_OPERAND (declarator, 1)) == IDENTIFIER_NODE)
1577     {
1578       /* Access declaration */
1579       if (! IS_AGGR_TYPE_CODE (TREE_CODE (TREE_OPERAND (declarator, 0))))
1580         ;
1581       else if (TREE_COMPLEXITY (declarator) == current_class_depth)
1582         pop_nested_class ();
1583       return do_class_using_decl (declarator);
1584     }
1585
1586   if (init
1587       && TREE_CODE (init) == TREE_LIST
1588       && TREE_VALUE (init) == error_mark_node
1589       && TREE_CHAIN (init) == NULL_TREE)
1590     init = NULL_TREE;
1591
1592   value = grokdeclarator (declarator, declspecs, FIELD, init != 0, attrlist);
1593   if (! value || value == error_mark_node)
1594     /* friend or constructor went bad.  */
1595     return value;
1596   if (TREE_TYPE (value) == error_mark_node)
1597     return error_mark_node;  
1598
1599   /* Pass friendly classes back.  */
1600   if (TREE_CODE (value) == VOID_TYPE)
1601     return void_type_node;
1602
1603   if (DECL_NAME (value) != NULL_TREE
1604       && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
1605       && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
1606     cp_error ("member `%D' conflicts with virtual function table field name",
1607               value);
1608
1609   /* Stash away type declarations.  */
1610   if (TREE_CODE (value) == TYPE_DECL)
1611     {
1612       DECL_NONLOCAL (value) = 1;
1613       DECL_CONTEXT (value) = current_class_type;
1614
1615       /* Now that we've updated the context, we need to remangle the
1616          name for this TYPE_DECL.  */
1617       DECL_ASSEMBLER_NAME (value) = DECL_NAME (value);
1618       if (!uses_template_parms (value))
1619         DECL_ASSEMBLER_NAME (value) =
1620           get_identifier (build_overload_name (TREE_TYPE (value), 1, 1));
1621
1622       if (processing_template_decl)
1623         value = push_template_decl (value);
1624
1625       return value;
1626     }
1627
1628   if (DECL_IN_AGGR_P (value))
1629     {
1630       cp_error ("`%D' is already defined in `%T'", value,
1631                 DECL_CONTEXT (value));
1632       return void_type_node;
1633     }
1634
1635   if (asmspec_tree)
1636     asmspec = TREE_STRING_POINTER (asmspec_tree);
1637
1638   if (init)
1639     {
1640       if (TREE_CODE (value) == FUNCTION_DECL)
1641         {
1642           grok_function_init (value, init);
1643           init = NULL_TREE;
1644         }
1645       else if (pedantic && TREE_CODE (value) != VAR_DECL)
1646         /* Already complained in grokdeclarator.  */
1647         init = NULL_TREE;
1648       else
1649         {
1650           /* We allow initializers to become parameters to base
1651              initializers.  */
1652           if (TREE_CODE (init) == TREE_LIST)
1653             {
1654               if (TREE_CHAIN (init) == NULL_TREE)
1655                 init = TREE_VALUE (init);
1656               else
1657                 init = digest_init (TREE_TYPE (value), init, (tree *)0);
1658             }
1659           
1660           if (TREE_CODE (init) == CONST_DECL)
1661             init = DECL_INITIAL (init);
1662           else if (TREE_READONLY_DECL_P (init))
1663             init = decl_constant_value (init);
1664           else if (TREE_CODE (init) == CONSTRUCTOR)
1665             init = digest_init (TREE_TYPE (value), init, (tree *)0);
1666           if (init == error_mark_node)
1667             /* We must make this look different than `error_mark_node'
1668                because `decl_const_value' would mis-interpret it
1669                as only meaning that this VAR_DECL is defined.  */
1670             init = build1 (NOP_EXPR, TREE_TYPE (value), init);
1671           else if (processing_template_decl)
1672             ;
1673           else if (! TREE_CONSTANT (init))
1674             {
1675               /* We can allow references to things that are effectively
1676                  static, since references are initialized with the address.  */
1677               if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
1678                   || (TREE_STATIC (init) == 0
1679                       && (TREE_CODE_CLASS (TREE_CODE (init)) != 'd'
1680                           || DECL_EXTERNAL (init) == 0)))
1681                 {
1682                   error ("field initializer is not constant");
1683                   init = error_mark_node;
1684                 }
1685             }
1686         }
1687     }
1688
1689   if (processing_template_decl && ! current_function_decl
1690       && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
1691     value = push_template_decl (value);
1692
1693   if (attrlist)
1694     cplus_decl_attributes (value, TREE_PURPOSE (attrlist),
1695                            TREE_VALUE (attrlist));
1696
1697   if (TREE_CODE (value) == VAR_DECL)
1698     {
1699       finish_static_data_member_decl (value, init, asmspec_tree, 
1700                                       flags);
1701       return value;
1702     }
1703   if (TREE_CODE (value) == FIELD_DECL)
1704     {
1705       if (asmspec)
1706         {
1707           /* This must override the asm specifier which was placed
1708              by grokclassfn.  Lay this out fresh.  */
1709           DECL_RTL (value) = NULL_RTX;
1710           DECL_ASSEMBLER_NAME (value) = get_identifier (asmspec);
1711         }
1712       if (DECL_INITIAL (value) == error_mark_node)
1713         init = error_mark_node;
1714       cp_finish_decl (value, init, asmspec_tree, flags);
1715       DECL_INITIAL (value) = init;
1716       DECL_IN_AGGR_P (value) = 1;
1717       return value;
1718     }
1719   if (TREE_CODE (value) == FUNCTION_DECL)
1720     {
1721       if (asmspec)
1722         {
1723           /* This must override the asm specifier which was placed
1724              by grokclassfn.  Lay this out fresh.  */
1725           DECL_RTL (value) = NULL_RTX;
1726           DECL_ASSEMBLER_NAME (value) = get_identifier (asmspec);
1727         }
1728       cp_finish_decl (value, init, asmspec_tree, flags);
1729
1730       /* Pass friends back this way.  */
1731       if (DECL_FRIEND_P (value))
1732         return void_type_node;
1733
1734       DECL_IN_AGGR_P (value) = 1;
1735       return value;
1736     }
1737   my_friendly_abort (21);
1738   /* NOTREACHED */
1739   return NULL_TREE;
1740 }
1741
1742 /* Like `grokfield', but for bitfields.
1743    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.  */
1744
1745 tree
1746 grokbitfield (declarator, declspecs, width)
1747      tree declarator, declspecs, width;
1748 {
1749   register tree value = grokdeclarator (declarator, declspecs, BITFIELD,
1750                                         0, NULL_TREE);
1751
1752   if (! value) return NULL_TREE; /* friends went bad.  */
1753
1754   /* Pass friendly classes back.  */
1755   if (TREE_CODE (value) == VOID_TYPE)
1756     return void_type_node;
1757
1758   if (TREE_CODE (value) == TYPE_DECL)
1759     {
1760       cp_error ("cannot declare `%D' to be a bitfield type", value);
1761       return NULL_TREE;
1762     }
1763
1764   /* Usually, finish_struct_1 catches bitifields with invalid types.
1765      But, in the case of bitfields with function type, we confuse
1766      ourselves into thinking they are member functions, so we must
1767      check here.  */
1768   if (TREE_CODE (value) == FUNCTION_DECL)
1769     {
1770       cp_error ("cannot declare bitfield `%D' with funcion type",
1771                 DECL_NAME (value));
1772       return NULL_TREE;
1773     }
1774
1775   if (DECL_IN_AGGR_P (value))
1776     {
1777       cp_error ("`%D' is already defined in the class %T", value,
1778                   DECL_CONTEXT (value));
1779       return void_type_node;
1780     }
1781
1782   GNU_xref_member (current_class_name, value);
1783
1784   if (TREE_STATIC (value))
1785     {
1786       cp_error ("static member `%D' cannot be a bitfield", value);
1787       return NULL_TREE;
1788     }
1789   cp_finish_decl (value, NULL_TREE, NULL_TREE, 0);
1790
1791   if (width != error_mark_node)
1792     {
1793       constant_expression_warning (width);
1794       DECL_INITIAL (value) = width;
1795       SET_DECL_C_BIT_FIELD (value);
1796     }
1797
1798   DECL_IN_AGGR_P (value) = 1;
1799   return value;
1800 }
1801
1802 tree
1803 grokoptypename (declspecs, declarator)
1804      tree declspecs, declarator;
1805 {
1806   tree t = grokdeclarator (declarator, declspecs, TYPENAME, 0, NULL_TREE);
1807   return build_typename_overload (t);
1808 }
1809
1810 /* When a function is declared with an initializer,
1811    do the right thing.  Currently, there are two possibilities:
1812
1813    class B
1814    {
1815     public:
1816      // initialization possibility #1.
1817      virtual void f () = 0;
1818      int g ();
1819    };
1820    
1821    class D1 : B
1822    {
1823     public:
1824      int d1;
1825      // error, no f ();
1826    };
1827    
1828    class D2 : B
1829    {
1830     public:
1831      int d2;
1832      void f ();
1833    };
1834    
1835    class D3 : B
1836    {
1837     public:
1838      int d3;
1839      // initialization possibility #2
1840      void f () = B::f;
1841    };
1842
1843 */
1844
1845 int
1846 copy_assignment_arg_p (parmtype, virtualp)
1847      tree parmtype;
1848      int virtualp ATTRIBUTE_UNUSED;
1849 {
1850   if (current_class_type == NULL_TREE)
1851     return 0;
1852
1853   if (TREE_CODE (parmtype) == REFERENCE_TYPE)
1854     parmtype = TREE_TYPE (parmtype);
1855
1856   if ((TYPE_MAIN_VARIANT (parmtype) == current_class_type)
1857 #if 0
1858       /* Non-standard hack to support old Booch components.  */
1859       || (! virtualp && DERIVED_FROM_P (parmtype, current_class_type))
1860 #endif
1861       )
1862     return 1;
1863
1864   return 0;
1865 }
1866
1867 static void
1868 grok_function_init (decl, init)
1869      tree decl;
1870      tree init;
1871 {
1872   /* An initializer for a function tells how this function should
1873      be inherited.  */
1874   tree type = TREE_TYPE (decl);
1875
1876   if (TREE_CODE (type) == FUNCTION_TYPE)
1877     cp_error ("initializer specified for non-member function `%D'", decl);
1878 #if 0
1879   /* We'll check for this in finish_struct_1.  */
1880   else if (DECL_VINDEX (decl) == NULL_TREE)
1881     cp_error ("initializer specified for non-virtual member function `%D'", decl);
1882 #endif
1883   else if (integer_zerop (init))
1884     {
1885 #if 0
1886       /* Mark this function as being "defined".  */
1887       DECL_INITIAL (decl) = error_mark_node;
1888       /* pure virtual destructors must be defined.  */
1889       /* pure virtual needs to be defined (as abort) only when put in 
1890          vtbl. For wellformed call, it should be itself. pr4737 */
1891       if (!DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (decl)))
1892         {
1893           /* Give this node rtl from `abort'.  */
1894           DECL_RTL (decl) = DECL_RTL (abort_fndecl);
1895         }
1896 #endif
1897       DECL_PURE_VIRTUAL_P (decl) = 1;
1898       if (DECL_NAME (decl) == ansi_opname [(int) MODIFY_EXPR])
1899         {
1900           tree parmtype
1901             = TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl))));
1902
1903           if (copy_assignment_arg_p (parmtype, 1))
1904             TYPE_HAS_ABSTRACT_ASSIGN_REF (current_class_type) = 1;
1905         }
1906     }
1907   else
1908     cp_error ("invalid initializer for virtual method `%D'", decl);
1909 }
1910 \f
1911 void
1912 cplus_decl_attributes (decl, attributes, prefix_attributes)
1913      tree decl, attributes, prefix_attributes;
1914 {
1915   if (decl == NULL_TREE || decl == void_type_node)
1916     return;
1917
1918   if (TREE_CODE (decl) == TEMPLATE_DECL)
1919     decl = DECL_TEMPLATE_RESULT (decl);
1920
1921   decl_attributes (decl, attributes, prefix_attributes);
1922
1923   if (TREE_CODE (decl) == TYPE_DECL)
1924     SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (decl), TREE_TYPE (decl));
1925 }
1926 \f
1927 /* CONSTRUCTOR_NAME:
1928    Return the name for the constructor (or destructor) for the
1929    specified class.  Argument can be RECORD_TYPE, TYPE_DECL, or
1930    IDENTIFIER_NODE.  When given a template, this routine doesn't
1931    lose the specialization.  */
1932
1933 tree
1934 constructor_name_full (thing)
1935      tree thing;
1936 {
1937   if (TREE_CODE (thing) == TEMPLATE_TYPE_PARM
1938       || TREE_CODE (thing) == TEMPLATE_TEMPLATE_PARM
1939       || TREE_CODE (thing) == TYPENAME_TYPE)
1940     thing = TYPE_NAME (thing);
1941   else if (IS_AGGR_TYPE_CODE (TREE_CODE (thing)))
1942     {
1943       if (TYPE_WAS_ANONYMOUS (thing) && TYPE_HAS_CONSTRUCTOR (thing))
1944         thing = DECL_NAME (OVL_CURRENT (TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (thing), 0)));
1945       else
1946         thing = TYPE_NAME (thing);
1947     }
1948   if (TREE_CODE (thing) == TYPE_DECL
1949       || (TREE_CODE (thing) == TEMPLATE_DECL
1950           && TREE_CODE (DECL_TEMPLATE_RESULT (thing)) == TYPE_DECL))
1951     thing = DECL_NAME (thing);
1952   my_friendly_assert (TREE_CODE (thing) == IDENTIFIER_NODE, 197);
1953   return thing;
1954 }
1955
1956 /* CONSTRUCTOR_NAME:
1957    Return the name for the constructor (or destructor) for the
1958    specified class.  Argument can be RECORD_TYPE, TYPE_DECL, or
1959    IDENTIFIER_NODE.  When given a template, return the plain
1960    unspecialized name.  */
1961
1962 tree
1963 constructor_name (thing)
1964      tree thing;
1965 {
1966   tree t;
1967   thing = constructor_name_full (thing);
1968   t = IDENTIFIER_TEMPLATE (thing);
1969   if (!t)
1970     return thing;
1971   return t;
1972 }
1973 \f
1974 /* Record the existence of an addressable inline function.  */
1975
1976 void
1977 mark_inline_for_output (decl)
1978      tree decl;
1979 {
1980   decl = DECL_MAIN_VARIANT (decl);
1981   if (DECL_SAVED_INLINE (decl))
1982     return;
1983   DECL_SAVED_INLINE (decl) = 1;
1984   if (!saved_inlines)
1985     VARRAY_TREE_INIT (saved_inlines, 32, "saved_inlines");
1986
1987   VARRAY_PUSH_TREE (saved_inlines, decl);
1988 }
1989
1990 /* Hand off a unique name which can be used for variable we don't really
1991    want to know about anyway, for example, the anonymous variables which
1992    are needed to make references work.  Declare this thing so we can use it.
1993    The variable created will be of type TYPE.
1994
1995    STATICP is nonzero if this variable should be static.  */
1996
1997 tree
1998 get_temp_name (type, staticp)
1999      tree type;
2000      int staticp;
2001 {
2002   char buf[sizeof (AUTO_TEMP_FORMAT) + 20];
2003   tree decl;
2004   int toplev = toplevel_bindings_p ();
2005
2006   if (toplev || staticp)
2007     {
2008       sprintf (buf, AUTO_TEMP_FORMAT, global_temp_name_counter++);
2009       decl = pushdecl_top_level (build_decl (VAR_DECL, get_identifier (buf), type));
2010     }
2011   else
2012     {
2013       sprintf (buf, AUTO_TEMP_FORMAT, temp_name_counter++);
2014       decl = pushdecl (build_decl (VAR_DECL, get_identifier (buf), type));
2015     }
2016   TREE_USED (decl) = 1;
2017   TREE_STATIC (decl) = staticp;
2018   DECL_ARTIFICIAL (decl) = 1;
2019
2020   /* If this is a local variable, then lay out its rtl now.
2021      Otherwise, callers of this function are responsible for dealing
2022      with this variable's rtl.  */
2023   if (! toplev)
2024     {
2025       expand_decl (decl);
2026       my_friendly_assert (DECL_INITIAL (decl) == NULL_TREE,
2027                           19990826);
2028     }
2029
2030   return decl;
2031 }
2032
2033 /* Hunts through the global anonymous union ANON_DECL, building
2034    appropriate VAR_DECLs.  Stores cleanups on the list of ELEMS, and
2035    returns a VAR_DECL whose size is the same as the size of the
2036    ANON_DECL, if one is available.  */
2037
2038 static tree 
2039 build_anon_union_vars (anon_decl, elems, static_p, external_p)
2040      tree anon_decl;
2041      tree* elems;
2042      int static_p;
2043      int external_p;
2044 {
2045   tree type = TREE_TYPE (anon_decl);
2046   tree main_decl = NULL_TREE;
2047   tree field;
2048
2049   /* Rather than write the code to handle the non-union case,
2050      just give an error.  */
2051   if (TREE_CODE (type) != UNION_TYPE)
2052     error ("anonymous struct not inside named type");
2053
2054   for (field = TYPE_FIELDS (type); 
2055        field != NULL_TREE; 
2056        field = TREE_CHAIN (field))
2057     {
2058       tree decl;
2059
2060       if (DECL_ARTIFICIAL (field))
2061         continue;
2062       if (TREE_CODE (field) != FIELD_DECL)
2063         {
2064           cp_pedwarn_at ("`%#D' invalid; an anonymous union can only have non-static data members",
2065                          field);
2066           continue;
2067         }
2068
2069       if (TREE_PRIVATE (field))
2070         cp_pedwarn_at ("private member `%#D' in anonymous union", field);
2071       else if (TREE_PROTECTED (field))
2072         cp_pedwarn_at ("protected member `%#D' in anonymous union", field);
2073
2074       if (DECL_NAME (field) == NULL_TREE
2075           && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2076         {
2077           decl = build_anon_union_vars (field, elems, static_p, external_p);
2078           if (!decl)
2079             continue;
2080         }
2081       else if (DECL_NAME (field) == NULL_TREE)
2082         continue;
2083       else
2084         {
2085           decl = build_decl (VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
2086           /* tell `pushdecl' that this is not tentative.  */
2087           DECL_INITIAL (decl) = error_mark_node;
2088           TREE_PUBLIC (decl) = 0;
2089           TREE_STATIC (decl) = static_p;
2090           DECL_EXTERNAL (decl) = external_p;
2091           decl = pushdecl (decl);
2092           DECL_INITIAL (decl) = NULL_TREE;
2093         }
2094
2095       /* Only write out one anon union element--choose the one that
2096          can hold them all.  */
2097       if (main_decl == NULL_TREE
2098           && simple_cst_equal (DECL_SIZE (decl),
2099                                DECL_SIZE (anon_decl)) == 1)
2100         main_decl = decl;
2101       else 
2102         /* ??? This causes there to be no debug info written out
2103            about this decl.  */
2104         TREE_ASM_WRITTEN (decl) = 1;
2105       
2106       if (DECL_NAME (field) == NULL_TREE
2107           && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2108         /* The remainder of the processing was already done in the
2109            recursive call.  */
2110         continue;
2111
2112       /* If there's a cleanup to do, it belongs in the
2113          TREE_PURPOSE of the following TREE_LIST.  */
2114       *elems = tree_cons (NULL_TREE, decl, *elems);
2115       TREE_TYPE (*elems) = type;
2116     }
2117   
2118   return main_decl;
2119 }
2120
2121 /* Finish off the processing of a UNION_TYPE structure.
2122    If there are static members, then all members are
2123    static, and must be laid out together.  If the
2124    union is an anonymous union, we arrange for that
2125    as well.  PUBLIC_P is nonzero if this union is
2126    not declared static.  */
2127
2128 void
2129 finish_anon_union (anon_union_decl)
2130      tree anon_union_decl;
2131 {
2132   tree type = TREE_TYPE (anon_union_decl);
2133   tree main_decl;
2134   int public_p = TREE_PUBLIC (anon_union_decl);
2135   int static_p = TREE_STATIC (anon_union_decl);
2136   int external_p = DECL_EXTERNAL (anon_union_decl);
2137
2138   if (TYPE_FIELDS (type) == NULL_TREE)
2139     return;
2140
2141   if (public_p)
2142     {
2143       error ("global anonymous unions must be declared static");
2144       return;
2145     }
2146
2147   main_decl = build_anon_union_vars (anon_union_decl,
2148                                      &DECL_ANON_UNION_ELEMS (anon_union_decl),
2149                                      static_p, external_p);
2150
2151   if (main_decl == NULL_TREE)
2152     {
2153       warning ("anonymous union with no members");
2154       return;
2155     }
2156
2157   if (static_p)
2158     {
2159       make_decl_rtl (main_decl, 0, toplevel_bindings_p ());
2160       DECL_RTL (anon_union_decl) = DECL_RTL (main_decl);
2161       expand_anon_union_decl (anon_union_decl, 
2162                               NULL_TREE,
2163                               DECL_ANON_UNION_ELEMS (anon_union_decl));
2164     }
2165   else
2166     add_decl_stmt (anon_union_decl);
2167 }
2168
2169 /* Finish processing a builtin type TYPE.  It's name is NAME,
2170    its fields are in the array FIELDS.  LEN is the number of elements
2171    in FIELDS minus one, or put another way, it is the maximum subscript
2172    used in FIELDS.
2173
2174    It is given the same alignment as ALIGN_TYPE.  */
2175
2176 void
2177 finish_builtin_type (type, name, fields, len, align_type)
2178      tree type;
2179      const char *name;
2180      tree fields[];
2181      int len;
2182      tree align_type;
2183 {
2184   register int i;
2185
2186   TYPE_FIELDS (type) = fields[0];
2187   for (i = 0; i < len; i++)
2188     {
2189       layout_type (TREE_TYPE (fields[i]));
2190       DECL_FIELD_CONTEXT (fields[i]) = type;
2191       TREE_CHAIN (fields[i]) = fields[i+1];
2192     }
2193   DECL_FIELD_CONTEXT (fields[i]) = type;
2194   TYPE_ALIGN (type) = TYPE_ALIGN (align_type);
2195   layout_type (type);
2196 #if 0 /* not yet, should get fixed properly later */
2197   TYPE_NAME (type) = make_type_decl (get_identifier (name), type);
2198 #else
2199   TYPE_NAME (type) = build_decl (TYPE_DECL, get_identifier (name), type);
2200 #endif
2201   TYPE_STUB_DECL (type) = TYPE_NAME (type);
2202   layout_decl (TYPE_NAME (type), 0);
2203 }
2204 \f
2205 /* Auxiliary functions to make type signatures for
2206    `operator new' and `operator delete' correspond to
2207    what compiler will be expecting.  */
2208
2209 tree
2210 coerce_new_type (type)
2211      tree type;
2212 {
2213   int e1 = 0, e2 = 0;
2214
2215   if (TREE_CODE (type) == METHOD_TYPE)
2216     type = build_function_type (TREE_TYPE (type), TREE_CHAIN (TYPE_ARG_TYPES (type)));
2217   if (! same_type_p (TREE_TYPE (type), ptr_type_node))
2218     e1 = 1, error ("`operator new' must return type `void *'");
2219
2220   /* Technically the type must be `size_t', but we may not know
2221      what that is.  */
2222   if (TYPE_ARG_TYPES (type) == NULL_TREE)
2223     e1 = 1, error ("`operator new' takes type `size_t' parameter");
2224   else if (! same_type_p (TREE_VALUE (TYPE_ARG_TYPES (type)), sizetype))
2225     e2 = 1, error ("`operator new' takes type `size_t' as first parameter");
2226   if (e2)
2227     type = build_function_type (ptr_type_node, tree_cons (NULL_TREE, sizetype, TREE_CHAIN (TYPE_ARG_TYPES (type))));
2228   else if (e1)
2229     type = build_function_type (ptr_type_node, TYPE_ARG_TYPES (type));
2230   return type;
2231 }
2232
2233 tree
2234 coerce_delete_type (type)
2235      tree type;
2236 {
2237   int e1 = 0, e2 = 0;
2238 #if 0
2239   e3 = 0;
2240 #endif
2241   tree arg_types = TYPE_ARG_TYPES (type);
2242
2243   if (TREE_CODE (type) == METHOD_TYPE)
2244     {
2245       type = build_function_type (TREE_TYPE (type), TREE_CHAIN (arg_types));
2246       arg_types = TREE_CHAIN (arg_types);
2247     }
2248
2249   if (TREE_TYPE (type) != void_type_node)
2250     e1 = 1, error ("`operator delete' must return type `void'");
2251
2252   if (arg_types == NULL_TREE
2253       || ! same_type_p (TREE_VALUE (arg_types), ptr_type_node))
2254     e2 = 1, error ("`operator delete' takes type `void *' as first parameter");
2255
2256 #if 0
2257   if (arg_types
2258       && TREE_CHAIN (arg_types)
2259       && TREE_CHAIN (arg_types) != void_list_node)
2260     {
2261       /* Again, technically this argument must be `size_t', but again
2262          we may not know what that is.  */
2263       tree t2 = TREE_VALUE (TREE_CHAIN (arg_types));
2264       if (! same_type_p (t2, sizetype))
2265         e3 = 1, error ("second argument to `operator delete' must be of type `size_t'");
2266       else if (TREE_CHAIN (TREE_CHAIN (arg_types)) != void_list_node)
2267         {
2268           e3 = 1;
2269           if (TREE_CHAIN (TREE_CHAIN (arg_types)))
2270             error ("too many arguments in declaration of `operator delete'");
2271           else
2272             error ("`...' invalid in specification of `operator delete'");
2273         }
2274     }
2275
2276   if (e3)
2277     arg_types = tree_cons (NULL_TREE, ptr_type_node,
2278                            build_tree_list (NULL_TREE, sizetype));
2279   else if (e3 |= e2)
2280     {
2281       if (arg_types == NULL_TREE)
2282         arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
2283       else
2284         arg_types = tree_cons (NULL_TREE, ptr_type_node, TREE_CHAIN (arg_types));
2285     }
2286   else e3 |= e1;
2287 #endif
2288
2289   if (e2)
2290     arg_types = tree_cons (NULL_TREE, ptr_type_node,
2291                            arg_types ? TREE_CHAIN (arg_types): NULL_TREE);
2292   if (e2 || e1)
2293     type = build_function_type (void_type_node, arg_types);
2294
2295   return type;
2296 }
2297 \f
2298 static void
2299 mark_vtable_entries (decl)
2300      tree decl;
2301 {
2302   tree entries = CONSTRUCTOR_ELTS (DECL_INITIAL (decl));
2303
2304   for (; entries; entries = TREE_CHAIN (entries))
2305     {
2306       tree fnaddr;
2307       tree fn;
2308
2309       fnaddr = (flag_vtable_thunks ? TREE_VALUE (entries) 
2310                 : FNADDR_FROM_VTABLE_ENTRY (TREE_VALUE (entries)));
2311
2312       if (TREE_CODE (fnaddr) != ADDR_EXPR)
2313         /* This entry is an offset: a virtual base class offset, a
2314            virtual call offset, and RTTI offset, etc.  */
2315         continue;
2316
2317       fn = TREE_OPERAND (fnaddr, 0);
2318       TREE_ADDRESSABLE (fn) = 1;
2319       if (TREE_CODE (fn) == THUNK_DECL && DECL_EXTERNAL (fn))
2320         {
2321           DECL_EXTERNAL (fn) = 0;
2322           emit_thunk (fn);
2323         }
2324       mark_used (fn);
2325     }
2326 }
2327
2328 /* Set DECL up to have the closest approximation of "initialized common"
2329    linkage available.  */
2330
2331 void
2332 comdat_linkage (decl)
2333      tree decl;
2334 {
2335   if (flag_weak)
2336     make_decl_one_only (decl);
2337   else if (TREE_CODE (decl) == FUNCTION_DECL || DECL_VIRTUAL_P (decl))
2338     /* We can just emit functions and vtables statically; it doesn't really
2339        matter if we have multiple copies.  */
2340     TREE_PUBLIC (decl) = 0;
2341   else
2342     {
2343       /* Static data member template instantiations, however, cannot
2344          have multiple copies.  */
2345       if (DECL_INITIAL (decl) == 0
2346           || DECL_INITIAL (decl) == error_mark_node)
2347         DECL_COMMON (decl) = 1;
2348       else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
2349         {
2350           DECL_COMMON (decl) = 1;
2351           DECL_INITIAL (decl) = error_mark_node;
2352         }
2353       else
2354         {
2355           /* We can't do anything useful; leave vars for explicit
2356              instantiation.  */
2357           DECL_EXTERNAL (decl) = 1;
2358           DECL_NOT_REALLY_EXTERN (decl) = 0;
2359         }
2360     }
2361
2362   if (DECL_LANG_SPECIFIC (decl))
2363     DECL_COMDAT (decl) = 1;
2364 }
2365
2366 /* For win32 we also want to put explicit instantiations in
2367    linkonce sections, so that they will be merged with implicit
2368    instantiations; otherwise we get duplicate symbol errors.  */
2369
2370 void
2371 maybe_make_one_only (decl)
2372      tree decl;
2373 {
2374   /* We used to say that this was not necessary on targets that support weak
2375      symbols, because the implicit instantiations will defer to the explicit
2376      one.  However, that's not actually the case in SVR4; a strong definition
2377      after a weak one is an error.  Also, not making explicit
2378      instantiations one_only means that we can end up with two copies of
2379      some template instantiations. */
2380   if (! supports_one_only ())
2381     return;
2382
2383   /* We can't set DECL_COMDAT on functions, or finish_file will think
2384      we can get away with not emitting them if they aren't used.  We need
2385      to for variables so that cp_finish_decl will update their linkage,
2386      because their DECL_INITIAL may not have been set properly yet.  */
2387
2388   make_decl_one_only (decl);
2389
2390   if (TREE_CODE (decl) == VAR_DECL && DECL_LANG_SPECIFIC (decl))
2391     DECL_COMDAT (decl) = 1;
2392 }
2393
2394 /* Returns the virtual function with which the vtable for TYPE is
2395    emitted, or NULL_TREE if that heuristic is not applicable to TYPE.  */
2396
2397 static tree
2398 key_method (type)
2399      tree type;
2400 {
2401   tree method;
2402
2403   if (TYPE_FOR_JAVA (type)
2404       || CLASSTYPE_INTERFACE_KNOWN (type))
2405     return NULL_TREE;
2406
2407   for (method = TYPE_METHODS (type); method != NULL_TREE;
2408        method = TREE_CHAIN (method))
2409     if (DECL_VINDEX (method) != NULL_TREE
2410         && ! DECL_THIS_INLINE (method)
2411         && ! DECL_PURE_VIRTUAL_P (method))
2412       return method;
2413
2414   return NULL_TREE;
2415 }
2416
2417 /* Set TREE_PUBLIC and/or DECL_EXTERN on the vtable DECL,
2418    based on TYPE and other static flags.
2419
2420    Note that anything public is tagged TREE_PUBLIC, whether
2421    it's public in this file or in another one.  */
2422
2423 void
2424 import_export_vtable (decl, type, final)
2425      tree decl, type;
2426      int final;
2427 {
2428   if (DECL_INTERFACE_KNOWN (decl))
2429     return;
2430
2431   if (TYPE_FOR_JAVA (type))
2432     {
2433       TREE_PUBLIC (decl) = 1;
2434       DECL_EXTERNAL (decl) = 1;
2435       DECL_INTERFACE_KNOWN (decl) = 1;
2436     }
2437   else if (CLASSTYPE_INTERFACE_KNOWN (type))
2438     {
2439       TREE_PUBLIC (decl) = 1;
2440       DECL_EXTERNAL (decl) = ! CLASSTYPE_VTABLE_NEEDS_WRITING (type);
2441       DECL_INTERFACE_KNOWN (decl) = 1;
2442     }
2443   else
2444     {
2445       /* We can only wait to decide if we have real non-inline virtual
2446          functions in our class, or if we come from a template.  */
2447
2448       int found = (CLASSTYPE_TEMPLATE_INSTANTIATION (type)
2449                    || key_method (type));
2450
2451       if (final || ! found)
2452         {
2453           comdat_linkage (decl);
2454           DECL_EXTERNAL (decl) = 0;
2455         }
2456       else
2457         {
2458           TREE_PUBLIC (decl) = 1;
2459           DECL_EXTERNAL (decl) = 1;
2460         }
2461     }
2462 }
2463
2464 /* Determine whether or not we want to specifically import or export CTYPE,
2465    using various heuristics.  */
2466
2467 static void
2468 import_export_class (ctype)
2469      tree ctype;
2470 {
2471   /* -1 for imported, 1 for exported.  */
2472   int import_export = 0;
2473
2474   /* It only makes sense to call this function at EOF.  The reason is
2475      that this function looks at whether or not the first non-inline
2476      non-abstract virtual member function has been defined in this
2477      translation unit.  But, we can't possibly know that until we've
2478      seen the entire translation unit.  */
2479   my_friendly_assert (at_eof, 20000226);
2480
2481   if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2482     return;
2483
2484   /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma interface,
2485      we will have CLASSTYPE_INTERFACE_ONLY set but not
2486      CLASSTYPE_INTERFACE_KNOWN.  In that case, we don't want to use this
2487      heuristic because someone will supply a #pragma implementation
2488      elsewhere, and deducing it here would produce a conflict.  */
2489   if (CLASSTYPE_INTERFACE_ONLY (ctype))
2490     return;
2491
2492 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
2493   /* FIXME this should really use some sort of target-independent macro.  */
2494   if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
2495     import_export = -1;
2496   else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
2497     import_export = 1;
2498 #endif
2499
2500   /* If we got -fno-implicit-templates, we import template classes that
2501      weren't explicitly instantiated.  */
2502   if (import_export == 0
2503       && CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
2504       && ! flag_implicit_templates)
2505     import_export = -1;
2506
2507   /* Base our import/export status on that of the first non-inline,
2508      non-pure virtual function, if any.  */
2509   if (import_export == 0
2510       && TYPE_POLYMORPHIC_P (ctype)
2511       && ! CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2512     {
2513       tree method = key_method (ctype);
2514       if (method)
2515         import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
2516     }
2517
2518 #ifdef MULTIPLE_SYMBOL_SPACES
2519   if (import_export == -1)
2520     import_export = 0;
2521 #endif
2522
2523   if (import_export)
2524     {
2525       SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
2526       CLASSTYPE_VTABLE_NEEDS_WRITING (ctype) = (import_export > 0);
2527       CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
2528     }
2529 }
2530     
2531 /* We need to describe to the assembler the relationship between
2532    a vtable and the vtable of the parent class.  */
2533
2534 static void
2535 output_vtable_inherit (vars)
2536      tree vars;
2537 {
2538   tree parent;
2539   rtx op[2];
2540
2541   op[0] = XEXP (DECL_RTL (vars), 0);      /* strip the mem ref  */
2542
2543   parent = binfo_for_vtable (vars);
2544
2545   if (parent == TYPE_BINFO (DECL_CONTEXT (vars)))
2546     op[1] = const0_rtx;
2547   else if (parent)
2548     {
2549       parent = TYPE_BINFO_VTABLE (BINFO_TYPE (parent));
2550       op[1] = XEXP (DECL_RTL (parent), 0);  /* strip the mem ref  */
2551     }
2552   else
2553     my_friendly_abort (980826);
2554
2555   output_asm_insn (".vtable_inherit %c0, %c1", op);
2556 }
2557
2558 static int
2559 finish_vtable_vardecl (t, data)
2560      tree *t;
2561      void *data ATTRIBUTE_UNUSED;
2562 {
2563   tree vars = *t;
2564   tree ctype = DECL_CONTEXT (vars);
2565   import_export_class (ctype);
2566   import_export_vtable (vars, ctype, 1);
2567
2568   if (! DECL_EXTERNAL (vars)
2569       && DECL_NEEDED_P (vars)
2570       && ! TREE_ASM_WRITTEN (vars))
2571     {
2572       if (TREE_TYPE (vars) == void_type_node)
2573         /* It is a dummy vtable made by get_vtable_decl. Ignore it.  */
2574         return 0;
2575       
2576       /* Write it out.  */
2577       mark_vtable_entries (vars);
2578       if (TREE_TYPE (DECL_INITIAL (vars)) == 0)
2579         store_init_value (vars, DECL_INITIAL (vars));
2580
2581       if (write_symbols == DWARF_DEBUG || write_symbols == DWARF2_DEBUG)
2582         {
2583           /* Mark the VAR_DECL node representing the vtable itself as a
2584              "gratuitous" one, thereby forcing dwarfout.c to ignore it.
2585              It is rather important that such things be ignored because
2586              any effort to actually generate DWARF for them will run
2587              into trouble when/if we encounter code like:
2588
2589                 #pragma interface
2590                 struct S { virtual void member (); };
2591
2592               because the artificial declaration of the vtable itself (as
2593               manufactured by the g++ front end) will say that the vtable
2594               is a static member of `S' but only *after* the debug output
2595               for the definition of `S' has already been output.  This causes
2596               grief because the DWARF entry for the definition of the vtable
2597               will try to refer back to an earlier *declaration* of the
2598               vtable as a static member of `S' and there won't be one.
2599               We might be able to arrange to have the "vtable static member"
2600               attached to the member list for `S' before the debug info for
2601               `S' get written (which would solve the problem) but that would
2602               require more intrusive changes to the g++ front end.  */
2603
2604           DECL_IGNORED_P (vars) = 1;
2605         }
2606
2607       /* Always make vtables weak.  */
2608       if (flag_weak)
2609         comdat_linkage (vars);
2610
2611       rest_of_decl_compilation (vars, NULL_PTR, 1, 1);
2612
2613       if (flag_vtable_gc)
2614         output_vtable_inherit (vars);
2615
2616       /* Because we're only doing syntax-checking, we'll never end up
2617          actually marking the variable as written.  */
2618       if (flag_syntax_only)
2619         TREE_ASM_WRITTEN (vars) = 1;
2620
2621       /* Since we're writing out the vtable here, also write the debug 
2622          info.  */
2623       note_debug_info_needed (ctype);
2624
2625       return 1;
2626     }
2627
2628   /* If the references to this class' vtables were optimized away, still
2629      emit the appropriate debugging information.  See dfs_debug_mark.  */
2630   if (DECL_COMDAT (vars)
2631       && CLASSTYPE_DEBUG_REQUESTED (ctype))
2632     note_debug_info_needed (ctype);
2633
2634   return 0;
2635 }
2636
2637 static int
2638 prune_vtable_vardecl (t, data)
2639      tree *t;
2640      void *data ATTRIBUTE_UNUSED;
2641 {
2642   *t = TREE_CHAIN (*t);
2643   return 1;
2644 }
2645
2646 /* Determines the proper settings of TREE_PUBLIC and DECL_EXTERNAL for an
2647    inline function or template instantiation at end-of-file.  */
2648
2649 void
2650 import_export_decl (decl)
2651      tree decl;
2652 {
2653   if (DECL_INTERFACE_KNOWN (decl))
2654     return;
2655
2656   if (DECL_TEMPLATE_INSTANTIATION (decl)
2657       || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2658     {
2659       DECL_NOT_REALLY_EXTERN (decl) = 1;
2660       if ((DECL_IMPLICIT_INSTANTIATION (decl)
2661            || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2662           && (flag_implicit_templates
2663               || (flag_implicit_inline_templates && DECL_THIS_INLINE (decl))))
2664         {
2665           if (!TREE_PUBLIC (decl))
2666             /* Templates are allowed to have internal linkage.  See 
2667                [basic.link].  */
2668             ;
2669           else
2670             comdat_linkage (decl);
2671         }
2672       else
2673         DECL_NOT_REALLY_EXTERN (decl) = 0;
2674     }
2675   else if (DECL_FUNCTION_MEMBER_P (decl))
2676     {
2677       tree ctype = DECL_CONTEXT (decl);
2678       import_export_class (ctype);
2679       if (CLASSTYPE_INTERFACE_KNOWN (ctype)
2680           && (flag_new_abi
2681               ? (! DECL_THIS_INLINE (decl))
2682               : (! DECL_ARTIFICIAL (decl) || DECL_VINDEX (decl))))
2683         {
2684           DECL_NOT_REALLY_EXTERN (decl)
2685             = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2686                  || (DECL_THIS_INLINE (decl) && ! flag_implement_inlines
2687                      && !DECL_VINDEX (decl)));
2688
2689           /* Always make artificials weak.  */
2690           if (DECL_ARTIFICIAL (decl) && flag_weak)
2691             comdat_linkage (decl);
2692           else
2693             maybe_make_one_only (decl);
2694         }
2695       else
2696         comdat_linkage (decl);
2697     }
2698   else if (DECL_TINFO_FN_P (decl))
2699     {
2700       tree ctype = TREE_TYPE (DECL_NAME (decl));
2701
2702       if (IS_AGGR_TYPE (ctype))
2703         import_export_class (ctype);
2704
2705       if (IS_AGGR_TYPE (ctype) && CLASSTYPE_INTERFACE_KNOWN (ctype)
2706           && TYPE_POLYMORPHIC_P (ctype)
2707           /* If -fno-rtti, we're not necessarily emitting this stuff with
2708              the class, so go ahead and emit it now.  This can happen
2709              when a class is used in exception handling.  */
2710           && flag_rtti
2711           /* If the type is a cv-qualified variant of a type, then we
2712              must emit the tinfo function in this translation unit
2713              since it will not be emitted when the vtable for the type
2714              is output (which is when the unqualified version is
2715              generated).  */
2716           && same_type_p (ctype, TYPE_MAIN_VARIANT (ctype)))
2717         {
2718           DECL_NOT_REALLY_EXTERN (decl)
2719             = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2720                  || (DECL_THIS_INLINE (decl) && ! flag_implement_inlines
2721                      && !DECL_VINDEX (decl)));
2722
2723           /* Always make artificials weak.  */
2724           if (flag_weak)
2725             comdat_linkage (decl);
2726         }
2727       else if (TYPE_BUILT_IN (ctype) 
2728                && same_type_p (ctype, TYPE_MAIN_VARIANT (ctype)))
2729         DECL_NOT_REALLY_EXTERN (decl) = 0;
2730       else
2731         comdat_linkage (decl);
2732     } 
2733   else
2734     comdat_linkage (decl);
2735
2736   DECL_INTERFACE_KNOWN (decl) = 1;
2737 }
2738
2739 tree
2740 build_cleanup (decl)
2741      tree decl;
2742 {
2743   tree temp;
2744   tree type = TREE_TYPE (decl);
2745
2746   if (TREE_CODE (type) == ARRAY_TYPE)
2747     temp = decl;
2748   else
2749     {
2750       mark_addressable (decl);
2751       temp = build1 (ADDR_EXPR, build_pointer_type (type), decl);
2752     }
2753   temp = build_delete (TREE_TYPE (temp), temp,
2754                        integer_two_node,
2755                        LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2756   return temp;
2757 }
2758
2759 extern int parse_time, varconst_time;
2760
2761 static tree
2762 get_sentry (base)
2763      tree base;
2764 {
2765   tree sname = get_id_2 ("__sn", base);
2766   /* For struct X foo __attribute__((weak)), there is a counter
2767      __snfoo. Since base is already an assembler name, sname should
2768      be globally unique */
2769   tree sentry = IDENTIFIER_GLOBAL_VALUE (sname);
2770   if (! sentry)
2771     {
2772       sentry = build_decl (VAR_DECL, sname, integer_type_node);
2773       TREE_PUBLIC (sentry) = 1;
2774       DECL_ARTIFICIAL (sentry) = 1;
2775       TREE_STATIC (sentry) = 1;
2776       TREE_USED (sentry) = 1;
2777       DECL_COMMON (sentry) = 1;
2778       pushdecl_top_level (sentry);
2779       cp_finish_decl (sentry, NULL_TREE, NULL_TREE, 0);
2780     }
2781   return sentry;
2782 }
2783
2784 /* Start the process of running a particular set of global constructors
2785    or destructors.  Subroutine of do_[cd]tors.  */
2786
2787 static tree
2788 start_objects (method_type, initp)
2789      int method_type, initp;
2790 {
2791   tree fnname;
2792   tree body;
2793   char type[10];
2794
2795   /* Make ctor or dtor function.  METHOD_TYPE may be 'I' or 'D'.  */
2796
2797   if (initp != DEFAULT_INIT_PRIORITY)
2798     {
2799       char joiner;
2800
2801 #ifdef JOINER
2802       joiner = JOINER;
2803 #else
2804       joiner = '_';
2805 #endif
2806
2807       sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2808     }
2809   else
2810     sprintf (type, "%c", method_type);
2811
2812   fnname = get_file_function_name_long (type);
2813
2814   start_function (void_list_node,
2815                   make_call_declarator (fnname, void_list_node, NULL_TREE,
2816                                         NULL_TREE),
2817                   NULL_TREE, SF_DEFAULT);
2818
2819 #if defined(ASM_OUTPUT_CONSTRUCTOR) && defined(ASM_OUTPUT_DESTRUCTOR)
2820   /* It can be a static function as long as collect2 does not have
2821      to scan the object file to find its ctor/dtor routine.  */
2822   TREE_PUBLIC (current_function_decl) = 0;
2823 #endif
2824
2825   /* Mark this declaration as used to avoid spurious warnings.  */
2826   TREE_USED (current_function_decl) = 1;
2827
2828   /* Mark this function as a global constructor or destructor.  */
2829   if (method_type == 'I')
2830     DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2831   else
2832     DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2833   GLOBAL_INIT_PRIORITY (current_function_decl) = initp;
2834
2835   body = begin_compound_stmt (/*has_no_scope=*/0);
2836
2837   /* We cannot allow these functions to be elided, even if they do not
2838      have external linkage.  And, there's no point in deferring
2839      copmilation of thes functions; they're all going to have to be
2840      out anyhow.  */
2841   current_function_cannot_inline
2842     = "static constructors and destructors cannot be inlined";
2843
2844   return body;
2845 }
2846
2847 /* Finish the process of running a particular set of global constructors
2848    or destructors.  Subroutine of do_[cd]tors.  */
2849
2850 static void
2851 finish_objects (method_type, initp, body)
2852      int method_type, initp;
2853      tree body;
2854 {
2855   const char *fnname;
2856   tree fn;
2857
2858   /* Finish up. */
2859   finish_compound_stmt(/*has_no_scope=*/0, body);
2860   fn = finish_function (lineno, 0);
2861   expand_body (fn);
2862
2863   /* When only doing semantic analysis, and no RTL generation, we
2864      can't call functions that directly emit assembly code; there is
2865      no assembly file in which to put the code.  */
2866   if (flag_syntax_only)
2867     return;
2868
2869   fnname = XSTR (XEXP (DECL_RTL (fn), 0), 0);
2870   if (initp == DEFAULT_INIT_PRIORITY)
2871     {
2872       if (method_type == 'I')
2873         assemble_constructor (fnname);
2874       else
2875         assemble_destructor (fnname);
2876     }
2877 #if defined (ASM_OUTPUT_SECTION_NAME) && defined (ASM_OUTPUT_CONSTRUCTOR)
2878   /* If we're using init priority we can't use assemble_*tor, but on ELF
2879      targets we can stick the references into named sections for GNU ld
2880      to collect.  */
2881   else
2882     {
2883       char buf[15];
2884       sprintf (buf, ".%ctors.%.5u", method_type == 'I' ? 'c' : 'd',
2885                /* invert the numbering so the linker puts us in the proper
2886                   order; constructors are run from right to left, and the
2887                   linker sorts in increasing order.  */
2888                MAX_INIT_PRIORITY - initp);
2889       named_section (NULL_TREE, buf, 0);
2890       assemble_integer (gen_rtx_SYMBOL_REF (Pmode, fnname),
2891                         POINTER_SIZE / BITS_PER_UNIT, 1);
2892     }
2893 #endif
2894 }
2895
2896 /* The names of the parameters to the function created to handle
2897    initializations and destructions for objects with static storage
2898    duration.  */
2899 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2900 #define PRIORITY_IDENTIFIER "__priority"
2901
2902 /* The name of the function we create to handle initializations and
2903    destructions for objects with static storage duration.  */
2904 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2905
2906 /* The declaration for the __INITIALIZE_P argument.  */
2907 static tree initialize_p_decl;
2908
2909 /* The declaration for the __PRIORITY argument.  */
2910 static tree priority_decl;
2911
2912 /* The declaration for the static storage duration function.  */
2913 static tree ssdf_decl;
2914
2915 /* All the static storage duration functions created in this
2916    translation unit.  */
2917 static varray_type ssdf_decls;
2918
2919 /* A map from priority levels to information about that priority
2920    level.  There may be many such levels, so efficient lookup is
2921    important.  */
2922 static splay_tree priority_info_map;
2923
2924 /* Begins the generation of the function that will handle all
2925    initialization and destruction of objects with static storage
2926    duration.  The function generated takes two parameters of type
2927    `int': __INITIALIZE_P and __PRIORITY.  If __INITIALIZE_P is
2928    non-zero, it performs initializations.  Otherwise, it performs
2929    destructions.  It only performs those initializations or
2930    destructions with the indicated __PRIORITY.  The generated function
2931    returns no value.  
2932
2933    It is assumed that this function will only be called once per
2934    translation unit.  */
2935
2936 static tree
2937 start_static_storage_duration_function ()
2938 {
2939   static unsigned ssdf_number;
2940
2941   tree parm_types;
2942   tree type;
2943   tree body;
2944   char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2945
2946   /* Create the identifier for this function.  It will be of the form
2947      SSDF_IDENTIFIER_<number>.  */
2948   sprintf (id, "%s_%u", SSDF_IDENTIFIER, ssdf_number++);
2949   if (ssdf_number == 0)
2950     {
2951       /* Overflow occurred.  That means there are at least 4 billion
2952          initialization functions.  */
2953       sorry ("too many initialization functions required");
2954       my_friendly_abort (19990430);
2955     }
2956
2957   /* Create the parameters.  */
2958   parm_types = void_list_node;
2959   parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2960   parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2961   type = build_function_type (void_type_node, parm_types);
2962
2963   /* Create the FUNCTION_DECL itself.  */
2964   ssdf_decl = build_lang_decl (FUNCTION_DECL, 
2965                                get_identifier (id),
2966                                type);
2967   TREE_PUBLIC (ssdf_decl) = 0;
2968   DECL_ARTIFICIAL (ssdf_decl) = 1;
2969
2970   /* Put this function in the list of functions to be called from the
2971      static constructors and destructors.  */
2972   if (!ssdf_decls)
2973     {
2974       VARRAY_TREE_INIT (ssdf_decls, 32, "ssdf_decls");
2975
2976       /* Take this opportunity to initialize the map from priority
2977          numbers to information about that priority level. */
2978       priority_info_map = splay_tree_new (splay_tree_compare_ints,
2979                                           /*delete_key_fn=*/0,
2980                                           /*delete_value_fn=*/
2981                                           (splay_tree_delete_value_fn) &free);
2982
2983       /* We always need to generate functions for the
2984          DEFAULT_INIT_PRIORITY so enter it now.  That way when we walk
2985          priorities later, we'll be sure to find the
2986          DEFAULT_INIT_PRIORITY.  */
2987       get_priority_info (DEFAULT_INIT_PRIORITY);
2988     }
2989
2990   VARRAY_PUSH_TREE (ssdf_decls, ssdf_decl);
2991
2992   /* Create the argument list.  */
2993   initialize_p_decl = build_decl (PARM_DECL,
2994                                   get_identifier (INITIALIZE_P_IDENTIFIER),
2995                                   integer_type_node);
2996   DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2997   DECL_ARG_TYPE (initialize_p_decl) = integer_type_node;
2998   TREE_USED (initialize_p_decl) = 1;
2999   priority_decl = build_decl (PARM_DECL, get_identifier (PRIORITY_IDENTIFIER),
3000                               integer_type_node);
3001   DECL_CONTEXT (priority_decl) = ssdf_decl;
3002   DECL_ARG_TYPE (priority_decl) = integer_type_node;
3003   TREE_USED (priority_decl) = 1;
3004
3005   TREE_CHAIN (initialize_p_decl) = priority_decl;
3006   DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
3007
3008   /* Put the function in the global scope.  */
3009   pushdecl (ssdf_decl);
3010
3011   /* Start the function itself.  This is equivalent to declarating the
3012      function as:
3013
3014        static void __ssdf (int __initialize_p, init __priority_p);
3015        
3016      It is static because we only need to call this function from the
3017      various constructor and destructor functions for this module.  */
3018   start_function (/*specs=*/NULL_TREE, 
3019                   ssdf_decl,
3020                   /*attrs=*/NULL_TREE,
3021                   SF_PRE_PARSED);
3022
3023   /* Set up the scope of the outermost block in the function.  */
3024   body = begin_compound_stmt (/*has_no_scope=*/0);
3025
3026   /* This function must not be deferred because we are depending on
3027      its compilation to tell us what is TREE_SYMBOL_REFERENCED.  */
3028   current_function_cannot_inline 
3029     = "static storage duration functions cannot be inlined";
3030
3031   return body;
3032 }
3033
3034 /* Finish the generation of the function which performs initialization
3035    and destruction of objects with static storage duration.  After
3036    this point, no more such objects can be created.  */
3037
3038 static void
3039 finish_static_storage_duration_function (body)
3040      tree body;
3041 {
3042   /* Close out the function.  */
3043   finish_compound_stmt (/*has_no_scope=*/0, body);
3044   expand_body (finish_function (lineno, 0));
3045 }
3046
3047 /* Return the information about the indicated PRIORITY level.  If no
3048    code to handle this level has yet been generated, generate the
3049    appropriate prologue.  */
3050
3051 static priority_info
3052 get_priority_info (priority)
3053      int priority;
3054 {
3055   priority_info pi;
3056   splay_tree_node n;
3057
3058   n = splay_tree_lookup (priority_info_map, 
3059                          (splay_tree_key) priority);
3060   if (!n)
3061     {
3062       /* Create a new priority information structure, and insert it
3063          into the map.  */
3064       pi = (priority_info) xmalloc (sizeof (struct priority_info_s));
3065       pi->initializations_p = 0;
3066       pi->destructions_p = 0;
3067       splay_tree_insert (priority_info_map,
3068                          (splay_tree_key) priority,
3069                          (splay_tree_value) pi);
3070     }
3071   else
3072     pi = (priority_info) n->value;
3073
3074   return pi;
3075 }
3076
3077 /* Set up to handle the initialization or destruction of DECL.  If
3078    INITP is non-zero, we are initializing the variable.  Otherwise, we
3079    are destroying it.  */
3080
3081 static tree
3082 start_static_initialization_or_destruction (decl, initp)
3083      tree decl;
3084      int initp;
3085 {
3086   tree sentry_if_stmt = NULL_TREE;
3087   int priority;
3088   tree cond;
3089   tree init_cond;
3090   priority_info pi;
3091
3092   /* Figure out the priority for this declaration.  */
3093   priority = DECL_INIT_PRIORITY (decl);
3094   if (!priority)
3095     priority = DEFAULT_INIT_PRIORITY;
3096
3097   /* Remember that we had an initialization or finalization at this
3098      priority.  */
3099   pi = get_priority_info (priority);
3100   if (initp)
3101     pi->initializations_p = 1;
3102   else
3103     pi->destructions_p = 1;
3104
3105   /* Trick the compiler into thinking we are at the file and line
3106      where DECL was declared so that error-messages make sense, and so
3107      that the debugger will show somewhat sensible file and line
3108      information.  */
3109   input_filename = DECL_SOURCE_FILE (decl);
3110   lineno = DECL_SOURCE_LINE (decl);
3111
3112   /* Because of:
3113
3114        [class.access.spec]
3115
3116        Access control for implicit calls to the constructors,
3117        the conversion functions, or the destructor called to
3118        create and destroy a static data member is performed as
3119        if these calls appeared in the scope of the member's
3120        class.  
3121
3122      we pretend we are in a static member function of the class of
3123      which the DECL is a member.  */
3124   if (member_p (decl))
3125     {
3126       DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3127       DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3128     }
3129   
3130   /* Conditionalize this initialization on being in the right priority
3131      and being initializing/finalizing appropriately.  */
3132   sentry_if_stmt = begin_if_stmt ();
3133   cond = build_binary_op (EQ_EXPR,
3134                           priority_decl,
3135                           build_int_2 (priority, 0));
3136   init_cond = initp ? integer_one_node : integer_zero_node;
3137   init_cond = build_binary_op (EQ_EXPR,
3138                                initialize_p_decl,
3139                                init_cond);
3140   cond = build_binary_op (TRUTH_ANDIF_EXPR, cond, init_cond);
3141
3142   /* We need a sentry if this is an object with external linkage that
3143      might be initialized in more than one place.  */
3144   if (TREE_PUBLIC (decl) && (DECL_COMMON (decl) 
3145                              || DECL_ONE_ONLY (decl)
3146                              || DECL_WEAK (decl)))
3147     {
3148       tree sentry;
3149       tree sentry_cond;
3150
3151       sentry = get_sentry (DECL_ASSEMBLER_NAME (decl));
3152
3153       /* We do initializations only if the SENTRY is zero, i.e., if we
3154          are the first to initialize the variable.  We do destructions
3155          only if the SENTRY is one, i.e., if we are the last to
3156          destroy the variable.  */
3157       if (initp)
3158         sentry_cond = build_binary_op (EQ_EXPR,
3159                                        build_unary_op (PREINCREMENT_EXPR,
3160                                                        sentry,
3161                                                        /*noconvert=*/1),
3162                                        integer_one_node);
3163       else
3164         sentry_cond = build_binary_op (EQ_EXPR,
3165                                        build_unary_op (PREDECREMENT_EXPR,
3166                                                        sentry,
3167                                                        /*noconvert=*/1),
3168                                        integer_zero_node);
3169
3170       cond = build_binary_op (TRUTH_ANDIF_EXPR, cond, sentry_cond);
3171     }
3172
3173   finish_if_stmt_cond (cond, sentry_if_stmt);
3174
3175   return sentry_if_stmt;
3176 }
3177
3178 /* We've just finished generating code to do an initialization or
3179    finalization.  SENTRY_IF_STMT is the if-statement we used to guard
3180    the initialization.  */
3181
3182 static void
3183 finish_static_initialization_or_destruction (sentry_if_stmt)
3184      tree sentry_if_stmt;
3185 {
3186   finish_then_clause (sentry_if_stmt);
3187   finish_if_stmt ();
3188
3189   /* Now that we're done with DECL we don't need to pretend to be a
3190      member of its class any longer.  */
3191   DECL_CONTEXT (current_function_decl) = NULL_TREE;
3192   DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3193 }
3194
3195 /* Generate code to do the static initialization of DECL.  The
3196    initialization is INIT.  If DECL may be initialized more than once
3197    in different object files, SENTRY is the guard variable to 
3198    check.  PRIORITY is the priority for the initialization.  */
3199
3200 static void
3201 do_static_initialization (decl, init)
3202      tree decl;
3203      tree init;
3204 {
3205   tree expr;
3206   tree sentry_if_stmt;
3207
3208   /* Set up for the initialization.  */
3209   sentry_if_stmt
3210     = start_static_initialization_or_destruction (decl,
3211                                                   /*initp=*/1);
3212   
3213   /* Do the initialization itself.  */
3214   if (IS_AGGR_TYPE (TREE_TYPE (decl))
3215       || TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
3216     expr = build_aggr_init (decl, init, 0);
3217   else if (TREE_CODE (init) == TREE_VEC)
3218     expr = build_vec_init (decl, TREE_VEC_ELT (init, 0),
3219                            TREE_VEC_ELT (init, 1),
3220                            TREE_VEC_ELT (init, 2), 0);
3221   else
3222     {
3223       expr = build (INIT_EXPR, TREE_TYPE (decl), decl, init);
3224       TREE_SIDE_EFFECTS (expr) = 1;
3225     }
3226   finish_expr_stmt (expr);
3227
3228   /* If we're using __cxa_atexit, register a a function that calls the
3229      destructor for the object.  */
3230   if (flag_use_cxa_atexit)
3231     register_dtor_fn (decl);
3232
3233   /* Finsh up.  */
3234   finish_static_initialization_or_destruction (sentry_if_stmt);
3235 }
3236
3237 /* Generate code to do the static destruction of DECL.  If DECL may be
3238    initialized more than once in different object files, SENTRY is the
3239    guard variable to check.  PRIORITY is the priority for the
3240    destruction.  */
3241
3242 static void
3243 do_static_destruction (decl)
3244      tree decl;
3245 {
3246   tree sentry_if_stmt;
3247
3248   /* If we're using __cxa_atexit, then destructors are registered
3249      immediately after objects are initialized.  */
3250   my_friendly_assert (!flag_use_cxa_atexit, 20000121);
3251
3252   /* If we don't need a destructor, there's nothing to do.  */
3253   if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3254     return;
3255
3256   /* Actually do the destruction.  */
3257   sentry_if_stmt = start_static_initialization_or_destruction (decl,
3258                                                                /*initp=*/0);
3259   finish_expr_stmt (build_cleanup (decl));
3260   finish_static_initialization_or_destruction (sentry_if_stmt);
3261 }
3262
3263 /* VARS is a list of variables with static storage duration which may
3264    need initialization and/or finalization.  Remove those variables
3265    that don't really need to be initialized or finalized, and return
3266    the resulting list.  The order in which the variables appear in
3267    VARS is in reverse order of the order in which they should actually
3268    be initialized.  The list we return is in the unreversed order;
3269    i.e., the first variable should be initialized first.  */
3270
3271 static tree
3272 prune_vars_needing_no_initialization (vars)
3273      tree vars;
3274 {
3275   tree var;
3276   tree result;
3277
3278   for (var = vars, result = NULL_TREE;
3279        var;
3280        var = TREE_CHAIN (var))
3281     {
3282       tree decl = TREE_VALUE (var);
3283       tree init = TREE_PURPOSE (var);
3284
3285       /* Deal gracefully with error.  */
3286       if (decl == error_mark_node)
3287         continue;
3288
3289       /* The only things that can be initialized are variables.  */
3290       my_friendly_assert (TREE_CODE (decl) == VAR_DECL, 19990420);
3291
3292       /* If this object is not defined, we don't need to do anything
3293          here.  */
3294       if (DECL_EXTERNAL (decl))
3295         continue;
3296
3297       /* Also, if the initializer already contains errors, we can bail
3298          out now.  */
3299       if (init && TREE_CODE (init) == TREE_LIST 
3300           && value_member (error_mark_node, init))
3301         continue;
3302
3303       /* This variable is going to need initialization and/or
3304          finalization, so we add it to the list.  */
3305       result = tree_cons (init, decl, result);
3306     }
3307
3308   return result;
3309 }
3310
3311 /* Make sure we have told the back end about all the variables in
3312    VARS.  */
3313
3314 static void
3315 write_out_vars (vars)
3316      tree vars;
3317 {
3318   tree v;
3319
3320   for (v = vars; v; v = TREE_CHAIN (v))
3321     if (! TREE_ASM_WRITTEN (TREE_VALUE (v)))
3322       rest_of_decl_compilation (TREE_VALUE (v), 0, 1, 1);
3323 }
3324
3325 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3326    (otherwise) that will initialize all gobal objects with static
3327    storage duration having the indicated PRIORITY.  */
3328
3329 static void
3330 generate_ctor_or_dtor_function (constructor_p, priority)
3331      int constructor_p;
3332      int priority;
3333 {
3334   char function_key;
3335   tree arguments;
3336   tree body;
3337   size_t i;
3338
3339   /* We use `I' to indicate initialization and `D' to indicate
3340      destruction.  */
3341   if (constructor_p)
3342     function_key = 'I';
3343   else
3344     function_key = 'D';
3345
3346   /* Begin the function.  */
3347   body = start_objects (function_key, priority);
3348
3349   /* Call the static storage duration function with appropriate
3350      arguments.  */
3351   for (i = 0; i < ssdf_decls->elements_used; ++i) 
3352     {
3353       arguments = tree_cons (NULL_TREE, build_int_2 (priority, 0), 
3354                              NULL_TREE);
3355       arguments = tree_cons (NULL_TREE, build_int_2 (constructor_p, 0),
3356                              arguments);
3357       finish_expr_stmt (build_function_call (VARRAY_TREE (ssdf_decls, i),
3358                                              arguments));
3359     }
3360
3361   /* If we're generating code for the DEFAULT_INIT_PRIORITY, throw in
3362      calls to any functions marked with attributes indicating that
3363      they should be called at initialization- or destruction-time.  */
3364   if (priority == DEFAULT_INIT_PRIORITY)
3365     {
3366       tree fns;
3367       
3368       for (fns = constructor_p ? static_ctors : static_dtors; 
3369            fns;
3370            fns = TREE_CHAIN (fns))
3371         finish_expr_stmt (build_function_call (TREE_VALUE (fns), NULL_TREE));
3372     }
3373
3374   /* Close out the function.  */
3375   finish_objects (function_key, priority, body);
3376 }
3377
3378 /* Generate constructor and destructor functions for the priority
3379    indicated by N.  */
3380
3381 static int
3382 generate_ctor_and_dtor_functions_for_priority (n, data)
3383      splay_tree_node n;
3384      void *data ATTRIBUTE_UNUSED;
3385 {
3386   int priority = (int) n->key;
3387   priority_info pi = (priority_info) n->value;
3388
3389   /* Generate the functions themselves, but only if they are really
3390      needed.  */
3391   if (pi->initializations_p
3392       || (priority == DEFAULT_INIT_PRIORITY && static_ctors))
3393     generate_ctor_or_dtor_function (/*constructor_p=*/1,
3394                                     priority);
3395   if (pi->destructions_p
3396       || (priority == DEFAULT_INIT_PRIORITY && static_dtors))
3397     generate_ctor_or_dtor_function (/*constructor_p=*/0,
3398                                     priority);
3399
3400   /* Keep iterating.  */
3401   return 0;
3402 }
3403
3404 /* This routine is called from the last rule in yyparse ().
3405    Its job is to create all the code needed to initialize and
3406    destroy the global aggregates.  We do the destruction
3407    first, since that way we only need to reverse the decls once.  */
3408
3409 void
3410 finish_file ()
3411 {
3412   extern int lineno;
3413   int start_time, this_time;
3414   tree vars;
3415   int reconsider;
3416   size_t i;
3417
3418   at_eof = 1;
3419
3420   /* Bad parse errors.  Just forget about it.  */
3421   if (! global_bindings_p () || current_class_type || decl_namespace_list)
3422     return;
3423
3424   start_time = get_run_time ();
3425
3426   /* Otherwise, GDB can get confused, because in only knows
3427      about source for LINENO-1 lines.  */
3428   lineno -= 1;
3429
3430   interface_unknown = 1;
3431   interface_only = 0;
3432
3433   /* We now have to write out all the stuff we put off writing out.
3434      These include:
3435
3436        o Template specializations that we have not yet instantiated,
3437          but which are needed.
3438        o Initialization and destruction for non-local objects with
3439          static storage duration.  (Local objects with static storage
3440          duration are initialized when their scope is first entered,
3441          and are cleaned up via atexit.)
3442        o Virtual function tables.  
3443
3444      All of these may cause others to be needed.  For example,
3445      instantiating one function may cause another to be needed, and
3446      generating the intiailzer for an object may cause templates to be
3447      instantiated, etc., etc.  */
3448
3449   this_time = get_run_time ();
3450   parse_time -= this_time - start_time;
3451   varconst_time += this_time - start_time;
3452   start_time = get_run_time ();
3453
3454   if (new_abi_rtti_p ())
3455     emit_support_tinfos ();
3456   
3457   do 
3458     {
3459       reconsider = 0;
3460
3461       /* If there are templates that we've put off instantiating, do
3462          them now.  */
3463       instantiate_pending_templates ();
3464
3465       /* Write out virtual tables as required.  Note that writing out
3466          the virtual table for a template class may cause the
3467          instantiation of members of that class.  */
3468       if (walk_globals (vtable_decl_p,
3469                         finish_vtable_vardecl,
3470                         /*data=*/0))
3471         reconsider = 1;
3472       
3473       /* Write out needed type info variables. Writing out one variable
3474          might cause others to be needed.  */
3475       if (new_abi_rtti_p ()
3476           && walk_globals (tinfo_decl_p, emit_tinfo_decl, /*data=*/0))
3477         reconsider = 1;
3478
3479       /* The list of objects with static storage duration is built up
3480          in reverse order.  We clear STATIC_AGGREGATES so that any new
3481          aggregates added during the initialization of these will be
3482          initialized in the correct order when we next come around the
3483          loop.  */
3484       vars = prune_vars_needing_no_initialization (static_aggregates);
3485       static_aggregates = NULL_TREE;
3486
3487       if (vars)
3488         {
3489           tree v;
3490
3491           /* We need to start a new initialization function each time
3492              through the loop.  That's because we need to know which
3493              vtables have been referenced, and TREE_SYMBOL_REFERENCED
3494              isn't computed until a function is finished, and written
3495              out.  That's a deficiency in the back-end.  When this is
3496              fixed, these initialization functions could all become
3497              inline, with resulting performance improvements.  */
3498           tree ssdf_body = start_static_storage_duration_function ();
3499
3500           /* Make sure the back end knows about all the variables.  */
3501           write_out_vars (vars);
3502
3503           /* First generate code to do all the initializations.  */
3504           for (v = vars; v; v = TREE_CHAIN (v))
3505             do_static_initialization (TREE_VALUE (v),
3506                                       TREE_PURPOSE (v));
3507
3508           /* Then, generate code to do all the destructions.  Do these
3509              in reverse order so that the most recently constructed
3510              variable is the first destroyed.  If we're using
3511              __cxa_atexit, then we don't need to do this; functions
3512              we're registered at initialization time to destroy the
3513              local statics.  */
3514           if (!flag_use_cxa_atexit)
3515             {
3516               vars = nreverse (vars);
3517               for (v = vars; v; v = TREE_CHAIN (v))
3518                 do_static_destruction (TREE_VALUE (v));
3519             }
3520           else
3521             vars = NULL_TREE;
3522
3523           /* Finish up the static storage duration function for this
3524              round.  */
3525           finish_static_storage_duration_function (ssdf_body);
3526
3527           /* All those initializations and finalizations might cause
3528              us to need more inline functions, more template
3529              instantiations, etc.  */
3530           reconsider = 1;
3531         }
3532       
3533       /* Go through the various inline functions, and see if any need
3534          synthesizing.  */
3535       for (i = 0; i < saved_inlines_used; ++i)
3536         {
3537           tree decl = VARRAY_TREE (saved_inlines, i);
3538           import_export_decl (decl);
3539           if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
3540               && TREE_USED (decl)
3541               && (! DECL_REALLY_EXTERN (decl) || DECL_INLINE (decl)))
3542             {
3543               /* Even though we're already at the top-level, we push
3544                  there again.  That way, when we pop back a few lines
3545                  hence, all of our state is restored.  Otherwise,
3546                  finish_function doesn't clean things up, and we end
3547                  up with CURRENT_FUNCTION_DECL set.  */
3548               push_to_top_level ();
3549               if (DECL_TINFO_FN_P (decl))
3550                 synthesize_tinfo_fn (decl);
3551               else
3552                 synthesize_method (decl);
3553               pop_from_top_level ();
3554               reconsider = 1;
3555             }
3556         }
3557
3558       /* Mark all functions that might deal with exception-handling as
3559          referenced.  */
3560       mark_all_runtime_matches ();
3561
3562       /* We lie to the back-end, pretending that some functions are
3563          not defined when they really are.  This keeps these functions
3564          from being put out unncessarily.  But, we must stop lying
3565          when the functions are referenced, or if they are not comdat
3566          since they need to be put out now.  */
3567       for (i = 0; i < saved_inlines_used; ++i)
3568         {
3569           tree decl = VARRAY_TREE (saved_inlines, i);
3570       
3571           if (DECL_NOT_REALLY_EXTERN (decl)
3572               && DECL_INITIAL (decl)
3573               && DECL_NEEDED_P (decl))
3574             DECL_EXTERNAL (decl) = 0;
3575
3576           /* If we're going to need to write this function out, and
3577              there's already a body for it, create RTL for it now.
3578              (There might be no body if this is a method we haven't
3579              gotten around to synthesizing yet.)  */
3580           if (!DECL_EXTERNAL (decl)
3581               && DECL_NEEDED_P (decl)
3582               && DECL_SAVED_TREE (decl)
3583               && !DECL_SAVED_INSNS (decl)
3584               && !TREE_ASM_WRITTEN (decl))
3585             {
3586               int saved_not_really_extern;
3587
3588               /* When we call finish_function in expand_body, it will
3589                  try to reset DECL_NOT_REALLY_EXTERN so we save and
3590                  restore it here.  */
3591               saved_not_really_extern = DECL_NOT_REALLY_EXTERN (decl);
3592               /* Generate RTL for this function now that we know we
3593                  need it.  */
3594               expand_body (decl);
3595               /* Undo the damage done by finish_function.  */
3596               DECL_EXTERNAL (decl) = 0;
3597               DECL_NOT_REALLY_EXTERN (decl) = saved_not_really_extern;
3598               /* If we're compiling -fsyntax-only pretend that this
3599                  function has been written out so that we don't try to
3600                  expand it again.  */
3601               if (flag_syntax_only)
3602                 TREE_ASM_WRITTEN (decl) = 1;
3603               reconsider = 1;
3604             }
3605         }
3606
3607       if (saved_inlines_used
3608           && wrapup_global_declarations (&VARRAY_TREE (saved_inlines, 0),
3609                                          saved_inlines_used))
3610         reconsider = 1;
3611       if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3612         reconsider = 1;
3613
3614       /* Static data members are just like namespace-scope globals.  */
3615       for (i = 0; i < pending_statics_used; ++i) 
3616         {
3617           tree decl = VARRAY_TREE (pending_statics, i);
3618           if (TREE_ASM_WRITTEN (decl))
3619             continue;
3620           import_export_decl (decl);
3621           if (DECL_NOT_REALLY_EXTERN (decl) && ! DECL_IN_AGGR_P (decl))
3622             DECL_EXTERNAL (decl) = 0;
3623         }
3624       if (pending_statics
3625           && wrapup_global_declarations (&VARRAY_TREE (pending_statics, 0),
3626                                          pending_statics_used))
3627         reconsider = 1;
3628     } 
3629   while (reconsider);
3630
3631   /* We give C linkage to static constructors and destructors.  */
3632   push_lang_context (lang_name_c);
3633
3634   /* Generate initialization and destruction functions for all
3635      priorities for which they are required.  */
3636   if (priority_info_map)
3637     splay_tree_foreach (priority_info_map, 
3638                         generate_ctor_and_dtor_functions_for_priority,
3639                         /*data=*/0);
3640
3641   /* We're done with the splay-tree now.  */
3642   if (priority_info_map)
3643     splay_tree_delete (priority_info_map);
3644
3645   /* We're done with static constructors, so we can go back to "C++"
3646      linkage now.  */
3647   pop_lang_context ();
3648
3649   /* Now delete from the chain of variables all virtual function tables.
3650      We output them all ourselves, because each will be treated
3651      specially.  We don't do this if we're just doing semantic
3652      analysis, and not code-generation.  */
3653   if (!flag_syntax_only)
3654     walk_globals (vtable_decl_p, prune_vtable_vardecl, /*data=*/0);
3655
3656   /* Now, issue warnings about static, but not defined, functions,
3657      etc., and emit debugging information.  */
3658   walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3659   if (pending_statics)
3660     check_global_declarations (&VARRAY_TREE (pending_statics, 0),
3661                                pending_statics_used);
3662
3663   finish_repo ();
3664
3665   /* The entire file is now complete.  If requested, dump everything
3666      to a file.   */
3667   if (flag_dump_translation_unit)
3668     dump_node_to_file (global_namespace, flag_dump_translation_unit);
3669
3670   /* If there's some tool that wants to examine the entire translation
3671      unit, let it do so now.  */
3672   if (back_end_hook)
3673     (*back_end_hook) (global_namespace);
3674
3675   this_time = get_run_time ();
3676   parse_time -= this_time - start_time;
3677   varconst_time += this_time - start_time;
3678
3679   if (flag_detailed_statistics)
3680     {
3681       dump_tree_statistics ();
3682       dump_time_statistics ();
3683     }
3684 }
3685
3686 /* This is something of the form 'A()()()()()+1' that has turned out to be an
3687    expr.  Since it was parsed like a type, we need to wade through and fix
3688    that.  Unfortunately, since operator() is left-associative, we can't use
3689    tail recursion.  In the above example, TYPE is `A', and DECL is
3690    `()()()()()'.
3691
3692    Maybe this shouldn't be recursive, but how often will it actually be
3693    used?  (jason) */
3694
3695 tree
3696 reparse_absdcl_as_expr (type, decl)
3697      tree type, decl;
3698 {
3699   /* do build_functional_cast (type, NULL_TREE) at bottom */
3700   if (TREE_OPERAND (decl, 0) == NULL_TREE)
3701     return build_functional_cast (type, NULL_TREE);
3702
3703   /* recurse */
3704   decl = reparse_absdcl_as_expr (type, TREE_OPERAND (decl, 0));
3705
3706   decl = build_x_function_call (decl, NULL_TREE, current_class_ref);
3707
3708   if (TREE_CODE (decl) == CALL_EXPR
3709       && (! TREE_TYPE (decl)
3710           || TREE_CODE (TREE_TYPE (decl)) != VOID_TYPE))
3711     decl = require_complete_type (decl);
3712
3713   return decl;
3714 }
3715
3716 /* This is something of the form `int ((int)(int)(int)1)' that has turned
3717    out to be an expr.  Since it was parsed like a type, we need to wade
3718    through and fix that.  Since casts are right-associative, we are
3719    reversing the order, so we don't have to recurse.
3720
3721    In the above example, DECL is the `(int)(int)(int)', and EXPR is the
3722    `1'.  */
3723
3724 tree
3725 reparse_absdcl_as_casts (decl, expr)
3726      tree decl, expr;
3727 {
3728   tree type;
3729   
3730   if (TREE_CODE (expr) == CONSTRUCTOR
3731       && TREE_TYPE (expr) == 0)
3732     {
3733       type = groktypename (TREE_VALUE (CALL_DECLARATOR_PARMS (decl)));
3734       decl = TREE_OPERAND (decl, 0);
3735
3736       expr = digest_init (type, expr, (tree *) 0);
3737       if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3738         {
3739           int failure = complete_array_type (type, expr, 1);
3740           if (failure)
3741             my_friendly_abort (78);
3742         }
3743     }
3744
3745   while (decl)
3746     {
3747       type = groktypename (TREE_VALUE (CALL_DECLARATOR_PARMS (decl)));
3748       decl = TREE_OPERAND (decl, 0);
3749       expr = build_c_cast (type, expr);
3750     }
3751
3752   if (warn_old_style_cast && ! in_system_header
3753       && current_lang_name != lang_name_c)
3754     warning ("use of old-style cast");
3755
3756   return expr;
3757 }
3758
3759 /* Given plain tree nodes for an expression, build up the full semantics.  */
3760
3761 tree
3762 build_expr_from_tree (t)
3763      tree t;
3764 {
3765   if (t == NULL_TREE || t == error_mark_node)
3766     return t;
3767
3768   switch (TREE_CODE (t))
3769     {
3770     case IDENTIFIER_NODE:
3771       return do_identifier (t, 0, NULL_TREE);
3772
3773     case LOOKUP_EXPR:
3774       if (LOOKUP_EXPR_GLOBAL (t))
3775         return do_scoped_id (TREE_OPERAND (t, 0), 0);
3776       else
3777         return do_identifier (TREE_OPERAND (t, 0), 0, NULL_TREE);
3778
3779     case TEMPLATE_ID_EXPR:
3780       return (lookup_template_function
3781               (build_expr_from_tree (TREE_OPERAND (t, 0)),
3782                build_expr_from_tree (TREE_OPERAND (t, 1))));
3783
3784     case INDIRECT_REF:
3785       return build_x_indirect_ref
3786         (build_expr_from_tree (TREE_OPERAND (t, 0)), "unary *");
3787
3788     case CAST_EXPR:
3789       return build_functional_cast
3790         (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3791
3792     case REINTERPRET_CAST_EXPR:
3793       return build_reinterpret_cast
3794         (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3795
3796     case CONST_CAST_EXPR:
3797       return build_const_cast
3798         (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3799
3800     case DYNAMIC_CAST_EXPR:
3801       return build_dynamic_cast
3802         (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3803
3804     case STATIC_CAST_EXPR:
3805       return build_static_cast
3806         (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3807
3808     case PREDECREMENT_EXPR:
3809     case PREINCREMENT_EXPR:
3810     case POSTDECREMENT_EXPR:
3811     case POSTINCREMENT_EXPR:
3812     case NEGATE_EXPR:
3813     case BIT_NOT_EXPR:
3814     case ABS_EXPR:
3815     case TRUTH_NOT_EXPR:
3816     case ADDR_EXPR:
3817     case CONVERT_EXPR:      /* Unary + */
3818     case REALPART_EXPR:
3819     case IMAGPART_EXPR:
3820       if (TREE_TYPE (t))
3821         return t;
3822       return build_x_unary_op (TREE_CODE (t),
3823                                build_expr_from_tree (TREE_OPERAND (t, 0)));
3824
3825     case PLUS_EXPR:
3826     case MINUS_EXPR:
3827     case MULT_EXPR:
3828     case TRUNC_DIV_EXPR:
3829     case CEIL_DIV_EXPR:
3830     case FLOOR_DIV_EXPR:
3831     case ROUND_DIV_EXPR:
3832     case EXACT_DIV_EXPR:
3833     case BIT_AND_EXPR:
3834     case BIT_ANDTC_EXPR:
3835     case BIT_IOR_EXPR:
3836     case BIT_XOR_EXPR:
3837     case TRUNC_MOD_EXPR:
3838     case FLOOR_MOD_EXPR:
3839     case TRUTH_ANDIF_EXPR:
3840     case TRUTH_ORIF_EXPR:
3841     case TRUTH_AND_EXPR:
3842     case TRUTH_OR_EXPR:
3843     case RSHIFT_EXPR:
3844     case LSHIFT_EXPR:
3845     case RROTATE_EXPR:
3846     case LROTATE_EXPR:
3847     case EQ_EXPR:
3848     case NE_EXPR:
3849     case MAX_EXPR:
3850     case MIN_EXPR:
3851     case LE_EXPR:
3852     case GE_EXPR:
3853     case LT_EXPR:
3854     case GT_EXPR:
3855     case MEMBER_REF:
3856       return build_x_binary_op
3857         (TREE_CODE (t), 
3858          build_expr_from_tree (TREE_OPERAND (t, 0)),
3859          build_expr_from_tree (TREE_OPERAND (t, 1)));
3860
3861     case DOTSTAR_EXPR:
3862       return build_m_component_ref
3863         (build_expr_from_tree (TREE_OPERAND (t, 0)),
3864          build_expr_from_tree (TREE_OPERAND (t, 1)));
3865
3866     case SCOPE_REF:
3867       return build_offset_ref (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1));
3868
3869     case ARRAY_REF:
3870       if (TREE_OPERAND (t, 0) == NULL_TREE)
3871         /* new-type-id */
3872         return build_parse_node (ARRAY_REF, NULL_TREE,
3873                                  build_expr_from_tree (TREE_OPERAND (t, 1)));
3874       return grok_array_decl (build_expr_from_tree (TREE_OPERAND (t, 0)),
3875                               build_expr_from_tree (TREE_OPERAND (t, 1)));
3876
3877     case SIZEOF_EXPR:
3878     case ALIGNOF_EXPR:
3879       {
3880         tree r = build_expr_from_tree (TREE_OPERAND (t, 0));
3881         if (TREE_CODE_CLASS (TREE_CODE (r)) != 't')
3882           r = TREE_TYPE (r);
3883         return TREE_CODE (t) == SIZEOF_EXPR ? c_sizeof (r) : c_alignof (r);
3884       }
3885
3886     case MODOP_EXPR:
3887       return build_x_modify_expr
3888         (build_expr_from_tree (TREE_OPERAND (t, 0)),
3889          TREE_CODE (TREE_OPERAND (t, 1)),
3890          build_expr_from_tree (TREE_OPERAND (t, 2)));
3891
3892     case ARROW_EXPR:
3893       return build_x_arrow
3894         (build_expr_from_tree (TREE_OPERAND (t, 0)));
3895
3896     case NEW_EXPR:
3897       return build_new
3898         (build_expr_from_tree (TREE_OPERAND (t, 0)),
3899          build_expr_from_tree (TREE_OPERAND (t, 1)),
3900          build_expr_from_tree (TREE_OPERAND (t, 2)),
3901          NEW_EXPR_USE_GLOBAL (t));
3902
3903     case DELETE_EXPR:
3904       return delete_sanity
3905         (build_expr_from_tree (TREE_OPERAND (t, 0)),
3906          build_expr_from_tree (TREE_OPERAND (t, 1)),
3907          DELETE_EXPR_USE_VEC (t), DELETE_EXPR_USE_GLOBAL (t));
3908
3909     case COMPOUND_EXPR:
3910       if (TREE_OPERAND (t, 1) == NULL_TREE)
3911         return build_x_compound_expr
3912           (build_expr_from_tree (TREE_OPERAND (t, 0)));
3913       else
3914         my_friendly_abort (42);
3915
3916     case METHOD_CALL_EXPR:
3917       if (TREE_CODE (TREE_OPERAND (t, 0)) == SCOPE_REF)
3918         {
3919           tree ref = TREE_OPERAND (t, 0);
3920           return build_scoped_method_call
3921             (build_expr_from_tree (TREE_OPERAND (t, 1)),
3922              build_expr_from_tree (TREE_OPERAND (ref, 0)),
3923              TREE_OPERAND (ref, 1),
3924              build_expr_from_tree (TREE_OPERAND (t, 2)));
3925         }
3926       else 
3927         {
3928           tree fn = TREE_OPERAND (t, 0);
3929
3930           /* We can get a TEMPLATE_ID_EXPR here on code like:
3931
3932                x->f<2>();
3933               
3934              so we must resolve that.  However, we can also get things
3935              like a BIT_NOT_EXPR here, when referring to a destructor,
3936              and things like that are not correctly resolved by
3937              build_expr_from_tree.  So, just use build_expr_from_tree
3938              when we really need it.  */
3939           if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3940             fn = lookup_template_function
3941               (TREE_OPERAND (fn, 0),
3942                build_expr_from_tree (TREE_OPERAND (fn, 1)));
3943
3944           return build_method_call
3945             (build_expr_from_tree (TREE_OPERAND (t, 1)),
3946              fn,
3947              build_expr_from_tree (TREE_OPERAND (t, 2)),
3948              NULL_TREE, LOOKUP_NORMAL);
3949         }
3950
3951     case CALL_EXPR:
3952       if (TREE_CODE (TREE_OPERAND (t, 0)) == SCOPE_REF)
3953         {
3954           tree ref = TREE_OPERAND (t, 0);
3955           return build_member_call
3956             (build_expr_from_tree (TREE_OPERAND (ref, 0)),
3957              TREE_OPERAND (ref, 1),
3958              build_expr_from_tree (TREE_OPERAND (t, 1)));
3959         }
3960       else
3961         {
3962           tree name = TREE_OPERAND (t, 0);
3963           tree id;
3964           tree args = build_expr_from_tree (TREE_OPERAND (t, 1));
3965           if (args != NULL_TREE && TREE_CODE (name) == LOOKUP_EXPR
3966               && !LOOKUP_EXPR_GLOBAL (name)
3967               && TREE_CODE ((id = TREE_OPERAND (name, 0))) == IDENTIFIER_NODE
3968               && (!current_class_type
3969                   || !lookup_member (current_class_type, id, 0, 0)))
3970             {
3971               /* Do Koenig lookup if there are no class members. */
3972               name = do_identifier (id, 0, args);
3973             }
3974           else if (TREE_CODE (name) == TEMPLATE_ID_EXPR
3975               || ! really_overloaded_fn (name))
3976             name = build_expr_from_tree (name);
3977           return build_x_function_call (name, args, current_class_ref);
3978         }
3979
3980     case COND_EXPR:
3981       return build_x_conditional_expr
3982         (build_expr_from_tree (TREE_OPERAND (t, 0)),
3983          build_expr_from_tree (TREE_OPERAND (t, 1)),
3984          build_expr_from_tree (TREE_OPERAND (t, 2)));
3985
3986     case PSEUDO_DTOR_EXPR:
3987       return (finish_pseudo_destructor_call_expr 
3988               (build_expr_from_tree (TREE_OPERAND (t, 0)),
3989                build_expr_from_tree (TREE_OPERAND (t, 1)),
3990                build_expr_from_tree (TREE_OPERAND (t, 2))));
3991
3992     case TREE_LIST:
3993       {
3994         tree purpose, value, chain;
3995
3996         if (t == void_list_node)
3997           return t;
3998
3999         purpose = TREE_PURPOSE (t);
4000         if (purpose)
4001           purpose = build_expr_from_tree (purpose);
4002         value = TREE_VALUE (t);
4003         if (value)
4004           value = build_expr_from_tree (value);
4005         chain = TREE_CHAIN (t);
4006         if (chain && chain != void_type_node)
4007           chain = build_expr_from_tree (chain);
4008         return tree_cons (purpose, value, chain);
4009       }
4010
4011     case COMPONENT_REF:
4012       {
4013         tree object = build_expr_from_tree (TREE_OPERAND (t, 0));
4014         tree field = TREE_OPERAND (t, 1);
4015         
4016         /* We use a COMPONENT_REF to indicate things of the form `x.b'
4017            and `x.A::b'.  We must distinguish between those cases
4018            here.  */
4019         if (TREE_CODE (field) == SCOPE_REF)
4020           return build_object_ref (object, 
4021                                    TREE_OPERAND (field, 0),
4022                                    TREE_OPERAND (field, 1));
4023         else
4024           return build_x_component_ref (object, field,
4025                                         NULL_TREE, 1);
4026       }
4027
4028     case THROW_EXPR:
4029       return build_throw (build_expr_from_tree (TREE_OPERAND (t, 0)));
4030
4031     case CONSTRUCTOR:
4032       {
4033         tree r;
4034
4035         /* digest_init will do the wrong thing if we let it.  */
4036         if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
4037           return t;
4038
4039         r = build_nt (CONSTRUCTOR, NULL_TREE,
4040                       build_expr_from_tree (CONSTRUCTOR_ELTS (t)));
4041         TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
4042
4043         if (TREE_TYPE (t))
4044           return digest_init (TREE_TYPE (t), r, 0);
4045         return r;
4046       }
4047
4048     case TYPEID_EXPR:
4049       if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (t, 0))) == 't')
4050         return get_typeid (TREE_OPERAND (t, 0));
4051       return build_typeid (build_expr_from_tree (TREE_OPERAND (t, 0)));
4052
4053     case VAR_DECL:
4054       return convert_from_reference (t);
4055
4056     case VA_ARG_EXPR:
4057       return build_va_arg (build_expr_from_tree (TREE_OPERAND (t, 0)),
4058                            TREE_TYPE (t));
4059
4060     default:
4061       return t;
4062     }
4063 }
4064
4065 /* This is something of the form `int (*a)++' that has turned out to be an
4066    expr.  It was only converted into parse nodes, so we need to go through
4067    and build up the semantics.  Most of the work is done by
4068    build_expr_from_tree, above.
4069
4070    In the above example, TYPE is `int' and DECL is `*a'.  */
4071
4072 tree
4073 reparse_decl_as_expr (type, decl)
4074      tree type, decl;
4075 {
4076   decl = build_expr_from_tree (decl);
4077   if (type)
4078     return build_functional_cast (type, build_tree_list (NULL_TREE, decl));
4079   else
4080     return decl;
4081 }
4082
4083 /* This is something of the form `int (*a)' that has turned out to be a
4084    decl.  It was only converted into parse nodes, so we need to do the
4085    checking that make_{pointer,reference}_declarator do.  */
4086
4087 tree
4088 finish_decl_parsing (decl)
4089      tree decl;
4090 {
4091   extern int current_class_depth;
4092   
4093   switch (TREE_CODE (decl))
4094     {
4095     case IDENTIFIER_NODE:
4096       return decl;
4097     case INDIRECT_REF:
4098       return make_pointer_declarator
4099         (NULL_TREE, finish_decl_parsing (TREE_OPERAND (decl, 0)));
4100     case ADDR_EXPR:
4101       return make_reference_declarator
4102         (NULL_TREE, finish_decl_parsing (TREE_OPERAND (decl, 0)));
4103     case BIT_NOT_EXPR:
4104       TREE_OPERAND (decl, 0) = finish_decl_parsing (TREE_OPERAND (decl, 0));
4105       return decl;
4106     case SCOPE_REF:
4107       push_nested_class (TREE_TYPE (TREE_OPERAND (decl, 0)), 3);
4108       TREE_COMPLEXITY (decl) = current_class_depth;
4109       return decl;
4110     case ARRAY_REF:
4111       TREE_OPERAND (decl, 0) = finish_decl_parsing (TREE_OPERAND (decl, 0));
4112       return decl;
4113     case TREE_LIST:
4114       /* For attribute handling.  */
4115       TREE_VALUE (decl) = finish_decl_parsing (TREE_VALUE (decl));
4116       return decl;
4117     default:
4118       my_friendly_abort (5);
4119       return NULL_TREE;
4120     }
4121 }
4122
4123 tree
4124 check_cp_case_value (value)
4125      tree value;
4126 {
4127   if (value == NULL_TREE)
4128     return value;
4129
4130   /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
4131   STRIP_TYPE_NOPS (value);
4132
4133   if (TREE_READONLY_DECL_P (value))
4134     {
4135       value = decl_constant_value (value);
4136       STRIP_TYPE_NOPS (value);
4137     }
4138   value = fold (value);
4139
4140   if (TREE_CODE (value) != INTEGER_CST
4141       && value != error_mark_node)
4142     {
4143       cp_error ("case label `%E' does not reduce to an integer constant",
4144                 value);
4145       value = error_mark_node;
4146     }
4147   else
4148     /* Promote char or short to int.  */
4149     value = default_conversion (value);
4150
4151   constant_expression_warning (value);
4152
4153   return value;
4154 }
4155
4156 /* Return 1 if root encloses child. */
4157
4158 static int
4159 is_namespace_ancestor (root, child)
4160      tree root, child;
4161 {
4162   if (root == child)
4163     return 1;
4164   if (root == global_namespace)
4165     return 1;
4166   if (child == global_namespace)
4167     return 0;
4168   return is_namespace_ancestor (root, CP_DECL_CONTEXT (child));
4169 }
4170   
4171
4172 /* Return the namespace that is the common ancestor 
4173    of two given namespaces. */
4174
4175 tree
4176 namespace_ancestor (ns1, ns2)
4177      tree ns1, ns2;
4178 {
4179   if (is_namespace_ancestor (ns1, ns2))
4180     return ns1;
4181   return namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2);
4182 }
4183
4184 /* Insert used into the using list of user. Set indirect_flag if this
4185    directive is not directly from the source. Also find the common
4186    ancestor and let our users know about the new namespace */
4187 static void 
4188 add_using_namespace (user, used, indirect)
4189      tree user;
4190      tree used;
4191      int indirect;
4192 {
4193   tree t;
4194   /* Using oneself is a no-op. */
4195   if (user == used)
4196     return;
4197   my_friendly_assert (TREE_CODE (user) == NAMESPACE_DECL, 380);
4198   my_friendly_assert (TREE_CODE (used) == NAMESPACE_DECL, 380);
4199   /* Check if we already have this. */
4200   t = purpose_member (used, DECL_NAMESPACE_USING (user));
4201   if (t != NULL_TREE)
4202     {
4203       if (!indirect)
4204         /* Promote to direct usage. */
4205         TREE_INDIRECT_USING (t) = 0;
4206       return;
4207     }
4208
4209   /* Add used to the user's using list. */
4210   DECL_NAMESPACE_USING (user) 
4211     = tree_cons (used, namespace_ancestor (user, used), 
4212                  DECL_NAMESPACE_USING (user));
4213
4214   TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
4215
4216   /* Add user to the used's users list. */
4217   DECL_NAMESPACE_USERS (used)
4218     = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
4219
4220   /* Recursively add all namespaces used. */
4221   for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
4222     /* indirect usage */
4223     add_using_namespace (user, TREE_PURPOSE (t), 1);
4224
4225   /* Tell everyone using us about the new used namespaces. */
4226   for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
4227     add_using_namespace (TREE_PURPOSE (t), used, 1);
4228 }
4229
4230 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
4231    duplicates.  The first list becomes the tail of the result.
4232
4233    The algorithm is O(n^2).  We could get this down to O(n log n) by
4234    doing a sort on the addresses of the functions, if that becomes
4235    necessary.  */
4236
4237 static tree
4238 merge_functions (s1, s2)
4239      tree s1;
4240      tree s2;
4241 {
4242   for (; s2; s2 = OVL_NEXT (s2))
4243     {
4244       tree fn = OVL_CURRENT (s2);
4245       if (! ovl_member (fn, s1))
4246         s1 = build_overload (fn, s1);
4247     }
4248   return s1;
4249 }
4250
4251 /* This should return an error not all definitions define functions.
4252    It is not an error if we find two functions with exactly the
4253    same signature, only if these are selected in overload resolution.
4254    old is the current set of bindings, new the freshly-found binding.
4255    XXX Do we want to give *all* candidates in case of ambiguity?
4256    XXX In what way should I treat extern declarations?
4257    XXX I don't want to repeat the entire duplicate_decls here */
4258
4259 static tree
4260 ambiguous_decl (name, old, new, flags)
4261      tree name;
4262      tree old;
4263      tree new;
4264      int flags;
4265 {
4266   tree val, type;
4267   my_friendly_assert (old != NULL_TREE, 393);
4268   /* Copy the value. */
4269   val = BINDING_VALUE (new);
4270   if (val)
4271     switch (TREE_CODE (val))
4272       {
4273       case TEMPLATE_DECL:
4274         /* If we expect types or namespaces, and not templates,
4275            or this is not a template class. */
4276         if (LOOKUP_QUALIFIERS_ONLY (flags)
4277             && !DECL_CLASS_TEMPLATE_P (val))
4278           val = NULL_TREE;
4279         break;
4280       case TYPE_DECL:
4281         if (LOOKUP_NAMESPACES_ONLY (flags))
4282           val = NULL_TREE;
4283         break;
4284       case NAMESPACE_DECL:
4285         if (LOOKUP_TYPES_ONLY (flags))
4286           val = NULL_TREE;
4287         break;
4288       default:
4289         if (LOOKUP_QUALIFIERS_ONLY (flags))
4290           val = NULL_TREE;
4291       }
4292         
4293   if (!BINDING_VALUE (old))
4294     BINDING_VALUE (old) = val;
4295   else if (val && val != BINDING_VALUE (old))
4296     {
4297       if (is_overloaded_fn (BINDING_VALUE (old)) 
4298           && is_overloaded_fn (val))
4299         {
4300           BINDING_VALUE (old) = merge_functions (BINDING_VALUE (old),
4301                                                  val);
4302         }
4303       else
4304         {
4305           /* Some declarations are functions, some are not. */
4306           if (flags & LOOKUP_COMPLAIN)
4307             {
4308               /* If we've already given this error for this lookup,
4309                  BINDING_VALUE (old) is error_mark_node, so let's not
4310                  repeat ourselves.  */
4311               if (BINDING_VALUE (old) != error_mark_node)
4312                 {
4313                   cp_error ("use of `%D' is ambiguous", name);
4314                   cp_error_at ("  first declared as `%#D' here",
4315                                BINDING_VALUE (old));
4316                 }
4317               cp_error_at ("  also declared as `%#D' here", val);
4318             }
4319           BINDING_VALUE (old) = error_mark_node;
4320         }
4321     }
4322   /* ... and copy the type. */
4323   type = BINDING_TYPE (new);
4324   if (LOOKUP_NAMESPACES_ONLY (flags))
4325     type = NULL_TREE;
4326   if (!BINDING_TYPE (old))
4327     BINDING_TYPE (old) = type;
4328   else if (type && BINDING_TYPE (old) != type)
4329     {
4330       if (flags & LOOKUP_COMPLAIN)
4331         {
4332           cp_error ("`%D' denotes an ambiguous type",name);
4333           cp_error_at ("  first type here", BINDING_TYPE (old));
4334           cp_error_at ("  other type here", type);
4335         }
4336     }
4337   return old;
4338 }
4339
4340 /* Subroutine of unualified_namespace_lookup:
4341    Add the bindings of NAME in used namespaces to VAL.
4342    We are currently looking for names in namespace SCOPE, so we
4343    look through USINGS for using-directives of namespaces
4344    which have SCOPE as a common ancestor with the current scope.
4345    Returns zero on errors. */
4346
4347 int
4348 lookup_using_namespace (name, val, usings, scope, flags, spacesp)
4349      tree name, val, usings, scope;
4350      int flags;
4351      tree *spacesp;
4352 {
4353   tree iter;
4354   tree val1;
4355   /* Iterate over all used namespaces in current, searching for using
4356      directives of scope. */
4357   for (iter = usings; iter; iter = TREE_CHAIN (iter))
4358     if (TREE_VALUE (iter) == scope)
4359       {
4360         if (spacesp)
4361           *spacesp = tree_cons (TREE_PURPOSE (iter), NULL_TREE,
4362                                 *spacesp);
4363         val1 = binding_for_name (name, TREE_PURPOSE (iter));
4364         /* Resolve ambiguities. */
4365         val = ambiguous_decl (name, val, val1, flags);
4366       }
4367   return BINDING_VALUE (val) != error_mark_node;
4368 }
4369
4370 /* [namespace.qual]
4371    Accepts the NAME to lookup and its qualifying SCOPE.
4372    Returns the name/type pair found into the CPLUS_BINDING RESULT,
4373    or 0 on error. */
4374
4375 int
4376 qualified_lookup_using_namespace (name, scope, result, flags)
4377      tree name;
4378      tree scope;
4379      tree result;
4380      int flags;
4381 {
4382   /* Maintain a list of namespaces visited... */
4383   tree seen = NULL_TREE;
4384   /* ... and a list of namespace yet to see. */
4385   tree todo = NULL_TREE;
4386   tree usings;
4387   while (scope && (result != error_mark_node))
4388     {
4389       seen = tree_cons (scope, NULL_TREE, seen);
4390       result = ambiguous_decl (name, result,
4391                                binding_for_name (name, scope), flags);
4392       if (!BINDING_VALUE (result) && !BINDING_TYPE (result))
4393         /* Consider using directives. */
4394         for (usings = DECL_NAMESPACE_USING (scope); usings;
4395              usings = TREE_CHAIN (usings))
4396           /* If this was a real directive, and we have not seen it. */
4397           if (!TREE_INDIRECT_USING (usings)
4398               && !purpose_member (TREE_PURPOSE (usings), seen))
4399             todo = tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo);
4400       if (todo)
4401         {
4402           scope = TREE_PURPOSE (todo);
4403           todo = TREE_CHAIN (todo);
4404         }
4405       else
4406         scope = NULL_TREE; /* If there never was a todo list. */
4407     }
4408   return result != error_mark_node;
4409 }
4410
4411 /* [namespace.memdef]/2 */
4412
4413 /* Set the context of a declaration to scope. Complain if we are not
4414    outside scope. */
4415
4416 void
4417 set_decl_namespace (decl, scope, friendp)
4418      tree decl;
4419      tree scope;
4420      int friendp;
4421 {
4422   tree old;
4423   if (scope == std_node)
4424     scope = global_namespace;
4425   /* Get rid of namespace aliases. */
4426   scope = ORIGINAL_NAMESPACE (scope);
4427   
4428   /* It is ok for friends to be qualified in parallel space.  */
4429   if (!friendp && !is_namespace_ancestor (current_namespace, scope))
4430     cp_error ("declaration of `%D' not in a namespace surrounding `%D'",
4431               decl, scope);
4432   DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
4433   if (scope != current_namespace)
4434     {
4435       /* See whether this has been declared in the namespace. */
4436       old = namespace_binding (DECL_NAME (decl), scope);
4437       if (!old)
4438         /* No old declaration at all. */
4439         goto complain;
4440       if (!is_overloaded_fn (decl))
4441         /* Don't compare non-function decls with decls_match here,
4442            since it can't check for the correct constness at this
4443            point. pushdecl will find those errors later.  */
4444         return;
4445       /* Since decl is a function, old should contain a function decl. */
4446       if (!is_overloaded_fn (old))
4447         goto complain;
4448       if (processing_template_decl || processing_specialization)
4449         /* We have not yet called push_template_decl to turn the
4450            FUNCTION_DECL into a TEMPLATE_DECL, so the declarations
4451            won't match.  But, we'll check later, when we construct the
4452            template.  */
4453         return;
4454       for (; old; old = OVL_NEXT (old))
4455         if (decls_match (decl, OVL_CURRENT (old)))
4456           return;
4457     }
4458   else
4459     return;
4460  complain:
4461   cp_error ("`%D' should have been declared inside `%D'",
4462             decl, scope);
4463
4464
4465 /* Compute the namespace where a declaration is defined. */
4466
4467 static tree
4468 decl_namespace (decl)
4469      tree decl;
4470 {
4471   while (DECL_CONTEXT (decl))
4472     {
4473       decl = DECL_CONTEXT (decl);
4474       if (TREE_CODE (decl) == NAMESPACE_DECL)
4475         return decl;
4476       if (TREE_CODE_CLASS (TREE_CODE (decl)) == 't')
4477         decl = TYPE_STUB_DECL (decl);
4478       my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd', 390);
4479     }
4480
4481   return global_namespace;
4482 }
4483
4484 /* Return the namespace where the current declaration is declared. */
4485
4486 tree
4487 current_decl_namespace ()
4488 {
4489   tree result;
4490   /* If we have been pushed into a different namespace, use it. */
4491   if (decl_namespace_list)
4492     return TREE_PURPOSE (decl_namespace_list);
4493
4494   if (current_class_type)
4495     result = decl_namespace (TYPE_STUB_DECL (current_class_type));
4496   else if (current_function_decl)
4497     result = decl_namespace (current_function_decl);
4498   else 
4499     result = current_namespace;
4500   return result;
4501 }
4502
4503 /* Temporarily set the namespace for the current declaration. */
4504
4505 void
4506 push_decl_namespace (decl)
4507      tree decl;
4508 {
4509   if (TREE_CODE (decl) != NAMESPACE_DECL)
4510     decl = decl_namespace (decl);
4511   decl_namespace_list = tree_cons (decl, NULL_TREE, decl_namespace_list);
4512 }
4513
4514 void
4515 pop_decl_namespace ()
4516 {
4517   decl_namespace_list = TREE_CHAIN (decl_namespace_list);
4518 }
4519
4520 /* Enter a class or namespace scope. */
4521
4522 void
4523 push_scope (t)
4524      tree t;
4525 {
4526   if (TREE_CODE (t) == NAMESPACE_DECL)
4527     push_decl_namespace (t);
4528   else
4529     pushclass (t, 2);
4530 }
4531
4532 /* Leave scope pushed by push_scope. */
4533
4534 void
4535 pop_scope (t)
4536      tree t;
4537 {
4538   if (TREE_CODE (t) == NAMESPACE_DECL)
4539     pop_decl_namespace ();
4540   else
4541     popclass ();
4542 }
4543
4544 /* [basic.lookup.koenig] */
4545 /* A non-zero return value in the functions below indicates an error.
4546    All nodes allocated in the procedure are on the scratch obstack. */
4547
4548 struct arg_lookup
4549 {
4550   tree name;
4551   tree namespaces;
4552   tree classes;
4553   tree functions;
4554 };
4555
4556 static int arg_assoc         PARAMS ((struct arg_lookup*, tree));
4557 static int arg_assoc_args    PARAMS ((struct arg_lookup*, tree));
4558 static int arg_assoc_type    PARAMS ((struct arg_lookup*, tree));
4559 static int add_function      PARAMS ((struct arg_lookup *, tree));
4560 static int arg_assoc_namespace PARAMS ((struct arg_lookup *, tree));
4561 static int arg_assoc_class   PARAMS ((struct arg_lookup *, tree));
4562 static int arg_assoc_template_arg PARAMS ((struct arg_lookup*, tree));
4563
4564 /* Add a function to the lookup structure.
4565    Returns 1 on error.  */
4566
4567 static int
4568 add_function (k, fn)
4569      struct arg_lookup *k;
4570      tree fn;
4571 {
4572   /* We used to check here to see if the function was already in the list,
4573      but that's O(n^2), which is just too expensive for function lookup.
4574      Now we deal with the occasional duplicate in joust.  In doing this, we
4575      assume that the number of duplicates will be small compared to the
4576      total number of functions being compared, which should usually be the
4577      case.  */
4578
4579   /* We must find only functions, or exactly one non-function. */
4580   if (k->functions && is_overloaded_fn (k->functions)
4581       && is_overloaded_fn (fn))
4582     k->functions = build_overload (fn, k->functions);
4583   else if (k->functions)
4584     {
4585       tree f1 = OVL_CURRENT (k->functions);
4586       tree f2 = fn;
4587       if (is_overloaded_fn (f1))
4588         {
4589           fn = f1; f1 = f2; f2 = fn;
4590         }
4591       cp_error_at ("`%D' is not a function,", f1);
4592       cp_error_at ("  conflict with `%D'", f2);
4593       cp_error ("  in call to `%D'", k->name);
4594       return 1;
4595     }
4596   else
4597     k->functions = fn;
4598   return 0;
4599 }
4600
4601 /* Add functions of a namespace to the lookup structure.
4602    Returns 1 on error.  */
4603
4604 static int
4605 arg_assoc_namespace (k, scope)
4606      struct arg_lookup *k;
4607      tree scope;
4608 {
4609   tree value;
4610
4611   if (purpose_member (scope, k->namespaces))
4612     return 0;
4613   k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
4614   
4615   value = namespace_binding (k->name, scope);
4616   if (!value)
4617     return 0;
4618
4619   for (; value; value = OVL_NEXT (value))
4620     if (add_function (k, OVL_CURRENT (value)))
4621       return 1;
4622   
4623   return 0;
4624 }
4625
4626 /* Adds everything associated with a template argument to the lookup
4627    structure.  Returns 1 on error.  */
4628
4629 static int
4630 arg_assoc_template_arg (k, arg)
4631      struct arg_lookup* k;
4632      tree arg;
4633 {
4634   /* [basic.lookup.koenig]
4635
4636      If T is a template-id, its associated namespaces and classes are
4637      ... the namespaces and classes associated with the types of the
4638      template arguments provided for template type parameters
4639      (excluding template template parameters); the namespaces in which
4640      any template template arguments are defined; and the classes in
4641      which any member templates used as template template arguments
4642      are defined.  [Note: non-type template arguments do not
4643      contribute to the set of associated namespaces.  ]  */
4644
4645   /* Consider first template template arguments.  */
4646   if (TREE_CODE (arg) == TEMPLATE_DECL)
4647     {
4648       tree ctx = CP_DECL_CONTEXT (arg);
4649
4650       /* It's not a member template.  */
4651       if (TREE_CODE (ctx) == NAMESPACE_DECL)
4652         return arg_assoc_namespace (k, ctx);
4653       /* Otherwise, it must be member template.  */
4654       else 
4655         return arg_assoc_class (k, ctx);
4656     }
4657   /* It's not a template template argument, but it is a type template
4658      argument.  */
4659   else if (TREE_CODE_CLASS (TREE_CODE (arg)) == 't')
4660     return arg_assoc_type (k, arg);
4661   /* It's a non-type template argument.  */
4662   else
4663     return 0;
4664 }
4665
4666 /* Adds everything associated with class to the lookup structure.
4667    Returns 1 on error.  */
4668
4669 static int
4670 arg_assoc_class (k, type)
4671      struct arg_lookup* k;
4672      tree type;
4673 {
4674   tree list, friends, context;
4675   int i;
4676   
4677   /* Backend build structures, such as __builtin_va_list, aren't
4678      affected by all this.  */
4679   if (!CLASS_TYPE_P (type))
4680     return 0;
4681
4682   if (purpose_member (type, k->classes))
4683     return 0;
4684   k->classes = tree_cons (type, NULL_TREE, k->classes);
4685   
4686   context = decl_namespace (TYPE_MAIN_DECL (type));
4687   if (arg_assoc_namespace (k, context))
4688     return 1;
4689   
4690   /* Process baseclasses. */
4691   for (i = 0; i < CLASSTYPE_N_BASECLASSES (type); i++)
4692     if (arg_assoc_class (k, TYPE_BINFO_BASETYPE (type, i)))
4693       return 1;
4694   
4695   /* Process friends. */
4696   for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list; 
4697        list = TREE_CHAIN (list))
4698     if (k->name == TREE_PURPOSE (list))
4699       for (friends = TREE_VALUE (list); friends; 
4700            friends = TREE_CHAIN (friends))
4701         /* Only interested in global functions with potentially hidden
4702            (i.e. unqualified) declarations. */
4703         if (TREE_PURPOSE (list) == error_mark_node && TREE_VALUE (list)
4704             && decl_namespace (TREE_VALUE (list)) == context)
4705           if (add_function (k, TREE_VALUE (list)))
4706             return 1;
4707
4708   /* Process template arguments.  */
4709   if (CLASSTYPE_TEMPLATE_INFO (type))
4710     {
4711       list = innermost_args (CLASSTYPE_TI_ARGS (type));
4712       for (i = 0; i < TREE_VEC_LENGTH (list); ++i) 
4713         arg_assoc_template_arg (k, TREE_VEC_ELT (list, i));
4714     }
4715
4716   return 0;
4717 }
4718
4719 /* Adds everything associated with a given type.
4720    Returns 1 on error.  */
4721
4722 static int
4723 arg_assoc_type (k, type)
4724      struct arg_lookup *k;
4725      tree type;
4726 {
4727   switch (TREE_CODE (type))
4728     {
4729     case VOID_TYPE:
4730     case INTEGER_TYPE:
4731     case REAL_TYPE:
4732     case COMPLEX_TYPE:
4733     case CHAR_TYPE:
4734     case BOOLEAN_TYPE:
4735       return 0;
4736     case RECORD_TYPE:
4737       if (TYPE_PTRMEMFUNC_P (type))
4738         return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4739       return arg_assoc_class (k, type);
4740     case POINTER_TYPE:
4741     case REFERENCE_TYPE:
4742     case ARRAY_TYPE:
4743       return arg_assoc_type (k, TREE_TYPE (type));
4744     case UNION_TYPE:
4745     case ENUMERAL_TYPE:
4746       return arg_assoc_namespace (k, decl_namespace (TYPE_MAIN_DECL (type)));
4747     case OFFSET_TYPE:
4748       /* Pointer to member: associate class type and value type. */
4749       if (arg_assoc_type (k, TYPE_OFFSET_BASETYPE (type)))
4750         return 1;
4751       return arg_assoc_type (k, TREE_TYPE (type));
4752     case METHOD_TYPE:
4753       /* The basetype is referenced in the first arg type, so just
4754          fall through.  */
4755     case FUNCTION_TYPE:
4756       /* Associate the parameter types. */
4757       if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4758         return 1;
4759       /* Associate the return type. */
4760       return arg_assoc_type (k, TREE_TYPE (type));
4761     case TEMPLATE_TYPE_PARM:
4762     case TEMPLATE_TEMPLATE_PARM:
4763       return 0;
4764     case LANG_TYPE:
4765       if (type == unknown_type_node)
4766         return 0;
4767       /* else fall through */
4768     default:
4769       my_friendly_abort (390);
4770     }
4771   return 0;
4772 }
4773
4774 /* Adds everything associated with arguments.  Returns 1 on error.  */
4775
4776 static int
4777 arg_assoc_args (k, args)
4778      struct arg_lookup* k;
4779      tree args;
4780 {
4781   for (; args; args = TREE_CHAIN (args))
4782     if (arg_assoc (k, TREE_VALUE (args)))
4783       return 1;
4784   return 0;
4785 }
4786
4787 /* Adds everything associated with a given tree_node.  Returns 1 on error.  */
4788
4789 static int
4790 arg_assoc (k, n)
4791      struct arg_lookup* k;
4792      tree n;
4793 {
4794   if (n == error_mark_node)
4795     return 0;
4796
4797   if (TREE_CODE_CLASS (TREE_CODE (n)) == 't')
4798     return arg_assoc_type (k, n);
4799
4800   if (! type_unknown_p (n))
4801     return arg_assoc_type (k, TREE_TYPE (n));
4802
4803   if (TREE_CODE (n) == ADDR_EXPR)
4804     n = TREE_OPERAND (n, 0);
4805   if (TREE_CODE (n) == COMPONENT_REF)
4806     n = TREE_OPERAND (n, 1);
4807   if (TREE_CODE (n) == OFFSET_REF)
4808     n = TREE_OPERAND (n, 1);
4809   while (TREE_CODE (n) == TREE_LIST)
4810     n = TREE_VALUE (n);
4811
4812   if (TREE_CODE (n) == FUNCTION_DECL)
4813     return arg_assoc_type (k, TREE_TYPE (n));
4814   if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4815     {
4816       /* [basic.lookup.koenig]
4817
4818          If T is a template-id, its associated namespaces and classes
4819          are the namespace in which the template is defined; for
4820          member templates, the member template's class...  */
4821       tree template = TREE_OPERAND (n, 0);
4822       tree args = TREE_OPERAND (n, 1);
4823       tree ctx;
4824       tree arg;
4825
4826       /* First, the template.  There may actually be more than one if
4827          this is an overloaded function template.  But, in that case,
4828          we only need the first; all the functions will be in the same
4829          namespace.  */
4830       template = OVL_CURRENT (template);
4831
4832       ctx = CP_DECL_CONTEXT (template);
4833        
4834       if (TREE_CODE (ctx) == NAMESPACE_DECL)
4835         {
4836           if (arg_assoc_namespace (k, ctx) == 1)
4837             return 1;
4838         }
4839       /* It must be a member template.  */
4840       else if (arg_assoc_class (k, ctx) == 1)
4841         return 1;
4842
4843       /* Now the arguments.  */
4844       for (arg = args; arg != NULL_TREE; arg = TREE_CHAIN (arg))
4845         if (arg_assoc_template_arg (k, TREE_VALUE (arg)) == 1)
4846           return 1;
4847     }
4848   else
4849     {
4850       my_friendly_assert (TREE_CODE (n) == OVERLOAD, 980715);
4851       
4852       for (; n; n = OVL_CHAIN (n))
4853         if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4854           return 1;
4855     }
4856
4857   return 0;
4858 }
4859
4860 /* Performs Koenig lookup depending on arguments, where fns
4861    are the functions found in normal lookup. */
4862
4863 tree
4864 lookup_arg_dependent (name, fns, args)
4865      tree name;
4866      tree fns;
4867      tree args;
4868 {
4869   struct arg_lookup k;
4870   tree fn = NULL_TREE;
4871
4872   k.name = name;
4873   k.functions = fns;
4874   k.classes = NULL_TREE;
4875
4876   /* Note that we've already looked at some namespaces during normal
4877      unqualified lookup, unless we found a decl in function scope.  */
4878   if (fns)
4879     fn = OVL_CURRENT (fns);
4880   if (fn && TREE_CODE (fn) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (fn))
4881     k.namespaces = NULL_TREE;
4882   else
4883     unqualified_namespace_lookup (name, 0, &k.namespaces);
4884
4885   arg_assoc_args (&k, args);
4886   return k.functions;
4887 }
4888
4889 /* Process a namespace-alias declaration. */
4890
4891 void
4892 do_namespace_alias (alias, namespace)
4893      tree alias, namespace;
4894 {
4895   if (TREE_CODE (namespace) != NAMESPACE_DECL)
4896     {
4897       /* The parser did not find it, so it's not there. */
4898       cp_error ("unknown namespace `%D'", namespace);
4899       return;
4900     }
4901
4902   namespace = ORIGINAL_NAMESPACE (namespace);
4903
4904   /* Build the alias. */
4905   alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);     
4906   DECL_NAMESPACE_ALIAS (alias) = namespace;
4907   pushdecl (alias);
4908 }
4909
4910 /* Check a non-member using-declaration. Return the name and scope
4911    being used, and the USING_DECL, or NULL_TREE on failure. */
4912
4913 static tree
4914 validate_nonmember_using_decl (decl, scope, name)
4915      tree decl;
4916      tree *scope;
4917      tree *name;
4918 {
4919   if (TREE_CODE (decl) == SCOPE_REF
4920       && TREE_OPERAND (decl, 0) == std_node)
4921     {
4922       if (namespace_bindings_p ()
4923           && current_namespace == global_namespace)
4924         /* There's no need for a using declaration at all, here,
4925            since `std' is the same as `::'.  We can't just pass this
4926            on because we'll complain later about declaring something
4927            in the same scope as a using declaration with the same
4928            name.  We return NULL_TREE which indicates to the caller
4929            that there's no need to do any further processing.  */
4930         return NULL_TREE;
4931
4932       *scope = global_namespace;
4933       *name = TREE_OPERAND (decl, 1);
4934     }
4935   else if (TREE_CODE (decl) == SCOPE_REF)
4936     {
4937       *scope = TREE_OPERAND (decl, 0);
4938       *name = TREE_OPERAND (decl, 1);
4939
4940       /* [namespace.udecl]
4941
4942          A using-declaration for a class member shall be a
4943          member-declaration.  */
4944       if (TREE_CODE (*scope) != NAMESPACE_DECL)
4945         {
4946           if (TYPE_P (*scope))
4947             cp_error ("`%T' is not a namespace", *scope);
4948           else
4949             cp_error ("`%D' is not a namespace", *scope);
4950           return NULL_TREE;
4951         }
4952     }
4953   else if (TREE_CODE (decl) == IDENTIFIER_NODE
4954            || TREE_CODE (decl) == TYPE_DECL
4955            || TREE_CODE (decl) == TEMPLATE_DECL)
4956     {
4957       *scope = global_namespace;
4958       *name = decl;
4959     }
4960   else
4961     my_friendly_abort (382);
4962   if (TREE_CODE_CLASS (TREE_CODE (*name)) == 'd')
4963     *name = DECL_NAME (*name);
4964   /* Make a USING_DECL. */
4965   return push_using_decl (*scope, *name);
4966 }
4967
4968 /* Process local and global using-declarations. */
4969
4970 static void
4971 do_nonmember_using_decl (scope, name, oldval, oldtype, newval, newtype)
4972      tree scope, name;
4973      tree oldval, oldtype;
4974      tree *newval, *newtype;
4975 {
4976   tree decls;
4977
4978   *newval = *newtype = NULL_TREE;
4979   decls = make_node (CPLUS_BINDING);
4980   if (!qualified_lookup_using_namespace (name, scope, decls, 0))
4981     /* Lookup error */
4982     return;
4983
4984   if (!BINDING_VALUE (decls) && !BINDING_TYPE (decls))
4985     {
4986       cp_error ("`%D' not declared", name);
4987       return;
4988     }
4989
4990   /* Check for using functions. */
4991   if (BINDING_VALUE (decls) && is_overloaded_fn (BINDING_VALUE (decls)))
4992     {
4993       tree tmp, tmp1;
4994
4995       if (oldval && !is_overloaded_fn (oldval))
4996         {
4997           duplicate_decls (OVL_CURRENT (BINDING_VALUE (decls)), oldval);
4998           oldval = NULL_TREE;
4999         }
5000
5001       *newval = oldval;
5002       for (tmp = BINDING_VALUE (decls); tmp; tmp = OVL_NEXT (tmp))
5003         {
5004           tree new_fn = OVL_CURRENT (tmp);
5005
5006           /* [namespace.udecl]
5007
5008              If a function declaration in namespace scope or block
5009              scope has the same name and the same parameter types as a
5010              function introduced by a using declaration the program is
5011              ill-formed.  */
5012           for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1))
5013             {
5014               tree old_fn = OVL_CURRENT (tmp1);
5015
5016               if (!OVL_USED (tmp1)
5017                   && compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)),
5018                                 TYPE_ARG_TYPES (TREE_TYPE (old_fn))))
5019                 {
5020                   /* There was already a non-using declaration in
5021                      this scope with the same parameter types.  */
5022                   cp_error ("`%D' is already declared in this scope",
5023                             name);
5024                   break;
5025                 }
5026               else if (duplicate_decls (new_fn, old_fn))
5027                 /* We're re-using something we already used 
5028                    before.  We don't need to add it again.  */ 
5029                 break;
5030             }
5031
5032           /* If we broke out of the loop, there's no reason to add
5033              this function to the using declarations for this
5034              scope.  */
5035           if (tmp1)
5036             continue;
5037             
5038           *newval = build_overload (OVL_CURRENT (tmp), *newval);
5039           if (TREE_CODE (*newval) != OVERLOAD)
5040             *newval = ovl_cons (*newval, NULL_TREE);
5041           OVL_USED (*newval) = 1;
5042         }
5043     }
5044   else 
5045     {
5046       *newval = BINDING_VALUE (decls);
5047       if (oldval)
5048         duplicate_decls (*newval, oldval);
5049     } 
5050
5051   *newtype = BINDING_TYPE (decls);
5052   if (oldtype && *newtype && oldtype != *newtype)
5053     {
5054       cp_error ("using directive `%D' introduced ambiguous type `%T'",
5055                 name, oldtype);
5056       return;
5057     }
5058 }
5059
5060 /* Process a using-declaration not appearing in class or local scope. */
5061
5062 void
5063 do_toplevel_using_decl (decl)
5064      tree decl;
5065 {
5066   tree scope, name, binding;
5067   tree oldval, oldtype, newval, newtype;
5068
5069   decl = validate_nonmember_using_decl (decl, &scope, &name);
5070   if (decl == NULL_TREE)
5071     return;
5072   
5073   binding = binding_for_name (name, current_namespace);
5074
5075   oldval = BINDING_VALUE (binding);
5076   oldtype = BINDING_TYPE (binding);
5077
5078   do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
5079
5080   /* Copy declarations found. */
5081   if (newval)
5082     BINDING_VALUE (binding) = newval;
5083   if (newtype)
5084     BINDING_TYPE (binding) = newtype;
5085   return;
5086 }
5087
5088 /* Process a using-declaration at function scope.  */
5089
5090 void
5091 do_local_using_decl (decl)
5092      tree decl;
5093 {
5094   tree scope, name;
5095   tree oldval, oldtype, newval, newtype;
5096
5097   decl = validate_nonmember_using_decl (decl, &scope, &name);
5098   if (decl == NULL_TREE)
5099     return;
5100
5101   oldval = lookup_name_current_level (name);
5102   oldtype = lookup_type_current_level (name);
5103
5104   do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
5105
5106   if (newval)
5107     {
5108       if (is_overloaded_fn (newval))
5109         {
5110           tree fn, term;
5111
5112           /* We only need to push declarations for those functions
5113              that were not already bound in the current level.
5114              The old value might be NULL_TREE, it might be a single
5115              function, or an OVERLOAD.  */
5116           if (oldval && TREE_CODE (oldval) == OVERLOAD)
5117             term = OVL_FUNCTION (oldval);
5118           else
5119             term = oldval;
5120           for (fn = newval; fn && OVL_CURRENT (fn) != term; 
5121                fn = OVL_NEXT (fn))
5122             push_overloaded_decl (OVL_CURRENT (fn), 
5123                                   PUSH_LOCAL | PUSH_USING);
5124         }
5125       else
5126         push_local_binding (name, newval, PUSH_USING);
5127     }
5128   if (newtype)
5129     set_identifier_type_value (name, newtype);
5130 }
5131
5132 tree
5133 do_class_using_decl (decl)
5134      tree decl;
5135 {
5136   tree name, value;
5137
5138   if (TREE_CODE (decl) != SCOPE_REF
5139       || TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (decl, 0))) != 't')
5140     {
5141       cp_error ("using-declaration for non-member at class scope");
5142       return NULL_TREE;
5143     }
5144   name = TREE_OPERAND (decl, 1);
5145   if (TREE_CODE (name) == BIT_NOT_EXPR)
5146     {
5147       cp_error ("using-declaration for destructor");
5148       return NULL_TREE;
5149     }
5150   if (TREE_CODE (name) == TYPE_DECL)
5151     name = DECL_NAME (name);
5152
5153   my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 980716);
5154
5155   value = build_lang_decl (USING_DECL, name, void_type_node);
5156   DECL_INITIAL (value) = TREE_OPERAND (decl, 0);
5157   return value;
5158 }
5159
5160 /* Process a using-directive. */
5161
5162 void
5163 do_using_directive (namespace)
5164      tree namespace;
5165 {
5166   if (namespace == std_node)
5167     return;
5168   /* using namespace A::B::C; */
5169   if (TREE_CODE (namespace) == SCOPE_REF)
5170       namespace = TREE_OPERAND (namespace, 1);
5171   if (TREE_CODE (namespace) == IDENTIFIER_NODE)
5172     {
5173       /* Lookup in lexer did not find a namespace. */
5174       cp_error ("namespace `%T' undeclared", namespace);
5175       return;
5176     }
5177   if (TREE_CODE (namespace) != NAMESPACE_DECL)
5178     {
5179       cp_error ("`%T' is not a namespace", namespace);
5180       return;
5181     }
5182   namespace = ORIGINAL_NAMESPACE (namespace);
5183   if (!toplevel_bindings_p ())
5184     push_using_directive (namespace);
5185   else
5186     /* direct usage */
5187     add_using_namespace (current_namespace, namespace, 0);
5188 }
5189
5190 void
5191 check_default_args (x)
5192      tree x;
5193 {
5194   tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
5195   int saw_def = 0, i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
5196   for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
5197     {
5198       if (TREE_PURPOSE (arg))
5199         saw_def = 1;
5200       else if (saw_def)
5201         {
5202           cp_error_at ("default argument missing for parameter %P of `%+#D'",
5203                        i, x);
5204           break;
5205         }
5206     }
5207 }
5208
5209 void
5210 mark_used (decl)
5211      tree decl;
5212 {
5213   TREE_USED (decl) = 1;
5214   if (processing_template_decl)
5215     return;
5216   assemble_external (decl);
5217
5218   /* Is it a synthesized method that needs to be synthesized?  */
5219   if (TREE_CODE (decl) == FUNCTION_DECL
5220       && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
5221       && DECL_ARTIFICIAL (decl) 
5222       && ! DECL_INITIAL (decl)
5223       /* Kludge: don't synthesize for default args.  */
5224       && current_function_decl)
5225     synthesize_method (decl);
5226
5227   /* If this is a function or variable that is an instance of some
5228      template, we now know that we will need to actually do the
5229      instantiation. We check that DECL is not an explicit
5230      instantiation because that is not checked in instantiate_decl.  */
5231   if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
5232       && DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
5233       && (!DECL_EXPLICIT_INSTANTIATION (decl)
5234           || (TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))))
5235     instantiate_decl (decl);
5236 }
5237
5238 /* Helper function for named_class_head_sans_basetype nonterminal.  We
5239    have just seen something of the form `AGGR SCOPE::ID'.  Return a
5240    TYPE_DECL for the type declared by ID in SCOPE.  */
5241
5242 tree
5243 handle_class_head (aggr, scope, id)
5244      tree aggr, scope, id;
5245 {
5246   tree decl;
5247
5248   if (TREE_CODE (id) == TYPE_DECL)
5249     decl = id;
5250   else if (DECL_CLASS_TEMPLATE_P (id))
5251     decl = DECL_TEMPLATE_RESULT (id);
5252   else 
5253     {
5254       tree current = current_scope();
5255   
5256       if (current == NULL_TREE)
5257         current = current_namespace;
5258       if (scope == std_node)
5259         scope = global_namespace;
5260       if (scope == NULL_TREE)
5261         scope = global_namespace;
5262       if (scope == current)
5263         {
5264           /* We've been given AGGR SCOPE::ID, when we're already inside SCOPE.
5265              Be nice about it.  */
5266           if (pedantic)
5267             cp_pedwarn ("extra qualification `%T::' on member `%D' ignored",
5268                         FROB_CONTEXT (scope), id);
5269         }
5270       else if (scope != global_namespace)
5271         cp_error ("`%T' does not have a nested type named `%D'", scope, id);
5272       else
5273         cp_error ("no file-scope type named `%D'", id);
5274       
5275       /* Inject it at the current scope.  */
5276       decl = TYPE_MAIN_DECL (xref_tag (aggr, id, 1));
5277     }
5278  
5279   /* Enter the SCOPE.  If this turns out not to be a definition, the
5280      parser must leave the scope.  */
5281   push_scope (CP_DECL_CONTEXT (decl));
5282
5283   /* If we see something like:
5284
5285        template <typename T> struct S::I ....
5286        
5287      we must create a TEMPLATE_DECL for the nested type.  */
5288   if (PROCESSING_REAL_TEMPLATE_DECL_P ())
5289     decl = push_template_decl (decl);
5290
5291   return decl;
5292 }
5293
5294 /* Initialize decl2.c.  */
5295
5296 void
5297 init_decl2 ()
5298 {
5299   ggc_add_tree_root (&decl_namespace_list, 1);
5300   ggc_add_tree_varray_root (&saved_inlines, 1);
5301   ggc_add_tree_varray_root (&pending_statics, 1);
5302   ggc_add_tree_varray_root (&ssdf_decls, 1);
5303   ggc_add_tree_root (&ssdf_decl, 1);
5304   ggc_add_tree_root (&priority_decl, 1);
5305   ggc_add_tree_root (&initialize_p_decl, 1);
5306   ggc_add_tree_root (&pending_vtables, 1);
5307 }