re PR c++/44516 (improve error message when no matching operator)
[gcc.git] / gcc / cp / decl2.c
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010,
4 2011, 2012 Free Software Foundation, Inc.
5 Hacked by Michael Tiemann (tiemann@cygnus.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23
24 /* Process declarations and symbol lookup for C++ front end.
25 Also constructs types; the standard scalar types at initialization,
26 and structure, union, array and enum types when they are declared. */
27
28 /* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
30
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "tree.h"
36 #include "flags.h"
37 #include "cp-tree.h"
38 #include "decl.h"
39 #include "output.h"
40 #include "toplev.h"
41 #include "timevar.h"
42 #include "cpplib.h"
43 #include "target.h"
44 #include "c-family/c-common.h"
45 #include "c-family/c-objc.h"
46 #include "cgraph.h"
47 #include "tree-inline.h"
48 #include "c-family/c-pragma.h"
49 #include "tree-dump.h"
50 #include "intl.h"
51 #include "gimple.h"
52 #include "pointer-set.h"
53 #include "splay-tree.h"
54 #include "langhooks.h"
55 #include "c-family/c-ada-spec.h"
56
57 extern cpp_reader *parse_in;
58
59 /* This structure contains information about the initializations
60 and/or destructions required for a particular priority level. */
61 typedef struct priority_info_s {
62 /* Nonzero if there have been any initializations at this priority
63 throughout the translation unit. */
64 int initializations_p;
65 /* Nonzero if there have been any destructions at this priority
66 throughout the translation unit. */
67 int destructions_p;
68 } *priority_info;
69
70 static void mark_vtable_entries (tree);
71 static bool maybe_emit_vtables (tree);
72 static bool acceptable_java_type (tree);
73 static tree start_objects (int, int);
74 static void finish_objects (int, int, tree);
75 static tree start_static_storage_duration_function (unsigned);
76 static void finish_static_storage_duration_function (tree);
77 static priority_info get_priority_info (int);
78 static void do_static_initialization_or_destruction (tree, bool);
79 static void one_static_initialization_or_destruction (tree, tree, bool);
80 static void generate_ctor_or_dtor_function (bool, int, location_t *);
81 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node,
82 void *);
83 static tree prune_vars_needing_no_initialization (tree *);
84 static void write_out_vars (tree);
85 static void import_export_class (tree);
86 static tree get_guard_bits (tree);
87 static void determine_visibility_from_class (tree, tree);
88 static bool determine_hidden_inline (tree);
89 static bool decl_defined_p (tree);
90
91 /* A list of static class variables. This is needed, because a
92 static class variable can be declared inside the class without
93 an initializer, and then initialized, statically, outside the class. */
94 static GTY(()) VEC(tree,gc) *pending_statics;
95
96 /* A list of functions which were declared inline, but which we
97 may need to emit outline anyway. */
98 static GTY(()) VEC(tree,gc) *deferred_fns;
99
100 /* A list of decls that use types with no linkage, which we need to make
101 sure are defined. */
102 static GTY(()) VEC(tree,gc) *no_linkage_decls;
103
104 /* Nonzero if we're done parsing and into end-of-file activities. */
105
106 int at_eof;
107
108 \f
109
110 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
111 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
112 that apply to the function). */
113
114 tree
115 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
116 {
117 tree raises;
118 tree attrs;
119 int type_quals;
120
121 if (fntype == error_mark_node || ctype == error_mark_node)
122 return error_mark_node;
123
124 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
125 || TREE_CODE (fntype) == METHOD_TYPE);
126
127 type_quals = quals & ~TYPE_QUAL_RESTRICT;
128 ctype = cp_build_qualified_type (ctype, type_quals);
129 raises = TYPE_RAISES_EXCEPTIONS (fntype);
130 attrs = TYPE_ATTRIBUTES (fntype);
131 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
132 (TREE_CODE (fntype) == METHOD_TYPE
133 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
134 : TYPE_ARG_TYPES (fntype)));
135 if (raises)
136 fntype = build_exception_variant (fntype, raises);
137 if (attrs)
138 fntype = cp_build_type_attribute_variant (fntype, attrs);
139
140 return fntype;
141 }
142
143 /* Return a variant of FNTYPE, a FUNCTION_TYPE or METHOD_TYPE, with its
144 return type changed to NEW_RET. */
145
146 tree
147 change_return_type (tree new_ret, tree fntype)
148 {
149 tree newtype;
150 tree args = TYPE_ARG_TYPES (fntype);
151 tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
152 tree attrs = TYPE_ATTRIBUTES (fntype);
153
154 if (new_ret == error_mark_node)
155 return fntype;
156
157 if (same_type_p (new_ret, TREE_TYPE (fntype)))
158 return fntype;
159
160 if (TREE_CODE (fntype) == FUNCTION_TYPE)
161 {
162 newtype = build_function_type (new_ret, args);
163 newtype = apply_memfn_quals (newtype, type_memfn_quals (fntype));
164 }
165 else
166 newtype = build_method_type_directly
167 (class_of_this_parm (fntype), new_ret, TREE_CHAIN (args));
168 if (raises)
169 newtype = build_exception_variant (newtype, raises);
170 if (attrs)
171 newtype = cp_build_type_attribute_variant (newtype, attrs);
172
173 return newtype;
174 }
175
176 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
177 appropriately. */
178
179 tree
180 cp_build_parm_decl (tree name, tree type)
181 {
182 tree parm = build_decl (input_location,
183 PARM_DECL, name, type);
184 /* DECL_ARG_TYPE is only used by the back end and the back end never
185 sees templates. */
186 if (!processing_template_decl)
187 DECL_ARG_TYPE (parm) = type_passed_as (type);
188
189 /* If the type is a pack expansion, then we have a function
190 parameter pack. */
191 if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
192 FUNCTION_PARAMETER_PACK_P (parm) = 1;
193
194 return parm;
195 }
196
197 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
198 indicated NAME. */
199
200 tree
201 build_artificial_parm (tree name, tree type)
202 {
203 tree parm = cp_build_parm_decl (name, type);
204 DECL_ARTIFICIAL (parm) = 1;
205 /* All our artificial parms are implicitly `const'; they cannot be
206 assigned to. */
207 TREE_READONLY (parm) = 1;
208 return parm;
209 }
210
211 /* Constructors for types with virtual baseclasses need an "in-charge" flag
212 saying whether this constructor is responsible for initialization of
213 virtual baseclasses or not. All destructors also need this "in-charge"
214 flag, which additionally determines whether or not the destructor should
215 free the memory for the object.
216
217 This function adds the "in-charge" flag to member function FN if
218 appropriate. It is called from grokclassfn and tsubst.
219 FN must be either a constructor or destructor.
220
221 The in-charge flag follows the 'this' parameter, and is followed by the
222 VTT parm (if any), then the user-written parms. */
223
224 void
225 maybe_retrofit_in_chrg (tree fn)
226 {
227 tree basetype, arg_types, parms, parm, fntype;
228
229 /* If we've already add the in-charge parameter don't do it again. */
230 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
231 return;
232
233 /* When processing templates we can't know, in general, whether or
234 not we're going to have virtual baseclasses. */
235 if (processing_template_decl)
236 return;
237
238 /* We don't need an in-charge parameter for constructors that don't
239 have virtual bases. */
240 if (DECL_CONSTRUCTOR_P (fn)
241 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
242 return;
243
244 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
245 basetype = TREE_TYPE (TREE_VALUE (arg_types));
246 arg_types = TREE_CHAIN (arg_types);
247
248 parms = DECL_CHAIN (DECL_ARGUMENTS (fn));
249
250 /* If this is a subobject constructor or destructor, our caller will
251 pass us a pointer to our VTT. */
252 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
253 {
254 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
255
256 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
257 DECL_CHAIN (parm) = parms;
258 parms = parm;
259
260 /* ...and then to TYPE_ARG_TYPES. */
261 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
262
263 DECL_HAS_VTT_PARM_P (fn) = 1;
264 }
265
266 /* Then add the in-charge parm (before the VTT parm). */
267 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
268 DECL_CHAIN (parm) = parms;
269 parms = parm;
270 arg_types = hash_tree_chain (integer_type_node, arg_types);
271
272 /* Insert our new parameter(s) into the list. */
273 DECL_CHAIN (DECL_ARGUMENTS (fn)) = parms;
274
275 /* And rebuild the function type. */
276 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
277 arg_types);
278 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
279 fntype = build_exception_variant (fntype,
280 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
281 if (TYPE_ATTRIBUTES (TREE_TYPE (fn)))
282 fntype = (cp_build_type_attribute_variant
283 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (fn))));
284 TREE_TYPE (fn) = fntype;
285
286 /* Now we've got the in-charge parameter. */
287 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
288 }
289
290 /* Classes overload their constituent function names automatically.
291 When a function name is declared in a record structure,
292 its name is changed to it overloaded name. Since names for
293 constructors and destructors can conflict, we place a leading
294 '$' for destructors.
295
296 CNAME is the name of the class we are grokking for.
297
298 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
299
300 FLAGS contains bits saying what's special about today's
301 arguments. DTOR_FLAG == DESTRUCTOR.
302
303 If FUNCTION is a destructor, then we must add the `auto-delete' field
304 as a second parameter. There is some hair associated with the fact
305 that we must "declare" this variable in the manner consistent with the
306 way the rest of the arguments were declared.
307
308 QUALS are the qualifiers for the this pointer. */
309
310 void
311 grokclassfn (tree ctype, tree function, enum overload_flags flags)
312 {
313 tree fn_name = DECL_NAME (function);
314
315 /* Even within an `extern "C"' block, members get C++ linkage. See
316 [dcl.link] for details. */
317 SET_DECL_LANGUAGE (function, lang_cplusplus);
318
319 if (fn_name == NULL_TREE)
320 {
321 error ("name missing for member function");
322 fn_name = get_identifier ("<anonymous>");
323 DECL_NAME (function) = fn_name;
324 }
325
326 DECL_CONTEXT (function) = ctype;
327
328 if (flags == DTOR_FLAG)
329 DECL_DESTRUCTOR_P (function) = 1;
330
331 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
332 maybe_retrofit_in_chrg (function);
333 }
334
335 /* Create an ARRAY_REF, checking for the user doing things backwards
336 along the way. */
337
338 tree
339 grok_array_decl (location_t loc, tree array_expr, tree index_exp)
340 {
341 tree type;
342 tree expr;
343 tree orig_array_expr = array_expr;
344 tree orig_index_exp = index_exp;
345
346 if (error_operand_p (array_expr) || error_operand_p (index_exp))
347 return error_mark_node;
348
349 if (processing_template_decl)
350 {
351 if (type_dependent_expression_p (array_expr)
352 || type_dependent_expression_p (index_exp))
353 return build_min_nt_loc (loc, ARRAY_REF, array_expr, index_exp,
354 NULL_TREE, NULL_TREE);
355 array_expr = build_non_dependent_expr (array_expr);
356 index_exp = build_non_dependent_expr (index_exp);
357 }
358
359 type = TREE_TYPE (array_expr);
360 gcc_assert (type);
361 type = non_reference (type);
362
363 /* If they have an `operator[]', use that. */
364 if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
365 expr = build_new_op (loc, ARRAY_REF, LOOKUP_NORMAL, array_expr, index_exp,
366 NULL_TREE, /*overload=*/NULL, tf_warning_or_error);
367 else
368 {
369 tree p1, p2, i1, i2;
370
371 /* Otherwise, create an ARRAY_REF for a pointer or array type.
372 It is a little-known fact that, if `a' is an array and `i' is
373 an int, you can write `i[a]', which means the same thing as
374 `a[i]'. */
375 if (TREE_CODE (type) == ARRAY_TYPE || TREE_CODE (type) == VECTOR_TYPE)
376 p1 = array_expr;
377 else
378 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
379
380 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
381 p2 = index_exp;
382 else
383 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
384
385 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
386 false);
387 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
388 false);
389
390 if ((p1 && i2) && (i1 && p2))
391 error ("ambiguous conversion for array subscript");
392
393 if (p1 && i2)
394 array_expr = p1, index_exp = i2;
395 else if (i1 && p2)
396 array_expr = p2, index_exp = i1;
397 else
398 {
399 error ("invalid types %<%T[%T]%> for array subscript",
400 type, TREE_TYPE (index_exp));
401 return error_mark_node;
402 }
403
404 if (array_expr == error_mark_node || index_exp == error_mark_node)
405 error ("ambiguous conversion for array subscript");
406
407 expr = build_array_ref (input_location, array_expr, index_exp);
408 }
409 if (processing_template_decl && expr != error_mark_node)
410 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
411 NULL_TREE, NULL_TREE);
412 return expr;
413 }
414
415 /* Given the cast expression EXP, checking out its validity. Either return
416 an error_mark_node if there was an unavoidable error, return a cast to
417 void for trying to delete a pointer w/ the value 0, or return the
418 call to delete. If DOING_VEC is true, we handle things differently
419 for doing an array delete.
420 Implements ARM $5.3.4. This is called from the parser. */
421
422 tree
423 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete,
424 tsubst_flags_t complain)
425 {
426 tree t, type;
427
428 if (exp == error_mark_node)
429 return exp;
430
431 if (processing_template_decl)
432 {
433 t = build_min (DELETE_EXPR, void_type_node, exp, size);
434 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
435 DELETE_EXPR_USE_VEC (t) = doing_vec;
436 TREE_SIDE_EFFECTS (t) = 1;
437 return t;
438 }
439
440 /* An array can't have been allocated by new, so complain. */
441 if (TREE_CODE (exp) == VAR_DECL
442 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
443 warning (0, "deleting array %q#D", exp);
444
445 t = build_expr_type_conversion (WANT_POINTER, exp, true);
446
447 if (t == NULL_TREE || t == error_mark_node)
448 {
449 error ("type %q#T argument given to %<delete%>, expected pointer",
450 TREE_TYPE (exp));
451 return error_mark_node;
452 }
453
454 type = TREE_TYPE (t);
455
456 /* As of Valley Forge, you can delete a pointer to const. */
457
458 /* You can't delete functions. */
459 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
460 {
461 error ("cannot delete a function. Only pointer-to-objects are "
462 "valid arguments to %<delete%>");
463 return error_mark_node;
464 }
465
466 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
467 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
468 {
469 warning (0, "deleting %qT is undefined", type);
470 doing_vec = 0;
471 }
472
473 /* Deleting a pointer with the value zero is valid and has no effect. */
474 if (integer_zerop (t))
475 return build1 (NOP_EXPR, void_type_node, t);
476
477 if (doing_vec)
478 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
479 sfk_deleting_destructor,
480 use_global_delete, complain);
481 else
482 return build_delete (type, t, sfk_deleting_destructor,
483 LOOKUP_NORMAL, use_global_delete,
484 complain);
485 }
486
487 /* Report an error if the indicated template declaration is not the
488 sort of thing that should be a member template. */
489
490 void
491 check_member_template (tree tmpl)
492 {
493 tree decl;
494
495 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
496 decl = DECL_TEMPLATE_RESULT (tmpl);
497
498 if (TREE_CODE (decl) == FUNCTION_DECL
499 || DECL_ALIAS_TEMPLATE_P (tmpl)
500 || (TREE_CODE (decl) == TYPE_DECL
501 && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
502 {
503 /* The parser rejects template declarations in local classes. */
504 gcc_assert (!current_function_decl);
505 /* The parser rejects any use of virtual in a function template. */
506 gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
507 && DECL_VIRTUAL_P (decl)));
508
509 /* The debug-information generating code doesn't know what to do
510 with member templates. */
511 DECL_IGNORED_P (tmpl) = 1;
512 }
513 else
514 error ("template declaration of %q#D", decl);
515 }
516
517 /* Return true iff TYPE is a valid Java parameter or return type. */
518
519 static bool
520 acceptable_java_type (tree type)
521 {
522 if (type == error_mark_node)
523 return false;
524
525 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
526 return true;
527 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
528 {
529 type = TREE_TYPE (type);
530 if (TREE_CODE (type) == RECORD_TYPE)
531 {
532 tree args; int i;
533 if (! TYPE_FOR_JAVA (type))
534 return false;
535 if (! CLASSTYPE_TEMPLATE_INFO (type))
536 return true;
537 args = CLASSTYPE_TI_ARGS (type);
538 i = TREE_VEC_LENGTH (args);
539 while (--i >= 0)
540 {
541 type = TREE_VEC_ELT (args, i);
542 if (TREE_CODE (type) == POINTER_TYPE)
543 type = TREE_TYPE (type);
544 if (! TYPE_FOR_JAVA (type))
545 return false;
546 }
547 return true;
548 }
549 }
550 return false;
551 }
552
553 /* For a METHOD in a Java class CTYPE, return true if
554 the parameter and return types are valid Java types.
555 Otherwise, print appropriate error messages, and return false. */
556
557 bool
558 check_java_method (tree method)
559 {
560 bool jerr = false;
561 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
562 tree ret_type = TREE_TYPE (TREE_TYPE (method));
563
564 if (!acceptable_java_type (ret_type))
565 {
566 error ("Java method %qD has non-Java return type %qT",
567 method, ret_type);
568 jerr = true;
569 }
570
571 arg_types = TREE_CHAIN (arg_types);
572 if (DECL_HAS_IN_CHARGE_PARM_P (method))
573 arg_types = TREE_CHAIN (arg_types);
574 if (DECL_HAS_VTT_PARM_P (method))
575 arg_types = TREE_CHAIN (arg_types);
576
577 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
578 {
579 tree type = TREE_VALUE (arg_types);
580 if (!acceptable_java_type (type))
581 {
582 if (type != error_mark_node)
583 error ("Java method %qD has non-Java parameter type %qT",
584 method, type);
585 jerr = true;
586 }
587 }
588 return !jerr;
589 }
590
591 /* Sanity check: report error if this function FUNCTION is not
592 really a member of the class (CTYPE) it is supposed to belong to.
593 TEMPLATE_PARMS is used to specify the template parameters of a member
594 template passed as FUNCTION_DECL. If the member template is passed as a
595 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
596 from the declaration. If the function is not a function template, it
597 must be NULL.
598 It returns the original declaration for the function, NULL_TREE if
599 no declaration was found, error_mark_node if an error was emitted. */
600
601 tree
602 check_classfn (tree ctype, tree function, tree template_parms)
603 {
604 int ix;
605 bool is_template;
606 tree pushed_scope;
607
608 if (DECL_USE_TEMPLATE (function)
609 && !(TREE_CODE (function) == TEMPLATE_DECL
610 && DECL_TEMPLATE_SPECIALIZATION (function))
611 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
612 /* Since this is a specialization of a member template,
613 we're not going to find the declaration in the class.
614 For example, in:
615
616 struct S { template <typename T> void f(T); };
617 template <> void S::f(int);
618
619 we're not going to find `S::f(int)', but there's no
620 reason we should, either. We let our callers know we didn't
621 find the method, but we don't complain. */
622 return NULL_TREE;
623
624 /* Basic sanity check: for a template function, the template parameters
625 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
626 if (TREE_CODE (function) == TEMPLATE_DECL)
627 {
628 if (template_parms
629 && !comp_template_parms (template_parms,
630 DECL_TEMPLATE_PARMS (function)))
631 {
632 error ("template parameter lists provided don%'t match the "
633 "template parameters of %qD", function);
634 return error_mark_node;
635 }
636 template_parms = DECL_TEMPLATE_PARMS (function);
637 }
638
639 /* OK, is this a definition of a member template? */
640 is_template = (template_parms != NULL_TREE);
641
642 /* We must enter the scope here, because conversion operators are
643 named by target type, and type equivalence relies on typenames
644 resolving within the scope of CTYPE. */
645 pushed_scope = push_scope (ctype);
646 ix = class_method_index_for_fn (complete_type (ctype), function);
647 if (ix >= 0)
648 {
649 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
650 tree fndecls, fndecl = 0;
651 bool is_conv_op;
652 const char *format = NULL;
653
654 for (fndecls = VEC_index (tree, methods, ix);
655 fndecls; fndecls = OVL_NEXT (fndecls))
656 {
657 tree p1, p2;
658
659 fndecl = OVL_CURRENT (fndecls);
660 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
661 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
662
663 /* We cannot simply call decls_match because this doesn't
664 work for static member functions that are pretending to
665 be methods, and because the name may have been changed by
666 asm("new_name"). */
667
668 /* Get rid of the this parameter on functions that become
669 static. */
670 if (DECL_STATIC_FUNCTION_P (fndecl)
671 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
672 p1 = TREE_CHAIN (p1);
673
674 /* A member template definition only matches a member template
675 declaration. */
676 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
677 continue;
678
679 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
680 TREE_TYPE (TREE_TYPE (fndecl)))
681 && compparms (p1, p2)
682 && (!is_template
683 || comp_template_parms (template_parms,
684 DECL_TEMPLATE_PARMS (fndecl)))
685 && (DECL_TEMPLATE_SPECIALIZATION (function)
686 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
687 && (!DECL_TEMPLATE_SPECIALIZATION (function)
688 || (DECL_TI_TEMPLATE (function)
689 == DECL_TI_TEMPLATE (fndecl))))
690 break;
691 }
692 if (fndecls)
693 {
694 if (pushed_scope)
695 pop_scope (pushed_scope);
696 return OVL_CURRENT (fndecls);
697 }
698
699 error_at (DECL_SOURCE_LOCATION (function),
700 "prototype for %q#D does not match any in class %qT",
701 function, ctype);
702 is_conv_op = DECL_CONV_FN_P (fndecl);
703
704 if (is_conv_op)
705 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
706 fndecls = VEC_index (tree, methods, ix);
707 while (fndecls)
708 {
709 fndecl = OVL_CURRENT (fndecls);
710 fndecls = OVL_NEXT (fndecls);
711
712 if (!fndecls && is_conv_op)
713 {
714 if (VEC_length (tree, methods) > (size_t) ++ix)
715 {
716 fndecls = VEC_index (tree, methods, ix);
717 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
718 {
719 fndecls = NULL_TREE;
720 is_conv_op = false;
721 }
722 }
723 else
724 is_conv_op = false;
725 }
726 if (format)
727 format = " %+#D";
728 else if (fndecls)
729 format = N_("candidates are: %+#D");
730 else
731 format = N_("candidate is: %+#D");
732 error (format, fndecl);
733 }
734 }
735 else if (!COMPLETE_TYPE_P (ctype))
736 cxx_incomplete_type_error (function, ctype);
737 else
738 error ("no %q#D member function declared in class %qT",
739 function, ctype);
740
741 if (pushed_scope)
742 pop_scope (pushed_scope);
743 return error_mark_node;
744 }
745
746 /* DECL is a function with vague linkage. Remember it so that at the
747 end of the translation unit we can decide whether or not to emit
748 it. */
749
750 void
751 note_vague_linkage_fn (tree decl)
752 {
753 DECL_DEFER_OUTPUT (decl) = 1;
754 VEC_safe_push (tree, gc, deferred_fns, decl);
755 }
756
757 /* We have just processed the DECL, which is a static data member.
758 The other parameters are as for cp_finish_decl. */
759
760 void
761 finish_static_data_member_decl (tree decl,
762 tree init, bool init_const_expr_p,
763 tree asmspec_tree,
764 int flags)
765 {
766 DECL_CONTEXT (decl) = current_class_type;
767
768 /* We cannot call pushdecl here, because that would fill in the
769 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
770 the right thing, namely, to put this decl out straight away. */
771
772 if (! processing_template_decl)
773 VEC_safe_push (tree, gc, pending_statics, decl);
774
775 if (LOCAL_CLASS_P (current_class_type))
776 permerror (input_location, "local class %q#T shall not have static data member %q#D",
777 current_class_type, decl);
778
779 DECL_IN_AGGR_P (decl) = 1;
780
781 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
782 && TYPE_DOMAIN (TREE_TYPE (decl)) == NULL_TREE)
783 SET_VAR_HAD_UNKNOWN_BOUND (decl);
784
785 cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
786 }
787
788 /* DECLARATOR and DECLSPECS correspond to a class member. The other
789 parameters are as for cp_finish_decl. Return the DECL for the
790 class member declared. */
791
792 tree
793 grokfield (const cp_declarator *declarator,
794 cp_decl_specifier_seq *declspecs,
795 tree init, bool init_const_expr_p,
796 tree asmspec_tree,
797 tree attrlist)
798 {
799 tree value;
800 const char *asmspec = 0;
801 int flags;
802 tree name;
803
804 if (init
805 && TREE_CODE (init) == TREE_LIST
806 && TREE_VALUE (init) == error_mark_node
807 && TREE_CHAIN (init) == NULL_TREE)
808 init = NULL_TREE;
809
810 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
811 if (! value || error_operand_p (value))
812 /* friend or constructor went bad. */
813 return error_mark_node;
814
815 if (TREE_CODE (value) == TYPE_DECL && init)
816 {
817 error ("typedef %qD is initialized (use decltype instead)", value);
818 init = NULL_TREE;
819 }
820
821 /* Pass friendly classes back. */
822 if (value == void_type_node)
823 return value;
824
825 /* Pass friend decls back. */
826 if ((TREE_CODE (value) == FUNCTION_DECL
827 || TREE_CODE (value) == TEMPLATE_DECL)
828 && DECL_CONTEXT (value) != current_class_type)
829 return value;
830
831 name = DECL_NAME (value);
832
833 if (name != NULL_TREE)
834 {
835 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
836 {
837 error ("explicit template argument list not allowed");
838 return error_mark_node;
839 }
840
841 if (IDENTIFIER_POINTER (name)[0] == '_'
842 && ! strcmp (IDENTIFIER_POINTER (name), "_vptr"))
843 error ("member %qD conflicts with virtual function table field name",
844 value);
845 }
846
847 /* Stash away type declarations. */
848 if (TREE_CODE (value) == TYPE_DECL)
849 {
850 DECL_NONLOCAL (value) = 1;
851 DECL_CONTEXT (value) = current_class_type;
852
853 if (attrlist)
854 {
855 int attrflags = 0;
856
857 /* If this is a typedef that names the class for linkage purposes
858 (7.1.3p8), apply any attributes directly to the type. */
859 if (TAGGED_TYPE_P (TREE_TYPE (value))
860 && value == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))))
861 attrflags = ATTR_FLAG_TYPE_IN_PLACE;
862
863 cplus_decl_attributes (&value, attrlist, attrflags);
864 }
865
866 if (decl_spec_seq_has_spec_p (declspecs, ds_typedef)
867 && TREE_TYPE (value) != error_mark_node
868 && TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))) != value)
869 set_underlying_type (value);
870
871 /* It's important that push_template_decl below follows
872 set_underlying_type above so that the created template
873 carries the properly set type of VALUE. */
874 if (processing_template_decl)
875 value = push_template_decl (value);
876
877 record_locally_defined_typedef (value);
878 return value;
879 }
880
881 if (DECL_IN_AGGR_P (value))
882 {
883 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
884 return void_type_node;
885 }
886
887 if (asmspec_tree && asmspec_tree != error_mark_node)
888 asmspec = TREE_STRING_POINTER (asmspec_tree);
889
890 if (init)
891 {
892 if (TREE_CODE (value) == FUNCTION_DECL)
893 {
894 /* Initializers for functions are rejected early in the parser.
895 If we get here, it must be a pure specifier for a method. */
896 if (init == ridpointers[(int)RID_DELETE])
897 {
898 DECL_DELETED_FN (value) = 1;
899 DECL_DECLARED_INLINE_P (value) = 1;
900 DECL_INITIAL (value) = error_mark_node;
901 }
902 else if (init == ridpointers[(int)RID_DEFAULT])
903 {
904 if (defaultable_fn_check (value))
905 {
906 DECL_DEFAULTED_FN (value) = 1;
907 DECL_INITIALIZED_IN_CLASS_P (value) = 1;
908 DECL_DECLARED_INLINE_P (value) = 1;
909 }
910 }
911 else if (TREE_CODE (init) == DEFAULT_ARG)
912 error ("invalid initializer for member function %qD", value);
913 else if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
914 {
915 if (integer_zerop (init))
916 DECL_PURE_VIRTUAL_P (value) = 1;
917 else if (error_operand_p (init))
918 ; /* An error has already been reported. */
919 else
920 error ("invalid initializer for member function %qD",
921 value);
922 }
923 else
924 {
925 gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
926 error ("initializer specified for static member function %qD",
927 value);
928 }
929 }
930 else if (TREE_CODE (value) == FIELD_DECL)
931 /* C++11 NSDMI, keep going. */;
932 else if (TREE_CODE (value) != VAR_DECL)
933 gcc_unreachable ();
934 else if (!processing_template_decl)
935 {
936 if (TREE_CODE (init) == CONSTRUCTOR)
937 init = digest_init (TREE_TYPE (value), init, tf_warning_or_error);
938 init = maybe_constant_init (init);
939
940 if (init != error_mark_node && !TREE_CONSTANT (init))
941 {
942 /* We can allow references to things that are effectively
943 static, since references are initialized with the
944 address. */
945 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
946 || (TREE_STATIC (init) == 0
947 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
948 {
949 error ("field initializer is not constant");
950 init = error_mark_node;
951 }
952 }
953 }
954 }
955
956 if (processing_template_decl
957 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
958 {
959 value = push_template_decl (value);
960 if (error_operand_p (value))
961 return error_mark_node;
962 }
963
964 if (attrlist)
965 cplus_decl_attributes (&value, attrlist, 0);
966
967 if (init && BRACE_ENCLOSED_INITIALIZER_P (init)
968 && CONSTRUCTOR_IS_DIRECT_INIT (init))
969 flags = LOOKUP_NORMAL;
970 else
971 flags = LOOKUP_IMPLICIT;
972
973 switch (TREE_CODE (value))
974 {
975 case VAR_DECL:
976 finish_static_data_member_decl (value, init, init_const_expr_p,
977 asmspec_tree, flags);
978 return value;
979
980 case FIELD_DECL:
981 if (asmspec)
982 error ("%<asm%> specifiers are not permitted on non-static data members");
983 if (DECL_INITIAL (value) == error_mark_node)
984 init = error_mark_node;
985 cp_finish_decl (value, init, /*init_const_expr_p=*/false,
986 NULL_TREE, flags);
987 DECL_IN_AGGR_P (value) = 1;
988 return value;
989
990 case FUNCTION_DECL:
991 if (asmspec)
992 set_user_assembler_name (value, asmspec);
993
994 cp_finish_decl (value,
995 /*init=*/NULL_TREE,
996 /*init_const_expr_p=*/false,
997 asmspec_tree, flags);
998
999 /* Pass friends back this way. */
1000 if (DECL_FRIEND_P (value))
1001 return void_type_node;
1002
1003 DECL_IN_AGGR_P (value) = 1;
1004 return value;
1005
1006 default:
1007 gcc_unreachable ();
1008 }
1009 return NULL_TREE;
1010 }
1011
1012 /* Like `grokfield', but for bitfields.
1013 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
1014
1015 tree
1016 grokbitfield (const cp_declarator *declarator,
1017 cp_decl_specifier_seq *declspecs, tree width,
1018 tree attrlist)
1019 {
1020 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, &attrlist);
1021
1022 if (value == error_mark_node)
1023 return NULL_TREE; /* friends went bad. */
1024
1025 /* Pass friendly classes back. */
1026 if (TREE_CODE (value) == VOID_TYPE)
1027 return void_type_node;
1028
1029 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))
1030 && (POINTER_TYPE_P (value)
1031 || !dependent_type_p (TREE_TYPE (value))))
1032 {
1033 error ("bit-field %qD with non-integral type", value);
1034 return error_mark_node;
1035 }
1036
1037 if (TREE_CODE (value) == TYPE_DECL)
1038 {
1039 error ("cannot declare %qD to be a bit-field type", value);
1040 return NULL_TREE;
1041 }
1042
1043 /* Usually, finish_struct_1 catches bitfields with invalid types.
1044 But, in the case of bitfields with function type, we confuse
1045 ourselves into thinking they are member functions, so we must
1046 check here. */
1047 if (TREE_CODE (value) == FUNCTION_DECL)
1048 {
1049 error ("cannot declare bit-field %qD with function type",
1050 DECL_NAME (value));
1051 return NULL_TREE;
1052 }
1053
1054 if (DECL_IN_AGGR_P (value))
1055 {
1056 error ("%qD is already defined in the class %qT", value,
1057 DECL_CONTEXT (value));
1058 return void_type_node;
1059 }
1060
1061 if (TREE_STATIC (value))
1062 {
1063 error ("static member %qD cannot be a bit-field", value);
1064 return NULL_TREE;
1065 }
1066 cp_finish_decl (value, NULL_TREE, false, NULL_TREE, 0);
1067
1068 if (width != error_mark_node)
1069 {
1070 /* The width must be an integer type. */
1071 if (!type_dependent_expression_p (width)
1072 && !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (width)))
1073 error ("width of bit-field %qD has non-integral type %qT", value,
1074 TREE_TYPE (width));
1075 DECL_INITIAL (value) = width;
1076 SET_DECL_C_BIT_FIELD (value);
1077 }
1078
1079 DECL_IN_AGGR_P (value) = 1;
1080
1081 if (attrlist)
1082 cplus_decl_attributes (&value, attrlist, /*flags=*/0);
1083
1084 return value;
1085 }
1086
1087 \f
1088 /* Returns true iff ATTR is an attribute which needs to be applied at
1089 instantiation time rather than template definition time. */
1090
1091 static bool
1092 is_late_template_attribute (tree attr, tree decl)
1093 {
1094 tree name = TREE_PURPOSE (attr);
1095 tree args = TREE_VALUE (attr);
1096 const struct attribute_spec *spec = lookup_attribute_spec (name);
1097 tree arg;
1098
1099 if (!spec)
1100 /* Unknown attribute. */
1101 return false;
1102
1103 /* Attribute weak handling wants to write out assembly right away. */
1104 if (is_attribute_p ("weak", name))
1105 return true;
1106
1107 /* If any of the arguments are dependent expressions, we can't evaluate
1108 the attribute until instantiation time. */
1109 for (arg = args; arg; arg = TREE_CHAIN (arg))
1110 {
1111 tree t = TREE_VALUE (arg);
1112
1113 /* If the first attribute argument is an identifier, only consider
1114 second and following arguments. Attributes like mode, format,
1115 cleanup and several target specific attributes aren't late
1116 just because they have an IDENTIFIER_NODE as first argument. */
1117 if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1118 continue;
1119
1120 if (value_dependent_expression_p (t)
1121 || type_dependent_expression_p (t))
1122 return true;
1123 }
1124
1125 if (TREE_CODE (decl) == TYPE_DECL
1126 || TYPE_P (decl)
1127 || spec->type_required)
1128 {
1129 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1130
1131 /* We can't apply any attributes to a completely unknown type until
1132 instantiation time. */
1133 enum tree_code code = TREE_CODE (type);
1134 if (code == TEMPLATE_TYPE_PARM
1135 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1136 || code == TYPENAME_TYPE)
1137 return true;
1138 /* Also defer most attributes on dependent types. This is not
1139 necessary in all cases, but is the better default. */
1140 else if (dependent_type_p (type)
1141 /* But attribute visibility specifically works on
1142 templates. */
1143 && !is_attribute_p ("visibility", name))
1144 return true;
1145 else
1146 return false;
1147 }
1148 else
1149 return false;
1150 }
1151
1152 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1153 applied at instantiation time and return them. If IS_DEPENDENT is true,
1154 the declaration itself is dependent, so all attributes should be applied
1155 at instantiation time. */
1156
1157 static tree
1158 splice_template_attributes (tree *attr_p, tree decl)
1159 {
1160 tree *p = attr_p;
1161 tree late_attrs = NULL_TREE;
1162 tree *q = &late_attrs;
1163
1164 if (!p)
1165 return NULL_TREE;
1166
1167 for (; *p; )
1168 {
1169 if (is_late_template_attribute (*p, decl))
1170 {
1171 ATTR_IS_DEPENDENT (*p) = 1;
1172 *q = *p;
1173 *p = TREE_CHAIN (*p);
1174 q = &TREE_CHAIN (*q);
1175 *q = NULL_TREE;
1176 }
1177 else
1178 p = &TREE_CHAIN (*p);
1179 }
1180
1181 return late_attrs;
1182 }
1183
1184 /* Remove any late attributes from the list in ATTR_P and attach them to
1185 DECL_P. */
1186
1187 static void
1188 save_template_attributes (tree *attr_p, tree *decl_p)
1189 {
1190 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1191 tree *q;
1192 tree old_attrs = NULL_TREE;
1193
1194 if (!late_attrs)
1195 return;
1196
1197 if (DECL_P (*decl_p))
1198 q = &DECL_ATTRIBUTES (*decl_p);
1199 else
1200 q = &TYPE_ATTRIBUTES (*decl_p);
1201
1202 old_attrs = *q;
1203
1204 /* Merge the late attributes at the beginning with the attribute
1205 list. */
1206 late_attrs = merge_attributes (late_attrs, *q);
1207 *q = late_attrs;
1208
1209 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1210 {
1211 /* We've added new attributes directly to the main variant, so
1212 now we need to update all of the other variants to include
1213 these new attributes. */
1214 tree variant;
1215 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1216 variant = TYPE_NEXT_VARIANT (variant))
1217 {
1218 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1219 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1220 }
1221 }
1222 }
1223
1224 /* Like reconstruct_complex_type, but handle also template trees. */
1225
1226 tree
1227 cp_reconstruct_complex_type (tree type, tree bottom)
1228 {
1229 tree inner, outer;
1230
1231 if (TREE_CODE (type) == POINTER_TYPE)
1232 {
1233 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1234 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1235 TYPE_REF_CAN_ALIAS_ALL (type));
1236 }
1237 else if (TREE_CODE (type) == REFERENCE_TYPE)
1238 {
1239 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1240 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1241 TYPE_REF_CAN_ALIAS_ALL (type));
1242 }
1243 else if (TREE_CODE (type) == ARRAY_TYPE)
1244 {
1245 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1246 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1247 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1248 element type qualification will be handled by the recursive
1249 cp_reconstruct_complex_type call and cp_build_qualified_type
1250 for ARRAY_TYPEs changes the element type. */
1251 return outer;
1252 }
1253 else if (TREE_CODE (type) == FUNCTION_TYPE)
1254 {
1255 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1256 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1257 outer = apply_memfn_quals (outer, type_memfn_quals (type));
1258 }
1259 else if (TREE_CODE (type) == METHOD_TYPE)
1260 {
1261 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1262 /* The build_method_type_directly() routine prepends 'this' to argument list,
1263 so we must compensate by getting rid of it. */
1264 outer
1265 = build_method_type_directly
1266 (class_of_this_parm (type), inner,
1267 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1268 }
1269 else if (TREE_CODE (type) == OFFSET_TYPE)
1270 {
1271 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1272 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1273 }
1274 else
1275 return bottom;
1276
1277 if (TYPE_ATTRIBUTES (type))
1278 outer = cp_build_type_attribute_variant (outer, TYPE_ATTRIBUTES (type));
1279 return cp_build_qualified_type (outer, cp_type_quals (type));
1280 }
1281
1282 /* Replaces any constexpr expression that may be into the attributes
1283 arguments with their reduced value. */
1284
1285 static void
1286 cp_check_const_attributes (tree attributes)
1287 {
1288 tree attr;
1289 for (attr = attributes; attr; attr = TREE_CHAIN (attr))
1290 {
1291 tree arg;
1292 for (arg = TREE_VALUE (attr); arg; arg = TREE_CHAIN (arg))
1293 {
1294 tree expr = TREE_VALUE (arg);
1295 if (EXPR_P (expr))
1296 TREE_VALUE (arg) = maybe_constant_value (expr);
1297 }
1298 }
1299 }
1300
1301 /* Like decl_attributes, but handle C++ complexity. */
1302
1303 void
1304 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1305 {
1306 if (*decl == NULL_TREE || *decl == void_type_node
1307 || *decl == error_mark_node
1308 || attributes == NULL_TREE)
1309 return;
1310
1311 if (processing_template_decl)
1312 {
1313 if (check_for_bare_parameter_packs (attributes))
1314 return;
1315
1316 save_template_attributes (&attributes, decl);
1317 if (attributes == NULL_TREE)
1318 return;
1319 }
1320
1321 cp_check_const_attributes (attributes);
1322
1323 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1324 decl = &DECL_TEMPLATE_RESULT (*decl);
1325
1326 decl_attributes (decl, attributes, flags);
1327
1328 if (TREE_CODE (*decl) == TYPE_DECL)
1329 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1330 }
1331 \f
1332 /* Walks through the namespace- or function-scope anonymous union
1333 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1334 Returns one of the fields for use in the mangled name. */
1335
1336 static tree
1337 build_anon_union_vars (tree type, tree object)
1338 {
1339 tree main_decl = NULL_TREE;
1340 tree field;
1341
1342 /* Rather than write the code to handle the non-union case,
1343 just give an error. */
1344 if (TREE_CODE (type) != UNION_TYPE)
1345 {
1346 error ("anonymous struct not inside named type");
1347 return error_mark_node;
1348 }
1349
1350 for (field = TYPE_FIELDS (type);
1351 field != NULL_TREE;
1352 field = DECL_CHAIN (field))
1353 {
1354 tree decl;
1355 tree ref;
1356
1357 if (DECL_ARTIFICIAL (field))
1358 continue;
1359 if (TREE_CODE (field) != FIELD_DECL)
1360 {
1361 permerror (input_location, "%q+#D invalid; an anonymous union can only "
1362 "have non-static data members", field);
1363 continue;
1364 }
1365
1366 if (TREE_PRIVATE (field))
1367 permerror (input_location, "private member %q+#D in anonymous union", field);
1368 else if (TREE_PROTECTED (field))
1369 permerror (input_location, "protected member %q+#D in anonymous union", field);
1370
1371 if (processing_template_decl)
1372 ref = build_min_nt_loc (UNKNOWN_LOCATION, COMPONENT_REF, object,
1373 DECL_NAME (field), NULL_TREE);
1374 else
1375 ref = build_class_member_access_expr (object, field, NULL_TREE,
1376 false, tf_warning_or_error);
1377
1378 if (DECL_NAME (field))
1379 {
1380 tree base;
1381
1382 decl = build_decl (input_location,
1383 VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1384 DECL_ANON_UNION_VAR_P (decl) = 1;
1385 DECL_ARTIFICIAL (decl) = 1;
1386
1387 base = get_base_address (object);
1388 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1389 TREE_STATIC (decl) = TREE_STATIC (base);
1390 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1391
1392 SET_DECL_VALUE_EXPR (decl, ref);
1393 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1394
1395 decl = pushdecl (decl);
1396 }
1397 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1398 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1399 else
1400 decl = 0;
1401
1402 if (main_decl == NULL_TREE)
1403 main_decl = decl;
1404 }
1405
1406 return main_decl;
1407 }
1408
1409 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1410 anonymous union, then all members must be laid out together. PUBLIC_P
1411 is nonzero if this union is not declared static. */
1412
1413 void
1414 finish_anon_union (tree anon_union_decl)
1415 {
1416 tree type;
1417 tree main_decl;
1418 bool public_p;
1419
1420 if (anon_union_decl == error_mark_node)
1421 return;
1422
1423 type = TREE_TYPE (anon_union_decl);
1424 public_p = TREE_PUBLIC (anon_union_decl);
1425
1426 /* The VAR_DECL's context is the same as the TYPE's context. */
1427 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1428
1429 if (TYPE_FIELDS (type) == NULL_TREE)
1430 return;
1431
1432 if (public_p)
1433 {
1434 error ("namespace-scope anonymous aggregates must be static");
1435 return;
1436 }
1437
1438 main_decl = build_anon_union_vars (type, anon_union_decl);
1439 if (main_decl == error_mark_node)
1440 return;
1441 if (main_decl == NULL_TREE)
1442 {
1443 warning (0, "anonymous union with no members");
1444 return;
1445 }
1446
1447 if (!processing_template_decl)
1448 {
1449 /* Use main_decl to set the mangled name. */
1450 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1451 maybe_commonize_var (anon_union_decl);
1452 if (TREE_STATIC (anon_union_decl) || DECL_EXTERNAL (anon_union_decl))
1453 mangle_decl (anon_union_decl);
1454 DECL_NAME (anon_union_decl) = NULL_TREE;
1455 }
1456
1457 pushdecl (anon_union_decl);
1458 cp_finish_decl (anon_union_decl, NULL_TREE, false, NULL_TREE, 0);
1459 }
1460 \f
1461 /* Auxiliary functions to make type signatures for
1462 `operator new' and `operator delete' correspond to
1463 what compiler will be expecting. */
1464
1465 tree
1466 coerce_new_type (tree type)
1467 {
1468 int e = 0;
1469 tree args = TYPE_ARG_TYPES (type);
1470
1471 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1472
1473 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1474 {
1475 e = 1;
1476 error ("%<operator new%> must return type %qT", ptr_type_node);
1477 }
1478
1479 if (args && args != void_list_node)
1480 {
1481 if (TREE_PURPOSE (args))
1482 {
1483 /* [basic.stc.dynamic.allocation]
1484
1485 The first parameter shall not have an associated default
1486 argument. */
1487 error ("the first parameter of %<operator new%> cannot "
1488 "have a default argument");
1489 /* Throw away the default argument. */
1490 TREE_PURPOSE (args) = NULL_TREE;
1491 }
1492
1493 if (!same_type_p (TREE_VALUE (args), size_type_node))
1494 {
1495 e = 2;
1496 args = TREE_CHAIN (args);
1497 }
1498 }
1499 else
1500 e = 2;
1501
1502 if (e == 2)
1503 permerror (input_location, "%<operator new%> takes type %<size_t%> (%qT) "
1504 "as first parameter", size_type_node);
1505
1506 switch (e)
1507 {
1508 case 2:
1509 args = tree_cons (NULL_TREE, size_type_node, args);
1510 /* Fall through. */
1511 case 1:
1512 type = build_exception_variant
1513 (build_function_type (ptr_type_node, args),
1514 TYPE_RAISES_EXCEPTIONS (type));
1515 /* Fall through. */
1516 default:;
1517 }
1518 return type;
1519 }
1520
1521 tree
1522 coerce_delete_type (tree type)
1523 {
1524 int e = 0;
1525 tree args = TYPE_ARG_TYPES (type);
1526
1527 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1528
1529 if (!same_type_p (TREE_TYPE (type), void_type_node))
1530 {
1531 e = 1;
1532 error ("%<operator delete%> must return type %qT", void_type_node);
1533 }
1534
1535 if (!args || args == void_list_node
1536 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1537 {
1538 e = 2;
1539 if (args && args != void_list_node)
1540 args = TREE_CHAIN (args);
1541 error ("%<operator delete%> takes type %qT as first parameter",
1542 ptr_type_node);
1543 }
1544 switch (e)
1545 {
1546 case 2:
1547 args = tree_cons (NULL_TREE, ptr_type_node, args);
1548 /* Fall through. */
1549 case 1:
1550 type = build_exception_variant
1551 (build_function_type (void_type_node, args),
1552 TYPE_RAISES_EXCEPTIONS (type));
1553 /* Fall through. */
1554 default:;
1555 }
1556
1557 return type;
1558 }
1559 \f
1560 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1561 and mark them as needed. */
1562
1563 static void
1564 mark_vtable_entries (tree decl)
1565 {
1566 tree fnaddr;
1567 unsigned HOST_WIDE_INT idx;
1568
1569 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1570 idx, fnaddr)
1571 {
1572 tree fn;
1573
1574 STRIP_NOPS (fnaddr);
1575
1576 if (TREE_CODE (fnaddr) != ADDR_EXPR
1577 && TREE_CODE (fnaddr) != FDESC_EXPR)
1578 /* This entry is an offset: a virtual base class offset, a
1579 virtual call offset, an RTTI offset, etc. */
1580 continue;
1581
1582 fn = TREE_OPERAND (fnaddr, 0);
1583 TREE_ADDRESSABLE (fn) = 1;
1584 /* When we don't have vcall offsets, we output thunks whenever
1585 we output the vtables that contain them. With vcall offsets,
1586 we know all the thunks we'll need when we emit a virtual
1587 function, so we emit the thunks there instead. */
1588 if (DECL_THUNK_P (fn))
1589 use_thunk (fn, /*emit_p=*/0);
1590 mark_used (fn);
1591 }
1592 }
1593
1594 /* Set DECL up to have the closest approximation of "initialized common"
1595 linkage available. */
1596
1597 void
1598 comdat_linkage (tree decl)
1599 {
1600 if (flag_weak)
1601 make_decl_one_only (decl, cxx_comdat_group (decl));
1602 else if (TREE_CODE (decl) == FUNCTION_DECL
1603 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1604 /* We can just emit function and compiler-generated variables
1605 statically; having multiple copies is (for the most part) only
1606 a waste of space.
1607
1608 There are two correctness issues, however: the address of a
1609 template instantiation with external linkage should be the
1610 same, independent of what translation unit asks for the
1611 address, and this will not hold when we emit multiple copies of
1612 the function. However, there's little else we can do.
1613
1614 Also, by default, the typeinfo implementation assumes that
1615 there will be only one copy of the string used as the name for
1616 each type. Therefore, if weak symbols are unavailable, the
1617 run-time library should perform a more conservative check; it
1618 should perform a string comparison, rather than an address
1619 comparison. */
1620 TREE_PUBLIC (decl) = 0;
1621 else
1622 {
1623 /* Static data member template instantiations, however, cannot
1624 have multiple copies. */
1625 if (DECL_INITIAL (decl) == 0
1626 || DECL_INITIAL (decl) == error_mark_node)
1627 DECL_COMMON (decl) = 1;
1628 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1629 {
1630 DECL_COMMON (decl) = 1;
1631 DECL_INITIAL (decl) = error_mark_node;
1632 }
1633 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1634 {
1635 /* We can't do anything useful; leave vars for explicit
1636 instantiation. */
1637 DECL_EXTERNAL (decl) = 1;
1638 DECL_NOT_REALLY_EXTERN (decl) = 0;
1639 }
1640 }
1641
1642 DECL_COMDAT (decl) = 1;
1643 }
1644
1645 /* For win32 we also want to put explicit instantiations in
1646 linkonce sections, so that they will be merged with implicit
1647 instantiations; otherwise we get duplicate symbol errors.
1648 For Darwin we do not want explicit instantiations to be
1649 linkonce. */
1650
1651 void
1652 maybe_make_one_only (tree decl)
1653 {
1654 /* We used to say that this was not necessary on targets that support weak
1655 symbols, because the implicit instantiations will defer to the explicit
1656 one. However, that's not actually the case in SVR4; a strong definition
1657 after a weak one is an error. Also, not making explicit
1658 instantiations one_only means that we can end up with two copies of
1659 some template instantiations. */
1660 if (! flag_weak)
1661 return;
1662
1663 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1664 we can get away with not emitting them if they aren't used. We need
1665 to for variables so that cp_finish_decl will update their linkage,
1666 because their DECL_INITIAL may not have been set properly yet. */
1667
1668 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1669 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1670 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1671 {
1672 make_decl_one_only (decl, cxx_comdat_group (decl));
1673
1674 if (TREE_CODE (decl) == VAR_DECL)
1675 {
1676 DECL_COMDAT (decl) = 1;
1677 /* Mark it needed so we don't forget to emit it. */
1678 mark_decl_referenced (decl);
1679 TREE_USED (decl) = 1;
1680 }
1681 }
1682 }
1683
1684 /* Returns true iff DECL, a FUNCTION_DECL or VAR_DECL, has vague linkage.
1685 This predicate will give the right answer during parsing of the
1686 function, which other tests may not. */
1687
1688 bool
1689 vague_linkage_p (tree decl)
1690 {
1691 /* Unfortunately, import_export_decl has not always been called
1692 before the function is processed, so we cannot simply check
1693 DECL_COMDAT. */
1694 return (DECL_COMDAT (decl)
1695 || (((TREE_CODE (decl) == FUNCTION_DECL
1696 && DECL_DECLARED_INLINE_P (decl))
1697 || (DECL_LANG_SPECIFIC (decl)
1698 && DECL_TEMPLATE_INSTANTIATION (decl)))
1699 && TREE_PUBLIC (decl)));
1700 }
1701
1702 /* Determine whether or not we want to specifically import or export CTYPE,
1703 using various heuristics. */
1704
1705 static void
1706 import_export_class (tree ctype)
1707 {
1708 /* -1 for imported, 1 for exported. */
1709 int import_export = 0;
1710
1711 /* It only makes sense to call this function at EOF. The reason is
1712 that this function looks at whether or not the first non-inline
1713 non-abstract virtual member function has been defined in this
1714 translation unit. But, we can't possibly know that until we've
1715 seen the entire translation unit. */
1716 gcc_assert (at_eof);
1717
1718 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1719 return;
1720
1721 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1722 we will have CLASSTYPE_INTERFACE_ONLY set but not
1723 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1724 heuristic because someone will supply a #pragma implementation
1725 elsewhere, and deducing it here would produce a conflict. */
1726 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1727 return;
1728
1729 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1730 import_export = -1;
1731 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1732 import_export = 1;
1733 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1734 && !flag_implicit_templates)
1735 /* For a template class, without -fimplicit-templates, check the
1736 repository. If the virtual table is assigned to this
1737 translation unit, then export the class; otherwise, import
1738 it. */
1739 import_export = repo_export_class_p (ctype) ? 1 : -1;
1740 else if (TYPE_POLYMORPHIC_P (ctype))
1741 {
1742 /* The ABI specifies that the virtual table and associated
1743 information are emitted with the key method, if any. */
1744 tree method = CLASSTYPE_KEY_METHOD (ctype);
1745 /* If weak symbol support is not available, then we must be
1746 careful not to emit the vtable when the key function is
1747 inline. An inline function can be defined in multiple
1748 translation units. If we were to emit the vtable in each
1749 translation unit containing a definition, we would get
1750 multiple definition errors at link-time. */
1751 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1752 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1753 }
1754
1755 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1756 a definition anywhere else. */
1757 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1758 import_export = 0;
1759
1760 /* Allow back ends the chance to overrule the decision. */
1761 if (targetm.cxx.import_export_class)
1762 import_export = targetm.cxx.import_export_class (ctype, import_export);
1763
1764 if (import_export)
1765 {
1766 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1767 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1768 }
1769 }
1770
1771 /* Return true if VAR has already been provided to the back end; in that
1772 case VAR should not be modified further by the front end. */
1773 static bool
1774 var_finalized_p (tree var)
1775 {
1776 return varpool_node (var)->finalized;
1777 }
1778
1779 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1780 must be emitted in this translation unit. Mark it as such. */
1781
1782 void
1783 mark_needed (tree decl)
1784 {
1785 TREE_USED (decl) = 1;
1786 mark_decl_referenced (decl);
1787 }
1788
1789 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1790 returns true if a definition of this entity should be provided in
1791 this object file. Callers use this function to determine whether
1792 or not to let the back end know that a definition of DECL is
1793 available in this translation unit. */
1794
1795 bool
1796 decl_needed_p (tree decl)
1797 {
1798 gcc_assert (TREE_CODE (decl) == VAR_DECL
1799 || TREE_CODE (decl) == FUNCTION_DECL);
1800 /* This function should only be called at the end of the translation
1801 unit. We cannot be sure of whether or not something will be
1802 COMDAT until that point. */
1803 gcc_assert (at_eof);
1804
1805 /* All entities with external linkage that are not COMDAT should be
1806 emitted; they may be referred to from other object files. */
1807 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1808 return true;
1809 /* If this entity was used, let the back end see it; it will decide
1810 whether or not to emit it into the object file. */
1811 if (TREE_USED (decl))
1812 return true;
1813 /* Functions marked "dllexport" must be emitted so that they are
1814 visible to other DLLs. */
1815 if (flag_keep_inline_dllexport
1816 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))
1817 return true;
1818 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1819 reference to DECL might cause it to be emitted later. */
1820 return false;
1821 }
1822
1823 /* If necessary, write out the vtables for the dynamic class CTYPE.
1824 Returns true if any vtables were emitted. */
1825
1826 static bool
1827 maybe_emit_vtables (tree ctype)
1828 {
1829 tree vtbl;
1830 tree primary_vtbl;
1831 int needed = 0;
1832 struct varpool_node *current = NULL, *last = NULL;
1833
1834 /* If the vtables for this class have already been emitted there is
1835 nothing more to do. */
1836 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1837 if (var_finalized_p (primary_vtbl))
1838 return false;
1839 /* Ignore dummy vtables made by get_vtable_decl. */
1840 if (TREE_TYPE (primary_vtbl) == void_type_node)
1841 return false;
1842
1843 /* On some targets, we cannot determine the key method until the end
1844 of the translation unit -- which is when this function is
1845 called. */
1846 if (!targetm.cxx.key_method_may_be_inline ())
1847 determine_key_method (ctype);
1848
1849 /* See if any of the vtables are needed. */
1850 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = DECL_CHAIN (vtbl))
1851 {
1852 import_export_decl (vtbl);
1853 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1854 needed = 1;
1855 }
1856 if (!needed)
1857 {
1858 /* If the references to this class' vtables are optimized away,
1859 still emit the appropriate debugging information. See
1860 dfs_debug_mark. */
1861 if (DECL_COMDAT (primary_vtbl)
1862 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1863 note_debug_info_needed (ctype);
1864 return false;
1865 }
1866
1867 /* The ABI requires that we emit all of the vtables if we emit any
1868 of them. */
1869 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = DECL_CHAIN (vtbl))
1870 {
1871 /* Mark entities references from the virtual table as used. */
1872 mark_vtable_entries (vtbl);
1873
1874 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1875 {
1876 VEC(tree,gc)* cleanups = NULL;
1877 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl), &cleanups,
1878 LOOKUP_NORMAL);
1879
1880 /* It had better be all done at compile-time. */
1881 gcc_assert (!expr && !cleanups);
1882 }
1883
1884 /* Write it out. */
1885 DECL_EXTERNAL (vtbl) = 0;
1886 rest_of_decl_compilation (vtbl, 1, 1);
1887
1888 /* Because we're only doing syntax-checking, we'll never end up
1889 actually marking the variable as written. */
1890 if (flag_syntax_only)
1891 TREE_ASM_WRITTEN (vtbl) = 1;
1892 else if (DECL_ONE_ONLY (vtbl))
1893 {
1894 current = varpool_node (vtbl);
1895 if (last)
1896 symtab_add_to_same_comdat_group ((symtab_node) current, (symtab_node) last);
1897 last = current;
1898 }
1899 }
1900
1901 /* Since we're writing out the vtable here, also write the debug
1902 info. */
1903 note_debug_info_needed (ctype);
1904
1905 return true;
1906 }
1907
1908 /* A special return value from type_visibility meaning internal
1909 linkage. */
1910
1911 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1912
1913 /* walk_tree helper function for type_visibility. */
1914
1915 static tree
1916 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1917 {
1918 int *vis_p = (int *)data;
1919 if (! TYPE_P (*tp))
1920 {
1921 *walk_subtrees = 0;
1922 }
1923 else if (CLASS_TYPE_P (*tp))
1924 {
1925 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1926 {
1927 *vis_p = VISIBILITY_ANON;
1928 return *tp;
1929 }
1930 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1931 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1932 }
1933 return NULL;
1934 }
1935
1936 /* Returns the visibility of TYPE, which is the minimum visibility of its
1937 component types. */
1938
1939 static int
1940 type_visibility (tree type)
1941 {
1942 int vis = VISIBILITY_DEFAULT;
1943 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1944 return vis;
1945 }
1946
1947 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1948 specified (or if VISIBILITY is static). If TMPL is true, this
1949 constraint is for a template argument, and takes precedence
1950 over explicitly-specified visibility on the template. */
1951
1952 static void
1953 constrain_visibility (tree decl, int visibility, bool tmpl)
1954 {
1955 if (visibility == VISIBILITY_ANON)
1956 {
1957 /* extern "C" declarations aren't affected by the anonymous
1958 namespace. */
1959 if (!DECL_EXTERN_C_P (decl))
1960 {
1961 TREE_PUBLIC (decl) = 0;
1962 DECL_WEAK (decl) = 0;
1963 DECL_COMMON (decl) = 0;
1964 DECL_COMDAT_GROUP (decl) = NULL_TREE;
1965 DECL_INTERFACE_KNOWN (decl) = 1;
1966 if (DECL_LANG_SPECIFIC (decl))
1967 DECL_NOT_REALLY_EXTERN (decl) = 1;
1968 }
1969 }
1970 else if (visibility > DECL_VISIBILITY (decl)
1971 && (tmpl || !DECL_VISIBILITY_SPECIFIED (decl)))
1972 {
1973 DECL_VISIBILITY (decl) = (enum symbol_visibility) visibility;
1974 /* This visibility was not specified. */
1975 DECL_VISIBILITY_SPECIFIED (decl) = false;
1976 }
1977 }
1978
1979 /* Constrain the visibility of DECL based on the visibility of its template
1980 arguments. */
1981
1982 static void
1983 constrain_visibility_for_template (tree decl, tree targs)
1984 {
1985 /* If this is a template instantiation, check the innermost
1986 template args for visibility constraints. The outer template
1987 args are covered by the class check. */
1988 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1989 int i;
1990 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1991 {
1992 int vis = 0;
1993
1994 tree arg = TREE_VEC_ELT (args, i-1);
1995 if (TYPE_P (arg))
1996 vis = type_visibility (arg);
1997 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1998 {
1999 STRIP_NOPS (arg);
2000 if (TREE_CODE (arg) == ADDR_EXPR)
2001 arg = TREE_OPERAND (arg, 0);
2002 if (TREE_CODE (arg) == VAR_DECL
2003 || TREE_CODE (arg) == FUNCTION_DECL)
2004 {
2005 if (! TREE_PUBLIC (arg))
2006 vis = VISIBILITY_ANON;
2007 else
2008 vis = DECL_VISIBILITY (arg);
2009 }
2010 }
2011 if (vis)
2012 constrain_visibility (decl, vis, true);
2013 }
2014 }
2015
2016 /* Like c_determine_visibility, but with additional C++-specific
2017 behavior.
2018
2019 Function-scope entities can rely on the function's visibility because
2020 it is set in start_preparsed_function.
2021
2022 Class-scope entities cannot rely on the class's visibility until the end
2023 of the enclosing class definition.
2024
2025 Note that because namespaces have multiple independent definitions,
2026 namespace visibility is handled elsewhere using the #pragma visibility
2027 machinery rather than by decorating the namespace declaration.
2028
2029 The goal is for constraints from the type to give a diagnostic, and
2030 other constraints to be applied silently. */
2031
2032 void
2033 determine_visibility (tree decl)
2034 {
2035 tree class_type = NULL_TREE;
2036 bool use_template;
2037 bool orig_visibility_specified;
2038 enum symbol_visibility orig_visibility;
2039
2040 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
2041
2042 /* Only relevant for names with external linkage. */
2043 if (!TREE_PUBLIC (decl))
2044 return;
2045
2046 /* Cloned constructors and destructors get the same visibility as
2047 the underlying function. That should be set up in
2048 maybe_clone_body. */
2049 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
2050
2051 orig_visibility_specified = DECL_VISIBILITY_SPECIFIED (decl);
2052 orig_visibility = DECL_VISIBILITY (decl);
2053
2054 if (TREE_CODE (decl) == TYPE_DECL)
2055 {
2056 if (CLASS_TYPE_P (TREE_TYPE (decl)))
2057 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
2058 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
2059 use_template = 1;
2060 else
2061 use_template = 0;
2062 }
2063 else if (DECL_LANG_SPECIFIC (decl))
2064 use_template = DECL_USE_TEMPLATE (decl);
2065 else
2066 use_template = 0;
2067
2068 /* If DECL is a member of a class, visibility specifiers on the
2069 class can influence the visibility of the DECL. */
2070 if (DECL_CLASS_SCOPE_P (decl))
2071 class_type = DECL_CONTEXT (decl);
2072 else
2073 {
2074 /* Not a class member. */
2075
2076 /* Virtual tables have DECL_CONTEXT set to their associated class,
2077 so they are automatically handled above. */
2078 gcc_assert (TREE_CODE (decl) != VAR_DECL
2079 || !DECL_VTABLE_OR_VTT_P (decl));
2080
2081 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
2082 {
2083 /* Local statics and classes get the visibility of their
2084 containing function by default, except that
2085 -fvisibility-inlines-hidden doesn't affect them. */
2086 tree fn = DECL_CONTEXT (decl);
2087 if (DECL_VISIBILITY_SPECIFIED (fn))
2088 {
2089 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
2090 DECL_VISIBILITY_SPECIFIED (decl) =
2091 DECL_VISIBILITY_SPECIFIED (fn);
2092 }
2093 else
2094 {
2095 if (DECL_CLASS_SCOPE_P (fn))
2096 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
2097 else if (determine_hidden_inline (fn))
2098 {
2099 DECL_VISIBILITY (decl) = default_visibility;
2100 DECL_VISIBILITY_SPECIFIED (decl) =
2101 visibility_options.inpragma;
2102 }
2103 else
2104 {
2105 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
2106 DECL_VISIBILITY_SPECIFIED (decl) =
2107 DECL_VISIBILITY_SPECIFIED (fn);
2108 }
2109 }
2110
2111 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
2112 but have no TEMPLATE_INFO, so don't try to check it. */
2113 use_template = 0;
2114 }
2115 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
2116 && flag_visibility_ms_compat)
2117 {
2118 /* Under -fvisibility-ms-compat, types are visible by default,
2119 even though their contents aren't. */
2120 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
2121 int underlying_vis = type_visibility (underlying_type);
2122 if (underlying_vis == VISIBILITY_ANON
2123 || (CLASS_TYPE_P (underlying_type)
2124 && CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type)))
2125 constrain_visibility (decl, underlying_vis, false);
2126 else
2127 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
2128 }
2129 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2130 {
2131 /* tinfo visibility is based on the type it's for. */
2132 constrain_visibility
2133 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))), false);
2134
2135 /* Give the target a chance to override the visibility associated
2136 with DECL. */
2137 if (TREE_PUBLIC (decl)
2138 && !DECL_REALLY_EXTERN (decl)
2139 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
2140 && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
2141 targetm.cxx.determine_class_data_visibility (decl);
2142 }
2143 else if (use_template)
2144 /* Template instantiations and specializations get visibility based
2145 on their template unless they override it with an attribute. */;
2146 else if (! DECL_VISIBILITY_SPECIFIED (decl))
2147 {
2148 if (determine_hidden_inline (decl))
2149 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2150 else
2151 {
2152 /* Set default visibility to whatever the user supplied with
2153 #pragma GCC visibility or a namespace visibility attribute. */
2154 DECL_VISIBILITY (decl) = default_visibility;
2155 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2156 }
2157 }
2158 }
2159
2160 if (use_template)
2161 {
2162 /* If the specialization doesn't specify visibility, use the
2163 visibility from the template. */
2164 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2165 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2166 : DECL_TEMPLATE_INFO (decl));
2167 tree args = TI_ARGS (tinfo);
2168 tree attribs = (TREE_CODE (decl) == TYPE_DECL
2169 ? TYPE_ATTRIBUTES (TREE_TYPE (decl))
2170 : DECL_ATTRIBUTES (decl));
2171
2172 if (args != error_mark_node)
2173 {
2174 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2175
2176 if (!DECL_VISIBILITY_SPECIFIED (decl))
2177 {
2178 if (!DECL_VISIBILITY_SPECIFIED (pattern)
2179 && determine_hidden_inline (decl))
2180 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2181 else
2182 {
2183 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2184 DECL_VISIBILITY_SPECIFIED (decl)
2185 = DECL_VISIBILITY_SPECIFIED (pattern);
2186 }
2187 }
2188
2189 if (args
2190 /* Template argument visibility outweighs #pragma or namespace
2191 visibility, but not an explicit attribute. */
2192 && !lookup_attribute ("visibility", attribs))
2193 {
2194 int depth = TMPL_ARGS_DEPTH (args);
2195 int class_depth = 0;
2196 if (class_type && CLASSTYPE_TEMPLATE_INFO (class_type))
2197 class_depth = TMPL_ARGS_DEPTH (CLASSTYPE_TI_ARGS (class_type));
2198 if (DECL_VISIBILITY_SPECIFIED (decl))
2199 {
2200 /* A class template member with explicit visibility
2201 overrides the class visibility, so we need to apply
2202 all the levels of template args directly. */
2203 int i;
2204 for (i = 1; i <= depth; ++i)
2205 {
2206 tree lev = TMPL_ARGS_LEVEL (args, i);
2207 constrain_visibility_for_template (decl, lev);
2208 }
2209 }
2210 else if (depth > class_depth)
2211 /* Limit visibility based on its template arguments. */
2212 constrain_visibility_for_template (decl, args);
2213 }
2214 }
2215 }
2216
2217 if (class_type)
2218 determine_visibility_from_class (decl, class_type);
2219
2220 if (decl_anon_ns_mem_p (decl))
2221 /* Names in an anonymous namespace get internal linkage.
2222 This might change once we implement export. */
2223 constrain_visibility (decl, VISIBILITY_ANON, false);
2224 else if (TREE_CODE (decl) != TYPE_DECL)
2225 {
2226 /* Propagate anonymity from type to decl. */
2227 int tvis = type_visibility (TREE_TYPE (decl));
2228 if (tvis == VISIBILITY_ANON
2229 || ! DECL_VISIBILITY_SPECIFIED (decl))
2230 constrain_visibility (decl, tvis, false);
2231 }
2232 else if (no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/true))
2233 /* DR 757: A type without linkage shall not be used as the type of a
2234 variable or function with linkage, unless
2235 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
2236 o the variable or function is not used (3.2 [basic.def.odr]) or is
2237 defined in the same translation unit.
2238
2239 Since non-extern "C" decls need to be defined in the same
2240 translation unit, we can make the type internal. */
2241 constrain_visibility (decl, VISIBILITY_ANON, false);
2242
2243 /* If visibility changed and DECL already has DECL_RTL, ensure
2244 symbol flags are updated. */
2245 if ((DECL_VISIBILITY (decl) != orig_visibility
2246 || DECL_VISIBILITY_SPECIFIED (decl) != orig_visibility_specified)
2247 && ((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
2248 || TREE_CODE (decl) == FUNCTION_DECL)
2249 && DECL_RTL_SET_P (decl))
2250 make_decl_rtl (decl);
2251 }
2252
2253 /* By default, static data members and function members receive
2254 the visibility of their containing class. */
2255
2256 static void
2257 determine_visibility_from_class (tree decl, tree class_type)
2258 {
2259 if (DECL_VISIBILITY_SPECIFIED (decl))
2260 return;
2261
2262 if (determine_hidden_inline (decl))
2263 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2264 else
2265 {
2266 /* Default to the class visibility. */
2267 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2268 DECL_VISIBILITY_SPECIFIED (decl)
2269 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2270 }
2271
2272 /* Give the target a chance to override the visibility associated
2273 with DECL. */
2274 if (TREE_CODE (decl) == VAR_DECL
2275 && (DECL_TINFO_P (decl)
2276 || (DECL_VTABLE_OR_VTT_P (decl)
2277 /* Construction virtual tables are not exported because
2278 they cannot be referred to from other object files;
2279 their name is not standardized by the ABI. */
2280 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2281 && TREE_PUBLIC (decl)
2282 && !DECL_REALLY_EXTERN (decl)
2283 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2284 targetm.cxx.determine_class_data_visibility (decl);
2285 }
2286
2287 /* Returns true iff DECL is an inline that should get hidden visibility
2288 because of -fvisibility-inlines-hidden. */
2289
2290 static bool
2291 determine_hidden_inline (tree decl)
2292 {
2293 return (visibility_options.inlines_hidden
2294 /* Don't do this for inline templates; specializations might not be
2295 inline, and we don't want them to inherit the hidden
2296 visibility. We'll set it here for all inline instantiations. */
2297 && !processing_template_decl
2298 && TREE_CODE (decl) == FUNCTION_DECL
2299 && DECL_DECLARED_INLINE_P (decl)
2300 && (! DECL_LANG_SPECIFIC (decl)
2301 || ! DECL_EXPLICIT_INSTANTIATION (decl)));
2302 }
2303
2304 /* Constrain the visibility of a class TYPE based on the visibility of its
2305 field types. Warn if any fields require lesser visibility. */
2306
2307 void
2308 constrain_class_visibility (tree type)
2309 {
2310 tree binfo;
2311 tree t;
2312 int i;
2313
2314 int vis = type_visibility (type);
2315
2316 if (vis == VISIBILITY_ANON
2317 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2318 return;
2319
2320 /* Don't warn about visibility if the class has explicit visibility. */
2321 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2322 vis = VISIBILITY_INTERNAL;
2323
2324 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
2325 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2326 {
2327 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2328 int subvis = type_visibility (ftype);
2329
2330 if (subvis == VISIBILITY_ANON)
2331 {
2332 if (!in_main_input_context ())
2333 warning (0, "\
2334 %qT has a field %qD whose type uses the anonymous namespace",
2335 type, t);
2336 }
2337 else if (MAYBE_CLASS_TYPE_P (ftype)
2338 && vis < VISIBILITY_HIDDEN
2339 && subvis >= VISIBILITY_HIDDEN)
2340 warning (OPT_Wattributes, "\
2341 %qT declared with greater visibility than the type of its field %qD",
2342 type, t);
2343 }
2344
2345 binfo = TYPE_BINFO (type);
2346 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2347 {
2348 int subvis = type_visibility (TREE_TYPE (t));
2349
2350 if (subvis == VISIBILITY_ANON)
2351 {
2352 if (!in_main_input_context())
2353 warning (0, "\
2354 %qT has a base %qT whose type uses the anonymous namespace",
2355 type, TREE_TYPE (t));
2356 }
2357 else if (vis < VISIBILITY_HIDDEN
2358 && subvis >= VISIBILITY_HIDDEN)
2359 warning (OPT_Wattributes, "\
2360 %qT declared with greater visibility than its base %qT",
2361 type, TREE_TYPE (t));
2362 }
2363 }
2364
2365 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2366 for DECL has not already been determined, do so now by setting
2367 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2368 function is called entities with vague linkage whose definitions
2369 are available must have TREE_PUBLIC set.
2370
2371 If this function decides to place DECL in COMDAT, it will set
2372 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2373 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2374 callers defer that decision until it is clear that DECL is actually
2375 required. */
2376
2377 void
2378 import_export_decl (tree decl)
2379 {
2380 int emit_p;
2381 bool comdat_p;
2382 bool import_p;
2383 tree class_type = NULL_TREE;
2384
2385 if (DECL_INTERFACE_KNOWN (decl))
2386 return;
2387
2388 /* We cannot determine what linkage to give to an entity with vague
2389 linkage until the end of the file. For example, a virtual table
2390 for a class will be defined if and only if the key method is
2391 defined in this translation unit. As a further example, consider
2392 that when compiling a translation unit that uses PCH file with
2393 "-frepo" it would be incorrect to make decisions about what
2394 entities to emit when building the PCH; those decisions must be
2395 delayed until the repository information has been processed. */
2396 gcc_assert (at_eof);
2397 /* Object file linkage for explicit instantiations is handled in
2398 mark_decl_instantiated. For static variables in functions with
2399 vague linkage, maybe_commonize_var is used.
2400
2401 Therefore, the only declarations that should be provided to this
2402 function are those with external linkage that are:
2403
2404 * implicit instantiations of function templates
2405
2406 * inline function
2407
2408 * implicit instantiations of static data members of class
2409 templates
2410
2411 * virtual tables
2412
2413 * typeinfo objects
2414
2415 Furthermore, all entities that reach this point must have a
2416 definition available in this translation unit.
2417
2418 The following assertions check these conditions. */
2419 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2420 || TREE_CODE (decl) == VAR_DECL);
2421 /* Any code that creates entities with TREE_PUBLIC cleared should
2422 also set DECL_INTERFACE_KNOWN. */
2423 gcc_assert (TREE_PUBLIC (decl));
2424 if (TREE_CODE (decl) == FUNCTION_DECL)
2425 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2426 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2427 || DECL_DECLARED_INLINE_P (decl));
2428 else
2429 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2430 || DECL_VTABLE_OR_VTT_P (decl)
2431 || DECL_TINFO_P (decl));
2432 /* Check that a definition of DECL is available in this translation
2433 unit. */
2434 gcc_assert (!DECL_REALLY_EXTERN (decl));
2435
2436 /* Assume that DECL will not have COMDAT linkage. */
2437 comdat_p = false;
2438 /* Assume that DECL will not be imported into this translation
2439 unit. */
2440 import_p = false;
2441
2442 /* See if the repository tells us whether or not to emit DECL in
2443 this translation unit. */
2444 emit_p = repo_emit_p (decl);
2445 if (emit_p == 0)
2446 import_p = true;
2447 else if (emit_p == 1)
2448 {
2449 /* The repository indicates that this entity should be defined
2450 here. Make sure the back end honors that request. */
2451 if (TREE_CODE (decl) == VAR_DECL)
2452 mark_needed (decl);
2453 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2454 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2455 {
2456 tree clone;
2457 FOR_EACH_CLONE (clone, decl)
2458 mark_needed (clone);
2459 }
2460 else
2461 mark_needed (decl);
2462 /* Output the definition as an ordinary strong definition. */
2463 DECL_EXTERNAL (decl) = 0;
2464 DECL_INTERFACE_KNOWN (decl) = 1;
2465 return;
2466 }
2467
2468 if (import_p)
2469 /* We have already decided what to do with this DECL; there is no
2470 need to check anything further. */
2471 ;
2472 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2473 {
2474 class_type = DECL_CONTEXT (decl);
2475 import_export_class (class_type);
2476 if (TYPE_FOR_JAVA (class_type))
2477 import_p = true;
2478 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2479 && CLASSTYPE_INTERFACE_ONLY (class_type))
2480 import_p = true;
2481 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2482 && !CLASSTYPE_USE_TEMPLATE (class_type)
2483 && CLASSTYPE_KEY_METHOD (class_type)
2484 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2485 /* The ABI requires that all virtual tables be emitted with
2486 COMDAT linkage. However, on systems where COMDAT symbols
2487 don't show up in the table of contents for a static
2488 archive, or on systems without weak symbols (where we
2489 approximate COMDAT linkage by using internal linkage), the
2490 linker will report errors about undefined symbols because
2491 it will not see the virtual table definition. Therefore,
2492 in the case that we know that the virtual table will be
2493 emitted in only one translation unit, we make the virtual
2494 table an ordinary definition with external linkage. */
2495 DECL_EXTERNAL (decl) = 0;
2496 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2497 {
2498 /* CLASS_TYPE is being exported from this translation unit,
2499 so DECL should be defined here. */
2500 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2501 /* If a class is declared in a header with the "extern
2502 template" extension, then it will not be instantiated,
2503 even in translation units that would normally require
2504 it. Often such classes are explicitly instantiated in
2505 one translation unit. Therefore, the explicit
2506 instantiation must be made visible to other translation
2507 units. */
2508 DECL_EXTERNAL (decl) = 0;
2509 else
2510 {
2511 /* The generic C++ ABI says that class data is always
2512 COMDAT, even if there is a key function. Some
2513 variants (e.g., the ARM EABI) says that class data
2514 only has COMDAT linkage if the class data might be
2515 emitted in more than one translation unit. When the
2516 key method can be inline and is inline, we still have
2517 to arrange for comdat even though
2518 class_data_always_comdat is false. */
2519 if (!CLASSTYPE_KEY_METHOD (class_type)
2520 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2521 || targetm.cxx.class_data_always_comdat ())
2522 {
2523 /* The ABI requires COMDAT linkage. Normally, we
2524 only emit COMDAT things when they are needed;
2525 make sure that we realize that this entity is
2526 indeed needed. */
2527 comdat_p = true;
2528 mark_needed (decl);
2529 }
2530 }
2531 }
2532 else if (!flag_implicit_templates
2533 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2534 import_p = true;
2535 else
2536 comdat_p = true;
2537 }
2538 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2539 {
2540 tree type = TREE_TYPE (DECL_NAME (decl));
2541 if (CLASS_TYPE_P (type))
2542 {
2543 class_type = type;
2544 import_export_class (type);
2545 if (CLASSTYPE_INTERFACE_KNOWN (type)
2546 && TYPE_POLYMORPHIC_P (type)
2547 && CLASSTYPE_INTERFACE_ONLY (type)
2548 /* If -fno-rtti was specified, then we cannot be sure
2549 that RTTI information will be emitted with the
2550 virtual table of the class, so we must emit it
2551 wherever it is used. */
2552 && flag_rtti)
2553 import_p = true;
2554 else
2555 {
2556 if (CLASSTYPE_INTERFACE_KNOWN (type)
2557 && !CLASSTYPE_INTERFACE_ONLY (type))
2558 {
2559 comdat_p = (targetm.cxx.class_data_always_comdat ()
2560 || (CLASSTYPE_KEY_METHOD (type)
2561 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2562 mark_needed (decl);
2563 if (!flag_weak)
2564 {
2565 comdat_p = false;
2566 DECL_EXTERNAL (decl) = 0;
2567 }
2568 }
2569 else
2570 comdat_p = true;
2571 }
2572 }
2573 else
2574 comdat_p = true;
2575 }
2576 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2577 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2578 {
2579 /* DECL is an implicit instantiation of a function or static
2580 data member. */
2581 if ((flag_implicit_templates
2582 && !flag_use_repository)
2583 || (flag_implicit_inline_templates
2584 && TREE_CODE (decl) == FUNCTION_DECL
2585 && DECL_DECLARED_INLINE_P (decl)))
2586 comdat_p = true;
2587 else
2588 /* If we are not implicitly generating templates, then mark
2589 this entity as undefined in this translation unit. */
2590 import_p = true;
2591 }
2592 else if (DECL_FUNCTION_MEMBER_P (decl))
2593 {
2594 if (!DECL_DECLARED_INLINE_P (decl))
2595 {
2596 tree ctype = DECL_CONTEXT (decl);
2597 import_export_class (ctype);
2598 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2599 {
2600 DECL_NOT_REALLY_EXTERN (decl)
2601 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2602 || (DECL_DECLARED_INLINE_P (decl)
2603 && ! flag_implement_inlines
2604 && !DECL_VINDEX (decl)));
2605
2606 if (!DECL_NOT_REALLY_EXTERN (decl))
2607 DECL_EXTERNAL (decl) = 1;
2608
2609 /* Always make artificials weak. */
2610 if (DECL_ARTIFICIAL (decl) && flag_weak)
2611 comdat_p = true;
2612 else
2613 maybe_make_one_only (decl);
2614 }
2615 }
2616 else
2617 comdat_p = true;
2618 }
2619 else
2620 comdat_p = true;
2621
2622 if (import_p)
2623 {
2624 /* If we are importing DECL into this translation unit, mark is
2625 an undefined here. */
2626 DECL_EXTERNAL (decl) = 1;
2627 DECL_NOT_REALLY_EXTERN (decl) = 0;
2628 }
2629 else if (comdat_p)
2630 {
2631 /* If we decided to put DECL in COMDAT, mark it accordingly at
2632 this point. */
2633 comdat_linkage (decl);
2634 }
2635
2636 DECL_INTERFACE_KNOWN (decl) = 1;
2637 }
2638
2639 /* Return an expression that performs the destruction of DECL, which
2640 must be a VAR_DECL whose type has a non-trivial destructor, or is
2641 an array whose (innermost) elements have a non-trivial destructor. */
2642
2643 tree
2644 build_cleanup (tree decl)
2645 {
2646 tree temp;
2647 tree type = TREE_TYPE (decl);
2648
2649 /* This function should only be called for declarations that really
2650 require cleanups. */
2651 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2652
2653 /* Treat all objects with destructors as used; the destructor may do
2654 something substantive. */
2655 mark_used (decl);
2656
2657 if (TREE_CODE (type) == ARRAY_TYPE)
2658 temp = decl;
2659 else
2660 temp = build_address (decl);
2661 temp = build_delete (TREE_TYPE (temp), temp,
2662 sfk_complete_destructor,
2663 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0,
2664 tf_warning_or_error);
2665 return temp;
2666 }
2667
2668 /* Returns the initialization guard variable for the variable DECL,
2669 which has static storage duration. */
2670
2671 tree
2672 get_guard (tree decl)
2673 {
2674 tree sname;
2675 tree guard;
2676
2677 sname = mangle_guard_variable (decl);
2678 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2679 if (! guard)
2680 {
2681 tree guard_type;
2682
2683 /* We use a type that is big enough to contain a mutex as well
2684 as an integer counter. */
2685 guard_type = targetm.cxx.guard_type ();
2686 guard = build_decl (DECL_SOURCE_LOCATION (decl),
2687 VAR_DECL, sname, guard_type);
2688
2689 /* The guard should have the same linkage as what it guards. */
2690 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2691 TREE_STATIC (guard) = TREE_STATIC (decl);
2692 DECL_COMMON (guard) = DECL_COMMON (decl);
2693 DECL_COMDAT (guard) = DECL_COMDAT (decl);
2694 if (DECL_ONE_ONLY (decl))
2695 make_decl_one_only (guard, cxx_comdat_group (guard));
2696 if (TREE_PUBLIC (decl))
2697 DECL_WEAK (guard) = DECL_WEAK (decl);
2698 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2699 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2700
2701 DECL_ARTIFICIAL (guard) = 1;
2702 DECL_IGNORED_P (guard) = 1;
2703 TREE_USED (guard) = 1;
2704 pushdecl_top_level_and_finish (guard, NULL_TREE);
2705 }
2706 return guard;
2707 }
2708
2709 /* Return those bits of the GUARD variable that should be set when the
2710 guarded entity is actually initialized. */
2711
2712 static tree
2713 get_guard_bits (tree guard)
2714 {
2715 if (!targetm.cxx.guard_mask_bit ())
2716 {
2717 /* We only set the first byte of the guard, in order to leave room
2718 for a mutex in the high-order bits. */
2719 guard = build1 (ADDR_EXPR,
2720 build_pointer_type (TREE_TYPE (guard)),
2721 guard);
2722 guard = build1 (NOP_EXPR,
2723 build_pointer_type (char_type_node),
2724 guard);
2725 guard = build1 (INDIRECT_REF, char_type_node, guard);
2726 }
2727
2728 return guard;
2729 }
2730
2731 /* Return an expression which determines whether or not the GUARD
2732 variable has already been initialized. */
2733
2734 tree
2735 get_guard_cond (tree guard)
2736 {
2737 tree guard_value;
2738
2739 /* Check to see if the GUARD is zero. */
2740 guard = get_guard_bits (guard);
2741
2742 /* Mask off all but the low bit. */
2743 if (targetm.cxx.guard_mask_bit ())
2744 {
2745 guard_value = integer_one_node;
2746 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2747 guard_value = convert (TREE_TYPE (guard), guard_value);
2748 guard = cp_build_binary_op (input_location,
2749 BIT_AND_EXPR, guard, guard_value,
2750 tf_warning_or_error);
2751 }
2752
2753 guard_value = integer_zero_node;
2754 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2755 guard_value = convert (TREE_TYPE (guard), guard_value);
2756 return cp_build_binary_op (input_location,
2757 EQ_EXPR, guard, guard_value,
2758 tf_warning_or_error);
2759 }
2760
2761 /* Return an expression which sets the GUARD variable, indicating that
2762 the variable being guarded has been initialized. */
2763
2764 tree
2765 set_guard (tree guard)
2766 {
2767 tree guard_init;
2768
2769 /* Set the GUARD to one. */
2770 guard = get_guard_bits (guard);
2771 guard_init = integer_one_node;
2772 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2773 guard_init = convert (TREE_TYPE (guard), guard_init);
2774 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2775 tf_warning_or_error);
2776 }
2777
2778 /* Start the process of running a particular set of global constructors
2779 or destructors. Subroutine of do_[cd]tors. */
2780
2781 static tree
2782 start_objects (int method_type, int initp)
2783 {
2784 tree body;
2785 tree fndecl;
2786 char type[14];
2787
2788 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2789
2790 if (initp != DEFAULT_INIT_PRIORITY)
2791 {
2792 char joiner;
2793
2794 #ifdef JOINER
2795 joiner = JOINER;
2796 #else
2797 joiner = '_';
2798 #endif
2799
2800 sprintf (type, "sub_%c%c%.5u", method_type, joiner, initp);
2801 }
2802 else
2803 sprintf (type, "sub_%c", method_type);
2804
2805 fndecl = build_lang_decl (FUNCTION_DECL,
2806 get_file_function_name (type),
2807 build_function_type_list (void_type_node,
2808 NULL_TREE));
2809 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2810
2811 TREE_PUBLIC (current_function_decl) = 0;
2812
2813 /* Mark as artificial because it's not explicitly in the user's
2814 source code. */
2815 DECL_ARTIFICIAL (current_function_decl) = 1;
2816
2817 /* Mark this declaration as used to avoid spurious warnings. */
2818 TREE_USED (current_function_decl) = 1;
2819
2820 /* Mark this function as a global constructor or destructor. */
2821 if (method_type == 'I')
2822 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2823 else
2824 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2825
2826 body = begin_compound_stmt (BCS_FN_BODY);
2827
2828 return body;
2829 }
2830
2831 /* Finish the process of running a particular set of global constructors
2832 or destructors. Subroutine of do_[cd]tors. */
2833
2834 static void
2835 finish_objects (int method_type, int initp, tree body)
2836 {
2837 tree fn;
2838
2839 /* Finish up. */
2840 finish_compound_stmt (body);
2841 fn = finish_function (0);
2842
2843 if (method_type == 'I')
2844 {
2845 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2846 decl_init_priority_insert (fn, initp);
2847 }
2848 else
2849 {
2850 DECL_STATIC_DESTRUCTOR (fn) = 1;
2851 decl_fini_priority_insert (fn, initp);
2852 }
2853
2854 expand_or_defer_fn (fn);
2855 }
2856
2857 /* The names of the parameters to the function created to handle
2858 initializations and destructions for objects with static storage
2859 duration. */
2860 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2861 #define PRIORITY_IDENTIFIER "__priority"
2862
2863 /* The name of the function we create to handle initializations and
2864 destructions for objects with static storage duration. */
2865 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2866
2867 /* The declaration for the __INITIALIZE_P argument. */
2868 static GTY(()) tree initialize_p_decl;
2869
2870 /* The declaration for the __PRIORITY argument. */
2871 static GTY(()) tree priority_decl;
2872
2873 /* The declaration for the static storage duration function. */
2874 static GTY(()) tree ssdf_decl;
2875
2876 /* All the static storage duration functions created in this
2877 translation unit. */
2878 static GTY(()) VEC(tree,gc) *ssdf_decls;
2879
2880 /* A map from priority levels to information about that priority
2881 level. There may be many such levels, so efficient lookup is
2882 important. */
2883 static splay_tree priority_info_map;
2884
2885 /* Begins the generation of the function that will handle all
2886 initialization and destruction of objects with static storage
2887 duration. The function generated takes two parameters of type
2888 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2889 nonzero, it performs initializations. Otherwise, it performs
2890 destructions. It only performs those initializations or
2891 destructions with the indicated __PRIORITY. The generated function
2892 returns no value.
2893
2894 It is assumed that this function will only be called once per
2895 translation unit. */
2896
2897 static tree
2898 start_static_storage_duration_function (unsigned count)
2899 {
2900 tree type;
2901 tree body;
2902 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2903
2904 /* Create the identifier for this function. It will be of the form
2905 SSDF_IDENTIFIER_<number>. */
2906 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2907
2908 type = build_function_type_list (void_type_node,
2909 integer_type_node, integer_type_node,
2910 NULL_TREE);
2911
2912 /* Create the FUNCTION_DECL itself. */
2913 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2914 get_identifier (id),
2915 type);
2916 TREE_PUBLIC (ssdf_decl) = 0;
2917 DECL_ARTIFICIAL (ssdf_decl) = 1;
2918
2919 /* Put this function in the list of functions to be called from the
2920 static constructors and destructors. */
2921 if (!ssdf_decls)
2922 {
2923 ssdf_decls = VEC_alloc (tree, gc, 32);
2924
2925 /* Take this opportunity to initialize the map from priority
2926 numbers to information about that priority level. */
2927 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2928 /*delete_key_fn=*/0,
2929 /*delete_value_fn=*/
2930 (splay_tree_delete_value_fn) &free);
2931
2932 /* We always need to generate functions for the
2933 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2934 priorities later, we'll be sure to find the
2935 DEFAULT_INIT_PRIORITY. */
2936 get_priority_info (DEFAULT_INIT_PRIORITY);
2937 }
2938
2939 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2940
2941 /* Create the argument list. */
2942 initialize_p_decl = cp_build_parm_decl
2943 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2944 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2945 TREE_USED (initialize_p_decl) = 1;
2946 priority_decl = cp_build_parm_decl
2947 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2948 DECL_CONTEXT (priority_decl) = ssdf_decl;
2949 TREE_USED (priority_decl) = 1;
2950
2951 DECL_CHAIN (initialize_p_decl) = priority_decl;
2952 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2953
2954 /* Put the function in the global scope. */
2955 pushdecl (ssdf_decl);
2956
2957 /* Start the function itself. This is equivalent to declaring the
2958 function as:
2959
2960 static void __ssdf (int __initialize_p, init __priority_p);
2961
2962 It is static because we only need to call this function from the
2963 various constructor and destructor functions for this module. */
2964 start_preparsed_function (ssdf_decl,
2965 /*attrs=*/NULL_TREE,
2966 SF_PRE_PARSED);
2967
2968 /* Set up the scope of the outermost block in the function. */
2969 body = begin_compound_stmt (BCS_FN_BODY);
2970
2971 return body;
2972 }
2973
2974 /* Finish the generation of the function which performs initialization
2975 and destruction of objects with static storage duration. After
2976 this point, no more such objects can be created. */
2977
2978 static void
2979 finish_static_storage_duration_function (tree body)
2980 {
2981 /* Close out the function. */
2982 finish_compound_stmt (body);
2983 expand_or_defer_fn (finish_function (0));
2984 }
2985
2986 /* Return the information about the indicated PRIORITY level. If no
2987 code to handle this level has yet been generated, generate the
2988 appropriate prologue. */
2989
2990 static priority_info
2991 get_priority_info (int priority)
2992 {
2993 priority_info pi;
2994 splay_tree_node n;
2995
2996 n = splay_tree_lookup (priority_info_map,
2997 (splay_tree_key) priority);
2998 if (!n)
2999 {
3000 /* Create a new priority information structure, and insert it
3001 into the map. */
3002 pi = XNEW (struct priority_info_s);
3003 pi->initializations_p = 0;
3004 pi->destructions_p = 0;
3005 splay_tree_insert (priority_info_map,
3006 (splay_tree_key) priority,
3007 (splay_tree_value) pi);
3008 }
3009 else
3010 pi = (priority_info) n->value;
3011
3012 return pi;
3013 }
3014
3015 /* The effective initialization priority of a DECL. */
3016
3017 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
3018 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
3019 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
3020
3021 /* Whether a DECL needs a guard to protect it against multiple
3022 initialization. */
3023
3024 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
3025 || DECL_ONE_ONLY (decl) \
3026 || DECL_WEAK (decl)))
3027
3028 /* Called from one_static_initialization_or_destruction(),
3029 via walk_tree.
3030 Walks the initializer list of a global variable and looks for
3031 temporary variables (DECL_NAME() == NULL and DECL_ARTIFICIAL != 0)
3032 and that have their DECL_CONTEXT() == NULL.
3033 For each such temporary variable, set their DECL_CONTEXT() to
3034 the current function. This is necessary because otherwise
3035 some optimizers (enabled by -O2 -fprofile-arcs) might crash
3036 when trying to refer to a temporary variable that does not have
3037 it's DECL_CONTECT() properly set. */
3038 static tree
3039 fix_temporary_vars_context_r (tree *node,
3040 int *unused ATTRIBUTE_UNUSED,
3041 void *unused1 ATTRIBUTE_UNUSED)
3042 {
3043 gcc_assert (current_function_decl);
3044
3045 if (TREE_CODE (*node) == BIND_EXPR)
3046 {
3047 tree var;
3048
3049 for (var = BIND_EXPR_VARS (*node); var; var = DECL_CHAIN (var))
3050 if (TREE_CODE (var) == VAR_DECL
3051 && !DECL_NAME (var)
3052 && DECL_ARTIFICIAL (var)
3053 && !DECL_CONTEXT (var))
3054 DECL_CONTEXT (var) = current_function_decl;
3055 }
3056
3057 return NULL_TREE;
3058 }
3059
3060 /* Set up to handle the initialization or destruction of DECL. If
3061 INITP is nonzero, we are initializing the variable. Otherwise, we
3062 are destroying it. */
3063
3064 static void
3065 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
3066 {
3067 tree guard_if_stmt = NULL_TREE;
3068 tree guard;
3069
3070 /* If we are supposed to destruct and there's a trivial destructor,
3071 nothing has to be done. */
3072 if (!initp
3073 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3074 return;
3075
3076 /* Trick the compiler into thinking we are at the file and line
3077 where DECL was declared so that error-messages make sense, and so
3078 that the debugger will show somewhat sensible file and line
3079 information. */
3080 input_location = DECL_SOURCE_LOCATION (decl);
3081
3082 /* Make sure temporary variables in the initialiser all have
3083 their DECL_CONTEXT() set to a value different from NULL_TREE.
3084 This can happen when global variables initialisers are built.
3085 In that case, the DECL_CONTEXT() of the global variables _AND_ of all
3086 the temporary variables that might have been generated in the
3087 accompagning initialisers is NULL_TREE, meaning the variables have been
3088 declared in the global namespace.
3089 What we want to do here is to fix that and make sure the DECL_CONTEXT()
3090 of the temporaries are set to the current function decl. */
3091 cp_walk_tree_without_duplicates (&init,
3092 fix_temporary_vars_context_r,
3093 NULL);
3094
3095 /* Because of:
3096
3097 [class.access.spec]
3098
3099 Access control for implicit calls to the constructors,
3100 the conversion functions, or the destructor called to
3101 create and destroy a static data member is performed as
3102 if these calls appeared in the scope of the member's
3103 class.
3104
3105 we pretend we are in a static member function of the class of
3106 which the DECL is a member. */
3107 if (member_p (decl))
3108 {
3109 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3110 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3111 }
3112
3113 /* Assume we don't need a guard. */
3114 guard = NULL_TREE;
3115 /* We need a guard if this is an object with external linkage that
3116 might be initialized in more than one place. (For example, a
3117 static data member of a template, when the data member requires
3118 construction.) */
3119 if (NEEDS_GUARD_P (decl))
3120 {
3121 tree guard_cond;
3122
3123 guard = get_guard (decl);
3124
3125 /* When using __cxa_atexit, we just check the GUARD as we would
3126 for a local static. */
3127 if (flag_use_cxa_atexit)
3128 {
3129 /* When using __cxa_atexit, we never try to destroy
3130 anything from a static destructor. */
3131 gcc_assert (initp);
3132 guard_cond = get_guard_cond (guard);
3133 }
3134 /* If we don't have __cxa_atexit, then we will be running
3135 destructors from .fini sections, or their equivalents. So,
3136 we need to know how many times we've tried to initialize this
3137 object. We do initializations only if the GUARD is zero,
3138 i.e., if we are the first to initialize the variable. We do
3139 destructions only if the GUARD is one, i.e., if we are the
3140 last to destroy the variable. */
3141 else if (initp)
3142 guard_cond
3143 = cp_build_binary_op (input_location,
3144 EQ_EXPR,
3145 cp_build_unary_op (PREINCREMENT_EXPR,
3146 guard,
3147 /*noconvert=*/1,
3148 tf_warning_or_error),
3149 integer_one_node,
3150 tf_warning_or_error);
3151 else
3152 guard_cond
3153 = cp_build_binary_op (input_location,
3154 EQ_EXPR,
3155 cp_build_unary_op (PREDECREMENT_EXPR,
3156 guard,
3157 /*noconvert=*/1,
3158 tf_warning_or_error),
3159 integer_zero_node,
3160 tf_warning_or_error);
3161
3162 guard_if_stmt = begin_if_stmt ();
3163 finish_if_stmt_cond (guard_cond, guard_if_stmt);
3164 }
3165
3166
3167 /* If we're using __cxa_atexit, we have not already set the GUARD,
3168 so we must do so now. */
3169 if (guard && initp && flag_use_cxa_atexit)
3170 finish_expr_stmt (set_guard (guard));
3171
3172 /* Perform the initialization or destruction. */
3173 if (initp)
3174 {
3175 if (init)
3176 finish_expr_stmt (init);
3177
3178 /* If we're using __cxa_atexit, register a function that calls the
3179 destructor for the object. */
3180 if (flag_use_cxa_atexit)
3181 finish_expr_stmt (register_dtor_fn (decl));
3182 }
3183 else
3184 finish_expr_stmt (build_cleanup (decl));
3185
3186 /* Finish the guard if-stmt, if necessary. */
3187 if (guard)
3188 {
3189 finish_then_clause (guard_if_stmt);
3190 finish_if_stmt (guard_if_stmt);
3191 }
3192
3193 /* Now that we're done with DECL we don't need to pretend to be a
3194 member of its class any longer. */
3195 DECL_CONTEXT (current_function_decl) = NULL_TREE;
3196 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3197 }
3198
3199 /* Generate code to do the initialization or destruction of the decls in VARS,
3200 a TREE_LIST of VAR_DECL with static storage duration.
3201 Whether initialization or destruction is performed is specified by INITP. */
3202
3203 static void
3204 do_static_initialization_or_destruction (tree vars, bool initp)
3205 {
3206 tree node, init_if_stmt, cond;
3207
3208 /* Build the outer if-stmt to check for initialization or destruction. */
3209 init_if_stmt = begin_if_stmt ();
3210 cond = initp ? integer_one_node : integer_zero_node;
3211 cond = cp_build_binary_op (input_location,
3212 EQ_EXPR,
3213 initialize_p_decl,
3214 cond,
3215 tf_warning_or_error);
3216 finish_if_stmt_cond (cond, init_if_stmt);
3217
3218 node = vars;
3219 do {
3220 tree decl = TREE_VALUE (node);
3221 tree priority_if_stmt;
3222 int priority;
3223 priority_info pi;
3224
3225 /* If we don't need a destructor, there's nothing to do. Avoid
3226 creating a possibly empty if-stmt. */
3227 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3228 {
3229 node = TREE_CHAIN (node);
3230 continue;
3231 }
3232
3233 /* Remember that we had an initialization or finalization at this
3234 priority. */
3235 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
3236 pi = get_priority_info (priority);
3237 if (initp)
3238 pi->initializations_p = 1;
3239 else
3240 pi->destructions_p = 1;
3241
3242 /* Conditionalize this initialization on being in the right priority
3243 and being initializing/finalizing appropriately. */
3244 priority_if_stmt = begin_if_stmt ();
3245 cond = cp_build_binary_op (input_location,
3246 EQ_EXPR,
3247 priority_decl,
3248 build_int_cst (NULL_TREE, priority),
3249 tf_warning_or_error);
3250 finish_if_stmt_cond (cond, priority_if_stmt);
3251
3252 /* Process initializers with same priority. */
3253 for (; node
3254 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
3255 node = TREE_CHAIN (node))
3256 /* Do one initialization or destruction. */
3257 one_static_initialization_or_destruction (TREE_VALUE (node),
3258 TREE_PURPOSE (node), initp);
3259
3260 /* Finish up the priority if-stmt body. */
3261 finish_then_clause (priority_if_stmt);
3262 finish_if_stmt (priority_if_stmt);
3263
3264 } while (node);
3265
3266 /* Finish up the init/destruct if-stmt body. */
3267 finish_then_clause (init_if_stmt);
3268 finish_if_stmt (init_if_stmt);
3269 }
3270
3271 /* VARS is a list of variables with static storage duration which may
3272 need initialization and/or finalization. Remove those variables
3273 that don't really need to be initialized or finalized, and return
3274 the resulting list. The order in which the variables appear in
3275 VARS is in reverse order of the order in which they should actually
3276 be initialized. The list we return is in the unreversed order;
3277 i.e., the first variable should be initialized first. */
3278
3279 static tree
3280 prune_vars_needing_no_initialization (tree *vars)
3281 {
3282 tree *var = vars;
3283 tree result = NULL_TREE;
3284
3285 while (*var)
3286 {
3287 tree t = *var;
3288 tree decl = TREE_VALUE (t);
3289 tree init = TREE_PURPOSE (t);
3290
3291 /* Deal gracefully with error. */
3292 if (decl == error_mark_node)
3293 {
3294 var = &TREE_CHAIN (t);
3295 continue;
3296 }
3297
3298 /* The only things that can be initialized are variables. */
3299 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3300
3301 /* If this object is not defined, we don't need to do anything
3302 here. */
3303 if (DECL_EXTERNAL (decl))
3304 {
3305 var = &TREE_CHAIN (t);
3306 continue;
3307 }
3308
3309 /* Also, if the initializer already contains errors, we can bail
3310 out now. */
3311 if (init && TREE_CODE (init) == TREE_LIST
3312 && value_member (error_mark_node, init))
3313 {
3314 var = &TREE_CHAIN (t);
3315 continue;
3316 }
3317
3318 /* This variable is going to need initialization and/or
3319 finalization, so we add it to the list. */
3320 *var = TREE_CHAIN (t);
3321 TREE_CHAIN (t) = result;
3322 result = t;
3323 }
3324
3325 return result;
3326 }
3327
3328 /* Make sure we have told the back end about all the variables in
3329 VARS. */
3330
3331 static void
3332 write_out_vars (tree vars)
3333 {
3334 tree v;
3335
3336 for (v = vars; v; v = TREE_CHAIN (v))
3337 {
3338 tree var = TREE_VALUE (v);
3339 if (!var_finalized_p (var))
3340 {
3341 import_export_decl (var);
3342 rest_of_decl_compilation (var, 1, 1);
3343 }
3344 }
3345 }
3346
3347 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3348 (otherwise) that will initialize all global objects with static
3349 storage duration having the indicated PRIORITY. */
3350
3351 static void
3352 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3353 location_t *locus)
3354 {
3355 char function_key;
3356 tree fndecl;
3357 tree body;
3358 size_t i;
3359
3360 input_location = *locus;
3361 /* ??? */
3362 /* Was: locus->line++; */
3363
3364 /* We use `I' to indicate initialization and `D' to indicate
3365 destruction. */
3366 function_key = constructor_p ? 'I' : 'D';
3367
3368 /* We emit the function lazily, to avoid generating empty
3369 global constructors and destructors. */
3370 body = NULL_TREE;
3371
3372 /* For Objective-C++, we may need to initialize metadata found in this module.
3373 This must be done _before_ any other static initializations. */
3374 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3375 && constructor_p && objc_static_init_needed_p ())
3376 {
3377 body = start_objects (function_key, priority);
3378 objc_generate_static_init_call (NULL_TREE);
3379 }
3380
3381 /* Call the static storage duration function with appropriate
3382 arguments. */
3383 FOR_EACH_VEC_ELT (tree, ssdf_decls, i, fndecl)
3384 {
3385 /* Calls to pure or const functions will expand to nothing. */
3386 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3387 {
3388 tree call;
3389
3390 if (! body)
3391 body = start_objects (function_key, priority);
3392
3393 call = cp_build_function_call_nary (fndecl, tf_warning_or_error,
3394 build_int_cst (NULL_TREE,
3395 constructor_p),
3396 build_int_cst (NULL_TREE,
3397 priority),
3398 NULL_TREE);
3399 finish_expr_stmt (call);
3400 }
3401 }
3402
3403 /* Close out the function. */
3404 if (body)
3405 finish_objects (function_key, priority, body);
3406 }
3407
3408 /* Generate constructor and destructor functions for the priority
3409 indicated by N. */
3410
3411 static int
3412 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3413 {
3414 location_t *locus = (location_t *) data;
3415 int priority = (int) n->key;
3416 priority_info pi = (priority_info) n->value;
3417
3418 /* Generate the functions themselves, but only if they are really
3419 needed. */
3420 if (pi->initializations_p)
3421 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3422 if (pi->destructions_p)
3423 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3424
3425 /* Keep iterating. */
3426 return 0;
3427 }
3428
3429 /* Java requires that we be able to reference a local address for a
3430 method, and not be confused by PLT entries. If hidden aliases are
3431 supported, collect and return all the functions for which we should
3432 emit a hidden alias. */
3433
3434 static struct pointer_set_t *
3435 collect_candidates_for_java_method_aliases (void)
3436 {
3437 struct cgraph_node *node;
3438 struct pointer_set_t *candidates = NULL;
3439
3440 #ifndef HAVE_GAS_HIDDEN
3441 return candidates;
3442 #endif
3443
3444 FOR_EACH_FUNCTION (node)
3445 {
3446 tree fndecl = node->symbol.decl;
3447
3448 if (DECL_CONTEXT (fndecl)
3449 && TYPE_P (DECL_CONTEXT (fndecl))
3450 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3451 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3452 {
3453 if (candidates == NULL)
3454 candidates = pointer_set_create ();
3455 pointer_set_insert (candidates, fndecl);
3456 }
3457 }
3458
3459 return candidates;
3460 }
3461
3462
3463 /* Java requires that we be able to reference a local address for a
3464 method, and not be confused by PLT entries. If hidden aliases are
3465 supported, emit one for each java function that we've emitted.
3466 CANDIDATES is the set of FUNCTION_DECLs that were gathered
3467 by collect_candidates_for_java_method_aliases. */
3468
3469 static void
3470 build_java_method_aliases (struct pointer_set_t *candidates)
3471 {
3472 struct cgraph_node *node;
3473
3474 #ifndef HAVE_GAS_HIDDEN
3475 return;
3476 #endif
3477
3478 FOR_EACH_FUNCTION (node)
3479 {
3480 tree fndecl = node->symbol.decl;
3481
3482 if (TREE_ASM_WRITTEN (fndecl)
3483 && pointer_set_contains (candidates, fndecl))
3484 {
3485 /* Mangle the name in a predictable way; we need to reference
3486 this from a java compiled object file. */
3487 tree oid, nid, alias;
3488 const char *oname;
3489 char *nname;
3490
3491 oid = DECL_ASSEMBLER_NAME (fndecl);
3492 oname = IDENTIFIER_POINTER (oid);
3493 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3494 nname = ACONCAT (("_ZGA", oname+2, NULL));
3495 nid = get_identifier (nname);
3496
3497 alias = make_alias_for (fndecl, nid);
3498 TREE_PUBLIC (alias) = 1;
3499 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3500
3501 assemble_alias (alias, oid);
3502 }
3503 }
3504 }
3505
3506 /* Return C++ property of T, based on given operation OP. */
3507
3508 static int
3509 cpp_check (tree t, cpp_operation op)
3510 {
3511 switch (op)
3512 {
3513 case IS_ABSTRACT:
3514 return DECL_PURE_VIRTUAL_P (t);
3515 case IS_CONSTRUCTOR:
3516 return DECL_CONSTRUCTOR_P (t);
3517 case IS_DESTRUCTOR:
3518 return DECL_DESTRUCTOR_P (t);
3519 case IS_COPY_CONSTRUCTOR:
3520 return DECL_COPY_CONSTRUCTOR_P (t);
3521 case IS_TEMPLATE:
3522 return TREE_CODE (t) == TEMPLATE_DECL;
3523 default:
3524 return 0;
3525 }
3526 }
3527
3528 /* Collect source file references recursively, starting from NAMESPC. */
3529
3530 static void
3531 collect_source_refs (tree namespc)
3532 {
3533 tree t;
3534
3535 if (!namespc)
3536 return;
3537
3538 /* Iterate over names in this name space. */
3539 for (t = NAMESPACE_LEVEL (namespc)->names; t; t = TREE_CHAIN (t))
3540 if (!DECL_IS_BUILTIN (t) )
3541 collect_source_ref (DECL_SOURCE_FILE (t));
3542
3543 /* Dump siblings, if any */
3544 collect_source_refs (TREE_CHAIN (namespc));
3545
3546 /* Dump children, if any */
3547 collect_source_refs (NAMESPACE_LEVEL (namespc)->namespaces);
3548 }
3549
3550 /* Collect decls relevant to SOURCE_FILE from all namespaces recursively,
3551 starting from NAMESPC. */
3552
3553 static void
3554 collect_ada_namespace (tree namespc, const char *source_file)
3555 {
3556 if (!namespc)
3557 return;
3558
3559 /* Collect decls from this namespace */
3560 collect_ada_nodes (NAMESPACE_LEVEL (namespc)->names, source_file);
3561
3562 /* Collect siblings, if any */
3563 collect_ada_namespace (TREE_CHAIN (namespc), source_file);
3564
3565 /* Collect children, if any */
3566 collect_ada_namespace (NAMESPACE_LEVEL (namespc)->namespaces, source_file);
3567 }
3568
3569 /* Returns true iff there is a definition available for variable or
3570 function DECL. */
3571
3572 static bool
3573 decl_defined_p (tree decl)
3574 {
3575 if (TREE_CODE (decl) == FUNCTION_DECL)
3576 return (DECL_INITIAL (decl) != NULL_TREE);
3577 else
3578 {
3579 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3580 return !DECL_EXTERNAL (decl);
3581 }
3582 }
3583
3584 /* Nonzero for a VAR_DECL whose value can be used in a constant expression.
3585
3586 [expr.const]
3587
3588 An integral constant-expression can only involve ... const
3589 variables of integral or enumeration types initialized with
3590 constant expressions ...
3591
3592 C++0x also allows constexpr variables and temporaries initialized
3593 with constant expressions. We handle the former here, but the latter
3594 are just folded away in cxx_eval_constant_expression.
3595
3596 The standard does not require that the expression be non-volatile.
3597 G++ implements the proposed correction in DR 457. */
3598
3599 bool
3600 decl_constant_var_p (tree decl)
3601 {
3602 if (!decl_maybe_constant_var_p (decl))
3603 return false;
3604
3605 /* We don't know if a template static data member is initialized with
3606 a constant expression until we instantiate its initializer. Even
3607 in the case of a constexpr variable, we can't treat it as a
3608 constant until its initializer is complete in case it's used in
3609 its own initializer. */
3610 mark_used (decl);
3611 return DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl);
3612 }
3613
3614 /* Returns true if DECL could be a symbolic constant variable, depending on
3615 its initializer. */
3616
3617 bool
3618 decl_maybe_constant_var_p (tree decl)
3619 {
3620 tree type = TREE_TYPE (decl);
3621 if (TREE_CODE (decl) != VAR_DECL)
3622 return false;
3623 if (DECL_DECLARED_CONSTEXPR_P (decl))
3624 return true;
3625 return (CP_TYPE_CONST_NON_VOLATILE_P (type)
3626 && INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3627 }
3628
3629 /* Complain that DECL uses a type with no linkage but is never defined. */
3630
3631 static void
3632 no_linkage_error (tree decl)
3633 {
3634 tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
3635 if (TYPE_ANONYMOUS_P (t))
3636 {
3637 permerror (0, "%q+#D, declared using anonymous type, "
3638 "is used but never defined", decl);
3639 if (is_typedef_decl (TYPE_NAME (t)))
3640 permerror (0, "%q+#D does not refer to the unqualified type, "
3641 "so it is not used for linkage", TYPE_NAME (t));
3642 }
3643 else
3644 permerror (0, "%q+#D, declared using local type %qT, "
3645 "is used but never defined", decl, t);
3646 }
3647
3648 /* Collect declarations from all namespaces relevant to SOURCE_FILE. */
3649
3650 static void
3651 collect_all_refs (const char *source_file)
3652 {
3653 collect_ada_namespace (global_namespace, source_file);
3654 }
3655
3656 /* Clear DECL_EXTERNAL for NODE. */
3657
3658 static bool
3659 clear_decl_external (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
3660 {
3661 DECL_EXTERNAL (node->symbol.decl) = 0;
3662 return false;
3663 }
3664
3665 /* This routine is called at the end of compilation.
3666 Its job is to create all the code needed to initialize and
3667 destroy the global aggregates. We do the destruction
3668 first, since that way we only need to reverse the decls once. */
3669
3670 void
3671 cp_write_global_declarations (void)
3672 {
3673 tree vars;
3674 bool reconsider;
3675 size_t i;
3676 location_t locus;
3677 unsigned ssdf_count = 0;
3678 int retries = 0;
3679 tree decl;
3680 struct pointer_set_t *candidates;
3681
3682 locus = input_location;
3683 at_eof = 1;
3684
3685 /* Bad parse errors. Just forget about it. */
3686 if (! global_bindings_p () || current_class_type
3687 || !VEC_empty (tree,decl_namespace_list))
3688 return;
3689
3690 if (pch_file)
3691 c_common_write_pch ();
3692
3693 cgraph_process_same_body_aliases ();
3694
3695 /* Handle -fdump-ada-spec[-slim] */
3696 if (dump_enabled_p (TDI_ada))
3697 {
3698 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
3699 collect_source_ref (main_input_filename);
3700 else
3701 collect_source_refs (global_namespace);
3702
3703 dump_ada_specs (collect_all_refs, cpp_check);
3704 }
3705
3706 /* FIXME - huh? was input_line -= 1;*/
3707
3708 timevar_start (TV_PHASE_DEFERRED);
3709
3710 /* We now have to write out all the stuff we put off writing out.
3711 These include:
3712
3713 o Template specializations that we have not yet instantiated,
3714 but which are needed.
3715 o Initialization and destruction for non-local objects with
3716 static storage duration. (Local objects with static storage
3717 duration are initialized when their scope is first entered,
3718 and are cleaned up via atexit.)
3719 o Virtual function tables.
3720
3721 All of these may cause others to be needed. For example,
3722 instantiating one function may cause another to be needed, and
3723 generating the initializer for an object may cause templates to be
3724 instantiated, etc., etc. */
3725
3726 emit_support_tinfos ();
3727
3728 do
3729 {
3730 tree t;
3731 tree decl;
3732
3733 reconsider = false;
3734
3735 /* If there are templates that we've put off instantiating, do
3736 them now. */
3737 instantiate_pending_templates (retries);
3738 ggc_collect ();
3739
3740 /* Write out virtual tables as required. Note that writing out
3741 the virtual table for a template class may cause the
3742 instantiation of members of that class. If we write out
3743 vtables then we remove the class from our list so we don't
3744 have to look at it again. */
3745
3746 while (keyed_classes != NULL_TREE
3747 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3748 {
3749 reconsider = true;
3750 keyed_classes = TREE_CHAIN (keyed_classes);
3751 }
3752
3753 t = keyed_classes;
3754 if (t != NULL_TREE)
3755 {
3756 tree next = TREE_CHAIN (t);
3757
3758 while (next)
3759 {
3760 if (maybe_emit_vtables (TREE_VALUE (next)))
3761 {
3762 reconsider = true;
3763 TREE_CHAIN (t) = TREE_CHAIN (next);
3764 }
3765 else
3766 t = next;
3767
3768 next = TREE_CHAIN (t);
3769 }
3770 }
3771
3772 /* Write out needed type info variables. We have to be careful
3773 looping through unemitted decls, because emit_tinfo_decl may
3774 cause other variables to be needed. New elements will be
3775 appended, and we remove from the vector those that actually
3776 get emitted. */
3777 for (i = VEC_length (tree, unemitted_tinfo_decls);
3778 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3779 if (emit_tinfo_decl (t))
3780 {
3781 reconsider = true;
3782 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3783 }
3784
3785 /* The list of objects with static storage duration is built up
3786 in reverse order. We clear STATIC_AGGREGATES so that any new
3787 aggregates added during the initialization of these will be
3788 initialized in the correct order when we next come around the
3789 loop. */
3790 vars = prune_vars_needing_no_initialization (&static_aggregates);
3791
3792 if (vars)
3793 {
3794 /* We need to start a new initialization function each time
3795 through the loop. That's because we need to know which
3796 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3797 isn't computed until a function is finished, and written
3798 out. That's a deficiency in the back end. When this is
3799 fixed, these initialization functions could all become
3800 inline, with resulting performance improvements. */
3801 tree ssdf_body;
3802
3803 /* Set the line and file, so that it is obviously not from
3804 the source file. */
3805 input_location = locus;
3806 ssdf_body = start_static_storage_duration_function (ssdf_count);
3807
3808 /* Make sure the back end knows about all the variables. */
3809 write_out_vars (vars);
3810
3811 /* First generate code to do all the initializations. */
3812 if (vars)
3813 do_static_initialization_or_destruction (vars, /*initp=*/true);
3814
3815 /* Then, generate code to do all the destructions. Do these
3816 in reverse order so that the most recently constructed
3817 variable is the first destroyed. If we're using
3818 __cxa_atexit, then we don't need to do this; functions
3819 were registered at initialization time to destroy the
3820 local statics. */
3821 if (!flag_use_cxa_atexit && vars)
3822 {
3823 vars = nreverse (vars);
3824 do_static_initialization_or_destruction (vars, /*initp=*/false);
3825 }
3826 else
3827 vars = NULL_TREE;
3828
3829 /* Finish up the static storage duration function for this
3830 round. */
3831 input_location = locus;
3832 finish_static_storage_duration_function (ssdf_body);
3833
3834 /* All those initializations and finalizations might cause
3835 us to need more inline functions, more template
3836 instantiations, etc. */
3837 reconsider = true;
3838 ssdf_count++;
3839 /* ??? was: locus.line++; */
3840 }
3841
3842 /* Go through the set of inline functions whose bodies have not
3843 been emitted yet. If out-of-line copies of these functions
3844 are required, emit them. */
3845 FOR_EACH_VEC_ELT (tree, deferred_fns, i, decl)
3846 {
3847 /* Does it need synthesizing? */
3848 if (DECL_DEFAULTED_FN (decl) && ! DECL_INITIAL (decl)
3849 && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3850 {
3851 /* Even though we're already at the top-level, we push
3852 there again. That way, when we pop back a few lines
3853 hence, all of our state is restored. Otherwise,
3854 finish_function doesn't clean things up, and we end
3855 up with CURRENT_FUNCTION_DECL set. */
3856 push_to_top_level ();
3857 /* The decl's location will mark where it was first
3858 needed. Save that so synthesize method can indicate
3859 where it was needed from, in case of error */
3860 input_location = DECL_SOURCE_LOCATION (decl);
3861 synthesize_method (decl);
3862 pop_from_top_level ();
3863 reconsider = true;
3864 }
3865
3866 if (!DECL_SAVED_TREE (decl))
3867 continue;
3868
3869 /* We lie to the back end, pretending that some functions
3870 are not defined when they really are. This keeps these
3871 functions from being put out unnecessarily. But, we must
3872 stop lying when the functions are referenced, or if they
3873 are not comdat since they need to be put out now. If
3874 DECL_INTERFACE_KNOWN, then we have already set
3875 DECL_EXTERNAL appropriately, so there's no need to check
3876 again, and we do not want to clear DECL_EXTERNAL if a
3877 previous call to import_export_decl set it.
3878
3879 This is done in a separate for cycle, because if some
3880 deferred function is contained in another deferred
3881 function later in deferred_fns varray,
3882 rest_of_compilation would skip this function and we
3883 really cannot expand the same function twice. */
3884 import_export_decl (decl);
3885 if (DECL_NOT_REALLY_EXTERN (decl)
3886 && DECL_INITIAL (decl)
3887 && decl_needed_p (decl))
3888 {
3889 struct cgraph_node *node, *next;
3890
3891 node = cgraph_get_node (decl);
3892 if (node->same_body_alias)
3893 node = cgraph_alias_aliased_node (node);
3894
3895 cgraph_for_node_and_aliases (node, clear_decl_external,
3896 NULL, true);
3897 /* If we mark !DECL_EXTERNAL one of the symbols in some comdat
3898 group, we need to mark all symbols in the same comdat group
3899 that way. */
3900 if (node->symbol.same_comdat_group)
3901 for (next = cgraph (node->symbol.same_comdat_group);
3902 next != node;
3903 next = cgraph (next->symbol.same_comdat_group))
3904 cgraph_for_node_and_aliases (next, clear_decl_external,
3905 NULL, true);
3906 }
3907
3908 /* If we're going to need to write this function out, and
3909 there's already a body for it, create RTL for it now.
3910 (There might be no body if this is a method we haven't
3911 gotten around to synthesizing yet.) */
3912 if (!DECL_EXTERNAL (decl)
3913 && decl_needed_p (decl)
3914 && !TREE_ASM_WRITTEN (decl)
3915 && !cgraph_get_node (decl)->local.finalized)
3916 {
3917 /* We will output the function; no longer consider it in this
3918 loop. */
3919 DECL_DEFER_OUTPUT (decl) = 0;
3920 /* Generate RTL for this function now that we know we
3921 need it. */
3922 expand_or_defer_fn (decl);
3923 /* If we're compiling -fsyntax-only pretend that this
3924 function has been written out so that we don't try to
3925 expand it again. */
3926 if (flag_syntax_only)
3927 TREE_ASM_WRITTEN (decl) = 1;
3928 reconsider = true;
3929 }
3930 }
3931
3932 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3933 reconsider = true;
3934
3935 /* Static data members are just like namespace-scope globals. */
3936 FOR_EACH_VEC_ELT (tree, pending_statics, i, decl)
3937 {
3938 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3939 /* Don't write it out if we haven't seen a definition. */
3940 || DECL_IN_AGGR_P (decl))
3941 continue;
3942 import_export_decl (decl);
3943 /* If this static data member is needed, provide it to the
3944 back end. */
3945 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3946 DECL_EXTERNAL (decl) = 0;
3947 }
3948 if (VEC_length (tree, pending_statics) != 0
3949 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3950 VEC_length (tree, pending_statics)))
3951 reconsider = true;
3952
3953 retries++;
3954 }
3955 while (reconsider);
3956
3957 /* All used inline functions must have a definition at this point. */
3958 FOR_EACH_VEC_ELT (tree, deferred_fns, i, decl)
3959 {
3960 if (/* Check online inline functions that were actually used. */
3961 DECL_ODR_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3962 /* If the definition actually was available here, then the
3963 fact that the function was not defined merely represents
3964 that for some reason (use of a template repository,
3965 #pragma interface, etc.) we decided not to emit the
3966 definition here. */
3967 && !DECL_INITIAL (decl)
3968 /* Don't complain if the template was defined. */
3969 && !(DECL_TEMPLATE_INSTANTIATION (decl)
3970 && DECL_INITIAL (DECL_TEMPLATE_RESULT
3971 (template_for_substitution (decl)))))
3972 {
3973 warning (0, "inline function %q+D used but never defined", decl);
3974 /* Avoid a duplicate warning from check_global_declaration_1. */
3975 TREE_NO_WARNING (decl) = 1;
3976 }
3977 }
3978
3979 /* So must decls that use a type with no linkage. */
3980 FOR_EACH_VEC_ELT (tree, no_linkage_decls, i, decl)
3981 if (!decl_defined_p (decl))
3982 no_linkage_error (decl);
3983
3984 /* Then, do the Objective-C stuff. This is where all the
3985 Objective-C module stuff gets generated (symtab,
3986 class/protocol/selector lists etc). This must be done after C++
3987 templates, destructors etc. so that selectors used in C++
3988 templates are properly allocated. */
3989 if (c_dialect_objc ())
3990 objc_write_global_declarations ();
3991
3992 /* We give C linkage to static constructors and destructors. */
3993 push_lang_context (lang_name_c);
3994
3995 /* Generate initialization and destruction functions for all
3996 priorities for which they are required. */
3997 if (priority_info_map)
3998 splay_tree_foreach (priority_info_map,
3999 generate_ctor_and_dtor_functions_for_priority,
4000 /*data=*/&locus);
4001 else if (c_dialect_objc () && objc_static_init_needed_p ())
4002 /* If this is obj-c++ and we need a static init, call
4003 generate_ctor_or_dtor_function. */
4004 generate_ctor_or_dtor_function (/*constructor_p=*/true,
4005 DEFAULT_INIT_PRIORITY, &locus);
4006
4007 /* We're done with the splay-tree now. */
4008 if (priority_info_map)
4009 splay_tree_delete (priority_info_map);
4010
4011 /* Generate any missing aliases. */
4012 maybe_apply_pending_pragma_weaks ();
4013
4014 /* We're done with static constructors, so we can go back to "C++"
4015 linkage now. */
4016 pop_lang_context ();
4017
4018 /* Collect candidates for Java hidden aliases. */
4019 candidates = collect_candidates_for_java_method_aliases ();
4020
4021 timevar_stop (TV_PHASE_DEFERRED);
4022 timevar_start (TV_PHASE_CGRAPH);
4023
4024 finalize_compilation_unit ();
4025
4026 timevar_stop (TV_PHASE_CGRAPH);
4027 timevar_start (TV_PHASE_CHECK_DBGINFO);
4028
4029 /* Now, issue warnings about static, but not defined, functions,
4030 etc., and emit debugging information. */
4031 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
4032 if (VEC_length (tree, pending_statics) != 0)
4033 {
4034 check_global_declarations (VEC_address (tree, pending_statics),
4035 VEC_length (tree, pending_statics));
4036 emit_debug_global_declarations (VEC_address (tree, pending_statics),
4037 VEC_length (tree, pending_statics));
4038 }
4039
4040 perform_deferred_noexcept_checks ();
4041
4042 /* Generate hidden aliases for Java. */
4043 if (candidates)
4044 {
4045 build_java_method_aliases (candidates);
4046 pointer_set_destroy (candidates);
4047 }
4048
4049 finish_repo ();
4050
4051 /* The entire file is now complete. If requested, dump everything
4052 to a file. */
4053 {
4054 int flags;
4055 FILE *stream = dump_begin (TDI_tu, &flags);
4056
4057 if (stream)
4058 {
4059 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
4060 dump_end (TDI_tu, stream);
4061 }
4062 }
4063
4064 if (flag_detailed_statistics)
4065 {
4066 dump_tree_statistics ();
4067 dump_time_statistics ();
4068 }
4069 input_location = locus;
4070
4071 #ifdef ENABLE_CHECKING
4072 validate_conversion_obstack ();
4073 #endif /* ENABLE_CHECKING */
4074
4075 timevar_stop (TV_PHASE_CHECK_DBGINFO);
4076 }
4077
4078 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
4079 function to call in parse-tree form; it has not yet been
4080 semantically analyzed. ARGS are the arguments to the function.
4081 They have already been semantically analyzed. This may change
4082 ARGS. */
4083
4084 tree
4085 build_offset_ref_call_from_tree (tree fn, VEC(tree,gc) **args)
4086 {
4087 tree orig_fn;
4088 VEC(tree,gc) *orig_args = NULL;
4089 tree expr;
4090 tree object;
4091
4092 orig_fn = fn;
4093 object = TREE_OPERAND (fn, 0);
4094
4095 if (processing_template_decl)
4096 {
4097 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
4098 || TREE_CODE (fn) == MEMBER_REF);
4099 if (type_dependent_expression_p (fn)
4100 || any_type_dependent_arguments_p (*args))
4101 return build_nt_call_vec (fn, *args);
4102
4103 orig_args = make_tree_vector_copy (*args);
4104
4105 /* Transform the arguments and add the implicit "this"
4106 parameter. That must be done before the FN is transformed
4107 because we depend on the form of FN. */
4108 make_args_non_dependent (*args);
4109 object = build_non_dependent_expr (object);
4110 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
4111 {
4112 if (TREE_CODE (fn) == DOTSTAR_EXPR)
4113 object = cp_build_addr_expr (object, tf_warning_or_error);
4114 VEC_safe_insert (tree, gc, *args, 0, object);
4115 }
4116 /* Now that the arguments are done, transform FN. */
4117 fn = build_non_dependent_expr (fn);
4118 }
4119
4120 /* A qualified name corresponding to a bound pointer-to-member is
4121 represented as an OFFSET_REF:
4122
4123 struct B { void g(); };
4124 void (B::*p)();
4125 void B::g() { (this->*p)(); } */
4126 if (TREE_CODE (fn) == OFFSET_REF)
4127 {
4128 tree object_addr = cp_build_addr_expr (object, tf_warning_or_error);
4129 fn = TREE_OPERAND (fn, 1);
4130 fn = get_member_function_from_ptrfunc (&object_addr, fn,
4131 tf_warning_or_error);
4132 VEC_safe_insert (tree, gc, *args, 0, object_addr);
4133 }
4134
4135 if (CLASS_TYPE_P (TREE_TYPE (fn)))
4136 expr = build_op_call (fn, args, tf_warning_or_error);
4137 else
4138 expr = cp_build_function_call_vec (fn, args, tf_warning_or_error);
4139 if (processing_template_decl && expr != error_mark_node)
4140 expr = build_min_non_dep_call_vec (expr, orig_fn, orig_args);
4141
4142 if (orig_args != NULL)
4143 release_tree_vector (orig_args);
4144
4145 return expr;
4146 }
4147
4148
4149 void
4150 check_default_args (tree x)
4151 {
4152 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
4153 bool saw_def = false;
4154 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
4155 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
4156 {
4157 if (TREE_PURPOSE (arg))
4158 saw_def = true;
4159 else if (saw_def)
4160 {
4161 error ("default argument missing for parameter %P of %q+#D", i, x);
4162 TREE_PURPOSE (arg) = error_mark_node;
4163 }
4164 }
4165 }
4166
4167 /* Return true if function DECL can be inlined. This is used to force
4168 instantiation of methods that might be interesting for inlining. */
4169 bool
4170 possibly_inlined_p (tree decl)
4171 {
4172 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
4173 if (DECL_UNINLINABLE (decl))
4174 return false;
4175 if (!optimize || pragma_java_exceptions)
4176 return DECL_DECLARED_INLINE_P (decl);
4177 /* When optimizing, we might inline everything when flatten
4178 attribute or heuristics inlining for size or autoinlining
4179 is used. */
4180 return true;
4181 }
4182
4183 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
4184 If DECL is a specialization or implicitly declared class member,
4185 generate the actual definition. Return false if something goes
4186 wrong, true otherwise. */
4187
4188 bool
4189 mark_used (tree decl)
4190 {
4191 /* If DECL is a BASELINK for a single function, then treat it just
4192 like the DECL for the function. Otherwise, if the BASELINK is
4193 for an overloaded function, we don't know which function was
4194 actually used until after overload resolution. */
4195 if (BASELINK_P (decl))
4196 {
4197 decl = BASELINK_FUNCTIONS (decl);
4198 if (really_overloaded_fn (decl))
4199 return true;
4200 decl = OVL_CURRENT (decl);
4201 }
4202
4203 /* Set TREE_USED for the benefit of -Wunused. */
4204 TREE_USED (decl) = 1;
4205 if (DECL_CLONED_FUNCTION_P (decl))
4206 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4207
4208 if (TREE_CODE (decl) == FUNCTION_DECL
4209 && DECL_DELETED_FN (decl))
4210 {
4211 if (DECL_ARTIFICIAL (decl))
4212 {
4213 if (DECL_OVERLOADED_OPERATOR_P (decl) == TYPE_EXPR
4214 && LAMBDA_TYPE_P (DECL_CONTEXT (decl)))
4215 {
4216 /* We mark a lambda conversion op as deleted if we can't
4217 generate it properly; see maybe_add_lambda_conv_op. */
4218 sorry ("converting lambda which uses %<...%> to "
4219 "function pointer");
4220 return false;
4221 }
4222 }
4223 error ("use of deleted function %qD", decl);
4224 if (!maybe_explain_implicit_delete (decl))
4225 error_at (DECL_SOURCE_LOCATION (decl), "declared here");
4226 return false;
4227 }
4228
4229 /* We can only check DECL_ODR_USED on variables or functions with
4230 DECL_LANG_SPECIFIC set, and these are also the only decls that we
4231 might need special handling for. */
4232 if ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4233 || DECL_LANG_SPECIFIC (decl) == NULL
4234 || DECL_THUNK_P (decl))
4235 {
4236 if (!processing_template_decl && type_uses_auto (TREE_TYPE (decl)))
4237 error ("use of %qD before deduction of %<auto%>", decl);
4238 return true;
4239 }
4240
4241 /* We only want to do this processing once. We don't need to keep trying
4242 to instantiate inline templates, because unit-at-a-time will make sure
4243 we get them compiled before functions that want to inline them. */
4244 if (DECL_ODR_USED (decl))
4245 return true;
4246
4247 /* If within finish_function, defer the rest until that function
4248 finishes, otherwise it might recurse. */
4249 if (defer_mark_used_calls)
4250 {
4251 VEC_safe_push (tree, gc, deferred_mark_used_calls, decl);
4252 return true;
4253 }
4254
4255 if (TREE_CODE (decl) == FUNCTION_DECL)
4256 maybe_instantiate_noexcept (decl);
4257
4258 /* Normally, we can wait until instantiation-time to synthesize DECL.
4259 However, if DECL is a static data member initialized with a constant
4260 or a constexpr function, we need it right now because a reference to
4261 such a data member or a call to such function is not value-dependent.
4262 For a function that uses auto in the return type, we need to instantiate
4263 it to find out its type. */
4264 if ((decl_maybe_constant_var_p (decl)
4265 || (TREE_CODE (decl) == FUNCTION_DECL
4266 && (DECL_DECLARED_CONSTEXPR_P (decl)
4267 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl))))))
4268 && DECL_LANG_SPECIFIC (decl)
4269 && DECL_TEMPLATE_INFO (decl)
4270 && !uses_template_parms (DECL_TI_ARGS (decl)))
4271 {
4272 /* Instantiating a function will result in garbage collection. We
4273 must treat this situation as if we were within the body of a
4274 function so as to avoid collecting live data only referenced from
4275 the stack (such as overload resolution candidates). */
4276 ++function_depth;
4277 instantiate_decl (decl, /*defer_ok=*/false,
4278 /*expl_inst_class_mem_p=*/false);
4279 --function_depth;
4280 }
4281
4282 if (type_uses_auto (TREE_TYPE (decl)))
4283 error ("use of %qD before deduction of %<auto%>", decl);
4284
4285 /* If we don't need a value, then we don't need to synthesize DECL. */
4286 if (cp_unevaluated_operand != 0)
4287 return true;
4288
4289 if (processing_template_decl)
4290 return true;
4291
4292 /* Check this too in case we're within fold_non_dependent_expr. */
4293 if (DECL_TEMPLATE_INFO (decl)
4294 && uses_template_parms (DECL_TI_ARGS (decl)))
4295 return true;
4296
4297 DECL_ODR_USED (decl) = 1;
4298 if (DECL_CLONED_FUNCTION_P (decl))
4299 DECL_ODR_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4300
4301 /* DR 757: A type without linkage shall not be used as the type of a
4302 variable or function with linkage, unless
4303 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
4304 o the variable or function is not used (3.2 [basic.def.odr]) or is
4305 defined in the same translation unit. */
4306 if (cxx_dialect > cxx98
4307 && decl_linkage (decl) != lk_none
4308 && !DECL_EXTERN_C_P (decl)
4309 && !DECL_ARTIFICIAL (decl)
4310 && !decl_defined_p (decl)
4311 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
4312 {
4313 if (is_local_extern (decl))
4314 /* There's no way to define a local extern, and adding it to
4315 the vector interferes with GC, so give an error now. */
4316 no_linkage_error (decl);
4317 else
4318 VEC_safe_push (tree, gc, no_linkage_decls, decl);
4319 }
4320
4321 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
4322 && !DECL_INITIAL (decl) && !DECL_ARTIFICIAL (decl))
4323 /* Remember it, so we can check it was defined. */
4324 note_vague_linkage_fn (decl);
4325
4326 /* Is it a synthesized method that needs to be synthesized? */
4327 if (TREE_CODE (decl) == FUNCTION_DECL
4328 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
4329 && DECL_DEFAULTED_FN (decl)
4330 /* A function defaulted outside the class is synthesized either by
4331 cp_finish_decl or instantiate_decl. */
4332 && !DECL_DEFAULTED_OUTSIDE_CLASS_P (decl)
4333 && ! DECL_INITIAL (decl))
4334 {
4335 /* Defer virtual destructors so that thunks get the right
4336 linkage. */
4337 if (DECL_VIRTUAL_P (decl) && !at_eof)
4338 {
4339 note_vague_linkage_fn (decl);
4340 return true;
4341 }
4342
4343 /* Remember the current location for a function we will end up
4344 synthesizing. Then we can inform the user where it was
4345 required in the case of error. */
4346 DECL_SOURCE_LOCATION (decl) = input_location;
4347
4348 /* Synthesizing an implicitly defined member function will result in
4349 garbage collection. We must treat this situation as if we were
4350 within the body of a function so as to avoid collecting live data
4351 on the stack (such as overload resolution candidates).
4352
4353 We could just let cp_write_global_declarations handle synthesizing
4354 this function by adding it to deferred_fns, but doing
4355 it at the use site produces better error messages. */
4356 ++function_depth;
4357 synthesize_method (decl);
4358 --function_depth;
4359 /* If this is a synthesized method we don't need to
4360 do the instantiation test below. */
4361 }
4362 else if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4363 && DECL_TEMPLATE_INFO (decl)
4364 && (!DECL_EXPLICIT_INSTANTIATION (decl)
4365 || always_instantiate_p (decl)))
4366 /* If this is a function or variable that is an instance of some
4367 template, we now know that we will need to actually do the
4368 instantiation. We check that DECL is not an explicit
4369 instantiation because that is not checked in instantiate_decl.
4370
4371 We put off instantiating functions in order to improve compile
4372 times. Maintaining a stack of active functions is expensive,
4373 and the inliner knows to instantiate any functions it might
4374 need. Therefore, we always try to defer instantiation. */
4375 {
4376 ++function_depth;
4377 instantiate_decl (decl, /*defer_ok=*/true,
4378 /*expl_inst_class_mem_p=*/false);
4379 --function_depth;
4380 }
4381
4382 return true;
4383 }
4384
4385 #include "gt-cp-decl2.h"