* iris6.h (BUILD_VA_LIST_TYPE): Define.
[official-gcc.git] / gcc / cp / decl2.c
blobb3cdad48dd9b4b1df37b19a67e7b55cf1f53402b
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 92-98, 1999 Free Software Foundation, Inc.
3 Hacked by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* Process declarations and symbol lookup for C front end.
24 Also constructs types; the standard scalar types at initialization,
25 and structure, union, array and enum types when they are declared. */
27 /* ??? not all decl nodes are given the most useful possible
28 line numbers. For example, the CONST_DECLs for enum values. */
30 #include "config.h"
31 #include "system.h"
32 #include "tree.h"
33 #include "rtl.h"
34 #include "flags.h"
35 #include "cp-tree.h"
36 #include "decl.h"
37 #include "lex.h"
38 #include "output.h"
39 #include "except.h"
40 #include "expr.h"
41 #include "defaults.h"
42 #include "toplev.h"
43 #include "dwarf2out.h"
44 #include "dwarfout.h"
45 #include "splay-tree.h"
46 #include "ggc.h"
48 #if USE_CPPLIB
49 #include "cpplib.h"
50 extern cpp_reader parse_in;
51 #endif
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;
64 static tree get_sentry PROTO((tree));
65 static void mark_vtable_entries PROTO((tree));
66 static void grok_function_init PROTO((tree, tree));
67 static int finish_vtable_vardecl PROTO((tree *, void *));
68 static int prune_vtable_vardecl PROTO((tree *, void *));
69 static int is_namespace_ancestor PROTO((tree, tree));
70 static void add_using_namespace PROTO((tree, tree, int));
71 static tree ambiguous_decl PROTO((tree, tree, tree,int));
72 static tree build_anon_union_vars PROTO((tree, tree*, int, int));
73 static int acceptable_java_type PROTO((tree));
74 static void output_vtable_inherit PROTO((tree));
75 static tree start_objects PROTO((int, int));
76 static void finish_objects PROTO((int, int, tree));
77 static tree merge_functions PROTO((tree, tree));
78 static tree decl_namespace PROTO((tree));
79 static tree validate_nonmember_using_decl PROTO((tree, tree *, tree *));
80 static void do_nonmember_using_decl PROTO((tree, tree, tree, tree,
81 tree *, tree *));
82 static tree start_static_storage_duration_function PROTO((void));
83 static void finish_static_storage_duration_function PROTO((tree));
84 static priority_info get_priority_info PROTO((int));
85 static void do_static_initialization PROTO((tree, tree));
86 static void do_static_destruction PROTO((tree));
87 static tree start_static_initialization_or_destruction PROTO((tree, int));
88 static void finish_static_initialization_or_destruction PROTO((tree));
89 static void generate_ctor_or_dtor_function PROTO((int, int));
90 static int generate_ctor_and_dtor_functions_for_priority
91 PROTO((splay_tree_node, void *));
92 static tree prune_vars_needing_no_initialization PROTO((tree));
93 static void write_out_vars PROTO((tree));
95 extern int current_class_depth;
97 /* A list of virtual function tables we must make sure to write out. */
98 tree pending_vtables;
100 /* A list of static class variables. This is needed, because a
101 static class variable can be declared inside the class without
102 an initializer, and then initialized, staticly, outside the class. */
103 static varray_type pending_statics;
104 static size_t pending_statics_used;
106 /* A list of functions which were declared inline, but which we
107 may need to emit outline anyway. */
108 static varray_type saved_inlines;
109 static size_t saved_inlines_used;
111 /* Same, but not reset. Local temp variables and global temp variables
112 can have the same name. */
113 static int global_temp_name_counter;
115 /* Flag used when debugging spew.c */
117 extern int spew_debug;
119 /* Nonzero if we're done parsing and into end-of-file activities. */
121 int at_eof;
123 /* Functions called along with real static constructors and destructors. */
125 tree static_ctors, static_dtors;
127 /* The :: namespace. */
129 tree global_namespace;
131 /* The stack for namespaces of current declarations. */
133 static tree decl_namespace_list;
136 /* C (and C++) language-specific option variables. */
138 /* Nonzero means allow type mismatches in conditional expressions;
139 just make their values `void'. */
141 int flag_cond_mismatch;
143 /* Nonzero means give `double' the same size as `float'. */
145 int flag_short_double;
147 /* Nonzero means don't recognize the keyword `asm'. */
149 int flag_no_asm;
151 /* Nonzero means don't recognize any extension keywords. */
153 int flag_no_gnu_keywords;
155 /* Nonzero means don't recognize the non-ANSI builtin functions. */
157 int flag_no_builtin;
159 /* Nonzero means don't recognize the non-ANSI builtin functions.
160 -ansi sets this. */
162 int flag_no_nonansi_builtin;
164 /* Nonzero means do some things the same way PCC does. Only provided so
165 the compiler will link. */
167 int flag_traditional;
169 /* Nonzero means to treat bitfields as unsigned unless they say `signed'. */
171 int flag_signed_bitfields = 1;
173 /* Nonzero means enable obscure ANSI features and disable GNU extensions
174 that might cause ANSI-compliant code to be miscompiled. */
176 int flag_ansi;
178 /* Nonzero means do emit exported implementations of functions even if
179 they can be inlined. */
181 int flag_implement_inlines = 1;
183 /* Nonzero means do emit exported implementations of templates, instead of
184 multiple static copies in each file that needs a definition. */
186 int flag_external_templates;
188 /* Nonzero means that the decision to emit or not emit the implementation of a
189 template depends on where the template is instantiated, rather than where
190 it is defined. */
192 int flag_alt_external_templates;
194 /* Nonzero means that implicit instantiations will be emitted if needed. */
196 int flag_implicit_templates = 1;
198 /* Nonzero means that implicit instantiations of inline templates will be
199 emitted if needed, even if instantiations of non-inline templates
200 aren't. */
202 int flag_implicit_inline_templates = 1;
204 /* Nonzero means warn about implicit declarations. */
206 int warn_implicit = 1;
208 /* Nonzero means warn about usage of long long when `-pedantic'. */
210 int warn_long_long = 1;
212 /* Nonzero means warn when all ctors or dtors are private, and the class
213 has no friends. */
215 int warn_ctor_dtor_privacy = 1;
217 /* True if we want to implement vtables using "thunks".
218 The default is off. */
220 #ifndef DEFAULT_VTABLE_THUNKS
221 #define DEFAULT_VTABLE_THUNKS 0
222 #endif
223 int flag_vtable_thunks = DEFAULT_VTABLE_THUNKS;
225 /* Nonzero means generate separate instantiation control files and juggle
226 them at link time. */
228 int flag_use_repository;
230 /* Nonzero if we want to issue diagnostics that the standard says are not
231 required. */
233 int flag_optional_diags = 1;
235 /* Nonzero means give string constants the type `const char *', as mandated
236 by the standard. */
238 int flag_const_strings = 1;
240 /* If non-NULL, dump the tree structure for the entire translation
241 unit to this file. */
243 char *flag_dump_translation_unit = 0;
245 /* Nonzero means warn about deprecated conversion from string constant to
246 `char *'. */
248 int warn_write_strings;
250 /* Nonzero means warn about pointer casts that can drop a type qualifier
251 from the pointer target type. */
253 int warn_cast_qual;
255 /* Nonzero means warn about sizeof(function) or addition/subtraction
256 of function pointers. */
258 int warn_pointer_arith = 1;
260 /* Nonzero means warn for any function def without prototype decl. */
262 int warn_missing_prototypes;
264 /* Nonzero means warn about multiple (redundant) decls for the same single
265 variable or function. */
267 int warn_redundant_decls;
269 /* Warn if initializer is not completely bracketed. */
271 int warn_missing_braces;
273 /* Warn about comparison of signed and unsigned values. */
275 int warn_sign_compare;
277 /* Warn about testing equality of floating point numbers. */
279 int warn_float_equal = 0;
281 /* Warn about *printf or *scanf format/argument anomalies. */
283 int warn_format;
285 /* Warn about a subscript that has type char. */
287 int warn_char_subscripts;
289 /* Warn if a type conversion is done that might have confusing results. */
291 int warn_conversion;
293 /* Warn if adding () is suggested. */
295 int warn_parentheses;
297 /* Non-zero means warn in function declared in derived class has the
298 same name as a virtual in the base class, but fails to match the
299 type signature of any virtual function in the base class. */
300 int warn_overloaded_virtual;
302 /* Non-zero means warn when declaring a class that has a non virtual
303 destructor, when it really ought to have a virtual one. */
304 int warn_nonvdtor;
306 /* Non-zero means warn when a function is declared extern and later inline. */
307 int warn_extern_inline;
309 /* Non-zero means warn when the compiler will reorder code. */
310 int warn_reorder;
312 /* Non-zero means warn when synthesis behavior differs from Cfront's. */
313 int warn_synth;
315 /* Non-zero means warn when we convert a pointer to member function
316 into a pointer to (void or function). */
317 int warn_pmf2ptr = 1;
319 /* Nonzero means warn about violation of some Effective C++ style rules. */
321 int warn_ecpp;
323 /* Nonzero means warn where overload resolution chooses a promotion from
324 unsigned to signed over a conversion to an unsigned of the same size. */
326 int warn_sign_promo;
328 /* Nonzero means warn when an old-style cast is used. */
330 int warn_old_style_cast;
332 /* Warn about #pragma directives that are not recognised. */
334 int warn_unknown_pragmas; /* Tri state variable. */
336 /* Nonzero means warn about use of multicharacter literals. */
338 int warn_multichar = 1;
340 /* Nonzero means warn when non-templatized friend functions are
341 declared within a template */
343 int warn_nontemplate_friend = 1;
345 /* Nonzero means complain about deprecated features. */
347 int warn_deprecated = 1;
349 /* Nonzero means `$' can be in an identifier. */
351 #ifndef DOLLARS_IN_IDENTIFIERS
352 #define DOLLARS_IN_IDENTIFIERS 1
353 #endif
354 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
356 /* Nonzero for -fno-strict-prototype switch: do not consider empty
357 argument prototype to mean function takes no arguments. */
359 int flag_strict_prototype = 2;
360 int strict_prototype = 1;
361 int strict_prototypes_lang_c, strict_prototypes_lang_cplusplus = 1;
363 /* Nonzero means that labels can be used as first-class objects */
365 int flag_labels_ok;
367 /* Nonzero means allow Microsoft extensions without a pedwarn. */
369 int flag_ms_extensions;
371 /* Non-zero means to collect statistics which might be expensive
372 and to print them when we are done. */
373 int flag_detailed_statistics;
375 /* C++ specific flags. */
376 /* Zero means that `this' is a *const. This gives nice behavior in the
377 2.0 world. 1 gives 1.2-compatible behavior. 2 gives Spring behavior.
378 -2 means we're constructing an object and it has fixed type. */
380 int flag_this_is_variable;
382 /* Nonzero means we should attempt to elide constructors when possible. */
384 int flag_elide_constructors = 1;
386 /* Nonzero means that member functions defined in class scope are
387 inline by default. */
389 int flag_default_inline = 1;
391 /* Controls whether compiler generates 'type descriptor' that give
392 run-time type information. */
393 int flag_rtti = 1;
395 /* Nonzero if we wish to output cross-referencing information
396 for the GNU class browser. */
397 extern int flag_gnu_xref;
399 /* Nonzero if we want to support huge (> 2^(sizeof(short)*8-1) bytes)
400 objects. */
402 int flag_huge_objects;
404 /* Nonzero if we want to conserve space in the .o files. We do this
405 by putting uninitialized data and runtime initialized data into
406 .common instead of .data at the expense of not flagging multiple
407 definitions. */
409 int flag_conserve_space;
411 /* Nonzero if we want to obey access control semantics. */
413 int flag_access_control = 1;
415 /* Nonzero if we want to understand the operator names, i.e. 'bitand'. */
417 int flag_operator_names;
419 /* Nonzero if we want to check the return value of new and avoid calling
420 constructors if it is a null pointer. */
422 int flag_check_new;
424 /* Nonzero if we want the new ANSI rules for pushing a new scope for `for'
425 initialization variables.
426 0: Old rules, set by -fno-for-scope.
427 2: New ANSI rules, set by -ffor-scope.
428 1: Try to implement new ANSI rules, but with backup compatibility
429 (and warnings). This is the default, for now. */
431 int flag_new_for_scope = 1;
433 /* Nonzero if we want to emit defined symbols with common-like linkage as
434 weak symbols where possible, in order to conform to C++ semantics.
435 Otherwise, emit them as local symbols. */
437 int flag_weak = 1;
439 /* Nonzero to enable experimental ABI changes. */
441 int flag_new_abi;
443 /* Nonzero to not ignore namespace std. */
445 int flag_honor_std;
447 /* Maximum template instantiation depth. Must be at least 17 for ANSI
448 compliance. */
450 int max_tinst_depth = 17;
452 /* The name-mangling scheme to use. Must be 1 or greater to support
453 template functions with identical types, but different template
454 arguments. */
455 int name_mangling_version = 2;
457 /* Nonzero means that guiding declarations are allowed. */
458 int flag_guiding_decls;
460 /* Nonzero if wchar_t should be `unsigned short' instead of whatever it
461 would normally be, for use with WINE. */
462 int flag_short_wchar;
464 /* Nonzero if squashed mangling is to be performed.
465 This uses the B and K codes to reference previously seen class types
466 and class qualifiers. */
467 int flag_do_squangling;
469 /* Nonzero means output .vtable_{entry,inherit} for use in doing vtable gc. */
471 int flag_vtable_gc;
473 /* Nonzero means make the default pedwarns warnings instead of errors.
474 The value of this flag is ignored if -pedantic is specified. */
476 int flag_permissive;
478 /* If this variable is defined to a non-NULL value, it will be called
479 after the file has been completely parsed. */
481 void (*back_end_hook) PROTO((tree));
483 /* Table of language-dependent -f options.
484 STRING is the option name. VARIABLE is the address of the variable.
485 ON_VALUE is the value to store in VARIABLE
486 if `-fSTRING' is seen as an option.
487 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
489 static struct { const char *string; int *variable; int on_value;}
490 lang_f_options[] =
492 /* C/C++ options. */
493 {"signed-char", &flag_signed_char, 1},
494 {"unsigned-char", &flag_signed_char, 0},
495 {"signed-bitfields", &flag_signed_bitfields, 1},
496 {"unsigned-bitfields", &flag_signed_bitfields, 0},
497 {"short-enums", &flag_short_enums, 1},
498 {"short-double", &flag_short_double, 1},
499 {"short-wchar", &flag_short_wchar, 1},
500 {"cond-mismatch", &flag_cond_mismatch, 1},
501 {"asm", &flag_no_asm, 0},
502 {"builtin", &flag_no_builtin, 0},
504 /* C++-only options. */
505 {"access-control", &flag_access_control, 1},
506 {"check-new", &flag_check_new, 1},
507 {"conserve-space", &flag_conserve_space, 1},
508 {"const-strings", &flag_const_strings, 1},
509 {"default-inline", &flag_default_inline, 1},
510 {"dollars-in-identifiers", &dollars_in_ident, 1},
511 {"elide-constructors", &flag_elide_constructors, 1},
512 {"external-templates", &flag_external_templates, 1},
513 {"for-scope", &flag_new_for_scope, 2},
514 {"gnu-keywords", &flag_no_gnu_keywords, 0},
515 {"handle-exceptions", &flag_exceptions, 1},
516 {"honor-std", &flag_honor_std, 1},
517 {"huge-objects", &flag_huge_objects, 1},
518 {"implement-inlines", &flag_implement_inlines, 1},
519 {"implicit-inline-templates", &flag_implicit_inline_templates, 1},
520 {"implicit-templates", &flag_implicit_templates, 1},
521 {"labels-ok", &flag_labels_ok, 1},
522 {"ms-extensions", &flag_ms_extensions, 1},
523 {"nonansi-builtins", &flag_no_nonansi_builtin, 0},
524 {"operator-names", &flag_operator_names, 1},
525 {"optional-diags", &flag_optional_diags, 1},
526 {"permissive", &flag_permissive, 1},
527 {"repo", &flag_use_repository, 1},
528 {"rtti", &flag_rtti, 1},
529 {"squangle", &flag_do_squangling, 1},
530 {"stats", &flag_detailed_statistics, 1},
531 {"strict-prototype", &flag_strict_prototype, 1},
532 {"vtable-gc", &flag_vtable_gc, 1},
533 {"vtable-thunks", &flag_vtable_thunks, 1},
534 {"weak", &flag_weak, 1},
535 {"xref", &flag_gnu_xref, 1}
538 /* Decode the string P as a language-specific option.
539 Return the number of strings consumed for a valid option.
540 Otherwise return 0. Should not complain if it does not
541 recognise the option. */
543 int
544 lang_decode_option (argc, argv)
545 int argc
546 #if !USE_CPPLIB
547 ATTRIBUTE_UNUSED
548 #endif
550 char **argv;
553 int strings_processed;
554 char *p = argv[0];
555 #if USE_CPPLIB
556 strings_processed = cpp_handle_option (&parse_in, argc, argv);
557 #else
558 strings_processed = 0;
559 #endif /* ! USE_CPPLIB */
561 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
562 /* ignore */;
563 else if (p[0] == '-' && p[1] == 'f')
565 /* Some kind of -f option.
566 P's value is the option sans `-f'.
567 Search for it in the table of options. */
568 size_t j;
570 p += 2;
571 /* Try special -f options. */
573 if (!strcmp (p, "handle-exceptions")
574 || !strcmp (p, "no-handle-exceptions"))
575 warning ("-fhandle-exceptions has been renamed to -fexceptions (and is now on by default)");
576 else if (!strcmp (p, "all-virtual")
577 || !strcmp (p, "enum-int-equiv")
578 || !strcmp (p, "no-nonnull-objects")
579 || !strcmp (p, "this-is-variable"))
580 warning ("-f%s is no longer supported", p);
581 else if (! strcmp (p, "alt-external-templates"))
583 flag_external_templates = 1;
584 flag_alt_external_templates = 1;
585 cp_deprecated ("-falt-external-templates");
587 else if (! strcmp (p, "no-alt-external-templates"))
588 flag_alt_external_templates = 0;
589 else if (!strcmp (p, "repo"))
591 flag_use_repository = 1;
592 flag_implicit_templates = 0;
594 else if (!strcmp (p, "guiding-decls"))
596 flag_guiding_decls = 1;
597 name_mangling_version = 0;
599 else if (!strcmp (p, "no-guiding-decls"))
600 flag_guiding_decls = 0;
601 else if (!strcmp (p, "external-templates"))
603 flag_external_templates = 1;
604 cp_deprecated ("-fexternal-templates");
606 else if (!strcmp (p, "new-abi"))
608 flag_new_abi = 1;
609 flag_do_squangling = 1;
610 flag_honor_std = 1;
611 flag_vtable_thunks = 1;
613 else if (!strcmp (p, "no-new-abi"))
615 flag_new_abi = 0;
616 flag_do_squangling = 0;
617 flag_honor_std = 0;
619 else if (!strncmp (p, "template-depth-", 15))
620 max_tinst_depth
621 = read_integral_parameter (p + 15, p - 2, max_tinst_depth);
622 else if (!strncmp (p, "name-mangling-version-", 22))
623 name_mangling_version
624 = read_integral_parameter (p + 22, p - 2, name_mangling_version);
625 else if (!strncmp (p, "dump-translation-unit-", 22))
627 if (p[22] == '\0')
628 error ("no file specified with -fdump-translation-unit");
629 else
630 flag_dump_translation_unit = p + 22;
632 else
634 int found = 0;
636 for (j = 0;
637 !found && j < (sizeof (lang_f_options)
638 / sizeof (lang_f_options[0]));
639 j++)
641 if (!strcmp (p, lang_f_options[j].string))
643 *lang_f_options[j].variable = lang_f_options[j].on_value;
644 /* A goto here would be cleaner,
645 but breaks the vax pcc. */
646 found = 1;
648 if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
649 && ! strcmp (p+3, lang_f_options[j].string))
651 *lang_f_options[j].variable = ! lang_f_options[j].on_value;
652 found = 1;
656 return found;
659 else if (p[0] == '-' && p[1] == 'W')
661 int setting = 1;
663 /* The -W options control the warning behavior of the compiler. */
664 p += 2;
666 if (p[0] == 'n' && p[1] == 'o' && p[2] == '-')
667 setting = 0, p += 3;
669 if (!strcmp (p, "implicit"))
670 warn_implicit = setting;
671 else if (!strcmp (p, "long-long"))
672 warn_long_long = setting;
673 else if (!strcmp (p, "return-type"))
674 warn_return_type = setting;
675 else if (!strcmp (p, "ctor-dtor-privacy"))
676 warn_ctor_dtor_privacy = setting;
677 else if (!strcmp (p, "write-strings"))
678 warn_write_strings = setting;
679 else if (!strcmp (p, "cast-qual"))
680 warn_cast_qual = setting;
681 else if (!strcmp (p, "char-subscripts"))
682 warn_char_subscripts = setting;
683 else if (!strcmp (p, "pointer-arith"))
684 warn_pointer_arith = setting;
685 else if (!strcmp (p, "missing-prototypes"))
686 warn_missing_prototypes = setting;
687 else if (!strcmp (p, "redundant-decls"))
688 warn_redundant_decls = setting;
689 else if (!strcmp (p, "missing-braces"))
690 warn_missing_braces = setting;
691 else if (!strcmp (p, "sign-compare"))
692 warn_sign_compare = setting;
693 else if (!strcmp (p, "float-equal"))
694 warn_float_equal = setting;
695 else if (!strcmp (p, "format"))
696 warn_format = setting;
697 else if (!strcmp (p, "conversion"))
698 warn_conversion = setting;
699 else if (!strcmp (p, "parentheses"))
700 warn_parentheses = setting;
701 else if (!strcmp (p, "non-virtual-dtor"))
702 warn_nonvdtor = setting;
703 else if (!strcmp (p, "extern-inline"))
704 warn_extern_inline = setting;
705 else if (!strcmp (p, "reorder"))
706 warn_reorder = setting;
707 else if (!strcmp (p, "synth"))
708 warn_synth = setting;
709 else if (!strcmp (p, "pmf-conversions"))
710 warn_pmf2ptr = setting;
711 else if (!strcmp (p, "effc++"))
712 warn_ecpp = setting;
713 else if (!strcmp (p, "sign-promo"))
714 warn_sign_promo = setting;
715 else if (!strcmp (p, "old-style-cast"))
716 warn_old_style_cast = setting;
717 else if (!strcmp (p, "overloaded-virtual"))
718 warn_overloaded_virtual = setting;
719 else if (!strcmp (p, "multichar"))
720 warn_multichar = setting;
721 else if (!strcmp (p, "unknown-pragmas"))
722 /* Set to greater than 1, so that even unknown pragmas in
723 system headers will be warned about. */
724 warn_unknown_pragmas = setting * 2;
725 else if (!strcmp (p, "non-template-friend"))
726 warn_nontemplate_friend = setting;
727 else if (!strcmp (p, "deprecated"))
728 warn_deprecated = setting;
729 else if (!strcmp (p, "comment"))
730 ; /* cpp handles this one. */
731 else if (!strcmp (p, "comments"))
732 ; /* cpp handles this one. */
733 else if (!strcmp (p, "trigraphs"))
734 ; /* cpp handles this one. */
735 else if (!strcmp (p, "import"))
736 ; /* cpp handles this one. */
737 else if (!strcmp (p, "all"))
739 warn_return_type = setting;
740 warn_unused = setting;
741 warn_implicit = setting;
742 warn_switch = setting;
743 warn_format = setting;
744 warn_parentheses = setting;
745 warn_missing_braces = setting;
746 warn_sign_compare = setting;
747 warn_multichar = setting;
748 /* We save the value of warn_uninitialized, since if they put
749 -Wuninitialized on the command line, we need to generate a
750 warning about not using it without also specifying -O. */
751 if (warn_uninitialized != 1)
752 warn_uninitialized = (setting ? 2 : 0);
753 /* Only warn about unknown pragmas that are not in system
754 headers. */
755 warn_unknown_pragmas = 1;
757 /* C++-specific warnings. */
758 warn_ctor_dtor_privacy = setting;
759 warn_nonvdtor = setting;
760 warn_reorder = setting;
761 warn_nontemplate_friend = setting;
763 else return strings_processed;
765 else if (!strcmp (p, "-ansi"))
766 flag_no_nonansi_builtin = 1, flag_ansi = 1,
767 flag_no_gnu_keywords = 1, flag_operator_names = 1;
768 #ifdef SPEW_DEBUG
769 /* Undocumented, only ever used when you're invoking cc1plus by hand, since
770 it's probably safe to assume no sane person would ever want to use this
771 under normal circumstances. */
772 else if (!strcmp (p, "-spew-debug"))
773 spew_debug = 1;
774 #endif
775 else
776 return strings_processed;
778 return 1;
781 /* Incorporate `const' and `volatile' qualifiers for member functions.
782 FUNCTION is a TYPE_DECL or a FUNCTION_DECL.
783 QUALS is a list of qualifiers. */
785 tree
786 grok_method_quals (ctype, function, quals)
787 tree ctype, function, quals;
789 tree fntype = TREE_TYPE (function);
790 tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
791 int type_quals = TYPE_UNQUALIFIED;
792 int dup_quals = TYPE_UNQUALIFIED;
796 int tq = cp_type_qual_from_rid (TREE_VALUE (quals));
798 if (type_quals & tq)
799 dup_quals |= tq;
800 else
801 type_quals |= tq;
802 quals = TREE_CHAIN (quals);
804 while (quals);
806 if (dup_quals != TYPE_UNQUALIFIED)
807 cp_error ("duplicate type qualifiers in %s declaration",
808 TREE_CODE (function) == FUNCTION_DECL
809 ? "member function" : "type");
811 ctype = cp_build_qualified_type (ctype, type_quals);
812 fntype = build_cplus_method_type (ctype, TREE_TYPE (fntype),
813 (TREE_CODE (fntype) == METHOD_TYPE
814 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
815 : TYPE_ARG_TYPES (fntype)));
816 if (raises)
817 fntype = build_exception_variant (fntype, raises);
819 TREE_TYPE (function) = fntype;
820 return ctype;
823 /* Warn when -fexternal-templates is used and #pragma
824 interface/implementation is not used all the times it should be,
825 inform the user. */
827 void
828 warn_if_unknown_interface (decl)
829 tree decl;
831 static int already_warned = 0;
832 if (already_warned++)
833 return;
835 if (flag_alt_external_templates)
837 struct tinst_level *til = tinst_for_decl ();
838 int sl = lineno;
839 char *sf = input_filename;
841 if (til)
843 lineno = til->line;
844 input_filename = til->file;
846 cp_warning ("template `%#D' instantiated in file without #pragma interface",
847 decl);
848 lineno = sl;
849 input_filename = sf;
851 else
852 cp_warning_at ("template `%#D' defined in file without #pragma interface",
853 decl);
856 /* A subroutine of the parser, to handle a component list. */
858 void
859 grok_x_components (specs)
860 tree specs;
862 struct pending_inline **p;
863 tree t;
865 specs = strip_attrs (specs);
867 check_tag_decl (specs);
868 t = groktypename (build_decl_list (specs, NULL_TREE));
870 /* The only case where we need to do anything additional here is an
871 anonymous union field, e.g.: `struct S { union { int i; }; };'. */
872 if (t == NULL_TREE || !ANON_AGGR_TYPE_P (t))
873 return;
875 fixup_anonymous_aggr (t);
876 finish_member_declaration (build_lang_decl (FIELD_DECL, NULL_TREE, t));
878 /* Ignore any inline function definitions in the anonymous union
879 since an anonymous union may not have function members. */
880 p = &pending_inlines;
881 for (; *p; *p = (*p)->next)
882 if (DECL_CONTEXT ((*p)->fndecl) != t)
883 break;
886 /* Constructors for types with virtual baseclasses need an "in-charge" flag
887 saying whether this constructor is responsible for initialization of
888 virtual baseclasses or not. All destructors also need this "in-charge"
889 flag, which additionally determines whether or not the destructor should
890 free the memory for the object.
892 This function adds the "in-charge" flag to member function FN if
893 appropriate. It is called from grokclassfn and tsubst.
894 FN must be either a constructor or destructor. */
896 void
897 maybe_retrofit_in_chrg (fn)
898 tree fn;
900 tree basetype, arg_types, parms, parm, fntype;
902 if (DECL_CONSTRUCTOR_P (fn)
903 && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CLASS_CONTEXT (fn))
904 && ! DECL_CONSTRUCTOR_FOR_VBASE_P (fn))
905 /* OK */;
906 else if (! DECL_CONSTRUCTOR_P (fn)
907 && TREE_CHAIN (DECL_ARGUMENTS (fn)) == NULL_TREE)
908 /* OK */;
909 else
910 return;
912 if (DECL_CONSTRUCTOR_P (fn))
913 DECL_CONSTRUCTOR_FOR_VBASE_P (fn) = 1;
915 /* First add it to DECL_ARGUMENTS... */
916 parm = build_decl (PARM_DECL, in_charge_identifier, integer_type_node);
917 /* Mark the artificial `__in_chrg' parameter as "artificial". */
918 SET_DECL_ARTIFICIAL (parm);
919 DECL_ARG_TYPE (parm) = integer_type_node;
920 TREE_READONLY (parm) = 1;
921 parms = DECL_ARGUMENTS (fn);
922 TREE_CHAIN (parm) = TREE_CHAIN (parms);
923 TREE_CHAIN (parms) = parm;
925 /* ...and then to TYPE_ARG_TYPES. */
926 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
927 basetype = TREE_TYPE (TREE_VALUE (arg_types));
928 arg_types = hash_tree_chain (integer_type_node, TREE_CHAIN (arg_types));
929 fntype = build_cplus_method_type (basetype, TREE_TYPE (TREE_TYPE (fn)),
930 arg_types);
931 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
932 fntype = build_exception_variant (fntype,
933 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
934 TREE_TYPE (fn) = fntype;
937 /* Classes overload their constituent function names automatically.
938 When a function name is declared in a record structure,
939 its name is changed to it overloaded name. Since names for
940 constructors and destructors can conflict, we place a leading
941 '$' for destructors.
943 CNAME is the name of the class we are grokking for.
945 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
947 FLAGS contains bits saying what's special about today's
948 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
950 If FUNCTION is a destructor, then we must add the `auto-delete' field
951 as a second parameter. There is some hair associated with the fact
952 that we must "declare" this variable in the manner consistent with the
953 way the rest of the arguments were declared.
955 QUALS are the qualifiers for the this pointer. */
957 void
958 grokclassfn (ctype, function, flags, quals)
959 tree ctype, function;
960 enum overload_flags flags;
961 tree quals;
963 tree fn_name = DECL_NAME (function);
964 tree arg_types;
965 tree parm;
966 tree qualtype;
968 if (fn_name == NULL_TREE)
970 error ("name missing for member function");
971 fn_name = get_identifier ("<anonymous>");
972 DECL_NAME (function) = fn_name;
975 if (quals)
976 qualtype = grok_method_quals (ctype, function, quals);
977 else
978 qualtype = ctype;
980 arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
981 if (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
983 /* Must add the class instance variable up front. */
984 /* Right now we just make this a pointer. But later
985 we may wish to make it special. */
986 tree type = TREE_VALUE (arg_types);
988 parm = build_decl (PARM_DECL, this_identifier, type);
989 /* Mark the artificial `this' parameter as "artificial". */
990 SET_DECL_ARTIFICIAL (parm);
991 DECL_ARG_TYPE (parm) = type;
992 /* We can make this a register, so long as we don't
993 accidentally complain if someone tries to take its address. */
994 DECL_REGISTER (parm) = 1;
995 TREE_READONLY (parm) = 1;
996 TREE_CHAIN (parm) = last_function_parms;
997 last_function_parms = parm;
1000 DECL_ARGUMENTS (function) = last_function_parms;
1001 /* First approximations. */
1002 DECL_CONTEXT (function) = ctype;
1003 DECL_CLASS_CONTEXT (function) = ctype;
1005 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
1007 maybe_retrofit_in_chrg (function);
1008 arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
1011 if (flags == DTOR_FLAG)
1013 DECL_ASSEMBLER_NAME (function) = build_destructor_name (ctype);
1014 TYPE_HAS_DESTRUCTOR (ctype) = 1;
1016 else
1017 set_mangled_name_for_decl (function);
1020 /* Work on the expr used by alignof (this is only called by the parser). */
1022 tree
1023 grok_alignof (expr)
1024 tree expr;
1026 tree best, t;
1027 int bestalign;
1029 if (processing_template_decl)
1030 return build_min (ALIGNOF_EXPR, sizetype, expr);
1032 if (TREE_CODE (expr) == COMPONENT_REF
1033 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
1034 error ("`__alignof__' applied to a bit-field");
1036 if (TREE_CODE (expr) == INDIRECT_REF)
1038 best = t = TREE_OPERAND (expr, 0);
1039 bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
1041 while (TREE_CODE (t) == NOP_EXPR
1042 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
1044 int thisalign;
1045 t = TREE_OPERAND (t, 0);
1046 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
1047 if (thisalign > bestalign)
1048 best = t, bestalign = thisalign;
1050 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
1052 else
1054 /* ANSI says arrays and fns are converted inside comma.
1055 But we can't convert them in build_compound_expr
1056 because that would break commas in lvalues.
1057 So do the conversion here if operand was a comma. */
1058 if (TREE_CODE (expr) == COMPOUND_EXPR
1059 && (TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1060 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE))
1061 expr = default_conversion (expr);
1062 return c_alignof (TREE_TYPE (expr));
1066 /* Create an ARRAY_REF, checking for the user doing things backwards
1067 along the way. */
1069 tree
1070 grok_array_decl (array_expr, index_exp)
1071 tree array_expr, index_exp;
1073 tree type = TREE_TYPE (array_expr);
1074 tree p1, p2, i1, i2;
1076 if (type == error_mark_node || index_exp == error_mark_node)
1077 return error_mark_node;
1078 if (processing_template_decl)
1079 return build_min (ARRAY_REF, type ? TREE_TYPE (type) : NULL_TREE,
1080 array_expr, index_exp);
1082 if (type == NULL_TREE)
1084 /* Something has gone very wrong. Assume we are mistakenly reducing
1085 an expression instead of a declaration. */
1086 error ("parser may be lost: is there a '{' missing somewhere?");
1087 return NULL_TREE;
1090 if (TREE_CODE (type) == OFFSET_TYPE
1091 || TREE_CODE (type) == REFERENCE_TYPE)
1092 type = TREE_TYPE (type);
1094 /* If they have an `operator[]', use that. */
1095 if (IS_AGGR_TYPE (type) || IS_AGGR_TYPE (TREE_TYPE (index_exp)))
1096 return build_opfncall (ARRAY_REF, LOOKUP_NORMAL,
1097 array_expr, index_exp, NULL_TREE);
1099 /* Otherwise, create an ARRAY_REF for a pointer or array type. It
1100 is a little-known fact that, if `a' is an array and `i' is an
1101 int, you can write `i[a]', which means the same thing as `a[i]'. */
1103 if (TREE_CODE (type) == ARRAY_TYPE)
1104 p1 = array_expr;
1105 else
1106 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, 0);
1108 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
1109 p2 = index_exp;
1110 else
1111 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, 0);
1113 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr, 0);
1114 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp, 0);
1116 if ((p1 && i2) && (i1 && p2))
1117 error ("ambiguous conversion for array subscript");
1119 if (p1 && i2)
1120 array_expr = p1, index_exp = i2;
1121 else if (i1 && p2)
1122 array_expr = p2, index_exp = i1;
1123 else
1125 cp_error ("invalid types `%T[%T]' for array subscript",
1126 type, TREE_TYPE (index_exp));
1127 return error_mark_node;
1130 if (array_expr == error_mark_node || index_exp == error_mark_node)
1131 error ("ambiguous conversion for array subscript");
1133 return build_array_ref (array_expr, index_exp);
1136 /* Given the cast expression EXP, checking out its validity. Either return
1137 an error_mark_node if there was an unavoidable error, return a cast to
1138 void for trying to delete a pointer w/ the value 0, or return the
1139 call to delete. If DOING_VEC is 1, we handle things differently
1140 for doing an array delete. If DOING_VEC is 2, they gave us the
1141 array size as an argument to delete.
1142 Implements ARM $5.3.4. This is called from the parser. */
1144 tree
1145 delete_sanity (exp, size, doing_vec, use_global_delete)
1146 tree exp, size;
1147 int doing_vec, use_global_delete;
1149 tree t, type;
1150 /* For a regular vector delete (aka, no size argument) we will pass
1151 this down as a NULL_TREE into build_vec_delete. */
1152 tree maxindex = NULL_TREE;
1154 if (exp == error_mark_node)
1155 return exp;
1157 if (processing_template_decl)
1159 t = build_min (DELETE_EXPR, void_type_node, exp, size);
1160 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
1161 DELETE_EXPR_USE_VEC (t) = doing_vec;
1162 return t;
1165 if (TREE_CODE (exp) == OFFSET_REF)
1166 exp = resolve_offset_ref (exp);
1167 exp = convert_from_reference (exp);
1168 t = stabilize_reference (exp);
1169 t = build_expr_type_conversion (WANT_POINTER, t, 1);
1171 if (t == NULL_TREE || t == error_mark_node)
1173 cp_error ("type `%#T' argument given to `delete', expected pointer",
1174 TREE_TYPE (exp));
1175 return error_mark_node;
1178 if (doing_vec == 2)
1180 maxindex = build_binary_op (MINUS_EXPR, size, integer_one_node);
1181 pedwarn ("anachronistic use of array size in vector delete");
1184 type = TREE_TYPE (t);
1186 /* As of Valley Forge, you can delete a pointer to const. */
1188 /* You can't delete functions. */
1189 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
1191 error ("cannot delete a function");
1192 return error_mark_node;
1195 /* Deleting ptr to void is undefined behaviour [expr.delete/3]. */
1196 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
1197 cp_warning ("`%T' is not a pointer-to-object type", type);
1199 /* An array can't have been allocated by new, so complain. */
1200 if (TREE_CODE (t) == ADDR_EXPR
1201 && TREE_CODE (TREE_OPERAND (t, 0)) == VAR_DECL
1202 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == ARRAY_TYPE)
1203 cp_warning ("deleting array `%#D'", TREE_OPERAND (t, 0));
1205 /* Deleting a pointer with the value zero is valid and has no effect. */
1206 if (integer_zerop (t))
1207 return build1 (NOP_EXPR, void_type_node, t);
1209 if (doing_vec)
1210 return build_vec_delete (t, maxindex, integer_one_node,
1211 integer_zero_node, use_global_delete);
1212 else
1214 if (IS_AGGR_TYPE (TREE_TYPE (type))
1215 && TYPE_GETS_REG_DELETE (TREE_TYPE (type)))
1217 /* Only do access checking here; we'll be calling op delete
1218 from the destructor. */
1219 tree tmp = build_op_delete_call (DELETE_EXPR, t, size_zero_node,
1220 LOOKUP_NORMAL, NULL_TREE);
1221 if (tmp == error_mark_node)
1222 return error_mark_node;
1225 return build_delete (type, t, integer_three_node,
1226 LOOKUP_NORMAL, use_global_delete);
1230 /* Report an error if the indicated template declaration is not the
1231 sort of thing that should be a member template. */
1233 void
1234 check_member_template (tmpl)
1235 tree tmpl;
1237 tree decl;
1239 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
1240 decl = DECL_TEMPLATE_RESULT (tmpl);
1242 if (TREE_CODE (decl) == FUNCTION_DECL
1243 || (TREE_CODE (decl) == TYPE_DECL
1244 && IS_AGGR_TYPE (TREE_TYPE (decl))))
1246 if (current_function_decl)
1247 /* 14.5.2.2 [temp.mem]
1249 A local class shall not have member templates. */
1250 cp_error ("declaration of member template `%#D' in local class",
1251 decl);
1253 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
1255 /* 14.5.2.3 [temp.mem]
1257 A member function template shall not be virtual. */
1258 cp_error
1259 ("invalid use of `virtual' in template declaration of `%#D'",
1260 decl);
1261 DECL_VIRTUAL_P (decl) = 0;
1264 /* The debug-information generating code doesn't know what to do
1265 with member templates. */
1266 DECL_IGNORED_P (tmpl) = 1;
1268 else
1269 cp_error ("template declaration of `%#D'", decl);
1272 /* Return true iff TYPE is a valid Java parameter or return type. */
1274 static int
1275 acceptable_java_type (type)
1276 tree type;
1278 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
1279 return 1;
1280 if (TREE_CODE (type) == POINTER_TYPE)
1282 type = TREE_TYPE (type);
1283 if (TREE_CODE (type) == RECORD_TYPE)
1285 tree args; int i;
1286 if (! TYPE_FOR_JAVA (type))
1287 return 0;
1288 if (! CLASSTYPE_TEMPLATE_INFO (type))
1289 return 1;
1290 args = CLASSTYPE_TI_ARGS (type);
1291 i = TREE_VEC_LENGTH (args);
1292 while (--i >= 0)
1294 type = TREE_VEC_ELT (args, i);
1295 if (TREE_CODE (type) == POINTER_TYPE)
1296 type = TREE_TYPE (type);
1297 if (! TYPE_FOR_JAVA (type))
1298 return 0;
1300 return 1;
1303 return 0;
1306 /* For a METHOD in a Java class CTYPE, return 1 if
1307 the parameter and return types are valid Java types.
1308 Otherwise, print appropriate error messages, and return 0. */
1311 check_java_method (method)
1312 tree method;
1314 int jerr = 0;
1315 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
1316 tree ret_type = TREE_TYPE (TREE_TYPE (method));
1317 if (! acceptable_java_type (ret_type))
1319 cp_error ("Java method '%D' has non-Java return type `%T'",
1320 method, ret_type);
1321 jerr++;
1323 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
1325 tree type = TREE_VALUE (arg_types);
1326 if (! acceptable_java_type (type))
1328 cp_error ("Java method '%D' has non-Java parameter type `%T'",
1329 method, type);
1330 jerr++;
1333 return jerr ? 0 : 1;
1336 /* Sanity check: report error if this function FUNCTION is not
1337 really a member of the class (CTYPE) it is supposed to belong to.
1338 CNAME is the same here as it is for grokclassfn above. */
1340 tree
1341 check_classfn (ctype, function)
1342 tree ctype, function;
1344 tree fn_name = DECL_NAME (function);
1345 tree fndecl, fndecls;
1346 tree method_vec = CLASSTYPE_METHOD_VEC (complete_type (ctype));
1347 tree *methods = 0;
1348 tree *end = 0;
1350 if (DECL_USE_TEMPLATE (function)
1351 && is_member_template (DECL_TI_TEMPLATE (function)))
1352 /* Since this is a specialization of a member template,
1353 we're not going to find the declaration in the class.
1354 For example, in:
1356 struct S { template <typename T> void f(T); };
1357 template <> void S::f(int);
1359 we're not going to find `S::f(int)', but there's no
1360 reason we should, either. We let our callers know we didn't
1361 find the method, but we don't complain. */
1362 return NULL_TREE;
1364 if (method_vec != 0)
1366 methods = &TREE_VEC_ELT (method_vec, 0);
1367 end = TREE_VEC_END (method_vec);
1369 /* First suss out ctors and dtors. */
1370 if (*methods && fn_name == DECL_NAME (OVL_CURRENT (*methods))
1371 && DECL_CONSTRUCTOR_P (function))
1372 goto got_it;
1373 if (*++methods && fn_name == DECL_NAME (OVL_CURRENT (*methods))
1374 && DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (function)))
1375 goto got_it;
1377 while (++methods != end && *methods)
1379 fndecl = *methods;
1380 if (fn_name == DECL_NAME (OVL_CURRENT (*methods)))
1382 got_it:
1383 for (fndecls = *methods; fndecls != NULL_TREE;
1384 fndecls = OVL_NEXT (fndecls))
1386 fndecl = OVL_CURRENT (fndecls);
1387 /* The DECL_ASSEMBLER_NAME for a TEMPLATE_DECL, or
1388 for a for member function of a template class, is
1389 not mangled, so the check below does not work
1390 correctly in that case. Since mangled destructor
1391 names do not include the type of the arguments,
1392 we can't use this short-cut for them, either.
1393 (It's not legal to declare arguments for a
1394 destructor, but some people try.) */
1395 if (!DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (function))
1396 && (DECL_ASSEMBLER_NAME (function)
1397 != DECL_NAME (function))
1398 && (DECL_ASSEMBLER_NAME (fndecl)
1399 != DECL_NAME (fndecl))
1400 && (DECL_ASSEMBLER_NAME (function)
1401 == DECL_ASSEMBLER_NAME (fndecl)))
1402 return fndecl;
1404 /* We cannot simply call decls_match because this
1405 doesn't work for static member functions that are
1406 pretending to be methods, and because the name
1407 may have been changed by asm("new_name"). */
1408 if (DECL_NAME (function) == DECL_NAME (fndecl))
1410 tree p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
1411 tree p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1413 /* Get rid of the this parameter on functions that become
1414 static. */
1415 if (DECL_STATIC_FUNCTION_P (fndecl)
1416 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
1417 p1 = TREE_CHAIN (p1);
1419 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
1420 TREE_TYPE (TREE_TYPE (fndecl)))
1421 && compparms (p1, p2)
1422 && (DECL_TEMPLATE_SPECIALIZATION (function)
1423 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
1424 && (!DECL_TEMPLATE_SPECIALIZATION (function)
1425 || (DECL_TI_TEMPLATE (function)
1426 == DECL_TI_TEMPLATE (fndecl))))
1427 return fndecl;
1430 break; /* loser */
1435 if (methods != end && *methods)
1437 tree fndecl = *methods;
1438 cp_error ("prototype for `%#D' does not match any in class `%T'",
1439 function, ctype);
1440 cp_error_at ("candidate%s: %+#D", OVL_NEXT (fndecl) ? "s are" : " is",
1441 OVL_CURRENT (fndecl));
1442 while (fndecl = OVL_NEXT (fndecl), fndecl)
1443 cp_error_at (" %#D", OVL_CURRENT(fndecl));
1445 else
1447 methods = 0;
1448 if (TYPE_SIZE (ctype) == 0)
1449 incomplete_type_error (function, ctype);
1450 else
1451 cp_error ("no `%#D' member function declared in class `%T'",
1452 function, ctype);
1455 /* If we did not find the method in the class, add it to avoid
1456 spurious errors (unless the CTYPE is not yet defined, in which
1457 case we'll only confuse ourselves when the function is declared
1458 properly within the class. */
1459 if (TYPE_SIZE (ctype))
1460 add_method (ctype, methods, function);
1461 return NULL_TREE;
1464 /* We have just processed the DECL, which is a static data member.
1465 Its initializer, if present, is INIT. The ASMSPEC_TREE, if
1466 present, is the assembly-language name for the data member.
1467 NEED_POP and FLAGS are as for cp_finish_decl. */
1469 void
1470 finish_static_data_member_decl (decl, init, asmspec_tree, need_pop, flags)
1471 tree decl;
1472 tree init;
1473 tree asmspec_tree;
1474 int need_pop;
1475 int flags;
1477 const char *asmspec = 0;
1479 if (asmspec_tree)
1480 asmspec = TREE_STRING_POINTER (asmspec_tree);
1482 my_friendly_assert (TREE_PUBLIC (decl), 0);
1484 /* We cannot call pushdecl here, because that would fill in the
1485 decl of our TREE_CHAIN. Instead, we modify cp_finish_decl to do
1486 the right thing, namely, to put this decl out straight away. */
1487 /* current_class_type can be NULL_TREE in case of error. */
1488 if (!asmspec && current_class_type)
1490 DECL_INITIAL (decl) = error_mark_node;
1491 DECL_ASSEMBLER_NAME (decl)
1492 = build_static_name (current_class_type, DECL_NAME (decl));
1494 if (! processing_template_decl)
1496 if (!pending_statics)
1497 VARRAY_TREE_INIT (pending_statics, 32, "pending_statics");
1499 if (pending_statics_used == pending_statics->num_elements)
1500 VARRAY_GROW (pending_statics,
1501 2 * pending_statics->num_elements);
1502 VARRAY_TREE (pending_statics, pending_statics_used) = decl;
1503 ++pending_statics_used;
1506 /* Static consts need not be initialized in the class definition. */
1507 if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
1509 static int explanation = 0;
1511 error ("initializer invalid for static member with constructor");
1512 if (explanation++ == 0)
1513 error ("(you really want to initialize it separately)");
1514 init = 0;
1516 /* Force the compiler to know when an uninitialized static const
1517 member is being used. */
1518 if (CP_TYPE_CONST_P (TREE_TYPE (decl)) && init == 0)
1519 TREE_USED (decl) = 1;
1520 DECL_INITIAL (decl) = init;
1521 DECL_IN_AGGR_P (decl) = 1;
1522 DECL_CONTEXT (decl) = current_class_type;
1523 DECL_CLASS_CONTEXT (decl) = current_class_type;
1525 cp_finish_decl (decl, init, asmspec_tree, need_pop, flags);
1528 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
1529 of a structure component, returning a FIELD_DECL node.
1530 QUALS is a list of type qualifiers for this decl (such as for declaring
1531 const member functions).
1533 This is done during the parsing of the struct declaration.
1534 The FIELD_DECL nodes are chained together and the lot of them
1535 are ultimately passed to `build_struct' to make the RECORD_TYPE node.
1537 C++:
1539 If class A defines that certain functions in class B are friends, then
1540 the way I have set things up, it is B who is interested in permission
1541 granted by A. However, it is in A's context that these declarations
1542 are parsed. By returning a void_type_node, class A does not attempt
1543 to incorporate the declarations of the friends within its structure.
1545 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
1546 CHANGES TO CODE IN `start_method'. */
1548 tree
1549 grokfield (declarator, declspecs, init, asmspec_tree, attrlist)
1550 tree declarator, declspecs, init, asmspec_tree, attrlist;
1552 register tree value;
1553 const char *asmspec = 0;
1554 int flags = LOOKUP_ONLYCONVERTING;
1556 /* Convert () initializers to = initializers. */
1557 if (init == NULL_TREE && declarator != NULL_TREE
1558 && TREE_CODE (declarator) == CALL_EXPR
1559 && TREE_OPERAND (declarator, 0)
1560 && (TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE
1561 || TREE_CODE (TREE_OPERAND (declarator, 0)) == SCOPE_REF)
1562 && parmlist_is_exprlist (CALL_DECLARATOR_PARMS (declarator)))
1564 init = TREE_OPERAND (declarator, 1);
1565 declarator = TREE_OPERAND (declarator, 0);
1566 flags = 0;
1569 if (declspecs == NULL_TREE
1570 && TREE_CODE (declarator) == SCOPE_REF
1571 && TREE_CODE (TREE_OPERAND (declarator, 1)) == IDENTIFIER_NODE)
1573 /* Access declaration */
1574 if (! IS_AGGR_TYPE_CODE (TREE_CODE (TREE_OPERAND (declarator, 0))))
1576 else if (TREE_COMPLEXITY (declarator) == current_class_depth)
1577 pop_nested_class ();
1578 return do_class_using_decl (declarator);
1581 if (init
1582 && TREE_CODE (init) == TREE_LIST
1583 && TREE_VALUE (init) == error_mark_node
1584 && TREE_CHAIN (init) == NULL_TREE)
1585 init = NULL_TREE;
1587 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, attrlist);
1588 if (! value || value == error_mark_node)
1589 /* friend or constructor went bad. */
1590 return value;
1592 /* Pass friendly classes back. */
1593 if (TREE_CODE (value) == VOID_TYPE)
1594 return void_type_node;
1596 if (DECL_NAME (value) != NULL_TREE
1597 && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
1598 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
1599 cp_error ("member `%D' conflicts with virtual function table field name",
1600 value);
1602 /* Stash away type declarations. */
1603 if (TREE_CODE (value) == TYPE_DECL)
1605 DECL_NONLOCAL (value) = 1;
1606 DECL_CONTEXT (value) = current_class_type;
1607 DECL_CLASS_CONTEXT (value) = current_class_type;
1609 /* Now that we've updated the context, we need to remangle the
1610 name for this TYPE_DECL. */
1611 DECL_ASSEMBLER_NAME (value) = DECL_NAME (value);
1612 if (!uses_template_parms (value))
1613 DECL_ASSEMBLER_NAME (value) =
1614 get_identifier (build_overload_name (TREE_TYPE (value), 1, 1));
1616 if (processing_template_decl)
1617 value = push_template_decl (value);
1619 return value;
1622 if (DECL_IN_AGGR_P (value))
1624 cp_error ("`%D' is already defined in `%T'", value,
1625 DECL_CONTEXT (value));
1626 return void_type_node;
1629 if (asmspec_tree)
1630 asmspec = TREE_STRING_POINTER (asmspec_tree);
1632 if (init)
1634 if (TREE_CODE (value) == FUNCTION_DECL)
1636 grok_function_init (value, init);
1637 init = NULL_TREE;
1639 else if (pedantic && TREE_CODE (value) != VAR_DECL)
1640 /* Already complained in grokdeclarator. */
1641 init = NULL_TREE;
1642 else
1644 /* We allow initializers to become parameters to base
1645 initializers. */
1646 if (TREE_CODE (init) == TREE_LIST)
1648 if (TREE_CHAIN (init) == NULL_TREE)
1649 init = TREE_VALUE (init);
1650 else
1651 init = digest_init (TREE_TYPE (value), init, (tree *)0);
1654 if (TREE_CODE (init) == CONST_DECL)
1655 init = DECL_INITIAL (init);
1656 else if (TREE_READONLY_DECL_P (init))
1657 init = decl_constant_value (init);
1658 else if (TREE_CODE (init) == CONSTRUCTOR)
1659 init = digest_init (TREE_TYPE (value), init, (tree *)0);
1660 if (init == error_mark_node)
1661 /* We must make this look different than `error_mark_node'
1662 because `decl_const_value' would mis-interpret it
1663 as only meaning that this VAR_DECL is defined. */
1664 init = build1 (NOP_EXPR, TREE_TYPE (value), init);
1665 else if (processing_template_decl)
1667 else if (! TREE_CONSTANT (init))
1669 /* We can allow references to things that are effectively
1670 static, since references are initialized with the address. */
1671 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
1672 || (TREE_STATIC (init) == 0
1673 && (TREE_CODE_CLASS (TREE_CODE (init)) != 'd'
1674 || DECL_EXTERNAL (init) == 0)))
1676 error ("field initializer is not constant");
1677 init = error_mark_node;
1683 /* The corresponding pop_obstacks is in cp_finish_decl. */
1684 push_obstacks_nochange ();
1686 if (processing_template_decl && ! current_function_decl
1687 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
1688 value = push_template_decl (value);
1690 if (attrlist)
1691 cplus_decl_attributes (value, TREE_PURPOSE (attrlist),
1692 TREE_VALUE (attrlist));
1694 if (TREE_CODE (value) == VAR_DECL)
1696 finish_static_data_member_decl (value, init, asmspec_tree,
1697 /*need_pop=*/1, flags);
1698 return value;
1700 if (TREE_CODE (value) == FIELD_DECL)
1702 if (asmspec)
1704 /* This must override the asm specifier which was placed
1705 by grokclassfn. Lay this out fresh. */
1706 DECL_RTL (value) = NULL_RTX;
1707 DECL_ASSEMBLER_NAME (value) = get_identifier (asmspec);
1709 if (DECL_INITIAL (value) == error_mark_node)
1710 init = error_mark_node;
1711 cp_finish_decl (value, init, asmspec_tree, 1, flags);
1712 DECL_INITIAL (value) = init;
1713 DECL_IN_AGGR_P (value) = 1;
1714 return value;
1716 if (TREE_CODE (value) == FUNCTION_DECL)
1718 if (asmspec)
1720 /* This must override the asm specifier which was placed
1721 by grokclassfn. Lay this out fresh. */
1722 DECL_RTL (value) = NULL_RTX;
1723 DECL_ASSEMBLER_NAME (value) = get_identifier (asmspec);
1725 cp_finish_decl (value, init, asmspec_tree, 1, flags);
1727 /* Pass friends back this way. */
1728 if (DECL_FRIEND_P (value))
1729 return void_type_node;
1731 DECL_IN_AGGR_P (value) = 1;
1732 return value;
1734 my_friendly_abort (21);
1735 /* NOTREACHED */
1736 return NULL_TREE;
1739 /* Like `grokfield', but for bitfields.
1740 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
1742 tree
1743 grokbitfield (declarator, declspecs, width)
1744 tree declarator, declspecs, width;
1746 register tree value = grokdeclarator (declarator, declspecs, BITFIELD,
1747 0, NULL_TREE);
1749 if (! value) return NULL_TREE; /* friends went bad. */
1751 /* Pass friendly classes back. */
1752 if (TREE_CODE (value) == VOID_TYPE)
1753 return void_type_node;
1755 if (TREE_CODE (value) == TYPE_DECL)
1757 cp_error ("cannot declare `%D' to be a bitfield type", value);
1758 return NULL_TREE;
1761 /* Usually, finish_struct_1 catches bitifields with invalid types.
1762 But, in the case of bitfields with function type, we confuse
1763 ourselves into thinking they are member functions, so we must
1764 check here. */
1765 if (TREE_CODE (value) == FUNCTION_DECL)
1767 cp_error ("cannot declare bitfield `%D' with funcion type",
1768 DECL_NAME (value));
1769 return NULL_TREE;
1772 if (DECL_IN_AGGR_P (value))
1774 cp_error ("`%D' is already defined in the class %T", value,
1775 DECL_CONTEXT (value));
1776 return void_type_node;
1779 GNU_xref_member (current_class_name, value);
1781 if (TREE_STATIC (value))
1783 cp_error ("static member `%D' cannot be a bitfield", value);
1784 return NULL_TREE;
1786 cp_finish_decl (value, NULL_TREE, NULL_TREE, 0, 0);
1788 if (width != error_mark_node)
1790 constant_expression_warning (width);
1791 DECL_INITIAL (value) = width;
1792 SET_DECL_C_BIT_FIELD (value);
1795 DECL_IN_AGGR_P (value) = 1;
1796 return value;
1799 tree
1800 grokoptypename (declspecs, declarator)
1801 tree declspecs, declarator;
1803 tree t = grokdeclarator (declarator, declspecs, TYPENAME, 0, NULL_TREE);
1804 return build_typename_overload (t);
1807 /* When a function is declared with an initializer,
1808 do the right thing. Currently, there are two possibilities:
1810 class B
1812 public:
1813 // initialization possibility #1.
1814 virtual void f () = 0;
1815 int g ();
1818 class D1 : B
1820 public:
1821 int d1;
1822 // error, no f ();
1825 class D2 : B
1827 public:
1828 int d2;
1829 void f ();
1832 class D3 : B
1834 public:
1835 int d3;
1836 // initialization possibility #2
1837 void f () = B::f;
1843 copy_assignment_arg_p (parmtype, virtualp)
1844 tree parmtype;
1845 int virtualp ATTRIBUTE_UNUSED;
1847 if (current_class_type == NULL_TREE)
1848 return 0;
1850 if (TREE_CODE (parmtype) == REFERENCE_TYPE)
1851 parmtype = TREE_TYPE (parmtype);
1853 if ((TYPE_MAIN_VARIANT (parmtype) == current_class_type)
1854 #if 0
1855 /* Non-standard hack to support old Booch components. */
1856 || (! virtualp && DERIVED_FROM_P (parmtype, current_class_type))
1857 #endif
1859 return 1;
1861 return 0;
1864 static void
1865 grok_function_init (decl, init)
1866 tree decl;
1867 tree init;
1869 /* An initializer for a function tells how this function should
1870 be inherited. */
1871 tree type = TREE_TYPE (decl);
1873 if (TREE_CODE (type) == FUNCTION_TYPE)
1874 cp_error ("initializer specified for non-member function `%D'", decl);
1875 #if 0
1876 /* We'll check for this in finish_struct_1. */
1877 else if (DECL_VINDEX (decl) == NULL_TREE)
1878 cp_error ("initializer specified for non-virtual method `%D'", decl);
1879 #endif
1880 else if (integer_zerop (init))
1882 #if 0
1883 /* Mark this function as being "defined". */
1884 DECL_INITIAL (decl) = error_mark_node;
1885 /* pure virtual destructors must be defined. */
1886 /* pure virtual needs to be defined (as abort) only when put in
1887 vtbl. For wellformed call, it should be itself. pr4737 */
1888 if (!DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (decl)))
1890 /* Give this node rtl from `abort'. */
1891 DECL_RTL (decl) = DECL_RTL (abort_fndecl);
1893 #endif
1894 DECL_ABSTRACT_VIRTUAL_P (decl) = 1;
1895 if (DECL_NAME (decl) == ansi_opname [(int) MODIFY_EXPR])
1897 tree parmtype
1898 = TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl))));
1900 if (copy_assignment_arg_p (parmtype, 1))
1901 TYPE_HAS_ABSTRACT_ASSIGN_REF (current_class_type) = 1;
1904 else
1905 cp_error ("invalid initializer for virtual method `%D'", decl);
1908 void
1909 cplus_decl_attributes (decl, attributes, prefix_attributes)
1910 tree decl, attributes, prefix_attributes;
1912 if (decl == NULL_TREE || decl == void_type_node)
1913 return;
1915 if (TREE_CODE (decl) == TEMPLATE_DECL)
1916 decl = DECL_TEMPLATE_RESULT (decl);
1918 decl_attributes (decl, attributes, prefix_attributes);
1920 if (TREE_CODE (decl) == TYPE_DECL)
1921 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (decl), TREE_TYPE (decl));
1924 /* CONSTRUCTOR_NAME:
1925 Return the name for the constructor (or destructor) for the
1926 specified class. Argument can be RECORD_TYPE, TYPE_DECL, or
1927 IDENTIFIER_NODE. When given a template, this routine doesn't
1928 lose the specialization. */
1930 tree
1931 constructor_name_full (thing)
1932 tree thing;
1934 if (TREE_CODE (thing) == TEMPLATE_TYPE_PARM
1935 || TREE_CODE (thing) == TEMPLATE_TEMPLATE_PARM
1936 || TREE_CODE (thing) == TYPENAME_TYPE)
1937 thing = TYPE_NAME (thing);
1938 else if (IS_AGGR_TYPE_CODE (TREE_CODE (thing)))
1940 if (TYPE_WAS_ANONYMOUS (thing) && TYPE_HAS_CONSTRUCTOR (thing))
1941 thing = DECL_NAME (OVL_CURRENT (TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (thing), 0)));
1942 else
1943 thing = TYPE_NAME (thing);
1945 if (TREE_CODE (thing) == TYPE_DECL
1946 || (TREE_CODE (thing) == TEMPLATE_DECL
1947 && TREE_CODE (DECL_TEMPLATE_RESULT (thing)) == TYPE_DECL))
1948 thing = DECL_NAME (thing);
1949 my_friendly_assert (TREE_CODE (thing) == IDENTIFIER_NODE, 197);
1950 return thing;
1953 /* CONSTRUCTOR_NAME:
1954 Return the name for the constructor (or destructor) for the
1955 specified class. Argument can be RECORD_TYPE, TYPE_DECL, or
1956 IDENTIFIER_NODE. When given a template, return the plain
1957 unspecialized name. */
1959 tree
1960 constructor_name (thing)
1961 tree thing;
1963 tree t;
1964 thing = constructor_name_full (thing);
1965 t = IDENTIFIER_TEMPLATE (thing);
1966 if (!t)
1967 return thing;
1968 return t;
1971 /* Record the existence of an addressable inline function. */
1973 void
1974 mark_inline_for_output (decl)
1975 tree decl;
1977 decl = DECL_MAIN_VARIANT (decl);
1978 if (DECL_SAVED_INLINE (decl))
1979 return;
1980 DECL_SAVED_INLINE (decl) = 1;
1981 if (!saved_inlines)
1982 VARRAY_TREE_INIT (saved_inlines, 32, "saved_inlines");
1984 if (saved_inlines_used == saved_inlines->num_elements)
1985 VARRAY_GROW (saved_inlines,
1986 2 * saved_inlines->num_elements);
1987 VARRAY_TREE (saved_inlines, saved_inlines_used) = decl;
1988 ++saved_inlines_used;
1991 /* Hand off a unique name which can be used for variable we don't really
1992 want to know about anyway, for example, the anonymous variables which
1993 are needed to make references work. Declare this thing so we can use it.
1994 The variable created will be of type TYPE.
1996 STATICP is nonzero if this variable should be static. */
1998 tree
1999 get_temp_name (type, staticp)
2000 tree type;
2001 int staticp;
2003 char buf[sizeof (AUTO_TEMP_FORMAT) + 20];
2004 tree decl;
2005 int toplev = toplevel_bindings_p ();
2007 push_obstacks_nochange ();
2008 if (toplev || staticp)
2010 end_temporary_allocation ();
2011 sprintf (buf, AUTO_TEMP_FORMAT, global_temp_name_counter++);
2012 decl = pushdecl_top_level (build_decl (VAR_DECL, get_identifier (buf), type));
2014 else
2016 sprintf (buf, AUTO_TEMP_FORMAT, temp_name_counter++);
2017 decl = pushdecl (build_decl (VAR_DECL, get_identifier (buf), type));
2019 TREE_USED (decl) = 1;
2020 TREE_STATIC (decl) = staticp;
2021 DECL_ARTIFICIAL (decl) = 1;
2023 /* If this is a local variable, then lay out its rtl now.
2024 Otherwise, callers of this function are responsible for dealing
2025 with this variable's rtl. */
2026 if (! toplev)
2028 expand_decl (decl);
2029 my_friendly_assert (DECL_INITIAL (decl) == NULL_TREE,
2030 19990826);
2032 pop_obstacks ();
2034 return decl;
2037 /* Hunts through the global anonymous union ANON_DECL, building
2038 appropriate VAR_DECLs. Stores cleanups on the list of ELEMS, and
2039 returns a VAR_DECL whose size is the same as the size of the
2040 ANON_DECL, if one is available. */
2042 static tree
2043 build_anon_union_vars (anon_decl, elems, static_p, external_p)
2044 tree anon_decl;
2045 tree* elems;
2046 int static_p;
2047 int external_p;
2049 tree type = TREE_TYPE (anon_decl);
2050 tree main_decl = NULL_TREE;
2051 tree field;
2053 /* Rather than write the code to handle the non-union case,
2054 just give an error. */
2055 if (TREE_CODE (type) != UNION_TYPE)
2056 error ("anonymous struct not inside named type");
2058 for (field = TYPE_FIELDS (type);
2059 field != NULL_TREE;
2060 field = TREE_CHAIN (field))
2062 tree decl;
2064 if (DECL_ARTIFICIAL (field))
2065 continue;
2066 if (TREE_CODE (field) != FIELD_DECL)
2068 cp_pedwarn_at ("`%#D' invalid; an anonymous union can only have non-static data members",
2069 field);
2070 continue;
2073 if (TREE_PRIVATE (field))
2074 cp_pedwarn_at ("private member `%#D' in anonymous union", field);
2075 else if (TREE_PROTECTED (field))
2076 cp_pedwarn_at ("protected member `%#D' in anonymous union", field);
2078 if (DECL_NAME (field) == NULL_TREE
2079 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2081 decl = build_anon_union_vars (field, elems, static_p, external_p);
2082 if (!decl)
2083 continue;
2085 else if (DECL_NAME (field) == NULL_TREE)
2086 continue;
2087 else
2089 decl = build_decl (VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
2090 /* tell `pushdecl' that this is not tentative. */
2091 DECL_INITIAL (decl) = error_mark_node;
2092 TREE_PUBLIC (decl) = 0;
2093 TREE_STATIC (decl) = static_p;
2094 DECL_EXTERNAL (decl) = external_p;
2095 decl = pushdecl (decl);
2096 DECL_INITIAL (decl) = NULL_TREE;
2099 /* Only write out one anon union element--choose the one that
2100 can hold them all. */
2101 if (main_decl == NULL_TREE
2102 && simple_cst_equal (DECL_SIZE (decl),
2103 DECL_SIZE (anon_decl)) == 1)
2104 main_decl = decl;
2105 else
2106 /* ??? This causes there to be no debug info written out
2107 about this decl. */
2108 TREE_ASM_WRITTEN (decl) = 1;
2110 if (DECL_NAME (field) == NULL_TREE
2111 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2112 /* The remainder of the processing was already done in the
2113 recursive call. */
2114 continue;
2116 /* If there's a cleanup to do, it belongs in the
2117 TREE_PURPOSE of the following TREE_LIST. */
2118 *elems = tree_cons (NULL_TREE, decl, *elems);
2119 TREE_TYPE (*elems) = type;
2122 return main_decl;
2125 /* Finish off the processing of a UNION_TYPE structure.
2126 If there are static members, then all members are
2127 static, and must be laid out together. If the
2128 union is an anonymous union, we arrange for that
2129 as well. PUBLIC_P is nonzero if this union is
2130 not declared static. */
2132 void
2133 finish_anon_union (anon_union_decl)
2134 tree anon_union_decl;
2136 tree type = TREE_TYPE (anon_union_decl);
2137 tree main_decl;
2138 int public_p = TREE_PUBLIC (anon_union_decl);
2139 int static_p = TREE_STATIC (anon_union_decl);
2140 int external_p = DECL_EXTERNAL (anon_union_decl);
2142 if (TYPE_FIELDS (type) == NULL_TREE)
2143 return;
2145 if (public_p)
2147 error ("global anonymous unions must be declared static");
2148 return;
2151 main_decl = build_anon_union_vars (anon_union_decl,
2152 &DECL_ANON_UNION_ELEMS (anon_union_decl),
2153 static_p, external_p);
2155 if (main_decl == NULL_TREE)
2157 warning ("anonymous union with no members");
2158 return;
2161 if (static_p)
2163 make_decl_rtl (main_decl, 0, toplevel_bindings_p ());
2164 DECL_RTL (anon_union_decl) = DECL_RTL (main_decl);
2165 expand_anon_union_decl (anon_union_decl,
2166 NULL_TREE,
2167 DECL_ANON_UNION_ELEMS (anon_union_decl));
2169 else
2170 add_decl_stmt (anon_union_decl);
2173 /* Finish processing a builtin type TYPE. It's name is NAME,
2174 its fields are in the array FIELDS. LEN is the number of elements
2175 in FIELDS minus one, or put another way, it is the maximum subscript
2176 used in FIELDS.
2178 It is given the same alignment as ALIGN_TYPE. */
2180 void
2181 finish_builtin_type (type, name, fields, len, align_type)
2182 tree type;
2183 const char *name;
2184 tree fields[];
2185 int len;
2186 tree align_type;
2188 register int i;
2190 TYPE_FIELDS (type) = fields[0];
2191 for (i = 0; i < len; i++)
2193 layout_type (TREE_TYPE (fields[i]));
2194 DECL_FIELD_CONTEXT (fields[i]) = type;
2195 TREE_CHAIN (fields[i]) = fields[i+1];
2197 DECL_FIELD_CONTEXT (fields[i]) = type;
2198 DECL_CLASS_CONTEXT (fields[i]) = type;
2199 TYPE_ALIGN (type) = TYPE_ALIGN (align_type);
2200 layout_type (type);
2201 #if 0 /* not yet, should get fixed properly later */
2202 TYPE_NAME (type) = make_type_decl (get_identifier (name), type);
2203 #else
2204 TYPE_NAME (type) = build_decl (TYPE_DECL, get_identifier (name), type);
2205 #endif
2206 TYPE_STUB_DECL (type) = TYPE_NAME (type);
2207 layout_decl (TYPE_NAME (type), 0);
2210 /* Auxiliary functions to make type signatures for
2211 `operator new' and `operator delete' correspond to
2212 what compiler will be expecting. */
2214 tree
2215 coerce_new_type (type)
2216 tree type;
2218 int e1 = 0, e2 = 0;
2220 if (TREE_CODE (type) == METHOD_TYPE)
2221 type = build_function_type (TREE_TYPE (type), TREE_CHAIN (TYPE_ARG_TYPES (type)));
2222 if (! same_type_p (TREE_TYPE (type), ptr_type_node))
2223 e1 = 1, error ("`operator new' must return type `void *'");
2225 /* Technically the type must be `size_t', but we may not know
2226 what that is. */
2227 if (TYPE_ARG_TYPES (type) == NULL_TREE)
2228 e1 = 1, error ("`operator new' takes type `size_t' parameter");
2229 else if (! same_type_p (TREE_VALUE (TYPE_ARG_TYPES (type)), sizetype))
2230 e2 = 1, error ("`operator new' takes type `size_t' as first parameter");
2231 if (e2)
2232 type = build_function_type (ptr_type_node, tree_cons (NULL_TREE, sizetype, TREE_CHAIN (TYPE_ARG_TYPES (type))));
2233 else if (e1)
2234 type = build_function_type (ptr_type_node, TYPE_ARG_TYPES (type));
2235 return type;
2238 tree
2239 coerce_delete_type (type)
2240 tree type;
2242 int e1 = 0, e2 = 0;
2243 #if 0
2244 e3 = 0;
2245 #endif
2246 tree arg_types = TYPE_ARG_TYPES (type);
2248 if (TREE_CODE (type) == METHOD_TYPE)
2250 type = build_function_type (TREE_TYPE (type), TREE_CHAIN (arg_types));
2251 arg_types = TREE_CHAIN (arg_types);
2254 if (TREE_TYPE (type) != void_type_node)
2255 e1 = 1, error ("`operator delete' must return type `void'");
2257 if (arg_types == NULL_TREE
2258 || ! same_type_p (TREE_VALUE (arg_types), ptr_type_node))
2259 e2 = 1, error ("`operator delete' takes type `void *' as first parameter");
2261 #if 0
2262 if (arg_types
2263 && TREE_CHAIN (arg_types)
2264 && TREE_CHAIN (arg_types) != void_list_node)
2266 /* Again, technically this argument must be `size_t', but again
2267 we may not know what that is. */
2268 tree t2 = TREE_VALUE (TREE_CHAIN (arg_types));
2269 if (! same_type_p (t2, sizetype))
2270 e3 = 1, error ("second argument to `operator delete' must be of type `size_t'");
2271 else if (TREE_CHAIN (TREE_CHAIN (arg_types)) != void_list_node)
2273 e3 = 1;
2274 if (TREE_CHAIN (TREE_CHAIN (arg_types)))
2275 error ("too many arguments in declaration of `operator delete'");
2276 else
2277 error ("`...' invalid in specification of `operator delete'");
2281 if (e3)
2282 arg_types = tree_cons (NULL_TREE, ptr_type_node,
2283 build_tree_list (NULL_TREE, sizetype));
2284 else if (e3 |= e2)
2286 if (arg_types == NULL_TREE)
2287 arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
2288 else
2289 arg_types = tree_cons (NULL_TREE, ptr_type_node, TREE_CHAIN (arg_types));
2291 else e3 |= e1;
2292 #endif
2294 if (e2)
2295 arg_types = tree_cons (NULL_TREE, ptr_type_node,
2296 arg_types ? TREE_CHAIN (arg_types): NULL_TREE);
2297 if (e2 || e1)
2298 type = build_function_type (void_type_node, arg_types);
2300 return type;
2303 static void
2304 mark_vtable_entries (decl)
2305 tree decl;
2307 tree entries = CONSTRUCTOR_ELTS (DECL_INITIAL (decl));
2309 for (; entries; entries = TREE_CHAIN (entries))
2311 tree fnaddr;
2312 tree fn;
2314 fnaddr = (flag_vtable_thunks ? TREE_VALUE (entries)
2315 : FNADDR_FROM_VTABLE_ENTRY (TREE_VALUE (entries)));
2317 if (TREE_CODE (fnaddr) == NOP_EXPR)
2318 /* RTTI offset. */
2319 continue;
2321 fn = TREE_OPERAND (fnaddr, 0);
2322 TREE_ADDRESSABLE (fn) = 1;
2323 if (TREE_CODE (fn) == THUNK_DECL && DECL_EXTERNAL (fn))
2325 DECL_EXTERNAL (fn) = 0;
2326 emit_thunk (fn);
2328 mark_used (fn);
2332 /* Set DECL up to have the closest approximation of "initialized common"
2333 linkage available. */
2335 void
2336 comdat_linkage (decl)
2337 tree decl;
2339 if (flag_weak)
2340 make_decl_one_only (decl);
2341 else if (TREE_CODE (decl) == FUNCTION_DECL || DECL_VIRTUAL_P (decl))
2342 /* We can just emit functions and vtables statically; it doesn't really
2343 matter if we have multiple copies. */
2344 TREE_PUBLIC (decl) = 0;
2345 else
2347 /* Static data member template instantiations, however, cannot
2348 have multiple copies. */
2349 if (DECL_INITIAL (decl) == 0
2350 || DECL_INITIAL (decl) == error_mark_node)
2351 DECL_COMMON (decl) = 1;
2352 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
2354 DECL_COMMON (decl) = 1;
2355 DECL_INITIAL (decl) = error_mark_node;
2357 else
2359 /* We can't do anything useful; leave vars for explicit
2360 instantiation. */
2361 DECL_EXTERNAL (decl) = 1;
2362 DECL_NOT_REALLY_EXTERN (decl) = 0;
2366 if (DECL_LANG_SPECIFIC (decl))
2367 DECL_COMDAT (decl) = 1;
2370 /* For win32 we also want to put explicit instantiations in
2371 linkonce sections, so that they will be merged with implicit
2372 instantiations; otherwise we get duplicate symbol errors. */
2374 void
2375 maybe_make_one_only (decl)
2376 tree decl;
2378 /* This is not necessary on targets that support weak symbols, because
2379 the implicit instantiations will defer to the explicit one. */
2380 if (! supports_one_only () || SUPPORTS_WEAK)
2381 return;
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. */
2388 make_decl_one_only (decl);
2390 if (TREE_CODE (decl) == VAR_DECL && DECL_LANG_SPECIFIC (decl))
2391 DECL_COMDAT (decl) = 1;
2394 /* Set TREE_PUBLIC and/or DECL_EXTERN on the vtable DECL,
2395 based on TYPE and other static flags.
2397 Note that anything public is tagged TREE_PUBLIC, whether
2398 it's public in this file or in another one. */
2400 void
2401 import_export_vtable (decl, type, final)
2402 tree decl, type;
2403 int final;
2405 if (DECL_INTERFACE_KNOWN (decl))
2406 return;
2408 if (TYPE_FOR_JAVA (type))
2410 TREE_PUBLIC (decl) = 1;
2411 DECL_EXTERNAL (decl) = 1;
2412 DECL_INTERFACE_KNOWN (decl) = 1;
2414 else if (CLASSTYPE_INTERFACE_KNOWN (type))
2416 TREE_PUBLIC (decl) = 1;
2417 DECL_EXTERNAL (decl) = ! CLASSTYPE_VTABLE_NEEDS_WRITING (type);
2418 DECL_INTERFACE_KNOWN (decl) = 1;
2420 else
2422 /* We can only wait to decide if we have real non-inline virtual
2423 functions in our class, or if we come from a template. */
2425 int found = CLASSTYPE_TEMPLATE_INSTANTIATION (type);
2427 if (! found && ! final)
2429 tree method;
2430 for (method = TYPE_METHODS (type); method != NULL_TREE;
2431 method = TREE_CHAIN (method))
2432 if (DECL_VINDEX (method) != NULL_TREE
2433 && ! DECL_THIS_INLINE (method)
2434 && ! DECL_ABSTRACT_VIRTUAL_P (method))
2436 found = 1;
2437 break;
2441 if (final || ! found)
2443 comdat_linkage (decl);
2444 DECL_EXTERNAL (decl) = 0;
2446 else
2448 TREE_PUBLIC (decl) = 1;
2449 DECL_EXTERNAL (decl) = 1;
2454 /* Determine whether or not we want to specifically import or export CTYPE,
2455 using various heuristics. */
2457 void
2458 import_export_class (ctype)
2459 tree ctype;
2461 /* -1 for imported, 1 for exported. */
2462 int import_export = 0;
2464 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2465 return;
2467 /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma interface,
2468 we will have CLASSTYPE_INTERFACE_ONLY set but not
2469 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
2470 heuristic because someone will supply a #pragma implementation
2471 elsewhere, and deducing it here would produce a conflict. */
2472 if (CLASSTYPE_INTERFACE_ONLY (ctype))
2473 return;
2475 #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
2476 /* FIXME this should really use some sort of target-independent macro. */
2477 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
2478 import_export = -1;
2479 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
2480 import_export = 1;
2481 #endif
2483 /* If we got -fno-implicit-templates, we import template classes that
2484 weren't explicitly instantiated. */
2485 if (import_export == 0
2486 && CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
2487 && ! flag_implicit_templates)
2488 import_export = -1;
2490 /* Base our import/export status on that of the first non-inline,
2491 non-abstract virtual function, if any. */
2492 if (import_export == 0
2493 && TYPE_VIRTUAL_P (ctype)
2494 && ! CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2496 tree method;
2497 for (method = TYPE_METHODS (ctype); method != NULL_TREE;
2498 method = TREE_CHAIN (method))
2500 if (DECL_VINDEX (method) != NULL_TREE
2501 && !DECL_THIS_INLINE (method)
2502 && !DECL_ABSTRACT_VIRTUAL_P (method))
2504 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
2505 break;
2510 #ifdef MULTIPLE_SYMBOL_SPACES
2511 if (import_export == -1)
2512 import_export = 0;
2513 #endif
2515 if (import_export)
2517 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
2518 CLASSTYPE_VTABLE_NEEDS_WRITING (ctype) = (import_export > 0);
2519 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
2523 /* We need to describe to the assembler the relationship between
2524 a vtable and the vtable of the parent class. */
2526 static void
2527 output_vtable_inherit (vars)
2528 tree vars;
2530 tree parent;
2531 rtx op[2];
2533 op[0] = XEXP (DECL_RTL (vars), 0); /* strip the mem ref */
2535 parent = binfo_for_vtable (vars);
2537 if (parent == TYPE_BINFO (DECL_CONTEXT (vars)))
2538 op[1] = const0_rtx;
2539 else if (parent)
2541 parent = TYPE_BINFO_VTABLE (BINFO_TYPE (parent));
2542 op[1] = XEXP (DECL_RTL (parent), 0); /* strip the mem ref */
2544 else
2545 my_friendly_abort (980826);
2547 output_asm_insn (".vtable_inherit %c0, %c1", op);
2550 static int
2551 finish_vtable_vardecl (t, data)
2552 tree *t;
2553 void *data ATTRIBUTE_UNUSED;
2555 tree vars = *t;
2556 tree ctype = DECL_CONTEXT (vars);
2557 import_export_class (ctype);
2558 import_export_vtable (vars, ctype, 1);
2560 if (! DECL_EXTERNAL (vars)
2561 && (DECL_INTERFACE_KNOWN (vars)
2562 || DECL_NEEDED_P (vars)
2563 || (hack_decl_function_context (vars) && TREE_USED (vars)))
2564 && ! TREE_ASM_WRITTEN (vars))
2566 /* Write it out. */
2567 mark_vtable_entries (vars);
2568 if (TREE_TYPE (DECL_INITIAL (vars)) == 0)
2569 store_init_value (vars, DECL_INITIAL (vars));
2571 if (write_symbols == DWARF_DEBUG || write_symbols == DWARF2_DEBUG)
2573 /* Mark the VAR_DECL node representing the vtable itself as a
2574 "gratuitous" one, thereby forcing dwarfout.c to ignore it.
2575 It is rather important that such things be ignored because
2576 any effort to actually generate DWARF for them will run
2577 into trouble when/if we encounter code like:
2579 #pragma interface
2580 struct S { virtual void member (); };
2582 because the artificial declaration of the vtable itself (as
2583 manufactured by the g++ front end) will say that the vtable
2584 is a static member of `S' but only *after* the debug output
2585 for the definition of `S' has already been output. This causes
2586 grief because the DWARF entry for the definition of the vtable
2587 will try to refer back to an earlier *declaration* of the
2588 vtable as a static member of `S' and there won't be one.
2589 We might be able to arrange to have the "vtable static member"
2590 attached to the member list for `S' before the debug info for
2591 `S' get written (which would solve the problem) but that would
2592 require more intrusive changes to the g++ front end. */
2594 DECL_IGNORED_P (vars) = 1;
2597 /* Always make vtables weak. */
2598 if (flag_weak)
2599 comdat_linkage (vars);
2601 rest_of_decl_compilation (vars, NULL_PTR, 1, 1);
2603 if (flag_vtable_gc)
2604 output_vtable_inherit (vars);
2606 /* Because we're only doing syntax-checking, we'll never end up
2607 actually marking the variable as written. */
2608 if (flag_syntax_only)
2609 TREE_ASM_WRITTEN (vars) = 1;
2611 return 1;
2613 else if (!DECL_NEEDED_P (vars))
2614 /* We don't know what to do with this one yet. */
2615 return 0;
2617 *t = TREE_CHAIN (vars);
2618 return 0;
2621 static int
2622 prune_vtable_vardecl (t, data)
2623 tree *t;
2624 void *data ATTRIBUTE_UNUSED;
2626 *t = TREE_CHAIN (*t);
2627 return 1;
2630 /* Determines the proper settings of TREE_PUBLIC and DECL_EXTERNAL for an
2631 inline function or template instantiation at end-of-file. */
2633 void
2634 import_export_decl (decl)
2635 tree decl;
2637 if (DECL_INTERFACE_KNOWN (decl))
2638 return;
2640 if (DECL_TEMPLATE_INSTANTIATION (decl)
2641 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2643 DECL_NOT_REALLY_EXTERN (decl) = 1;
2644 if ((DECL_IMPLICIT_INSTANTIATION (decl)
2645 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2646 && (flag_implicit_templates
2647 || (flag_implicit_inline_templates && DECL_THIS_INLINE (decl))))
2649 if (!TREE_PUBLIC (decl))
2650 /* Templates are allowed to have internal linkage. See
2651 [basic.link]. */
2653 else
2654 comdat_linkage (decl);
2656 else
2657 DECL_NOT_REALLY_EXTERN (decl) = 0;
2659 else if (DECL_FUNCTION_MEMBER_P (decl))
2661 tree ctype = DECL_CLASS_CONTEXT (decl);
2662 import_export_class (ctype);
2663 if (CLASSTYPE_INTERFACE_KNOWN (ctype)
2664 && (flag_new_abi
2665 ? (! DECL_THIS_INLINE (decl))
2666 : (! DECL_ARTIFICIAL (decl) || DECL_VINDEX (decl))))
2668 DECL_NOT_REALLY_EXTERN (decl)
2669 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2670 || (DECL_THIS_INLINE (decl) && ! flag_implement_inlines
2671 && !DECL_VINDEX (decl)));
2673 /* Always make artificials weak. */
2674 if (DECL_ARTIFICIAL (decl) && flag_weak)
2675 comdat_linkage (decl);
2676 else
2677 maybe_make_one_only (decl);
2679 else
2680 comdat_linkage (decl);
2682 else if (DECL_TINFO_FN_P (decl))
2684 tree ctype = TREE_TYPE (DECL_NAME (decl));
2686 if (IS_AGGR_TYPE (ctype))
2687 import_export_class (ctype);
2689 if (IS_AGGR_TYPE (ctype) && CLASSTYPE_INTERFACE_KNOWN (ctype)
2690 && TYPE_VIRTUAL_P (ctype)
2691 /* If -fno-rtti, we're not necessarily emitting this stuff with
2692 the class, so go ahead and emit it now. This can happen
2693 when a class is used in exception handling. */
2694 && flag_rtti
2695 /* If the type is a cv-qualified variant of a type, then we
2696 must emit the tinfo function in this translation unit
2697 since it will not be emitted when the vtable for the type
2698 is output (which is when the unqualified version is
2699 generated). */
2700 && same_type_p (ctype, TYPE_MAIN_VARIANT (ctype)))
2702 DECL_NOT_REALLY_EXTERN (decl)
2703 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2704 || (DECL_THIS_INLINE (decl) && ! flag_implement_inlines
2705 && !DECL_VINDEX (decl)));
2707 /* Always make artificials weak. */
2708 if (flag_weak)
2709 comdat_linkage (decl);
2711 else if (TYPE_BUILT_IN (ctype)
2712 && same_type_p (ctype, TYPE_MAIN_VARIANT (ctype)))
2713 DECL_NOT_REALLY_EXTERN (decl) = 0;
2714 else
2715 comdat_linkage (decl);
2717 else
2718 comdat_linkage (decl);
2720 DECL_INTERFACE_KNOWN (decl) = 1;
2723 tree
2724 build_cleanup (decl)
2725 tree decl;
2727 tree temp;
2728 tree type = TREE_TYPE (decl);
2730 if (TREE_CODE (type) == ARRAY_TYPE)
2731 temp = decl;
2732 else
2734 mark_addressable (decl);
2735 temp = build1 (ADDR_EXPR, build_pointer_type (type), decl);
2737 temp = build_delete (TREE_TYPE (temp), temp,
2738 integer_two_node,
2739 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2740 return temp;
2743 extern int parse_time, varconst_time;
2745 static tree
2746 get_sentry (base)
2747 tree base;
2749 tree sname = get_id_2 ("__sn", base);
2750 /* For struct X foo __attribute__((weak)), there is a counter
2751 __snfoo. Since base is already an assembler name, sname should
2752 be globally unique */
2753 tree sentry = IDENTIFIER_GLOBAL_VALUE (sname);
2754 if (! sentry)
2756 push_permanent_obstack ();
2757 sentry = build_decl (VAR_DECL, sname, integer_type_node);
2758 TREE_PUBLIC (sentry) = 1;
2759 DECL_ARTIFICIAL (sentry) = 1;
2760 TREE_STATIC (sentry) = 1;
2761 TREE_USED (sentry) = 1;
2762 DECL_COMMON (sentry) = 1;
2763 pushdecl_top_level (sentry);
2764 cp_finish_decl (sentry, NULL_TREE, NULL_TREE, 0, 0);
2765 pop_obstacks ();
2767 return sentry;
2770 /* Start the process of running a particular set of global constructors
2771 or destructors. Subroutine of do_[cd]tors. */
2773 static tree
2774 start_objects (method_type, initp)
2775 int method_type, initp;
2777 tree fnname;
2778 tree body;
2779 char type[10];
2781 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2783 if (initp != DEFAULT_INIT_PRIORITY)
2785 char joiner;
2787 #ifdef JOINER
2788 joiner = JOINER;
2789 #else
2790 joiner = '_';
2791 #endif
2793 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2795 else
2796 sprintf (type, "%c", method_type);
2798 fnname = get_file_function_name_long (type);
2800 start_function (void_list_node,
2801 make_call_declarator (fnname, void_list_node, NULL_TREE,
2802 NULL_TREE),
2803 NULL_TREE, SF_DEFAULT);
2805 #if defined(ASM_OUTPUT_CONSTRUCTOR) && defined(ASM_OUTPUT_DESTRUCTOR)
2806 /* It can be a static function as long as collect2 does not have
2807 to scan the object file to find its ctor/dtor routine. */
2808 TREE_PUBLIC (current_function_decl) = 0;
2809 #endif
2811 /* Mark this declaration as used to avoid spurious warnings. */
2812 TREE_USED (current_function_decl) = 1;
2814 /* Mark this function as a global constructor or destructor. */
2815 if (method_type == 'I')
2816 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2817 else
2818 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2819 GLOBAL_INIT_PRIORITY (current_function_decl) = initp;
2821 body = begin_compound_stmt (/*has_no_scope=*/0);
2823 /* We cannot allow these functions to be elided, even if they do not
2824 have external linkage. And, there's no point in deferring
2825 copmilation of thes functions; they're all going to have to be
2826 out anyhow. */
2827 current_function_cannot_inline
2828 = "static constructors and destructors cannot be inlined";
2830 return body;
2833 /* Finish the process of running a particular set of global constructors
2834 or destructors. Subroutine of do_[cd]tors. */
2836 static void
2837 finish_objects (method_type, initp, body)
2838 int method_type, initp;
2839 tree body;
2841 char *fnname;
2842 tree fn;
2844 /* Finish up. */
2845 finish_compound_stmt(/*has_no_scope=*/0, body);
2846 fn = finish_function (lineno, 0);
2847 expand_body (fn);
2849 /* When only doing semantic analysis, and no RTL generation, we
2850 can't call functions that directly emit assembly code; there is
2851 no assembly file in which to put the code. */
2852 if (flag_syntax_only)
2853 return;
2855 fnname = XSTR (XEXP (DECL_RTL (fn), 0), 0);
2856 if (initp == DEFAULT_INIT_PRIORITY)
2858 if (method_type == 'I')
2859 assemble_constructor (fnname);
2860 else
2861 assemble_destructor (fnname);
2863 #if defined (ASM_OUTPUT_SECTION_NAME) && defined (ASM_OUTPUT_CONSTRUCTOR)
2864 /* If we're using init priority we can't use assemble_*tor, but on ELF
2865 targets we can stick the references into named sections for GNU ld
2866 to collect. */
2867 else
2869 char buf[15];
2870 sprintf (buf, ".%ctors.%.5u", method_type == 'I' ? 'c' : 'd',
2871 /* invert the numbering so the linker puts us in the proper
2872 order; constructors are run from right to left, and the
2873 linker sorts in increasing order. */
2874 MAX_INIT_PRIORITY - initp);
2875 named_section (NULL_TREE, buf, 0);
2876 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, fnname),
2877 POINTER_SIZE / BITS_PER_UNIT, 1);
2879 #endif
2882 /* The names of the parameters to the function created to handle
2883 initializations and destructions for objects with static storage
2884 duration. */
2885 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2886 #define PRIORITY_IDENTIFIER "__priority"
2888 /* The name of the function we create to handle initializations and
2889 destructions for objects with static storage duration. */
2890 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2892 /* The declaration for the __INITIALIZE_P argument. */
2893 static tree initialize_p_decl;
2895 /* The declaration for the __PRIORITY argument. */
2896 static tree priority_decl;
2898 /* The declaration for the static storage duration function. */
2899 static tree ssdf_decl;
2901 /* All the static storage duration functions created in this
2902 translation unit. */
2903 static varray_type ssdf_decls;
2904 static size_t ssdf_decls_used;
2906 /* A map from priority levels to information about that priority
2907 level. There may be many such levels, so efficient lookup is
2908 important. */
2909 static splay_tree priority_info_map;
2911 /* Begins the generation of the function that will handle all
2912 initialization and destruction of objects with static storage
2913 duration. The function generated takes two parameters of type
2914 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2915 non-zero, it performs initializations. Otherwise, it performs
2916 destructions. It only performs those initializations or
2917 destructions with the indicated __PRIORITY. The generated function
2918 returns no value.
2920 It is assumed that this function will only be called once per
2921 translation unit. */
2923 static tree
2924 start_static_storage_duration_function ()
2926 static unsigned ssdf_number;
2928 tree parm_types;
2929 tree type;
2930 tree body;
2931 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2933 /* Create the identifier for this function. It will be of the form
2934 SSDF_IDENTIFIER_<number>. */
2935 sprintf (id, "%s_%u", SSDF_IDENTIFIER, ssdf_number++);
2936 if (ssdf_number == 0)
2938 /* Overflow occurred. That means there are at least 4 billion
2939 initialization functions. */
2940 sorry ("too many initialization functions required");
2941 my_friendly_abort (19990430);
2944 /* Create the parameters. */
2945 parm_types = void_list_node;
2946 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2947 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2948 type = build_function_type (void_type_node, parm_types);
2950 /* Create the FUNCTION_DECL itself. */
2951 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2952 get_identifier (id),
2953 type);
2954 TREE_PUBLIC (ssdf_decl) = 0;
2955 DECL_ARTIFICIAL (ssdf_decl) = 1;
2957 /* Put this function in the list of functions to be called from the
2958 static constructors and destructors. */
2959 if (!ssdf_decls)
2961 VARRAY_TREE_INIT (ssdf_decls, 32, "ssdf_decls");
2963 /* Take this opportunity to initialize the map from priority
2964 numbers to information about that priority level. */
2965 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2966 /*delete_key_fn=*/0,
2967 /*delete_value_fn=*/
2968 (splay_tree_delete_value_fn) &free);
2970 /* We always need to generate functions for the
2971 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2972 priorities later, we'll be sure to find the
2973 DEFAULT_INIT_PRIORITY. */
2974 get_priority_info (DEFAULT_INIT_PRIORITY);
2977 if (ssdf_decls_used == ssdf_decls->num_elements)
2978 VARRAY_GROW (ssdf_decls, 2 * ssdf_decls_used);
2979 VARRAY_TREE (ssdf_decls, ssdf_decls_used) = ssdf_decl;
2980 ++ssdf_decls_used;
2982 /* Create the argument list. */
2983 initialize_p_decl = build_decl (PARM_DECL,
2984 get_identifier (INITIALIZE_P_IDENTIFIER),
2985 integer_type_node);
2986 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2987 DECL_ARG_TYPE (initialize_p_decl) = integer_type_node;
2988 TREE_USED (initialize_p_decl) = 1;
2989 priority_decl = build_decl (PARM_DECL, get_identifier (PRIORITY_IDENTIFIER),
2990 integer_type_node);
2991 DECL_CONTEXT (priority_decl) = ssdf_decl;
2992 DECL_ARG_TYPE (priority_decl) = integer_type_node;
2993 TREE_USED (priority_decl) = 1;
2995 TREE_CHAIN (initialize_p_decl) = priority_decl;
2996 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2998 /* Start the function itself. This is equivalent to declarating the
2999 function as:
3001 static void __ssdf (int __initialize_p, init __priority_p);
3003 It is static because we only need to call this function from the
3004 various constructor and destructor functions for this module. */
3005 start_function (/*specs=*/NULL_TREE,
3006 ssdf_decl,
3007 /*attrs=*/NULL_TREE,
3008 SF_PRE_PARSED);
3010 /* Set up the scope of the outermost block in the function. */
3011 body = begin_compound_stmt (/*has_no_scope=*/0);
3013 /* This function must not be deferred because we are depending on
3014 its compilation to tell us what is TREE_SYMBOL_REFERENCED. */
3015 current_function_cannot_inline
3016 = "static storage duration functions cannot be inlined";
3018 return body;
3021 /* Finish the generation of the function which performs initialization
3022 and destruction of objects with static storage duration. After
3023 this point, no more such objects can be created. */
3025 static void
3026 finish_static_storage_duration_function (body)
3027 tree body;
3029 /* Close out the function. */
3030 finish_compound_stmt (/*has_no_scope=*/0, body);
3031 expand_body (finish_function (lineno, 0));
3034 /* Return the information about the indicated PRIORITY level. If no
3035 code to handle this level has yet been generated, generate the
3036 appropriate prologue. */
3038 static priority_info
3039 get_priority_info (priority)
3040 int priority;
3042 priority_info pi;
3043 splay_tree_node n;
3045 n = splay_tree_lookup (priority_info_map,
3046 (splay_tree_key) priority);
3047 if (!n)
3049 /* Create a new priority information structure, and insert it
3050 into the map. */
3051 pi = (priority_info) xmalloc (sizeof (struct priority_info_s));
3052 pi->initializations_p = 0;
3053 pi->destructions_p = 0;
3054 splay_tree_insert (priority_info_map,
3055 (splay_tree_key) priority,
3056 (splay_tree_value) pi);
3058 else
3059 pi = (priority_info) n->value;
3061 return pi;
3064 /* Set up to handle the initialization or destruction of DECL. If
3065 INITP is non-zero, we are initializing the variable. Otherwise, we
3066 are destroying it. */
3068 static tree
3069 start_static_initialization_or_destruction (decl, initp)
3070 tree decl;
3071 int initp;
3073 tree sentry_if_stmt = NULL_TREE;
3074 int priority;
3075 tree cond;
3076 tree init_cond;
3077 priority_info pi;
3079 /* Figure out the priority for this declaration. */
3080 priority = DECL_INIT_PRIORITY (decl);
3081 if (!priority)
3082 priority = DEFAULT_INIT_PRIORITY;
3084 /* Remember that we had an initialization or finalization at this
3085 priority. */
3086 pi = get_priority_info (priority);
3087 if (initp)
3088 pi->initializations_p = 1;
3089 else
3090 pi->destructions_p = 1;
3092 /* Trick the compiler into thinking we are at the file and line
3093 where DECL was declared so that error-messages make sense, and so
3094 that the debugger will show somewhat sensible file and line
3095 information. */
3096 input_filename = DECL_SOURCE_FILE (decl);
3097 lineno = DECL_SOURCE_LINE (decl);
3099 /* Because of:
3101 [class.access.spec]
3103 Access control for implicit calls to the constructors,
3104 the conversion functions, or the destructor called to
3105 create and destroy a static data member is performed as
3106 if these calls appeared in the scope of the member's
3107 class.
3109 we pretend we are in a static member function of the class of
3110 which the DECL is a member. */
3111 if (member_p (decl))
3113 DECL_CLASS_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3114 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3117 /* Conditionalize this initialization on being in the right priority
3118 and being initializing/finalizing appropriately. */
3119 sentry_if_stmt = begin_if_stmt ();
3120 cond = build_binary_op (EQ_EXPR,
3121 priority_decl,
3122 build_int_2 (priority, 0));
3123 init_cond = initp ? integer_one_node : integer_zero_node;
3124 init_cond = build_binary_op (EQ_EXPR,
3125 initialize_p_decl,
3126 init_cond);
3127 cond = build_binary_op (TRUTH_ANDIF_EXPR, cond, init_cond);
3129 /* We need a sentry if this is an object with external linkage that
3130 might be initialized in more than one place. */
3131 if (TREE_PUBLIC (decl) && (DECL_COMMON (decl)
3132 || DECL_ONE_ONLY (decl)
3133 || DECL_WEAK (decl)))
3135 tree sentry;
3136 tree sentry_cond;
3138 sentry = get_sentry (DECL_ASSEMBLER_NAME (decl));
3140 /* We do initializations only if the SENTRY is zero, i.e., if we
3141 are the first to initialize the variable. We do destructions
3142 only if the SENTRY is one, i.e., if we are the last to
3143 destroy the variable. */
3144 if (initp)
3145 sentry_cond = build_binary_op (EQ_EXPR,
3146 build_unary_op (PREINCREMENT_EXPR,
3147 sentry,
3148 /*noconvert=*/1),
3149 integer_one_node);
3150 else
3151 sentry_cond = build_binary_op (EQ_EXPR,
3152 build_unary_op (PREDECREMENT_EXPR,
3153 sentry,
3154 /*noconvert=*/1),
3155 integer_zero_node);
3157 cond = build_binary_op (TRUTH_ANDIF_EXPR, cond, sentry_cond);
3160 finish_if_stmt_cond (cond, sentry_if_stmt);
3162 return sentry_if_stmt;
3165 /* We've just finished generating code to do an initialization or
3166 finalization. SENTRY_IF_STMT is the if-statement we used to guard
3167 the initialization. */
3169 static void
3170 finish_static_initialization_or_destruction (sentry_if_stmt)
3171 tree sentry_if_stmt;
3173 finish_then_clause (sentry_if_stmt);
3174 finish_if_stmt ();
3176 /* Now that we're done with DECL we don't need to pretend to be a
3177 member of its class any longer. */
3178 DECL_CLASS_CONTEXT (current_function_decl) = NULL_TREE;
3179 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3182 /* Generate code to do the static initialization of DECL. The
3183 initialization is INIT. If DECL may be initialized more than once
3184 in different object files, SENTRY is the guard variable to
3185 check. PRIORITY is the priority for the initialization. */
3187 static void
3188 do_static_initialization (decl, init)
3189 tree decl;
3190 tree init;
3192 tree expr;
3193 tree sentry_if_stmt;
3195 /* Set up for the initialization. */
3196 sentry_if_stmt
3197 = start_static_initialization_or_destruction (decl,
3198 /*initp=*/1);
3200 /* Do the initialization itself. */
3201 if (IS_AGGR_TYPE (TREE_TYPE (decl))
3202 || TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
3203 expr = build_aggr_init (decl, init, 0);
3204 else if (TREE_CODE (init) == TREE_VEC)
3205 expr = build_vec_init (decl, TREE_VEC_ELT (init, 0),
3206 TREE_VEC_ELT (init, 1),
3207 TREE_VEC_ELT (init, 2), 0);
3208 else
3210 expr = build (INIT_EXPR, TREE_TYPE (decl), decl, init);
3211 TREE_SIDE_EFFECTS (expr) = 1;
3213 finish_expr_stmt (expr);
3215 /* Finsh up. */
3216 finish_static_initialization_or_destruction (sentry_if_stmt);
3219 /* Generate code to do the static destruction of DECL. If DECL may be
3220 initialized more than once in different object files, SENTRY is the
3221 guard variable to check. PRIORITY is the priority for the
3222 destruction. */
3224 static void
3225 do_static_destruction (decl)
3226 tree decl;
3228 tree sentry_if_stmt;
3230 /* If we don't need a destructor, there's nothing to do. */
3231 if (!TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (decl)))
3232 return;
3234 /* Actually do the destruction. */
3235 sentry_if_stmt = start_static_initialization_or_destruction (decl,
3236 /*initp=*/0);
3237 finish_expr_stmt (build_cleanup (decl));
3238 finish_static_initialization_or_destruction (sentry_if_stmt);
3241 /* VARS is a list of variables with static storage duration which may
3242 need initialization and/or finalization. Remove those variables
3243 that don't really need to be initialized or finalized, and return
3244 the resulting list. The order in which the variables appear in
3245 VARS is in reverse order of the order in which they should actually
3246 be initialized. The list we return is in the unreversed order;
3247 i.e., the first variable should be initialized first. */
3249 static tree
3250 prune_vars_needing_no_initialization (vars)
3251 tree vars;
3253 tree var;
3254 tree result;
3256 for (var = vars, result = NULL_TREE;
3257 var;
3258 var = TREE_CHAIN (var))
3260 tree decl = TREE_VALUE (var);
3261 tree init = TREE_PURPOSE (var);
3263 /* Deal gracefully with error. */
3264 if (decl == error_mark_node)
3265 continue;
3267 /* The only things that can be initialized are variables. */
3268 my_friendly_assert (TREE_CODE (decl) == VAR_DECL, 19990420);
3270 /* If this object is not defined, we don't need to do anything
3271 here. */
3272 if (DECL_EXTERNAL (decl))
3273 continue;
3275 /* Also, if the initializer already contains errors, we can bail
3276 out now. */
3277 if (init && TREE_CODE (init) == TREE_LIST
3278 && value_member (error_mark_node, init))
3279 continue;
3281 /* This variable is going to need initialization and/or
3282 finalization, so we add it to the list. */
3283 result = tree_cons (init, decl, result);
3286 return result;
3289 /* Make sure we have told the back end about all the variables in
3290 VARS. */
3292 static void
3293 write_out_vars (vars)
3294 tree vars;
3296 tree v;
3298 for (v = vars; v; v = TREE_CHAIN (v))
3299 if (! TREE_ASM_WRITTEN (TREE_VALUE (v)))
3300 rest_of_decl_compilation (TREE_VALUE (v), 0, 1, 1);
3303 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3304 (otherwise) that will initialize all gobal objects with static
3305 storage duration having the indicated PRIORITY. */
3307 static void
3308 generate_ctor_or_dtor_function (constructor_p, priority)
3309 int constructor_p;
3310 int priority;
3312 char function_key;
3313 tree arguments;
3314 tree body;
3315 size_t i;
3317 /* We use `I' to indicate initialization and `D' to indicate
3318 destruction. */
3319 if (constructor_p)
3320 function_key = 'I';
3321 else
3322 function_key = 'D';
3324 /* Begin the function. */
3325 body = start_objects (function_key, priority);
3327 /* Call the static storage duration function with appropriate
3328 arguments. */
3329 for (i = 0; i < ssdf_decls_used; ++i)
3331 arguments = tree_cons (NULL_TREE, build_int_2 (priority, 0),
3332 NULL_TREE);
3333 arguments = tree_cons (NULL_TREE, build_int_2 (constructor_p, 0),
3334 arguments);
3335 finish_expr_stmt (build_function_call (VARRAY_TREE (ssdf_decls, i),
3336 arguments));
3339 /* If we're generating code for the DEFAULT_INIT_PRIORITY, throw in
3340 calls to any functions marked with attributes indicating that
3341 they should be called at initialization- or destruction-time. */
3342 if (priority == DEFAULT_INIT_PRIORITY)
3344 tree fns;
3346 for (fns = constructor_p ? static_ctors : static_dtors;
3347 fns;
3348 fns = TREE_CHAIN (fns))
3349 finish_expr_stmt (build_function_call (TREE_VALUE (fns), NULL_TREE));
3352 /* Close out the function. */
3353 finish_objects (function_key, priority, body);
3356 /* Generate constructor and destructor functions for the priority
3357 indicated by N. */
3359 static int
3360 generate_ctor_and_dtor_functions_for_priority (n, data)
3361 splay_tree_node n;
3362 void *data ATTRIBUTE_UNUSED;
3364 int priority = (int) n->key;
3365 priority_info pi = (priority_info) n->value;
3367 /* Generate the functions themselves, but only if they are really
3368 needed. */
3369 if (pi->initializations_p
3370 || (priority == DEFAULT_INIT_PRIORITY && static_ctors))
3371 generate_ctor_or_dtor_function (/*constructor_p=*/1,
3372 priority);
3373 if (pi->destructions_p
3374 || (priority == DEFAULT_INIT_PRIORITY && static_dtors))
3375 generate_ctor_or_dtor_function (/*constructor_p=*/0,
3376 priority);
3378 /* Keep iterating. */
3379 return 0;
3382 /* This routine is called from the last rule in yyparse ().
3383 Its job is to create all the code needed to initialize and
3384 destroy the global aggregates. We do the destruction
3385 first, since that way we only need to reverse the decls once. */
3387 void
3388 finish_file ()
3390 extern int lineno;
3391 int start_time, this_time;
3392 tree vars;
3393 int reconsider;
3394 size_t i;
3396 at_eof = 1;
3398 /* Bad parse errors. Just forget about it. */
3399 if (! global_bindings_p () || current_class_type || decl_namespace_list)
3400 return;
3402 start_time = get_run_time ();
3404 /* Otherwise, GDB can get confused, because in only knows
3405 about source for LINENO-1 lines. */
3406 lineno -= 1;
3408 interface_unknown = 1;
3409 interface_only = 0;
3411 /* We now have to write out all the stuff we put off writing out.
3412 These include:
3414 o Template specializations that we have not yet instantiated,
3415 but which are needed.
3416 o Initialization and destruction for non-local objects with
3417 static storage duration. (Local objects with static storage
3418 duration are initialized when their scope is first entered,
3419 and are cleaned up via atexit.)
3420 o Virtual function tables.
3422 All of these may cause others to be needed. For example,
3423 instantiating one function may cause another to be needed, and
3424 generating the intiailzer for an object may cause templates to be
3425 instantiated, etc., etc. */
3427 this_time = get_run_time ();
3428 parse_time -= this_time - start_time;
3429 varconst_time += this_time - start_time;
3430 start_time = get_run_time ();
3431 permanent_allocation (1);
3435 reconsider = 0;
3437 /* If there are templates that we've put off instantiating, do
3438 them now. */
3439 instantiate_pending_templates ();
3441 /* Write out virtual tables as required. Note that writing out
3442 the virtual table for a template class may cause the
3443 instantiation of members of that class. */
3444 if (walk_globals (vtable_decl_p,
3445 finish_vtable_vardecl,
3446 /*data=*/0))
3447 reconsider = 1;
3449 /* The list of objects with static storage duration is built up
3450 in reverse order. We clear STATIC_AGGREGATES so that any new
3451 aggregates added during the initialization of these will be
3452 initialized in the correct order when we next come around the
3453 loop. */
3454 vars = prune_vars_needing_no_initialization (static_aggregates);
3455 static_aggregates = NULL_TREE;
3457 if (vars)
3459 tree v;
3461 /* We need to start a new initialization function each time
3462 through the loop. That's because we need to know which
3463 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3464 isn't computed until a function is finished, and written
3465 out. That's a deficiency in the back-end. When this is
3466 fixed, these initialization functions could all become
3467 inline, with resulting performance improvements. */
3468 tree ssdf_body = start_static_storage_duration_function ();
3470 /* Make sure the back end knows about all the variables. */
3471 write_out_vars (vars);
3473 /* First generate code to do all the initializations. */
3474 for (v = vars; v; v = TREE_CHAIN (v))
3475 do_static_initialization (TREE_VALUE (v),
3476 TREE_PURPOSE (v));
3478 /* Then, generate code to do all the destructions. Do these
3479 in reverse order so that the most recently constructed
3480 variable is the first destroyed. */
3481 vars = nreverse (vars);
3482 for (v = vars; v; v = TREE_CHAIN (v))
3483 do_static_destruction (TREE_VALUE (v));
3485 /* Finish up the static storage duration function for this
3486 round. */
3487 finish_static_storage_duration_function (ssdf_body);
3489 /* All those initializations and finalizations might cause
3490 us to need more inline functions, more template
3491 instantiations, etc. */
3492 reconsider = 1;
3495 /* Go through the various inline functions, and see if any need
3496 synthesizing. */
3497 for (i = 0; i < saved_inlines_used; ++i)
3499 tree decl = VARRAY_TREE (saved_inlines, i);
3500 import_export_decl (decl);
3501 if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
3502 && TREE_USED (decl)
3503 && (! DECL_REALLY_EXTERN (decl) || DECL_INLINE (decl)))
3505 /* Even though we're already at the top-level, we push
3506 there again. That way, when we pop back a few lines
3507 hence, all of our state is restored. Otherwise,
3508 finish_function doesn't clean things up, and we end
3509 up with CURRENT_FUNCTION_DECL set. */
3510 push_to_top_level ();
3511 if (DECL_TINFO_FN_P (decl))
3512 synthesize_tinfo_fn (decl);
3513 else
3514 synthesize_method (decl);
3515 pop_from_top_level ();
3516 reconsider = 1;
3520 /* Mark all functions that might deal with exception-handling as
3521 referenced. */
3522 mark_all_runtime_matches ();
3524 /* We lie to the back-end, pretending that some functions are
3525 not defined when they really are. This keeps these functions
3526 from being put out unncessarily. But, we must stop lying
3527 when the functions are referenced, or if they are not comdat
3528 since they need to be put out now. */
3529 for (i = 0; i < saved_inlines_used; ++i)
3531 tree decl = VARRAY_TREE (saved_inlines, i);
3533 if (DECL_NOT_REALLY_EXTERN (decl)
3534 && DECL_INITIAL (decl)
3535 && (DECL_NEEDED_P (decl) || !DECL_COMDAT (decl)))
3536 DECL_EXTERNAL (decl) = 0;
3539 if (saved_inlines_used
3540 && wrapup_global_declarations (&VARRAY_TREE (saved_inlines, 0),
3541 saved_inlines_used))
3542 reconsider = 1;
3543 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3544 reconsider = 1;
3546 /* Static data members are just like namespace-scope globals. */
3547 for (i = 0; i < pending_statics_used; ++i)
3549 tree decl = VARRAY_TREE (pending_statics, i);
3550 if (TREE_ASM_WRITTEN (decl))
3551 continue;
3552 import_export_decl (decl);
3553 if (DECL_NOT_REALLY_EXTERN (decl) && ! DECL_IN_AGGR_P (decl))
3554 DECL_EXTERNAL (decl) = 0;
3556 if (pending_statics
3557 && wrapup_global_declarations (&VARRAY_TREE (pending_statics, 0),
3558 pending_statics_used))
3559 reconsider = 1;
3561 while (reconsider);
3563 /* We give C linkage to static constructors and destructors. */
3564 push_lang_context (lang_name_c);
3566 /* Generate initialization and destruction functions for all
3567 priorities for which they are required. */
3568 if (priority_info_map)
3569 splay_tree_foreach (priority_info_map,
3570 generate_ctor_and_dtor_functions_for_priority,
3571 /*data=*/0);
3573 /* We're done with the splay-tree now. */
3574 if (priority_info_map)
3575 splay_tree_delete (priority_info_map);
3577 /* We're done with static constructors, so we can go back to "C++"
3578 linkage now. */
3579 pop_lang_context ();
3581 /* Now delete from the chain of variables all virtual function tables.
3582 We output them all ourselves, because each will be treated
3583 specially. We don't do this if we're just doing semantic
3584 analysis, and not code-generation. */
3585 if (!flag_syntax_only)
3586 walk_globals (vtable_decl_p, prune_vtable_vardecl, /*data=*/0);
3588 /* Now, issue warnings about static, but not defined, functions,
3589 etc., and emit debugging information. */
3590 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3591 if (pending_statics)
3592 check_global_declarations (&VARRAY_TREE (pending_statics, 0),
3593 pending_statics_used);
3595 finish_repo ();
3597 /* The entire file is now complete. If requested, dump everything
3598 to a file. */
3599 if (flag_dump_translation_unit)
3600 dump_node_to_file (global_namespace, flag_dump_translation_unit);
3602 /* If there's some tool that wants to examine the entire translation
3603 unit, let it do so now. */
3604 if (back_end_hook)
3605 (*back_end_hook) (global_namespace);
3607 this_time = get_run_time ();
3608 parse_time -= this_time - start_time;
3609 varconst_time += this_time - start_time;
3611 if (flag_detailed_statistics)
3613 dump_tree_statistics ();
3614 dump_time_statistics ();
3618 /* This is something of the form 'A()()()()()+1' that has turned out to be an
3619 expr. Since it was parsed like a type, we need to wade through and fix
3620 that. Unfortunately, since operator() is left-associative, we can't use
3621 tail recursion. In the above example, TYPE is `A', and DECL is
3622 `()()()()()'.
3624 Maybe this shouldn't be recursive, but how often will it actually be
3625 used? (jason) */
3627 tree
3628 reparse_absdcl_as_expr (type, decl)
3629 tree type, decl;
3631 /* do build_functional_cast (type, NULL_TREE) at bottom */
3632 if (TREE_OPERAND (decl, 0) == NULL_TREE)
3633 return build_functional_cast (type, NULL_TREE);
3635 /* recurse */
3636 decl = reparse_absdcl_as_expr (type, TREE_OPERAND (decl, 0));
3638 decl = build_x_function_call (decl, NULL_TREE, current_class_ref);
3640 if (TREE_CODE (decl) == CALL_EXPR
3641 && (! TREE_TYPE (decl)
3642 || TREE_CODE (TREE_TYPE (decl)) != VOID_TYPE))
3643 decl = require_complete_type (decl);
3645 return decl;
3648 /* This is something of the form `int ((int)(int)(int)1)' that has turned
3649 out to be an expr. Since it was parsed like a type, we need to wade
3650 through and fix that. Since casts are right-associative, we are
3651 reversing the order, so we don't have to recurse.
3653 In the above example, DECL is the `(int)(int)(int)', and EXPR is the
3654 `1'. */
3656 tree
3657 reparse_absdcl_as_casts (decl, expr)
3658 tree decl, expr;
3660 tree type;
3662 if (TREE_CODE (expr) == CONSTRUCTOR
3663 && TREE_TYPE (expr) == 0)
3665 type = groktypename (TREE_VALUE (CALL_DECLARATOR_PARMS (decl)));
3666 decl = TREE_OPERAND (decl, 0);
3668 expr = digest_init (type, expr, (tree *) 0);
3669 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
3671 int failure = complete_array_type (type, expr, 1);
3672 if (failure)
3673 my_friendly_abort (78);
3677 while (decl)
3679 type = groktypename (TREE_VALUE (CALL_DECLARATOR_PARMS (decl)));
3680 decl = TREE_OPERAND (decl, 0);
3681 expr = build_c_cast (type, expr);
3684 if (warn_old_style_cast && ! in_system_header
3685 && current_lang_name != lang_name_c)
3686 warning ("use of old-style cast");
3688 return expr;
3691 /* Given plain tree nodes for an expression, build up the full semantics. */
3693 tree
3694 build_expr_from_tree (t)
3695 tree t;
3697 if (t == NULL_TREE || t == error_mark_node)
3698 return t;
3700 switch (TREE_CODE (t))
3702 case IDENTIFIER_NODE:
3703 return do_identifier (t, 0, NULL_TREE);
3705 case LOOKUP_EXPR:
3706 if (LOOKUP_EXPR_GLOBAL (t))
3707 return do_scoped_id (TREE_OPERAND (t, 0), 0);
3708 else
3709 return do_identifier (TREE_OPERAND (t, 0), 0, NULL_TREE);
3711 case TEMPLATE_ID_EXPR:
3712 return (lookup_template_function
3713 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3714 build_expr_from_tree (TREE_OPERAND (t, 1))));
3716 case INDIRECT_REF:
3717 return build_x_indirect_ref
3718 (build_expr_from_tree (TREE_OPERAND (t, 0)), "unary *");
3720 case CAST_EXPR:
3721 return build_functional_cast
3722 (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3724 case REINTERPRET_CAST_EXPR:
3725 return build_reinterpret_cast
3726 (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3728 case CONST_CAST_EXPR:
3729 return build_const_cast
3730 (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3732 case DYNAMIC_CAST_EXPR:
3733 return build_dynamic_cast
3734 (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3736 case STATIC_CAST_EXPR:
3737 return build_static_cast
3738 (TREE_TYPE (t), build_expr_from_tree (TREE_OPERAND (t, 0)));
3740 case PREDECREMENT_EXPR:
3741 case PREINCREMENT_EXPR:
3742 case POSTDECREMENT_EXPR:
3743 case POSTINCREMENT_EXPR:
3744 case NEGATE_EXPR:
3745 case BIT_NOT_EXPR:
3746 case ABS_EXPR:
3747 case TRUTH_NOT_EXPR:
3748 case ADDR_EXPR:
3749 case CONVERT_EXPR: /* Unary + */
3750 if (TREE_TYPE (t))
3751 return t;
3752 return build_x_unary_op (TREE_CODE (t),
3753 build_expr_from_tree (TREE_OPERAND (t, 0)));
3755 case PLUS_EXPR:
3756 case MINUS_EXPR:
3757 case MULT_EXPR:
3758 case TRUNC_DIV_EXPR:
3759 case CEIL_DIV_EXPR:
3760 case FLOOR_DIV_EXPR:
3761 case ROUND_DIV_EXPR:
3762 case EXACT_DIV_EXPR:
3763 case BIT_AND_EXPR:
3764 case BIT_ANDTC_EXPR:
3765 case BIT_IOR_EXPR:
3766 case BIT_XOR_EXPR:
3767 case TRUNC_MOD_EXPR:
3768 case FLOOR_MOD_EXPR:
3769 case TRUTH_ANDIF_EXPR:
3770 case TRUTH_ORIF_EXPR:
3771 case TRUTH_AND_EXPR:
3772 case TRUTH_OR_EXPR:
3773 case RSHIFT_EXPR:
3774 case LSHIFT_EXPR:
3775 case RROTATE_EXPR:
3776 case LROTATE_EXPR:
3777 case EQ_EXPR:
3778 case NE_EXPR:
3779 case MAX_EXPR:
3780 case MIN_EXPR:
3781 case LE_EXPR:
3782 case GE_EXPR:
3783 case LT_EXPR:
3784 case GT_EXPR:
3785 case MEMBER_REF:
3786 return build_x_binary_op
3787 (TREE_CODE (t),
3788 build_expr_from_tree (TREE_OPERAND (t, 0)),
3789 build_expr_from_tree (TREE_OPERAND (t, 1)));
3791 case DOTSTAR_EXPR:
3792 return build_m_component_ref
3793 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3794 build_expr_from_tree (TREE_OPERAND (t, 1)));
3796 case SCOPE_REF:
3797 return build_offset_ref (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1));
3799 case ARRAY_REF:
3800 if (TREE_OPERAND (t, 0) == NULL_TREE)
3801 /* new-type-id */
3802 return build_parse_node (ARRAY_REF, NULL_TREE,
3803 build_expr_from_tree (TREE_OPERAND (t, 1)));
3804 return grok_array_decl (build_expr_from_tree (TREE_OPERAND (t, 0)),
3805 build_expr_from_tree (TREE_OPERAND (t, 1)));
3807 case SIZEOF_EXPR:
3808 case ALIGNOF_EXPR:
3810 tree r = build_expr_from_tree (TREE_OPERAND (t, 0));
3811 if (TREE_CODE_CLASS (TREE_CODE (r)) != 't')
3812 r = TREE_TYPE (r);
3813 return TREE_CODE (t) == SIZEOF_EXPR ? c_sizeof (r) : c_alignof (r);
3816 case MODOP_EXPR:
3817 return build_x_modify_expr
3818 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3819 TREE_CODE (TREE_OPERAND (t, 1)),
3820 build_expr_from_tree (TREE_OPERAND (t, 2)));
3822 case ARROW_EXPR:
3823 return build_x_arrow
3824 (build_expr_from_tree (TREE_OPERAND (t, 0)));
3826 case NEW_EXPR:
3827 return build_new
3828 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3829 build_expr_from_tree (TREE_OPERAND (t, 1)),
3830 build_expr_from_tree (TREE_OPERAND (t, 2)),
3831 NEW_EXPR_USE_GLOBAL (t));
3833 case DELETE_EXPR:
3834 return delete_sanity
3835 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3836 build_expr_from_tree (TREE_OPERAND (t, 1)),
3837 DELETE_EXPR_USE_VEC (t), DELETE_EXPR_USE_GLOBAL (t));
3839 case COMPOUND_EXPR:
3840 if (TREE_OPERAND (t, 1) == NULL_TREE)
3841 return build_x_compound_expr
3842 (build_expr_from_tree (TREE_OPERAND (t, 0)));
3843 else
3844 my_friendly_abort (42);
3846 case METHOD_CALL_EXPR:
3847 if (TREE_CODE (TREE_OPERAND (t, 0)) == SCOPE_REF)
3849 tree ref = TREE_OPERAND (t, 0);
3850 return build_scoped_method_call
3851 (build_expr_from_tree (TREE_OPERAND (t, 1)),
3852 build_expr_from_tree (TREE_OPERAND (ref, 0)),
3853 TREE_OPERAND (ref, 1),
3854 build_expr_from_tree (TREE_OPERAND (t, 2)));
3856 else
3858 tree fn = TREE_OPERAND (t, 0);
3860 /* We can get a TEMPLATE_ID_EXPR here on code like:
3862 x->f<2>();
3864 so we must resolve that. However, we can also get things
3865 like a BIT_NOT_EXPR here, when referring to a destructor,
3866 and things like that are not correctly resolved by
3867 build_expr_from_tree. So, just use build_expr_from_tree
3868 when we really need it. */
3869 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
3870 fn = lookup_template_function
3871 (TREE_OPERAND (fn, 0),
3872 build_expr_from_tree (TREE_OPERAND (fn, 1)));
3874 return build_method_call
3875 (build_expr_from_tree (TREE_OPERAND (t, 1)),
3877 build_expr_from_tree (TREE_OPERAND (t, 2)),
3878 NULL_TREE, LOOKUP_NORMAL);
3881 case CALL_EXPR:
3882 if (TREE_CODE (TREE_OPERAND (t, 0)) == SCOPE_REF)
3884 tree ref = TREE_OPERAND (t, 0);
3885 return build_member_call
3886 (build_expr_from_tree (TREE_OPERAND (ref, 0)),
3887 TREE_OPERAND (ref, 1),
3888 build_expr_from_tree (TREE_OPERAND (t, 1)));
3890 else
3892 tree name = TREE_OPERAND (t, 0);
3893 tree id;
3894 tree args = build_expr_from_tree (TREE_OPERAND (t, 1));
3895 if (args != NULL_TREE && TREE_CODE (name) == LOOKUP_EXPR
3896 && !LOOKUP_EXPR_GLOBAL (name)
3897 && TREE_CODE ((id = TREE_OPERAND (name, 0))) == IDENTIFIER_NODE
3898 && (!current_class_type
3899 || !lookup_member (current_class_type, id, 0, 0)))
3901 /* Do Koenig lookup if there are no class members. */
3902 name = do_identifier (id, 0, args);
3904 else if (TREE_CODE (name) == TEMPLATE_ID_EXPR
3905 || ! really_overloaded_fn (name))
3906 name = build_expr_from_tree (name);
3907 return build_x_function_call (name, args, current_class_ref);
3910 case COND_EXPR:
3911 return build_x_conditional_expr
3912 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3913 build_expr_from_tree (TREE_OPERAND (t, 1)),
3914 build_expr_from_tree (TREE_OPERAND (t, 2)));
3916 case PSEUDO_DTOR_EXPR:
3917 return (finish_pseudo_destructor_call_expr
3918 (build_expr_from_tree (TREE_OPERAND (t, 0)),
3919 build_expr_from_tree (TREE_OPERAND (t, 1)),
3920 build_expr_from_tree (TREE_OPERAND (t, 2))));
3922 case TREE_LIST:
3924 tree purpose, value, chain;
3926 if (t == void_list_node)
3927 return t;
3929 purpose = TREE_PURPOSE (t);
3930 if (purpose)
3931 purpose = build_expr_from_tree (purpose);
3932 value = TREE_VALUE (t);
3933 if (value)
3934 value = build_expr_from_tree (value);
3935 chain = TREE_CHAIN (t);
3936 if (chain && chain != void_type_node)
3937 chain = build_expr_from_tree (chain);
3938 return tree_cons (purpose, value, chain);
3941 case COMPONENT_REF:
3943 tree object = build_expr_from_tree (TREE_OPERAND (t, 0));
3944 tree field = TREE_OPERAND (t, 1);
3946 /* We use a COMPONENT_REF to indicate things of the form `x.b'
3947 and `x.A::b'. We must distinguish between those cases
3948 here. */
3949 if (TREE_CODE (field) == SCOPE_REF)
3950 return build_object_ref (object,
3951 TREE_OPERAND (field, 0),
3952 TREE_OPERAND (field, 1));
3953 else
3954 return build_x_component_ref (object, field,
3955 NULL_TREE, 1);
3958 case THROW_EXPR:
3959 return build_throw (build_expr_from_tree (TREE_OPERAND (t, 0)));
3961 case CONSTRUCTOR:
3963 tree r;
3965 /* digest_init will do the wrong thing if we let it. */
3966 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3967 return t;
3969 r = build_nt (CONSTRUCTOR, NULL_TREE,
3970 build_expr_from_tree (CONSTRUCTOR_ELTS (t)));
3971 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
3973 if (TREE_TYPE (t))
3974 return digest_init (TREE_TYPE (t), r, 0);
3975 return r;
3978 case TYPEID_EXPR:
3979 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (t, 0))) == 't')
3980 return get_typeid (TREE_OPERAND (t, 0));
3981 return build_x_typeid (build_expr_from_tree (TREE_OPERAND (t, 0)));
3983 case VAR_DECL:
3984 return convert_from_reference (t);
3986 case VA_ARG_EXPR:
3987 return build_va_arg (build_expr_from_tree (TREE_OPERAND (t, 0)),
3988 TREE_TYPE (t));
3990 default:
3991 return t;
3995 /* This is something of the form `int (*a)++' that has turned out to be an
3996 expr. It was only converted into parse nodes, so we need to go through
3997 and build up the semantics. Most of the work is done by
3998 build_expr_from_tree, above.
4000 In the above example, TYPE is `int' and DECL is `*a'. */
4002 tree
4003 reparse_decl_as_expr (type, decl)
4004 tree type, decl;
4006 decl = build_expr_from_tree (decl);
4007 if (type)
4008 return build_functional_cast (type, build_expr_list (NULL_TREE, decl));
4009 else
4010 return decl;
4013 /* This is something of the form `int (*a)' that has turned out to be a
4014 decl. It was only converted into parse nodes, so we need to do the
4015 checking that make_{pointer,reference}_declarator do. */
4017 tree
4018 finish_decl_parsing (decl)
4019 tree decl;
4021 extern int current_class_depth;
4023 switch (TREE_CODE (decl))
4025 case IDENTIFIER_NODE:
4026 return decl;
4027 case INDIRECT_REF:
4028 return make_pointer_declarator
4029 (NULL_TREE, finish_decl_parsing (TREE_OPERAND (decl, 0)));
4030 case ADDR_EXPR:
4031 return make_reference_declarator
4032 (NULL_TREE, finish_decl_parsing (TREE_OPERAND (decl, 0)));
4033 case BIT_NOT_EXPR:
4034 TREE_OPERAND (decl, 0) = finish_decl_parsing (TREE_OPERAND (decl, 0));
4035 return decl;
4036 case SCOPE_REF:
4037 push_nested_class (TREE_TYPE (TREE_OPERAND (decl, 0)), 3);
4038 TREE_COMPLEXITY (decl) = current_class_depth;
4039 return decl;
4040 case ARRAY_REF:
4041 TREE_OPERAND (decl, 0) = finish_decl_parsing (TREE_OPERAND (decl, 0));
4042 return decl;
4043 case TREE_LIST:
4044 /* For attribute handling. */
4045 TREE_VALUE (decl) = finish_decl_parsing (TREE_VALUE (decl));
4046 return decl;
4047 default:
4048 my_friendly_abort (5);
4049 return NULL_TREE;
4053 tree
4054 check_cp_case_value (value)
4055 tree value;
4057 if (value == NULL_TREE)
4058 return value;
4060 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4061 STRIP_TYPE_NOPS (value);
4063 if (TREE_READONLY_DECL_P (value))
4065 value = decl_constant_value (value);
4066 STRIP_TYPE_NOPS (value);
4068 value = fold (value);
4070 if (TREE_CODE (value) != INTEGER_CST
4071 && value != error_mark_node)
4073 cp_error ("case label `%E' does not reduce to an integer constant",
4074 value);
4075 value = error_mark_node;
4077 else
4078 /* Promote char or short to int. */
4079 value = default_conversion (value);
4081 constant_expression_warning (value);
4083 return value;
4086 /* Return 1 if root encloses child. */
4088 static int
4089 is_namespace_ancestor (root, child)
4090 tree root, child;
4092 if (root == child)
4093 return 1;
4094 if (root == global_namespace)
4095 return 1;
4096 if (child == global_namespace)
4097 return 0;
4098 return is_namespace_ancestor (root, CP_DECL_CONTEXT (child));
4102 /* Return the namespace that is the common ancestor
4103 of two given namespaces. */
4105 tree
4106 namespace_ancestor (ns1, ns2)
4107 tree ns1, ns2;
4109 if (is_namespace_ancestor (ns1, ns2))
4110 return ns1;
4111 return namespace_ancestor (CP_DECL_CONTEXT (ns1), ns2);
4114 /* Insert used into the using list of user. Set indirect_flag if this
4115 directive is not directly from the source. Also find the common
4116 ancestor and let our users know about the new namespace */
4117 static void
4118 add_using_namespace (user, used, indirect)
4119 tree user;
4120 tree used;
4121 int indirect;
4123 tree t;
4124 /* Using oneself is a no-op. */
4125 if (user == used)
4126 return;
4127 my_friendly_assert (TREE_CODE (user) == NAMESPACE_DECL, 380);
4128 my_friendly_assert (TREE_CODE (used) == NAMESPACE_DECL, 380);
4129 /* Check if we already have this. */
4130 t = purpose_member (used, DECL_NAMESPACE_USING (user));
4131 if (t != NULL_TREE)
4133 if (!indirect)
4134 /* Promote to direct usage. */
4135 TREE_INDIRECT_USING (t) = 0;
4136 return;
4139 /* Add used to the user's using list. */
4140 DECL_NAMESPACE_USING (user)
4141 = tree_cons (used, namespace_ancestor (user, used),
4142 DECL_NAMESPACE_USING (user));
4144 TREE_INDIRECT_USING (DECL_NAMESPACE_USING (user)) = indirect;
4146 /* Add user to the used's users list. */
4147 DECL_NAMESPACE_USERS (used)
4148 = tree_cons (user, 0, DECL_NAMESPACE_USERS (used));
4150 /* Recursively add all namespaces used. */
4151 for (t = DECL_NAMESPACE_USING (used); t; t = TREE_CHAIN (t))
4152 /* indirect usage */
4153 add_using_namespace (user, TREE_PURPOSE (t), 1);
4155 /* Tell everyone using us about the new used namespaces. */
4156 for (t = DECL_NAMESPACE_USERS (user); t; t = TREE_CHAIN (t))
4157 add_using_namespace (TREE_PURPOSE (t), used, 1);
4160 /* Combines two sets of overloaded functions into an OVERLOAD chain, removing
4161 duplicates. The first list becomes the tail of the result.
4163 The algorithm is O(n^2). We could get this down to O(n log n) by
4164 doing a sort on the addresses of the functions, if that becomes
4165 necessary. */
4167 static tree
4168 merge_functions (s1, s2)
4169 tree s1;
4170 tree s2;
4172 for (; s2; s2 = OVL_NEXT (s2))
4174 tree fn = OVL_CURRENT (s2);
4175 if (! ovl_member (fn, s1))
4176 s1 = build_overload (fn, s1);
4178 return s1;
4181 /* This should return an error not all definitions define functions.
4182 It is not an error if we find two functions with exactly the
4183 same signature, only if these are selected in overload resolution.
4184 old is the current set of bindings, new the freshly-found binding.
4185 XXX Do we want to give *all* candidates in case of ambiguity?
4186 XXX In what way should I treat extern declarations?
4187 XXX I don't want to repeat the entire duplicate_decls here */
4189 static tree
4190 ambiguous_decl (name, old, new, flags)
4191 tree name;
4192 tree old;
4193 tree new;
4194 int flags;
4196 tree val, type;
4197 my_friendly_assert (old != NULL_TREE, 393);
4198 /* Copy the value. */
4199 val = BINDING_VALUE (new);
4200 if (val)
4201 switch (TREE_CODE (val))
4203 case TEMPLATE_DECL:
4204 /* If we expect types or namespaces, and not templates,
4205 or this is not a template class. */
4206 if (LOOKUP_QUALIFIERS_ONLY (flags)
4207 && !DECL_CLASS_TEMPLATE_P (val))
4208 val = NULL_TREE;
4209 break;
4210 case TYPE_DECL:
4211 if (LOOKUP_NAMESPACES_ONLY (flags))
4212 val = NULL_TREE;
4213 break;
4214 case NAMESPACE_DECL:
4215 if (LOOKUP_TYPES_ONLY (flags))
4216 val = NULL_TREE;
4217 break;
4218 default:
4219 if (LOOKUP_QUALIFIERS_ONLY (flags))
4220 val = NULL_TREE;
4223 if (!BINDING_VALUE (old))
4224 BINDING_VALUE (old) = val;
4225 else if (val && val != BINDING_VALUE (old))
4227 if (is_overloaded_fn (BINDING_VALUE (old))
4228 && is_overloaded_fn (val))
4230 BINDING_VALUE (old) = merge_functions (BINDING_VALUE (old),
4231 val);
4233 else
4235 /* Some declarations are functions, some are not. */
4236 if (flags & LOOKUP_COMPLAIN)
4238 /* If we've already given this error for this lookup,
4239 BINDING_VALUE (old) is error_mark_node, so let's not
4240 repeat ourselves. */
4241 if (BINDING_VALUE (old) != error_mark_node)
4243 cp_error ("use of `%D' is ambiguous", name);
4244 cp_error_at (" first declared as `%#D' here",
4245 BINDING_VALUE (old));
4247 cp_error_at (" also declared as `%#D' here", val);
4249 return error_mark_node;
4252 /* ... and copy the type. */
4253 type = BINDING_TYPE (new);
4254 if (LOOKUP_NAMESPACES_ONLY (flags))
4255 type = NULL_TREE;
4256 if (!BINDING_TYPE (old))
4257 BINDING_TYPE (old) = type;
4258 else if (type && BINDING_TYPE (old) != type)
4260 if (flags & LOOKUP_COMPLAIN)
4262 cp_error ("`%D' denotes an ambiguous type",name);
4263 cp_error_at (" first type here", BINDING_TYPE (old));
4264 cp_error_at (" other type here", type);
4267 return old;
4270 /* Subroutine of unualified_namespace_lookup:
4271 Add the bindings of NAME in used namespaces to VAL.
4272 We are currently looking for names in namespace SCOPE, so we
4273 look through USINGS for using-directives of namespaces
4274 which have SCOPE as a common ancestor with the current scope.
4275 Returns zero on errors. */
4278 lookup_using_namespace (name, val, usings, scope, flags, spacesp)
4279 tree name, val, usings, scope;
4280 int flags;
4281 tree *spacesp;
4283 tree iter;
4284 tree val1;
4285 /* Iterate over all used namespaces in current, searching for using
4286 directives of scope. */
4287 for (iter = usings; iter; iter = TREE_CHAIN (iter))
4288 if (TREE_VALUE (iter) == scope)
4290 if (spacesp)
4291 *spacesp = tree_cons (TREE_PURPOSE (iter), NULL_TREE,
4292 *spacesp);
4293 val1 = binding_for_name (name, TREE_PURPOSE (iter));
4294 /* Resolve ambiguities. */
4295 val = ambiguous_decl (name, val, val1, flags);
4297 return val != error_mark_node;
4300 /* [namespace.qual]
4301 Accepts the NAME to lookup and its qualifying SCOPE.
4302 Returns the name/type pair found into the CPLUS_BINDING RESULT,
4303 or 0 on error. */
4306 qualified_lookup_using_namespace (name, scope, result, flags)
4307 tree name;
4308 tree scope;
4309 tree result;
4310 int flags;
4312 /* Maintain a list of namespaces visited... */
4313 tree seen = NULL_TREE;
4314 /* ... and a list of namespace yet to see. */
4315 tree todo = NULL_TREE;
4316 tree usings;
4317 while (scope && (result != error_mark_node))
4319 seen = temp_tree_cons (scope, NULL_TREE, seen);
4320 result = ambiguous_decl (name, result,
4321 binding_for_name (name, scope), flags);
4322 if (!BINDING_VALUE (result) && !BINDING_TYPE (result))
4323 /* Consider using directives. */
4324 for (usings = DECL_NAMESPACE_USING (scope); usings;
4325 usings = TREE_CHAIN (usings))
4326 /* If this was a real directive, and we have not seen it. */
4327 if (!TREE_INDIRECT_USING (usings)
4328 && !purpose_member (TREE_PURPOSE (usings), seen))
4329 todo = temp_tree_cons (TREE_PURPOSE (usings), NULL_TREE, todo);
4330 if (todo)
4332 scope = TREE_PURPOSE (todo);
4333 todo = TREE_CHAIN (todo);
4335 else
4336 scope = NULL_TREE; /* If there never was a todo list. */
4338 return result != error_mark_node;
4341 /* [namespace.memdef]/2 */
4343 /* Set the context of a declaration to scope. Complain if we are not
4344 outside scope. */
4346 void
4347 set_decl_namespace (decl, scope, friendp)
4348 tree decl;
4349 tree scope;
4350 int friendp;
4352 tree old;
4353 if (scope == std_node)
4354 scope = global_namespace;
4355 /* Get rid of namespace aliases. */
4356 scope = ORIGINAL_NAMESPACE (scope);
4358 /* It is ok for friends to be qualified in parallel space. */
4359 if (!friendp && !is_namespace_ancestor (current_namespace, scope))
4360 cp_error ("declaration of `%D' not in a namespace surrounding `%D'",
4361 decl, scope);
4362 DECL_CONTEXT (decl) = FROB_CONTEXT (scope);
4363 if (scope != current_namespace)
4365 /* See whether this has been declared in the namespace. */
4366 old = namespace_binding (DECL_NAME (decl), scope);
4367 if (!old)
4368 /* No old declaration at all. */
4369 goto complain;
4370 if (!is_overloaded_fn (decl))
4371 /* Don't compare non-function decls with decls_match here,
4372 since it can't check for the correct constness at this
4373 point. pushdecl will find those errors later. */
4374 return;
4375 /* Since decl is a function, old should contain a function decl. */
4376 if (!is_overloaded_fn (old))
4377 goto complain;
4378 if (processing_template_decl || processing_specialization)
4379 /* We have not yet called push_template_decl to turn the
4380 FUNCTION_DECL into a TEMPLATE_DECL, so the declarations
4381 won't match. But, we'll check later, when we construct the
4382 template. */
4383 return;
4384 for (; old; old = OVL_NEXT (old))
4385 if (decls_match (decl, OVL_CURRENT (old)))
4386 return;
4388 else
4389 return;
4390 complain:
4391 cp_error ("`%D' should have been declared inside `%D'",
4392 decl, scope);
4395 /* Compute the namespace where a declaration is defined. */
4397 static tree
4398 decl_namespace (decl)
4399 tree decl;
4401 while (DECL_CONTEXT (decl))
4403 decl = DECL_CONTEXT (decl);
4404 if (TREE_CODE (decl) == NAMESPACE_DECL)
4405 return decl;
4406 if (TREE_CODE_CLASS (TREE_CODE (decl)) == 't')
4407 decl = TYPE_STUB_DECL (decl);
4408 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd', 390);
4411 return global_namespace;
4414 /* Return the namespace where the current declaration is declared. */
4416 tree
4417 current_decl_namespace ()
4419 tree result;
4420 /* If we have been pushed into a different namespace, use it. */
4421 if (decl_namespace_list)
4422 return TREE_PURPOSE (decl_namespace_list);
4424 if (current_class_type)
4425 result = decl_namespace (TYPE_STUB_DECL (current_class_type));
4426 else if (current_function_decl)
4427 result = decl_namespace (current_function_decl);
4428 else
4429 result = current_namespace;
4430 return result;
4433 /* Temporarily set the namespace for the current declaration. */
4435 void
4436 push_decl_namespace (decl)
4437 tree decl;
4439 if (TREE_CODE (decl) != NAMESPACE_DECL)
4440 decl = decl_namespace (decl);
4441 decl_namespace_list = tree_cons (decl, NULL_TREE, decl_namespace_list);
4444 void
4445 pop_decl_namespace ()
4447 decl_namespace_list = TREE_CHAIN (decl_namespace_list);
4450 /* Enter a class or namespace scope. */
4452 void
4453 push_scope (t)
4454 tree t;
4456 if (TREE_CODE (t) == NAMESPACE_DECL)
4457 push_decl_namespace (t);
4458 else
4459 pushclass (t, 2);
4462 /* Leave scope pushed by push_scope. */
4464 void
4465 pop_scope (t)
4466 tree t;
4468 if (TREE_CODE (t) == NAMESPACE_DECL)
4469 pop_decl_namespace ();
4470 else
4471 popclass ();
4474 /* [basic.lookup.koenig] */
4475 /* A non-zero return value in the functions below indicates an error.
4476 All nodes allocated in the procedure are on the scratch obstack. */
4478 struct arg_lookup
4480 tree name;
4481 tree namespaces;
4482 tree classes;
4483 tree functions;
4486 static int arg_assoc PROTO((struct arg_lookup*, tree));
4487 static int arg_assoc_args PROTO((struct arg_lookup*, tree));
4488 static int arg_assoc_type PROTO((struct arg_lookup*, tree));
4489 static int add_function PROTO((struct arg_lookup *, tree));
4490 static int arg_assoc_namespace PROTO((struct arg_lookup *, tree));
4491 static int arg_assoc_class PROTO((struct arg_lookup *, tree));
4492 static int arg_assoc_template_arg PROTO((struct arg_lookup*, tree));
4494 /* Add a function to the lookup structure.
4495 Returns 1 on error. */
4497 static int
4498 add_function (k, fn)
4499 struct arg_lookup *k;
4500 tree fn;
4502 /* We used to check here to see if the function was already in the list,
4503 but that's O(n^2), which is just too expensive for function lookup.
4504 Now we deal with the occasional duplicate in joust. In doing this, we
4505 assume that the number of duplicates will be small compared to the
4506 total number of functions being compared, which should usually be the
4507 case. */
4509 /* We must find only functions, or exactly one non-function. */
4510 if (k->functions && is_overloaded_fn (k->functions)
4511 && is_overloaded_fn (fn))
4512 k->functions = build_overload (fn, k->functions);
4513 else if (k->functions)
4515 tree f1 = OVL_CURRENT (k->functions);
4516 tree f2 = fn;
4517 if (is_overloaded_fn (f1))
4519 fn = f1; f1 = f2; f2 = fn;
4521 cp_error_at ("`%D' is not a function,", f1);
4522 cp_error_at (" conflict with `%D'", f2);
4523 cp_error (" in call to `%D'", k->name);
4524 return 1;
4526 else
4527 k->functions = fn;
4528 return 0;
4531 /* Add functions of a namespace to the lookup structure.
4532 Returns 1 on error. */
4534 static int
4535 arg_assoc_namespace (k, scope)
4536 struct arg_lookup *k;
4537 tree scope;
4539 tree value;
4541 if (purpose_member (scope, k->namespaces))
4542 return 0;
4543 k->namespaces = tree_cons (scope, NULL_TREE, k->namespaces);
4545 value = namespace_binding (k->name, scope);
4546 if (!value)
4547 return 0;
4549 for (; value; value = OVL_NEXT (value))
4550 if (add_function (k, OVL_CURRENT (value)))
4551 return 1;
4553 return 0;
4556 /* Adds everything associated with a template argument to the lookup
4557 structure. Returns 1 on error. */
4559 static int
4560 arg_assoc_template_arg (k, arg)
4561 struct arg_lookup* k;
4562 tree arg;
4564 /* [basic.lookup.koenig]
4566 If T is a template-id, its associated namespaces and classes are
4567 ... the namespaces and classes associated with the types of the
4568 template arguments provided for template type parameters
4569 (excluding template template parameters); the namespaces in which
4570 any template template arguments are defined; and the classes in
4571 which any member templates used as template template arguments
4572 are defined. [Note: non-type template arguments do not
4573 contribute to the set of associated namespaces. ] */
4575 /* Consider first template template arguments. */
4576 if (TREE_CODE (arg) == TEMPLATE_DECL)
4578 tree ctx = CP_DECL_CONTEXT (arg);
4580 /* It's not a member template. */
4581 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4582 return arg_assoc_namespace (k, ctx);
4583 /* Otherwise, it must be member template. */
4584 else
4585 return arg_assoc_class (k, ctx);
4587 /* It's not a template template argument, but it is a type template
4588 argument. */
4589 else if (TREE_CODE_CLASS (TREE_CODE (arg)) == 't')
4590 return arg_assoc_type (k, arg);
4591 /* It's a non-type template argument. */
4592 else
4593 return 0;
4596 /* Adds everything associated with class to the lookup structure.
4597 Returns 1 on error. */
4599 static int
4600 arg_assoc_class (k, type)
4601 struct arg_lookup* k;
4602 tree type;
4604 tree list, friends, context;
4605 int i;
4607 /* Backend build structures, such as __builtin_va_list, aren't
4608 affected by all this. */
4609 if (!CLASS_TYPE_P (type))
4610 return 0;
4612 if (purpose_member (type, k->classes))
4613 return 0;
4614 k->classes = tree_cons (type, NULL_TREE, k->classes);
4616 context = decl_namespace (TYPE_MAIN_DECL (type));
4617 if (arg_assoc_namespace (k, context))
4618 return 1;
4620 /* Process baseclasses. */
4621 for (i = 0; i < CLASSTYPE_N_BASECLASSES (type); i++)
4622 if (arg_assoc_class (k, TYPE_BINFO_BASETYPE (type, i)))
4623 return 1;
4625 /* Process friends. */
4626 for (list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type)); list;
4627 list = TREE_CHAIN (list))
4628 if (k->name == TREE_PURPOSE (list))
4629 for (friends = TREE_VALUE (list); friends;
4630 friends = TREE_CHAIN (friends))
4631 /* Only interested in global functions with potentially hidden
4632 (i.e. unqualified) declarations. */
4633 if (TREE_PURPOSE (list) == error_mark_node && TREE_VALUE (list)
4634 && decl_namespace (TREE_VALUE (list)) == context)
4635 if (add_function (k, TREE_VALUE (list)))
4636 return 1;
4638 /* Process template arguments. */
4639 if (CLASSTYPE_TEMPLATE_INFO (type))
4641 list = innermost_args (CLASSTYPE_TI_ARGS (type));
4642 for (i = 0; i < TREE_VEC_LENGTH (list); ++i)
4643 arg_assoc_template_arg (k, TREE_VEC_ELT (list, i));
4646 return 0;
4649 /* Adds everything associated with a given type.
4650 Returns 1 on error. */
4652 static int
4653 arg_assoc_type (k, type)
4654 struct arg_lookup *k;
4655 tree type;
4657 switch (TREE_CODE (type))
4659 case VOID_TYPE:
4660 case INTEGER_TYPE:
4661 case REAL_TYPE:
4662 case COMPLEX_TYPE:
4663 case CHAR_TYPE:
4664 case BOOLEAN_TYPE:
4665 return 0;
4666 case RECORD_TYPE:
4667 if (TYPE_PTRMEMFUNC_P (type))
4668 return arg_assoc_type (k, TYPE_PTRMEMFUNC_FN_TYPE (type));
4669 return arg_assoc_class (k, type);
4670 case POINTER_TYPE:
4671 case REFERENCE_TYPE:
4672 case ARRAY_TYPE:
4673 return arg_assoc_type (k, TREE_TYPE (type));
4674 case UNION_TYPE:
4675 case ENUMERAL_TYPE:
4676 return arg_assoc_namespace (k, decl_namespace (TYPE_MAIN_DECL (type)));
4677 case OFFSET_TYPE:
4678 /* Pointer to member: associate class type and value type. */
4679 if (arg_assoc_type (k, TYPE_OFFSET_BASETYPE (type)))
4680 return 1;
4681 return arg_assoc_type (k, TREE_TYPE (type));
4682 case METHOD_TYPE:
4683 /* The basetype is referenced in the first arg type, so just
4684 fall through. */
4685 case FUNCTION_TYPE:
4686 /* Associate the parameter types. */
4687 if (arg_assoc_args (k, TYPE_ARG_TYPES (type)))
4688 return 1;
4689 /* Associate the return type. */
4690 return arg_assoc_type (k, TREE_TYPE (type));
4691 case TEMPLATE_TYPE_PARM:
4692 case TEMPLATE_TEMPLATE_PARM:
4693 return 0;
4694 case LANG_TYPE:
4695 if (type == unknown_type_node)
4696 return 0;
4697 /* else fall through */
4698 default:
4699 my_friendly_abort (390);
4701 return 0;
4704 /* Adds everything associated with arguments. Returns 1 on error. */
4706 static int
4707 arg_assoc_args (k, args)
4708 struct arg_lookup* k;
4709 tree args;
4711 for (; args; args = TREE_CHAIN (args))
4712 if (arg_assoc (k, TREE_VALUE (args)))
4713 return 1;
4714 return 0;
4717 /* Adds everything associated with a given tree_node. Returns 1 on error. */
4719 static int
4720 arg_assoc (k, n)
4721 struct arg_lookup* k;
4722 tree n;
4724 if (n == error_mark_node)
4725 return 0;
4727 if (TREE_CODE_CLASS (TREE_CODE (n)) == 't')
4728 return arg_assoc_type (k, n);
4730 if (! type_unknown_p (n))
4731 return arg_assoc_type (k, TREE_TYPE (n));
4733 if (TREE_CODE (n) == ADDR_EXPR)
4734 n = TREE_OPERAND (n, 0);
4735 if (TREE_CODE (n) == COMPONENT_REF)
4736 n = TREE_OPERAND (n, 1);
4737 if (TREE_CODE (n) == OFFSET_REF)
4738 n = TREE_OPERAND (n, 1);
4739 while (TREE_CODE (n) == TREE_LIST)
4740 n = TREE_VALUE (n);
4742 if (TREE_CODE (n) == FUNCTION_DECL)
4743 return arg_assoc_type (k, TREE_TYPE (n));
4744 if (TREE_CODE (n) == TEMPLATE_ID_EXPR)
4746 /* [basic.lookup.koenig]
4748 If T is a template-id, its associated namespaces and classes
4749 are the namespace in which the template is defined; for
4750 member templates, the member template's class... */
4751 tree template = TREE_OPERAND (n, 0);
4752 tree args = TREE_OPERAND (n, 1);
4753 tree ctx;
4754 tree arg;
4756 /* First, the template. There may actually be more than one if
4757 this is an overloaded function template. But, in that case,
4758 we only need the first; all the functions will be in the same
4759 namespace. */
4760 template = OVL_CURRENT (template);
4762 ctx = CP_DECL_CONTEXT (template);
4764 if (TREE_CODE (ctx) == NAMESPACE_DECL)
4766 if (arg_assoc_namespace (k, ctx) == 1)
4767 return 1;
4769 /* It must be a member template. */
4770 else if (arg_assoc_class (k, ctx) == 1)
4771 return 1;
4773 /* Now the arguments. */
4774 for (arg = args; arg != NULL_TREE; arg = TREE_CHAIN (arg))
4775 if (arg_assoc_template_arg (k, TREE_VALUE (arg)) == 1)
4776 return 1;
4778 else
4780 my_friendly_assert (TREE_CODE (n) == OVERLOAD, 980715);
4782 for (; n; n = OVL_CHAIN (n))
4783 if (arg_assoc_type (k, TREE_TYPE (OVL_FUNCTION (n))))
4784 return 1;
4787 return 0;
4790 /* Performs Koenig lookup depending on arguments, where fns
4791 are the functions found in normal lookup. */
4793 tree
4794 lookup_arg_dependent (name, fns, args)
4795 tree name;
4796 tree fns;
4797 tree args;
4799 struct arg_lookup k;
4801 k.name = name;
4802 k.functions = fns;
4803 k.classes = NULL_TREE;
4805 /* Note that we've already looked at some namespaces during normal
4806 unqualified lookup, unless we found a decl in function scope. */
4807 if (fns && ! TREE_PERMANENT (OVL_CURRENT (fns)))
4808 k.namespaces = NULL_TREE;
4809 else
4810 unqualified_namespace_lookup (name, 0, &k.namespaces);
4812 push_scratch_obstack ();
4813 arg_assoc_args (&k, args);
4814 pop_obstacks ();
4815 return k.functions;
4818 /* Process a namespace-alias declaration. */
4820 void
4821 do_namespace_alias (alias, namespace)
4822 tree alias, namespace;
4824 if (TREE_CODE (namespace) != NAMESPACE_DECL)
4826 /* The parser did not find it, so it's not there. */
4827 cp_error ("unknown namespace `%D'", namespace);
4828 return;
4831 namespace = ORIGINAL_NAMESPACE (namespace);
4833 /* Build the alias. */
4834 alias = build_lang_decl (NAMESPACE_DECL, alias, void_type_node);
4835 DECL_NAMESPACE_ALIAS (alias) = namespace;
4836 pushdecl (alias);
4839 /* Check a non-member using-declaration. Return the name and scope
4840 being used, and the USING_DECL, or NULL_TREE on failure. */
4842 static tree
4843 validate_nonmember_using_decl (decl, scope, name)
4844 tree decl;
4845 tree *scope;
4846 tree *name;
4848 if (TREE_CODE (decl) == SCOPE_REF
4849 && TREE_OPERAND (decl, 0) == std_node)
4851 if (namespace_bindings_p ()
4852 && current_namespace == global_namespace)
4853 /* There's no need for a using declaration at all, here,
4854 since `std' is the same as `::'. We can't just pass this
4855 on because we'll complain later about declaring something
4856 in the same scope as a using declaration with the same
4857 name. We return NULL_TREE which indicates to the caller
4858 that there's no need to do any further processing. */
4859 return NULL_TREE;
4861 *scope = global_namespace;
4862 *name = TREE_OPERAND (decl, 1);
4864 else if (TREE_CODE (decl) == SCOPE_REF)
4866 *scope = TREE_OPERAND (decl, 0);
4867 *name = TREE_OPERAND (decl, 1);
4869 /* [namespace.udecl]
4871 A using-declaration for a class member shall be a
4872 member-declaration. */
4873 if (TREE_CODE (*scope) != NAMESPACE_DECL)
4875 if (TYPE_P (*scope))
4876 cp_error ("`%T' is not a namespace", *scope);
4877 else
4878 cp_error ("`%D' is not a namespace", *scope);
4879 return NULL_TREE;
4882 else if (TREE_CODE (decl) == IDENTIFIER_NODE
4883 || TREE_CODE (decl) == TYPE_DECL
4884 || TREE_CODE (decl) == TEMPLATE_DECL)
4886 *scope = global_namespace;
4887 *name = decl;
4889 else
4890 my_friendly_abort (382);
4891 if (TREE_CODE_CLASS (TREE_CODE (*name)) == 'd')
4892 *name = DECL_NAME (*name);
4893 /* Make a USING_DECL. */
4894 return push_using_decl (*scope, *name);
4897 /* Process local and global using-declarations. */
4899 static void
4900 do_nonmember_using_decl (scope, name, oldval, oldtype, newval, newtype)
4901 tree scope, name;
4902 tree oldval, oldtype;
4903 tree *newval, *newtype;
4905 tree decls;
4907 *newval = *newtype = NULL_TREE;
4908 decls = make_node (CPLUS_BINDING);
4909 if (!qualified_lookup_using_namespace (name, scope, decls, 0))
4910 /* Lookup error */
4911 return;
4913 if (!BINDING_VALUE (decls) && !BINDING_TYPE (decls))
4915 cp_error ("`%D' not declared", name);
4916 return;
4919 /* Check for using functions. */
4920 if (BINDING_VALUE (decls) && is_overloaded_fn (BINDING_VALUE (decls)))
4922 tree tmp, tmp1;
4924 if (oldval && !is_overloaded_fn (oldval))
4926 duplicate_decls (OVL_CURRENT (BINDING_VALUE (decls)), oldval);
4927 oldval = NULL_TREE;
4930 *newval = oldval;
4931 for (tmp = BINDING_VALUE (decls); tmp; tmp = OVL_NEXT (tmp))
4933 tree new_fn = OVL_CURRENT (tmp);
4935 /* [namespace.udecl]
4937 If a function declaration in namespace scope or block
4938 scope has the same name and the same parameter types as a
4939 function introduced by a using declaration the program is
4940 ill-formed. */
4941 for (tmp1 = oldval; tmp1; tmp1 = OVL_NEXT (tmp1))
4943 tree old_fn = OVL_CURRENT (tmp1);
4945 if (!OVL_USED (tmp1)
4946 && compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)),
4947 TYPE_ARG_TYPES (TREE_TYPE (old_fn))))
4949 /* There was already a non-using declaration in
4950 this scope with the same parameter types. */
4951 cp_error ("`%D' is already declared in this scope",
4952 name);
4953 break;
4955 else if (duplicate_decls (new_fn, old_fn))
4956 /* We're re-using something we already used
4957 before. We don't need to add it again. */
4958 break;
4961 /* If we broke out of the loop, there's no reason to add
4962 this function to the using declarations for this
4963 scope. */
4964 if (tmp1)
4965 continue;
4967 *newval = build_overload (OVL_CURRENT (tmp), *newval);
4968 if (TREE_CODE (*newval) != OVERLOAD)
4969 *newval = ovl_cons (*newval, NULL_TREE);
4970 OVL_USED (*newval) = 1;
4973 else
4975 *newval = BINDING_VALUE (decls);
4976 if (oldval)
4977 duplicate_decls (*newval, oldval);
4980 *newtype = BINDING_TYPE (decls);
4981 if (oldtype && *newtype && oldtype != *newtype)
4983 cp_error ("using directive `%D' introduced ambiguous type `%T'",
4984 name, oldtype);
4985 return;
4989 /* Process a using-declaration not appearing in class or local scope. */
4991 void
4992 do_toplevel_using_decl (decl)
4993 tree decl;
4995 tree scope, name, binding;
4996 tree oldval, oldtype, newval, newtype;
4998 decl = validate_nonmember_using_decl (decl, &scope, &name);
4999 if (decl == NULL_TREE)
5000 return;
5002 binding = binding_for_name (name, current_namespace);
5004 oldval = BINDING_VALUE (binding);
5005 oldtype = BINDING_TYPE (binding);
5007 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
5009 /* Copy declarations found. */
5010 if (newval)
5011 BINDING_VALUE (binding) = newval;
5012 if (newtype)
5013 BINDING_TYPE (binding) = newtype;
5014 return;
5017 /* Process a using-declaration at function scope. */
5019 void
5020 do_local_using_decl (decl)
5021 tree decl;
5023 tree scope, name;
5024 tree oldval, oldtype, newval, newtype;
5026 decl = validate_nonmember_using_decl (decl, &scope, &name);
5027 if (decl == NULL_TREE)
5028 return;
5030 oldval = lookup_name_current_level (name);
5031 oldtype = lookup_type_current_level (name);
5033 do_nonmember_using_decl (scope, name, oldval, oldtype, &newval, &newtype);
5035 if (newval)
5037 if (is_overloaded_fn (newval))
5039 tree fn, term;
5041 /* We only need to push declarations for those functions
5042 that were not already bound in the current level.
5043 The old value might be NULL_TREE, it might be a single
5044 function, or an OVERLOAD. */
5045 if (oldval && TREE_CODE (oldval) == OVERLOAD)
5046 term = OVL_FUNCTION (oldval);
5047 else
5048 term = oldval;
5049 for (fn = newval; fn && OVL_CURRENT (fn) != term;
5050 fn = OVL_NEXT (fn))
5051 push_overloaded_decl (OVL_CURRENT (fn),
5052 PUSH_LOCAL | PUSH_USING);
5054 else
5055 push_local_binding (name, newval, PUSH_USING);
5057 if (newtype)
5058 set_identifier_type_value (name, newtype);
5061 tree
5062 do_class_using_decl (decl)
5063 tree decl;
5065 tree name, value;
5067 if (TREE_CODE (decl) != SCOPE_REF
5068 || TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (decl, 0))) != 't')
5070 cp_error ("using-declaration for non-member at class scope");
5071 return NULL_TREE;
5073 name = TREE_OPERAND (decl, 1);
5074 if (TREE_CODE (name) == BIT_NOT_EXPR)
5076 cp_error ("using-declaration for destructor");
5077 return NULL_TREE;
5079 if (TREE_CODE (name) == TYPE_DECL)
5080 name = DECL_NAME (name);
5082 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 980716);
5084 value = build_lang_decl (USING_DECL, name, void_type_node);
5085 DECL_INITIAL (value) = TREE_OPERAND (decl, 0);
5086 return value;
5089 /* Process a using-directive. */
5091 void
5092 do_using_directive (namespace)
5093 tree namespace;
5095 if (namespace == std_node)
5096 return;
5097 /* using namespace A::B::C; */
5098 if (TREE_CODE (namespace) == SCOPE_REF)
5099 namespace = TREE_OPERAND (namespace, 1);
5100 if (TREE_CODE (namespace) == IDENTIFIER_NODE)
5102 /* Lookup in lexer did not find a namespace. */
5103 cp_error ("namespace `%T' undeclared", namespace);
5104 return;
5106 if (TREE_CODE (namespace) != NAMESPACE_DECL)
5108 cp_error ("`%T' is not a namespace", namespace);
5109 return;
5111 namespace = ORIGINAL_NAMESPACE (namespace);
5112 if (!toplevel_bindings_p ())
5113 push_using_directive (namespace);
5114 else
5115 /* direct usage */
5116 add_using_namespace (current_namespace, namespace, 0);
5119 void
5120 check_default_args (x)
5121 tree x;
5123 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
5124 int saw_def = 0, i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
5125 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
5127 if (TREE_PURPOSE (arg))
5128 saw_def = 1;
5129 else if (saw_def)
5131 cp_error_at ("default argument missing for parameter %P of `%+#D'",
5132 i, x);
5133 break;
5138 void
5139 mark_used (decl)
5140 tree decl;
5142 TREE_USED (decl) = 1;
5143 if (processing_template_decl)
5144 return;
5145 assemble_external (decl);
5147 /* Is it a synthesized method that needs to be synthesized? */
5148 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_CLASS_CONTEXT (decl)
5149 && DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
5150 /* Kludge: don't synthesize for default args. */
5151 && current_function_decl)
5152 synthesize_method (decl);
5154 /* If this is a function or variable that is an instance of some
5155 template, we now know that we will need to actually do the
5156 instantiation. A TEMPLATE_DECL may also have DECL_TEMPLATE_INFO,
5157 if it's a partial instantiation, but there's no need to
5158 instantiate such a thing. We check that DECL is not an explicit
5159 instantiation because that is not checked in instantiate_decl. */
5160 if (TREE_CODE (decl) != TEMPLATE_DECL
5161 && DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
5162 && !DECL_EXPLICIT_INSTANTIATION (decl))
5163 instantiate_decl (decl);
5166 /* Helper function for named_class_head_sans_basetype nonterminal. We
5167 have just seen something of the form `AGGR SCOPE::ID'. Return a
5168 TYPE_DECL for the type declared by ID in SCOPE. */
5170 tree
5171 handle_class_head (aggr, scope, id)
5172 tree aggr, scope, id;
5174 tree decl;
5176 if (TREE_CODE (id) == TYPE_DECL)
5177 decl = id;
5178 else if (DECL_CLASS_TEMPLATE_P (id))
5179 decl = DECL_TEMPLATE_RESULT (id);
5180 else
5182 tree current = current_scope();
5184 if (current == NULL_TREE)
5185 current = current_namespace;
5186 if (scope == std_node)
5187 scope = global_namespace;
5188 if (scope == NULL_TREE)
5189 scope = global_namespace;
5190 if (scope == current)
5192 /* We've been given AGGR SCOPE::ID, when we're already inside SCOPE.
5193 Be nice about it. */
5194 if (pedantic)
5195 cp_pedwarn ("extra qualification `%T::' on member `%D' ignored",
5196 FROB_CONTEXT (scope), id);
5198 else if (scope != global_namespace)
5199 cp_error ("`%T' does not have a nested type named `%D'", scope, id);
5200 else
5201 cp_error ("no file-scope type named `%D'", id);
5203 /* Inject it at the current scope. */
5204 decl = TYPE_MAIN_DECL (xref_tag (aggr, id, 1));
5207 /* Enter the SCOPE. If this turns out not to be a definition, the
5208 parser must leave the scope. */
5209 push_scope (CP_DECL_CONTEXT (decl));
5211 /* If we see something like:
5213 template <typename T> struct S::I ....
5215 we must create a TEMPLATE_DECL for the nested type. */
5216 if (PROCESSING_REAL_TEMPLATE_DECL_P ())
5217 decl = push_template_decl (decl);
5219 return decl;
5222 /* Initialize decl2.c. */
5224 void
5225 init_decl2 ()
5227 ggc_add_tree_root (&decl_namespace_list, 1);
5228 ggc_add_tree_varray_root (&saved_inlines, 1);
5229 ggc_add_tree_varray_root (&pending_statics, 1);
5230 ggc_add_tree_varray_root (&ssdf_decls, 1);
5231 ggc_add_tree_root (&ssdf_decl, 1);
5232 ggc_add_tree_root (&priority_decl, 1);
5233 ggc_add_tree_root (&initialize_p_decl, 1);
5234 ggc_add_tree_root (&pending_vtables, 1);