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