Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / cp / decl2.c
blobce54c79f20e5c09c974d96f02171164a607ae1aa
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 Free Software Foundation, Inc.
5 Hacked by Michael Tiemann (tiemann@cygnus.com)
7 This file is part of GCC.
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.
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.
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/>. */
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. */
28 /* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
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 "tree-mudflap.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"
57 extern cpp_reader *parse_in;
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;
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 decl_defined_p (tree);
90 /* A list of static class variables. This is needed, because a
91 static class variable can be declared inside the class without
92 an initializer, and then initialized, statically, outside the class. */
93 static GTY(()) VEC(tree,gc) *pending_statics;
95 /* A list of functions which were declared inline, but which we
96 may need to emit outline anyway. */
97 static GTY(()) VEC(tree,gc) *deferred_fns;
99 /* A list of decls that use types with no linkage, which we need to make
100 sure are defined. */
101 static GTY(()) VEC(tree,gc) *no_linkage_decls;
103 /* Nonzero if we're done parsing and into end-of-file activities. */
105 int at_eof;
109 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
110 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
111 that apply to the function). */
113 tree
114 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
116 tree raises;
117 tree attrs;
118 int type_quals;
120 if (fntype == error_mark_node || ctype == error_mark_node)
121 return error_mark_node;
123 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
124 || TREE_CODE (fntype) == METHOD_TYPE);
126 type_quals = quals & ~TYPE_QUAL_RESTRICT;
127 ctype = cp_build_qualified_type (ctype, type_quals);
128 raises = TYPE_RAISES_EXCEPTIONS (fntype);
129 attrs = TYPE_ATTRIBUTES (fntype);
130 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
131 (TREE_CODE (fntype) == METHOD_TYPE
132 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
133 : TYPE_ARG_TYPES (fntype)));
134 if (raises)
135 fntype = build_exception_variant (fntype, raises);
136 if (attrs)
137 fntype = cp_build_type_attribute_variant (fntype, attrs);
139 return fntype;
142 /* Return a variant of FNTYPE, a FUNCTION_TYPE or METHOD_TYPE, with its
143 return type changed to NEW_RET. */
145 tree
146 change_return_type (tree new_ret, tree fntype)
148 tree newtype;
149 tree args = TYPE_ARG_TYPES (fntype);
150 tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
151 tree attrs = TYPE_ATTRIBUTES (fntype);
153 if (same_type_p (new_ret, TREE_TYPE (fntype)))
154 return fntype;
156 if (TREE_CODE (fntype) == FUNCTION_TYPE)
158 newtype = build_function_type (new_ret, args);
159 newtype = apply_memfn_quals (newtype, type_memfn_quals (fntype));
161 else
162 newtype = build_method_type_directly
163 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fntype))),
164 new_ret, TREE_CHAIN (args));
165 if (raises)
166 newtype = build_exception_variant (newtype, raises);
167 if (attrs)
168 newtype = cp_build_type_attribute_variant (newtype, attrs);
170 return newtype;
173 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
174 appropriately. */
176 tree
177 cp_build_parm_decl (tree name, tree type)
179 tree parm = build_decl (input_location,
180 PARM_DECL, name, type);
181 /* DECL_ARG_TYPE is only used by the back end and the back end never
182 sees templates. */
183 if (!processing_template_decl)
184 DECL_ARG_TYPE (parm) = type_passed_as (type);
186 /* If the type is a pack expansion, then we have a function
187 parameter pack. */
188 if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
189 FUNCTION_PARAMETER_PACK_P (parm) = 1;
191 return parm;
194 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
195 indicated NAME. */
197 tree
198 build_artificial_parm (tree name, tree type)
200 tree parm = cp_build_parm_decl (name, type);
201 DECL_ARTIFICIAL (parm) = 1;
202 /* All our artificial parms are implicitly `const'; they cannot be
203 assigned to. */
204 TREE_READONLY (parm) = 1;
205 return parm;
208 /* Constructors for types with virtual baseclasses need an "in-charge" flag
209 saying whether this constructor is responsible for initialization of
210 virtual baseclasses or not. All destructors also need this "in-charge"
211 flag, which additionally determines whether or not the destructor should
212 free the memory for the object.
214 This function adds the "in-charge" flag to member function FN if
215 appropriate. It is called from grokclassfn and tsubst.
216 FN must be either a constructor or destructor.
218 The in-charge flag follows the 'this' parameter, and is followed by the
219 VTT parm (if any), then the user-written parms. */
221 void
222 maybe_retrofit_in_chrg (tree fn)
224 tree basetype, arg_types, parms, parm, fntype;
226 /* If we've already add the in-charge parameter don't do it again. */
227 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
228 return;
230 /* When processing templates we can't know, in general, whether or
231 not we're going to have virtual baseclasses. */
232 if (processing_template_decl)
233 return;
235 /* We don't need an in-charge parameter for constructors that don't
236 have virtual bases. */
237 if (DECL_CONSTRUCTOR_P (fn)
238 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
239 return;
241 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
242 basetype = TREE_TYPE (TREE_VALUE (arg_types));
243 arg_types = TREE_CHAIN (arg_types);
245 parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
247 /* If this is a subobject constructor or destructor, our caller will
248 pass us a pointer to our VTT. */
249 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
251 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
253 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
254 TREE_CHAIN (parm) = parms;
255 parms = parm;
257 /* ...and then to TYPE_ARG_TYPES. */
258 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
260 DECL_HAS_VTT_PARM_P (fn) = 1;
263 /* Then add the in-charge parm (before the VTT parm). */
264 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
265 TREE_CHAIN (parm) = parms;
266 parms = parm;
267 arg_types = hash_tree_chain (integer_type_node, arg_types);
269 /* Insert our new parameter(s) into the list. */
270 TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
272 /* And rebuild the function type. */
273 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
274 arg_types);
275 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
276 fntype = build_exception_variant (fntype,
277 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
278 if (TYPE_ATTRIBUTES (TREE_TYPE (fn)))
279 fntype = (cp_build_type_attribute_variant
280 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (fn))));
281 TREE_TYPE (fn) = fntype;
283 /* Now we've got the in-charge parameter. */
284 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
287 /* Classes overload their constituent function names automatically.
288 When a function name is declared in a record structure,
289 its name is changed to it overloaded name. Since names for
290 constructors and destructors can conflict, we place a leading
291 '$' for destructors.
293 CNAME is the name of the class we are grokking for.
295 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
297 FLAGS contains bits saying what's special about today's
298 arguments. DTOR_FLAG == DESTRUCTOR.
300 If FUNCTION is a destructor, then we must add the `auto-delete' field
301 as a second parameter. There is some hair associated with the fact
302 that we must "declare" this variable in the manner consistent with the
303 way the rest of the arguments were declared.
305 QUALS are the qualifiers for the this pointer. */
307 void
308 grokclassfn (tree ctype, tree function, enum overload_flags flags)
310 tree fn_name = DECL_NAME (function);
312 /* Even within an `extern "C"' block, members get C++ linkage. See
313 [dcl.link] for details. */
314 SET_DECL_LANGUAGE (function, lang_cplusplus);
316 if (fn_name == NULL_TREE)
318 error ("name missing for member function");
319 fn_name = get_identifier ("<anonymous>");
320 DECL_NAME (function) = fn_name;
323 DECL_CONTEXT (function) = ctype;
325 if (flags == DTOR_FLAG)
326 DECL_DESTRUCTOR_P (function) = 1;
328 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
329 maybe_retrofit_in_chrg (function);
332 /* Create an ARRAY_REF, checking for the user doing things backwards
333 along the way. */
335 tree
336 grok_array_decl (tree array_expr, tree index_exp)
338 tree type;
339 tree expr;
340 tree orig_array_expr = array_expr;
341 tree orig_index_exp = index_exp;
343 if (error_operand_p (array_expr) || error_operand_p (index_exp))
344 return error_mark_node;
346 if (processing_template_decl)
348 if (type_dependent_expression_p (array_expr)
349 || type_dependent_expression_p (index_exp))
350 return build_min_nt (ARRAY_REF, array_expr, index_exp,
351 NULL_TREE, NULL_TREE);
352 array_expr = build_non_dependent_expr (array_expr);
353 index_exp = build_non_dependent_expr (index_exp);
356 type = TREE_TYPE (array_expr);
357 gcc_assert (type);
358 type = non_reference (type);
360 /* If they have an `operator[]', use that. */
361 if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
362 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
363 array_expr, index_exp, NULL_TREE,
364 /*overloaded_p=*/NULL, tf_warning_or_error);
365 else
367 tree p1, p2, i1, i2;
369 /* Otherwise, create an ARRAY_REF for a pointer or array type.
370 It is a little-known fact that, if `a' is an array and `i' is
371 an int, you can write `i[a]', which means the same thing as
372 `a[i]'. */
373 if (TREE_CODE (type) == ARRAY_TYPE)
374 p1 = array_expr;
375 else
376 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
378 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
379 p2 = index_exp;
380 else
381 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
383 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
384 false);
385 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
386 false);
388 if ((p1 && i2) && (i1 && p2))
389 error ("ambiguous conversion for array subscript");
391 if (p1 && i2)
392 array_expr = p1, index_exp = i2;
393 else if (i1 && p2)
394 array_expr = p2, index_exp = i1;
395 else
397 error ("invalid types %<%T[%T]%> for array subscript",
398 type, TREE_TYPE (index_exp));
399 return error_mark_node;
402 if (array_expr == error_mark_node || index_exp == error_mark_node)
403 error ("ambiguous conversion for array subscript");
405 expr = build_array_ref (input_location, array_expr, index_exp);
407 if (processing_template_decl && expr != error_mark_node)
408 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
409 NULL_TREE, NULL_TREE);
410 return expr;
413 /* Given the cast expression EXP, checking out its validity. Either return
414 an error_mark_node if there was an unavoidable error, return a cast to
415 void for trying to delete a pointer w/ the value 0, or return the
416 call to delete. If DOING_VEC is true, we handle things differently
417 for doing an array delete.
418 Implements ARM $5.3.4. This is called from the parser. */
420 tree
421 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
423 tree t, type;
425 if (exp == error_mark_node)
426 return exp;
428 if (processing_template_decl)
430 t = build_min (DELETE_EXPR, void_type_node, exp, size);
431 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
432 DELETE_EXPR_USE_VEC (t) = doing_vec;
433 TREE_SIDE_EFFECTS (t) = 1;
434 return t;
437 /* An array can't have been allocated by new, so complain. */
438 if (TREE_CODE (exp) == VAR_DECL
439 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
440 warning (0, "deleting array %q#D", exp);
442 t = build_expr_type_conversion (WANT_POINTER, exp, true);
444 if (t == NULL_TREE || t == error_mark_node)
446 error ("type %q#T argument given to %<delete%>, expected pointer",
447 TREE_TYPE (exp));
448 return error_mark_node;
451 type = TREE_TYPE (t);
453 /* As of Valley Forge, you can delete a pointer to const. */
455 /* You can't delete functions. */
456 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
458 error ("cannot delete a function. Only pointer-to-objects are "
459 "valid arguments to %<delete%>");
460 return error_mark_node;
463 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
464 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
466 warning (0, "deleting %qT is undefined", type);
467 doing_vec = 0;
470 /* Deleting a pointer with the value zero is valid and has no effect. */
471 if (integer_zerop (t))
472 return build1 (NOP_EXPR, void_type_node, t);
474 if (doing_vec)
475 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
476 sfk_deleting_destructor,
477 use_global_delete);
478 else
479 return build_delete (type, t, sfk_deleting_destructor,
480 LOOKUP_NORMAL, use_global_delete);
483 /* Report an error if the indicated template declaration is not the
484 sort of thing that should be a member template. */
486 void
487 check_member_template (tree tmpl)
489 tree decl;
491 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
492 decl = DECL_TEMPLATE_RESULT (tmpl);
494 if (TREE_CODE (decl) == FUNCTION_DECL
495 || (TREE_CODE (decl) == TYPE_DECL
496 && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
498 /* The parser rejects template declarations in local classes. */
499 gcc_assert (!current_function_decl);
500 /* The parser rejects any use of virtual in a function template. */
501 gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
502 && DECL_VIRTUAL_P (decl)));
504 /* The debug-information generating code doesn't know what to do
505 with member templates. */
506 DECL_IGNORED_P (tmpl) = 1;
508 else
509 error ("template declaration of %q#D", decl);
512 /* Return true iff TYPE is a valid Java parameter or return type. */
514 static bool
515 acceptable_java_type (tree type)
517 if (type == error_mark_node)
518 return false;
520 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
521 return true;
522 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
524 type = TREE_TYPE (type);
525 if (TREE_CODE (type) == RECORD_TYPE)
527 tree args; int i;
528 if (! TYPE_FOR_JAVA (type))
529 return false;
530 if (! CLASSTYPE_TEMPLATE_INFO (type))
531 return true;
532 args = CLASSTYPE_TI_ARGS (type);
533 i = TREE_VEC_LENGTH (args);
534 while (--i >= 0)
536 type = TREE_VEC_ELT (args, i);
537 if (TREE_CODE (type) == POINTER_TYPE)
538 type = TREE_TYPE (type);
539 if (! TYPE_FOR_JAVA (type))
540 return false;
542 return true;
545 return false;
548 /* For a METHOD in a Java class CTYPE, return true if
549 the parameter and return types are valid Java types.
550 Otherwise, print appropriate error messages, and return false. */
552 bool
553 check_java_method (tree method)
555 bool jerr = false;
556 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
557 tree ret_type = TREE_TYPE (TREE_TYPE (method));
559 if (!acceptable_java_type (ret_type))
561 error ("Java method %qD has non-Java return type %qT",
562 method, ret_type);
563 jerr = true;
566 arg_types = TREE_CHAIN (arg_types);
567 if (DECL_HAS_IN_CHARGE_PARM_P (method))
568 arg_types = TREE_CHAIN (arg_types);
569 if (DECL_HAS_VTT_PARM_P (method))
570 arg_types = TREE_CHAIN (arg_types);
572 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
574 tree type = TREE_VALUE (arg_types);
575 if (!acceptable_java_type (type))
577 if (type != error_mark_node)
578 error ("Java method %qD has non-Java parameter type %qT",
579 method, type);
580 jerr = true;
583 return !jerr;
586 /* Sanity check: report error if this function FUNCTION is not
587 really a member of the class (CTYPE) it is supposed to belong to.
588 TEMPLATE_PARMS is used to specify the template parameters of a member
589 template passed as FUNCTION_DECL. If the member template is passed as a
590 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
591 from the declaration. If the function is not a function template, it
592 must be NULL.
593 It returns the original declaration for the function, NULL_TREE if
594 no declaration was found, error_mark_node if an error was emitted. */
596 tree
597 check_classfn (tree ctype, tree function, tree template_parms)
599 int ix;
600 bool is_template;
601 tree pushed_scope;
603 if (DECL_USE_TEMPLATE (function)
604 && !(TREE_CODE (function) == TEMPLATE_DECL
605 && DECL_TEMPLATE_SPECIALIZATION (function))
606 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
607 /* Since this is a specialization of a member template,
608 we're not going to find the declaration in the class.
609 For example, in:
611 struct S { template <typename T> void f(T); };
612 template <> void S::f(int);
614 we're not going to find `S::f(int)', but there's no
615 reason we should, either. We let our callers know we didn't
616 find the method, but we don't complain. */
617 return NULL_TREE;
619 /* Basic sanity check: for a template function, the template parameters
620 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
621 if (TREE_CODE (function) == TEMPLATE_DECL)
623 if (template_parms
624 && !comp_template_parms (template_parms,
625 DECL_TEMPLATE_PARMS (function)))
627 error ("template parameter lists provided don't match the "
628 "template parameters of %qD", function);
629 return error_mark_node;
631 template_parms = DECL_TEMPLATE_PARMS (function);
634 /* OK, is this a definition of a member template? */
635 is_template = (template_parms != NULL_TREE);
637 /* We must enter the scope here, because conversion operators are
638 named by target type, and type equivalence relies on typenames
639 resolving within the scope of CTYPE. */
640 pushed_scope = push_scope (ctype);
641 ix = class_method_index_for_fn (complete_type (ctype), function);
642 if (ix >= 0)
644 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
645 tree fndecls, fndecl = 0;
646 bool is_conv_op;
647 const char *format = NULL;
649 for (fndecls = VEC_index (tree, methods, ix);
650 fndecls; fndecls = OVL_NEXT (fndecls))
652 tree p1, p2;
654 fndecl = OVL_CURRENT (fndecls);
655 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
656 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
658 /* We cannot simply call decls_match because this doesn't
659 work for static member functions that are pretending to
660 be methods, and because the name may have been changed by
661 asm("new_name"). */
663 /* Get rid of the this parameter on functions that become
664 static. */
665 if (DECL_STATIC_FUNCTION_P (fndecl)
666 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
667 p1 = TREE_CHAIN (p1);
669 /* A member template definition only matches a member template
670 declaration. */
671 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
672 continue;
674 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
675 TREE_TYPE (TREE_TYPE (fndecl)))
676 && compparms (p1, p2)
677 && (!is_template
678 || comp_template_parms (template_parms,
679 DECL_TEMPLATE_PARMS (fndecl)))
680 && (DECL_TEMPLATE_SPECIALIZATION (function)
681 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
682 && (!DECL_TEMPLATE_SPECIALIZATION (function)
683 || (DECL_TI_TEMPLATE (function)
684 == DECL_TI_TEMPLATE (fndecl))))
685 break;
687 if (fndecls)
689 if (pushed_scope)
690 pop_scope (pushed_scope);
691 return OVL_CURRENT (fndecls);
694 error_at (DECL_SOURCE_LOCATION (function),
695 "prototype for %q#D does not match any in class %qT",
696 function, ctype);
697 is_conv_op = DECL_CONV_FN_P (fndecl);
699 if (is_conv_op)
700 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
701 fndecls = VEC_index (tree, methods, ix);
702 while (fndecls)
704 fndecl = OVL_CURRENT (fndecls);
705 fndecls = OVL_NEXT (fndecls);
707 if (!fndecls && is_conv_op)
709 if (VEC_length (tree, methods) > (size_t) ++ix)
711 fndecls = VEC_index (tree, methods, ix);
712 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
714 fndecls = NULL_TREE;
715 is_conv_op = false;
718 else
719 is_conv_op = false;
721 if (format)
722 format = " %+#D";
723 else if (fndecls)
724 format = N_("candidates are: %+#D");
725 else
726 format = N_("candidate is: %+#D");
727 error (format, fndecl);
730 else if (!COMPLETE_TYPE_P (ctype))
731 cxx_incomplete_type_error (function, ctype);
732 else
733 error ("no %q#D member function declared in class %qT",
734 function, ctype);
736 if (pushed_scope)
737 pop_scope (pushed_scope);
738 return error_mark_node;
741 /* DECL is a function with vague linkage. Remember it so that at the
742 end of the translation unit we can decide whether or not to emit
743 it. */
745 void
746 note_vague_linkage_fn (tree decl)
748 DECL_DEFER_OUTPUT (decl) = 1;
749 VEC_safe_push (tree, gc, deferred_fns, decl);
752 /* We have just processed the DECL, which is a static data member.
753 The other parameters are as for cp_finish_decl. */
755 void
756 finish_static_data_member_decl (tree decl,
757 tree init, bool init_const_expr_p,
758 tree asmspec_tree,
759 int flags)
761 DECL_CONTEXT (decl) = current_class_type;
763 /* We cannot call pushdecl here, because that would fill in the
764 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
765 the right thing, namely, to put this decl out straight away. */
767 if (! processing_template_decl)
768 VEC_safe_push (tree, gc, pending_statics, decl);
770 if (LOCAL_CLASS_P (current_class_type))
771 permerror (input_location, "local class %q#T shall not have static data member %q#D",
772 current_class_type, decl);
774 /* Static consts need not be initialized in the class definition. */
775 if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
777 static int explained = 0;
779 error ("initializer invalid for static member with constructor");
780 if (!explained)
782 error ("(an out of class initialization is required)");
783 explained = 1;
785 init = NULL_TREE;
788 DECL_INITIAL (decl) = init;
789 DECL_IN_AGGR_P (decl) = 1;
791 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
792 && TYPE_DOMAIN (TREE_TYPE (decl)) == NULL_TREE)
793 SET_VAR_HAD_UNKNOWN_BOUND (decl);
795 cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
798 /* DECLARATOR and DECLSPECS correspond to a class member. The other
799 parameters are as for cp_finish_decl. Return the DECL for the
800 class member declared. */
802 tree
803 grokfield (const cp_declarator *declarator,
804 cp_decl_specifier_seq *declspecs,
805 tree init, bool init_const_expr_p,
806 tree asmspec_tree,
807 tree attrlist)
809 tree value;
810 const char *asmspec = 0;
811 int flags = LOOKUP_ONLYCONVERTING;
812 tree name;
814 if (init
815 && TREE_CODE (init) == TREE_LIST
816 && TREE_VALUE (init) == error_mark_node
817 && TREE_CHAIN (init) == NULL_TREE)
818 init = NULL_TREE;
820 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
821 if (! value || error_operand_p (value))
822 /* friend or constructor went bad. */
823 return error_mark_node;
825 if (TREE_CODE (value) == TYPE_DECL && init)
827 error ("typedef %qD is initialized (use decltype instead)", value);
828 init = NULL_TREE;
831 /* Pass friendly classes back. */
832 if (value == void_type_node)
833 return value;
835 /* Pass friend decls back. */
836 if ((TREE_CODE (value) == FUNCTION_DECL
837 || TREE_CODE (value) == TEMPLATE_DECL)
838 && DECL_CONTEXT (value) != current_class_type)
839 return value;
841 name = DECL_NAME (value);
843 if (name != NULL_TREE)
845 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
847 error ("explicit template argument list not allowed");
848 return error_mark_node;
851 if (IDENTIFIER_POINTER (name)[0] == '_'
852 && ! strcmp (IDENTIFIER_POINTER (name), "_vptr"))
853 error ("member %qD conflicts with virtual function table field name",
854 value);
857 /* Stash away type declarations. */
858 if (TREE_CODE (value) == TYPE_DECL)
860 DECL_NONLOCAL (value) = 1;
861 DECL_CONTEXT (value) = current_class_type;
863 if (processing_template_decl)
864 value = push_template_decl (value);
866 if (attrlist)
868 int attrflags = 0;
870 /* If this is a typedef that names the class for linkage purposes
871 (7.1.3p8), apply any attributes directly to the type. */
872 if (TAGGED_TYPE_P (TREE_TYPE (value))
873 && value == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))))
874 attrflags = ATTR_FLAG_TYPE_IN_PLACE;
876 cplus_decl_attributes (&value, attrlist, attrflags);
879 if (declspecs->specs[(int)ds_typedef]
880 && TREE_TYPE (value) != error_mark_node
881 && TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))) != value)
882 cp_set_underlying_type (value);
884 return value;
887 if (DECL_IN_AGGR_P (value))
889 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
890 return void_type_node;
893 if (asmspec_tree && asmspec_tree != error_mark_node)
894 asmspec = TREE_STRING_POINTER (asmspec_tree);
896 if (init)
898 if (TREE_CODE (value) == FUNCTION_DECL)
900 /* Initializers for functions are rejected early in the parser.
901 If we get here, it must be a pure specifier for a method. */
902 if (init == ridpointers[(int)RID_DELETE])
904 DECL_DELETED_FN (value) = 1;
905 DECL_DECLARED_INLINE_P (value) = 1;
906 DECL_INITIAL (value) = error_mark_node;
908 else if (init == ridpointers[(int)RID_DEFAULT])
910 if (defaultable_fn_check (value))
912 DECL_DEFAULTED_FN (value) = 1;
913 DECL_INITIALIZED_IN_CLASS_P (value) = 1;
914 DECL_DECLARED_INLINE_P (value) = 1;
917 else if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
919 if (integer_zerop (init))
920 DECL_PURE_VIRTUAL_P (value) = 1;
921 else if (error_operand_p (init))
922 ; /* An error has already been reported. */
923 else
924 error ("invalid initializer for member function %qD",
925 value);
927 else
929 gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
930 error ("initializer specified for static member function %qD",
931 value);
934 else if (pedantic && TREE_CODE (value) != VAR_DECL)
935 /* Already complained in grokdeclarator. */
936 init = NULL_TREE;
937 else if (!processing_template_decl)
939 if (TREE_CODE (init) == CONSTRUCTOR)
940 init = digest_init (TREE_TYPE (value), init);
941 else
942 init = integral_constant_value (init);
944 if (init != error_mark_node && !TREE_CONSTANT (init))
946 /* We can allow references to things that are effectively
947 static, since references are initialized with the
948 address. */
949 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
950 || (TREE_STATIC (init) == 0
951 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
953 error ("field initializer is not constant");
954 init = error_mark_node;
960 if (processing_template_decl
961 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
963 value = push_template_decl (value);
964 if (error_operand_p (value))
965 return error_mark_node;
968 if (attrlist)
969 cplus_decl_attributes (&value, attrlist, 0);
971 switch (TREE_CODE (value))
973 case VAR_DECL:
974 finish_static_data_member_decl (value, init, init_const_expr_p,
975 asmspec_tree, flags);
976 return value;
978 case FIELD_DECL:
979 if (asmspec)
980 error ("%<asm%> specifiers are not permitted on non-static data members");
981 if (DECL_INITIAL (value) == error_mark_node)
982 init = error_mark_node;
983 cp_finish_decl (value, init, /*init_const_expr_p=*/false,
984 NULL_TREE, flags);
985 DECL_INITIAL (value) = init;
986 DECL_IN_AGGR_P (value) = 1;
987 return value;
989 case FUNCTION_DECL:
990 if (asmspec)
991 set_user_assembler_name (value, asmspec);
993 cp_finish_decl (value,
994 /*init=*/NULL_TREE,
995 /*init_const_expr_p=*/false,
996 asmspec_tree, flags);
998 /* Pass friends back this way. */
999 if (DECL_FRIEND_P (value))
1000 return void_type_node;
1002 DECL_IN_AGGR_P (value) = 1;
1003 return value;
1005 default:
1006 gcc_unreachable ();
1008 return NULL_TREE;
1011 /* Like `grokfield', but for bitfields.
1012 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
1014 tree
1015 grokbitfield (const cp_declarator *declarator,
1016 cp_decl_specifier_seq *declspecs, tree width,
1017 tree attrlist)
1019 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, &attrlist);
1021 if (value == error_mark_node)
1022 return NULL_TREE; /* friends went bad. */
1024 /* Pass friendly classes back. */
1025 if (TREE_CODE (value) == VOID_TYPE)
1026 return void_type_node;
1028 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))
1029 && (POINTER_TYPE_P (value)
1030 || !dependent_type_p (TREE_TYPE (value))))
1032 error ("bit-field %qD with non-integral type", value);
1033 return error_mark_node;
1036 if (TREE_CODE (value) == TYPE_DECL)
1038 error ("cannot declare %qD to be a bit-field type", value);
1039 return NULL_TREE;
1042 /* Usually, finish_struct_1 catches bitfields with invalid types.
1043 But, in the case of bitfields with function type, we confuse
1044 ourselves into thinking they are member functions, so we must
1045 check here. */
1046 if (TREE_CODE (value) == FUNCTION_DECL)
1048 error ("cannot declare bit-field %qD with function type",
1049 DECL_NAME (value));
1050 return NULL_TREE;
1053 if (DECL_IN_AGGR_P (value))
1055 error ("%qD is already defined in the class %qT", value,
1056 DECL_CONTEXT (value));
1057 return void_type_node;
1060 if (TREE_STATIC (value))
1062 error ("static member %qD cannot be a bit-field", value);
1063 return NULL_TREE;
1065 cp_finish_decl (value, NULL_TREE, false, NULL_TREE, 0);
1067 if (width != error_mark_node)
1069 constant_expression_warning (width);
1070 DECL_INITIAL (value) = width;
1071 SET_DECL_C_BIT_FIELD (value);
1074 DECL_IN_AGGR_P (value) = 1;
1076 if (attrlist)
1077 cplus_decl_attributes (&value, attrlist, /*flags=*/0);
1079 return value;
1083 /* Returns true iff ATTR is an attribute which needs to be applied at
1084 instantiation time rather than template definition time. */
1086 static bool
1087 is_late_template_attribute (tree attr, tree decl)
1089 tree name = TREE_PURPOSE (attr);
1090 tree args = TREE_VALUE (attr);
1091 const struct attribute_spec *spec = lookup_attribute_spec (name);
1092 tree arg;
1094 if (!spec)
1095 /* Unknown attribute. */
1096 return false;
1098 /* Attribute weak handling wants to write out assembly right away. */
1099 if (is_attribute_p ("weak", name))
1100 return true;
1102 /* If any of the arguments are dependent expressions, we can't evaluate
1103 the attribute until instantiation time. */
1104 for (arg = args; arg; arg = TREE_CHAIN (arg))
1106 tree t = TREE_VALUE (arg);
1108 /* If the first attribute argument is an identifier, only consider
1109 second and following arguments. Attributes like mode, format,
1110 cleanup and several target specific attributes aren't late
1111 just because they have an IDENTIFIER_NODE as first argument. */
1112 if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1113 continue;
1115 if (value_dependent_expression_p (t)
1116 || type_dependent_expression_p (t))
1117 return true;
1120 if (TREE_CODE (decl) == TYPE_DECL
1121 || TYPE_P (decl)
1122 || spec->type_required)
1124 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1126 /* We can't apply any attributes to a completely unknown type until
1127 instantiation time. */
1128 enum tree_code code = TREE_CODE (type);
1129 if (code == TEMPLATE_TYPE_PARM
1130 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1131 || code == TYPENAME_TYPE)
1132 return true;
1133 /* Also defer most attributes on dependent types. This is not
1134 necessary in all cases, but is the better default. */
1135 else if (dependent_type_p (type)
1136 /* But attribute visibility specifically works on
1137 templates. */
1138 && !is_attribute_p ("visibility", name))
1139 return true;
1140 else
1141 return false;
1143 else
1144 return false;
1147 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1148 applied at instantiation time and return them. If IS_DEPENDENT is true,
1149 the declaration itself is dependent, so all attributes should be applied
1150 at instantiation time. */
1152 static tree
1153 splice_template_attributes (tree *attr_p, tree decl)
1155 tree *p = attr_p;
1156 tree late_attrs = NULL_TREE;
1157 tree *q = &late_attrs;
1159 if (!p)
1160 return NULL_TREE;
1162 for (; *p; )
1164 if (is_late_template_attribute (*p, decl))
1166 ATTR_IS_DEPENDENT (*p) = 1;
1167 *q = *p;
1168 *p = TREE_CHAIN (*p);
1169 q = &TREE_CHAIN (*q);
1170 *q = NULL_TREE;
1172 else
1173 p = &TREE_CHAIN (*p);
1176 return late_attrs;
1179 /* Remove any late attributes from the list in ATTR_P and attach them to
1180 DECL_P. */
1182 static void
1183 save_template_attributes (tree *attr_p, tree *decl_p)
1185 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1186 tree *q;
1187 tree old_attrs = NULL_TREE;
1189 if (!late_attrs)
1190 return;
1192 if (DECL_P (*decl_p))
1193 q = &DECL_ATTRIBUTES (*decl_p);
1194 else
1195 q = &TYPE_ATTRIBUTES (*decl_p);
1197 old_attrs = *q;
1199 /* Place the late attributes at the beginning of the attribute
1200 list. */
1201 TREE_CHAIN (tree_last (late_attrs)) = *q;
1202 *q = late_attrs;
1204 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1206 /* We've added new attributes directly to the main variant, so
1207 now we need to update all of the other variants to include
1208 these new attributes. */
1209 tree variant;
1210 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1211 variant = TYPE_NEXT_VARIANT (variant))
1213 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1214 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1219 /* Like reconstruct_complex_type, but handle also template trees. */
1221 tree
1222 cp_reconstruct_complex_type (tree type, tree bottom)
1224 tree inner, outer;
1226 if (TREE_CODE (type) == POINTER_TYPE)
1228 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1229 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1230 TYPE_REF_CAN_ALIAS_ALL (type));
1232 else if (TREE_CODE (type) == REFERENCE_TYPE)
1234 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1235 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1236 TYPE_REF_CAN_ALIAS_ALL (type));
1238 else if (TREE_CODE (type) == ARRAY_TYPE)
1240 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1241 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1242 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1243 element type qualification will be handled by the recursive
1244 cp_reconstruct_complex_type call and cp_build_qualified_type
1245 for ARRAY_TYPEs changes the element type. */
1246 return outer;
1248 else if (TREE_CODE (type) == FUNCTION_TYPE)
1250 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1251 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1252 outer = apply_memfn_quals (outer, type_memfn_quals (type));
1254 else if (TREE_CODE (type) == METHOD_TYPE)
1256 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1257 /* The build_method_type_directly() routine prepends 'this' to argument list,
1258 so we must compensate by getting rid of it. */
1259 outer
1260 = build_method_type_directly
1261 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1262 inner,
1263 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1265 else if (TREE_CODE (type) == OFFSET_TYPE)
1267 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1268 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1270 else
1271 return bottom;
1273 if (TYPE_ATTRIBUTES (type))
1274 outer = cp_build_type_attribute_variant (outer, TYPE_ATTRIBUTES (type));
1275 return cp_build_qualified_type (outer, cp_type_quals (type));
1278 /* Like decl_attributes, but handle C++ complexity. */
1280 void
1281 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1283 if (*decl == NULL_TREE || *decl == void_type_node
1284 || *decl == error_mark_node
1285 || attributes == NULL_TREE)
1286 return;
1288 if (processing_template_decl)
1290 if (check_for_bare_parameter_packs (attributes))
1291 return;
1293 save_template_attributes (&attributes, decl);
1294 if (attributes == NULL_TREE)
1295 return;
1298 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1299 decl = &DECL_TEMPLATE_RESULT (*decl);
1301 decl_attributes (decl, attributes, flags);
1303 if (TREE_CODE (*decl) == TYPE_DECL)
1304 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1307 /* Walks through the namespace- or function-scope anonymous union
1308 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1309 Returns one of the fields for use in the mangled name. */
1311 static tree
1312 build_anon_union_vars (tree type, tree object)
1314 tree main_decl = NULL_TREE;
1315 tree field;
1317 /* Rather than write the code to handle the non-union case,
1318 just give an error. */
1319 if (TREE_CODE (type) != UNION_TYPE)
1320 error ("anonymous struct not inside named type");
1322 for (field = TYPE_FIELDS (type);
1323 field != NULL_TREE;
1324 field = TREE_CHAIN (field))
1326 tree decl;
1327 tree ref;
1329 if (DECL_ARTIFICIAL (field))
1330 continue;
1331 if (TREE_CODE (field) != FIELD_DECL)
1333 permerror (input_location, "%q+#D invalid; an anonymous union can only "
1334 "have non-static data members", field);
1335 continue;
1338 if (TREE_PRIVATE (field))
1339 permerror (input_location, "private member %q+#D in anonymous union", field);
1340 else if (TREE_PROTECTED (field))
1341 permerror (input_location, "protected member %q+#D in anonymous union", field);
1343 if (processing_template_decl)
1344 ref = build_min_nt (COMPONENT_REF, object,
1345 DECL_NAME (field), NULL_TREE);
1346 else
1347 ref = build_class_member_access_expr (object, field, NULL_TREE,
1348 false, tf_warning_or_error);
1350 if (DECL_NAME (field))
1352 tree base;
1354 decl = build_decl (input_location,
1355 VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1356 DECL_ANON_UNION_VAR_P (decl) = 1;
1357 DECL_ARTIFICIAL (decl) = 1;
1359 base = get_base_address (object);
1360 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1361 TREE_STATIC (decl) = TREE_STATIC (base);
1362 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1364 SET_DECL_VALUE_EXPR (decl, ref);
1365 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1367 decl = pushdecl (decl);
1369 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1370 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1371 else
1372 decl = 0;
1374 if (main_decl == NULL_TREE)
1375 main_decl = decl;
1378 return main_decl;
1381 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1382 anonymous union, then all members must be laid out together. PUBLIC_P
1383 is nonzero if this union is not declared static. */
1385 void
1386 finish_anon_union (tree anon_union_decl)
1388 tree type;
1389 tree main_decl;
1390 bool public_p;
1392 if (anon_union_decl == error_mark_node)
1393 return;
1395 type = TREE_TYPE (anon_union_decl);
1396 public_p = TREE_PUBLIC (anon_union_decl);
1398 /* The VAR_DECL's context is the same as the TYPE's context. */
1399 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1401 if (TYPE_FIELDS (type) == NULL_TREE)
1402 return;
1404 if (public_p)
1406 error ("namespace-scope anonymous aggregates must be static");
1407 return;
1410 main_decl = build_anon_union_vars (type, anon_union_decl);
1411 if (main_decl == error_mark_node)
1412 return;
1413 if (main_decl == NULL_TREE)
1415 warning (0, "anonymous union with no members");
1416 return;
1419 if (!processing_template_decl)
1421 /* Use main_decl to set the mangled name. */
1422 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1423 maybe_commonize_var (anon_union_decl);
1424 mangle_decl (anon_union_decl);
1425 DECL_NAME (anon_union_decl) = NULL_TREE;
1428 pushdecl (anon_union_decl);
1429 if (building_stmt_tree ()
1430 && at_function_scope_p ())
1431 add_decl_expr (anon_union_decl);
1432 else if (!processing_template_decl)
1433 rest_of_decl_compilation (anon_union_decl,
1434 toplevel_bindings_p (), at_eof);
1437 /* Auxiliary functions to make type signatures for
1438 `operator new' and `operator delete' correspond to
1439 what compiler will be expecting. */
1441 tree
1442 coerce_new_type (tree type)
1444 int e = 0;
1445 tree args = TYPE_ARG_TYPES (type);
1447 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1449 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1451 e = 1;
1452 error ("%<operator new%> must return type %qT", ptr_type_node);
1455 if (args && args != void_list_node)
1457 if (TREE_PURPOSE (args))
1459 /* [basic.stc.dynamic.allocation]
1461 The first parameter shall not have an associated default
1462 argument. */
1463 error ("the first parameter of %<operator new%> cannot "
1464 "have a default argument");
1465 /* Throw away the default argument. */
1466 TREE_PURPOSE (args) = NULL_TREE;
1469 if (!same_type_p (TREE_VALUE (args), size_type_node))
1471 e = 2;
1472 args = TREE_CHAIN (args);
1475 else
1476 e = 2;
1478 if (e == 2)
1479 permerror (input_location, "%<operator new%> takes type %<size_t%> (%qT) "
1480 "as first parameter", size_type_node);
1482 switch (e)
1484 case 2:
1485 args = tree_cons (NULL_TREE, size_type_node, args);
1486 /* Fall through. */
1487 case 1:
1488 type = build_exception_variant
1489 (build_function_type (ptr_type_node, args),
1490 TYPE_RAISES_EXCEPTIONS (type));
1491 /* Fall through. */
1492 default:;
1494 return type;
1497 tree
1498 coerce_delete_type (tree type)
1500 int e = 0;
1501 tree args = TYPE_ARG_TYPES (type);
1503 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1505 if (!same_type_p (TREE_TYPE (type), void_type_node))
1507 e = 1;
1508 error ("%<operator delete%> must return type %qT", void_type_node);
1511 if (!args || args == void_list_node
1512 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1514 e = 2;
1515 if (args && args != void_list_node)
1516 args = TREE_CHAIN (args);
1517 error ("%<operator delete%> takes type %qT as first parameter",
1518 ptr_type_node);
1520 switch (e)
1522 case 2:
1523 args = tree_cons (NULL_TREE, ptr_type_node, args);
1524 /* Fall through. */
1525 case 1:
1526 type = build_exception_variant
1527 (build_function_type (void_type_node, args),
1528 TYPE_RAISES_EXCEPTIONS (type));
1529 /* Fall through. */
1530 default:;
1533 return type;
1536 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1537 and mark them as needed. */
1539 static void
1540 mark_vtable_entries (tree decl)
1542 tree fnaddr;
1543 unsigned HOST_WIDE_INT idx;
1545 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1546 idx, fnaddr)
1548 tree fn;
1550 STRIP_NOPS (fnaddr);
1552 if (TREE_CODE (fnaddr) != ADDR_EXPR
1553 && TREE_CODE (fnaddr) != FDESC_EXPR)
1554 /* This entry is an offset: a virtual base class offset, a
1555 virtual call offset, an RTTI offset, etc. */
1556 continue;
1558 fn = TREE_OPERAND (fnaddr, 0);
1559 TREE_ADDRESSABLE (fn) = 1;
1560 /* When we don't have vcall offsets, we output thunks whenever
1561 we output the vtables that contain them. With vcall offsets,
1562 we know all the thunks we'll need when we emit a virtual
1563 function, so we emit the thunks there instead. */
1564 if (DECL_THUNK_P (fn))
1565 use_thunk (fn, /*emit_p=*/0);
1566 mark_used (fn);
1570 /* Set DECL up to have the closest approximation of "initialized common"
1571 linkage available. */
1573 void
1574 comdat_linkage (tree decl)
1576 if (flag_weak)
1577 make_decl_one_only (decl, cxx_comdat_group (decl));
1578 else if (TREE_CODE (decl) == FUNCTION_DECL
1579 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1580 /* We can just emit function and compiler-generated variables
1581 statically; having multiple copies is (for the most part) only
1582 a waste of space.
1584 There are two correctness issues, however: the address of a
1585 template instantiation with external linkage should be the
1586 same, independent of what translation unit asks for the
1587 address, and this will not hold when we emit multiple copies of
1588 the function. However, there's little else we can do.
1590 Also, by default, the typeinfo implementation assumes that
1591 there will be only one copy of the string used as the name for
1592 each type. Therefore, if weak symbols are unavailable, the
1593 run-time library should perform a more conservative check; it
1594 should perform a string comparison, rather than an address
1595 comparison. */
1596 TREE_PUBLIC (decl) = 0;
1597 else
1599 /* Static data member template instantiations, however, cannot
1600 have multiple copies. */
1601 if (DECL_INITIAL (decl) == 0
1602 || DECL_INITIAL (decl) == error_mark_node)
1603 DECL_COMMON (decl) = 1;
1604 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1606 DECL_COMMON (decl) = 1;
1607 DECL_INITIAL (decl) = error_mark_node;
1609 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1611 /* We can't do anything useful; leave vars for explicit
1612 instantiation. */
1613 DECL_EXTERNAL (decl) = 1;
1614 DECL_NOT_REALLY_EXTERN (decl) = 0;
1618 DECL_COMDAT (decl) = 1;
1621 /* For win32 we also want to put explicit instantiations in
1622 linkonce sections, so that they will be merged with implicit
1623 instantiations; otherwise we get duplicate symbol errors.
1624 For Darwin we do not want explicit instantiations to be
1625 linkonce. */
1627 void
1628 maybe_make_one_only (tree decl)
1630 /* We used to say that this was not necessary on targets that support weak
1631 symbols, because the implicit instantiations will defer to the explicit
1632 one. However, that's not actually the case in SVR4; a strong definition
1633 after a weak one is an error. Also, not making explicit
1634 instantiations one_only means that we can end up with two copies of
1635 some template instantiations. */
1636 if (! flag_weak)
1637 return;
1639 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1640 we can get away with not emitting them if they aren't used. We need
1641 to for variables so that cp_finish_decl will update their linkage,
1642 because their DECL_INITIAL may not have been set properly yet. */
1644 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1645 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1646 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1648 make_decl_one_only (decl, cxx_comdat_group (decl));
1650 if (TREE_CODE (decl) == VAR_DECL)
1652 DECL_COMDAT (decl) = 1;
1653 /* Mark it needed so we don't forget to emit it. */
1654 mark_decl_referenced (decl);
1659 /* Returns true iff DECL, a FUNCTION_DECL or VAR_DECL, has vague linkage.
1660 This predicate will give the right answer during parsing of the
1661 function, which other tests may not. */
1663 bool
1664 vague_linkage_p (tree decl)
1666 /* Unfortunately, import_export_decl has not always been called
1667 before the function is processed, so we cannot simply check
1668 DECL_COMDAT. */
1669 return (DECL_COMDAT (decl)
1670 || (((TREE_CODE (decl) == FUNCTION_DECL
1671 && DECL_DECLARED_INLINE_P (decl))
1672 || (DECL_LANG_SPECIFIC (decl)
1673 && DECL_TEMPLATE_INSTANTIATION (decl)))
1674 && TREE_PUBLIC (decl)));
1677 /* Determine whether or not we want to specifically import or export CTYPE,
1678 using various heuristics. */
1680 static void
1681 import_export_class (tree ctype)
1683 /* -1 for imported, 1 for exported. */
1684 int import_export = 0;
1686 /* It only makes sense to call this function at EOF. The reason is
1687 that this function looks at whether or not the first non-inline
1688 non-abstract virtual member function has been defined in this
1689 translation unit. But, we can't possibly know that until we've
1690 seen the entire translation unit. */
1691 gcc_assert (at_eof);
1693 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1694 return;
1696 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1697 we will have CLASSTYPE_INTERFACE_ONLY set but not
1698 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1699 heuristic because someone will supply a #pragma implementation
1700 elsewhere, and deducing it here would produce a conflict. */
1701 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1702 return;
1704 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1705 import_export = -1;
1706 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1707 import_export = 1;
1708 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1709 && !flag_implicit_templates)
1710 /* For a template class, without -fimplicit-templates, check the
1711 repository. If the virtual table is assigned to this
1712 translation unit, then export the class; otherwise, import
1713 it. */
1714 import_export = repo_export_class_p (ctype) ? 1 : -1;
1715 else if (TYPE_POLYMORPHIC_P (ctype))
1717 /* The ABI specifies that the virtual table and associated
1718 information are emitted with the key method, if any. */
1719 tree method = CLASSTYPE_KEY_METHOD (ctype);
1720 /* If weak symbol support is not available, then we must be
1721 careful not to emit the vtable when the key function is
1722 inline. An inline function can be defined in multiple
1723 translation units. If we were to emit the vtable in each
1724 translation unit containing a definition, we would get
1725 multiple definition errors at link-time. */
1726 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1727 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1730 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1731 a definition anywhere else. */
1732 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1733 import_export = 0;
1735 /* Allow back ends the chance to overrule the decision. */
1736 if (targetm.cxx.import_export_class)
1737 import_export = targetm.cxx.import_export_class (ctype, import_export);
1739 if (import_export)
1741 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1742 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1746 /* Return true if VAR has already been provided to the back end; in that
1747 case VAR should not be modified further by the front end. */
1748 static bool
1749 var_finalized_p (tree var)
1751 return varpool_node (var)->finalized;
1754 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1755 must be emitted in this translation unit. Mark it as such. */
1757 void
1758 mark_needed (tree decl)
1760 /* It's possible that we no longer need to set
1761 TREE_SYMBOL_REFERENCED here directly, but doing so is
1762 harmless. */
1763 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1764 mark_decl_referenced (decl);
1767 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1768 returns true if a definition of this entity should be provided in
1769 this object file. Callers use this function to determine whether
1770 or not to let the back end know that a definition of DECL is
1771 available in this translation unit. */
1773 bool
1774 decl_needed_p (tree decl)
1776 gcc_assert (TREE_CODE (decl) == VAR_DECL
1777 || TREE_CODE (decl) == FUNCTION_DECL);
1778 /* This function should only be called at the end of the translation
1779 unit. We cannot be sure of whether or not something will be
1780 COMDAT until that point. */
1781 gcc_assert (at_eof);
1783 /* All entities with external linkage that are not COMDAT should be
1784 emitted; they may be referred to from other object files. */
1785 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1786 return true;
1787 /* If this entity was used, let the back end see it; it will decide
1788 whether or not to emit it into the object file. */
1789 if (TREE_USED (decl)
1790 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1791 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1792 return true;
1793 /* Functions marked "dllexport" must be emitted so that they are
1794 visible to other DLLs. */
1795 if (lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))
1796 return true;
1797 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1798 reference to DECL might cause it to be emitted later. */
1799 return false;
1802 /* If necessary, write out the vtables for the dynamic class CTYPE.
1803 Returns true if any vtables were emitted. */
1805 static bool
1806 maybe_emit_vtables (tree ctype)
1808 tree vtbl;
1809 tree primary_vtbl;
1810 int needed = 0;
1811 struct varpool_node *current = NULL, *last = NULL, *first = NULL;
1813 /* If the vtables for this class have already been emitted there is
1814 nothing more to do. */
1815 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1816 if (var_finalized_p (primary_vtbl))
1817 return false;
1818 /* Ignore dummy vtables made by get_vtable_decl. */
1819 if (TREE_TYPE (primary_vtbl) == void_type_node)
1820 return false;
1822 /* On some targets, we cannot determine the key method until the end
1823 of the translation unit -- which is when this function is
1824 called. */
1825 if (!targetm.cxx.key_method_may_be_inline ())
1826 determine_key_method (ctype);
1828 /* See if any of the vtables are needed. */
1829 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1831 import_export_decl (vtbl);
1832 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1833 needed = 1;
1835 if (!needed)
1837 /* If the references to this class' vtables are optimized away,
1838 still emit the appropriate debugging information. See
1839 dfs_debug_mark. */
1840 if (DECL_COMDAT (primary_vtbl)
1841 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1842 note_debug_info_needed (ctype);
1843 return false;
1846 /* The ABI requires that we emit all of the vtables if we emit any
1847 of them. */
1848 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1850 /* Mark entities references from the virtual table as used. */
1851 mark_vtable_entries (vtbl);
1853 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1855 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl), LOOKUP_NORMAL);
1857 /* It had better be all done at compile-time. */
1858 gcc_assert (!expr);
1861 /* Write it out. */
1862 DECL_EXTERNAL (vtbl) = 0;
1863 rest_of_decl_compilation (vtbl, 1, 1);
1865 /* Because we're only doing syntax-checking, we'll never end up
1866 actually marking the variable as written. */
1867 if (flag_syntax_only)
1868 TREE_ASM_WRITTEN (vtbl) = 1;
1869 else if (DECL_COMDAT (vtbl))
1871 current = varpool_node (vtbl);
1872 if (last)
1873 last->same_comdat_group = current;
1874 last = current;
1875 if (!first)
1876 first = current;
1880 if (first != last)
1881 last->same_comdat_group = first;
1883 /* Since we're writing out the vtable here, also write the debug
1884 info. */
1885 note_debug_info_needed (ctype);
1887 return true;
1890 /* A special return value from type_visibility meaning internal
1891 linkage. */
1893 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1895 /* walk_tree helper function for type_visibility. */
1897 static tree
1898 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1900 int *vis_p = (int *)data;
1901 if (! TYPE_P (*tp))
1903 *walk_subtrees = 0;
1905 else if (CLASS_TYPE_P (*tp))
1907 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1909 *vis_p = VISIBILITY_ANON;
1910 return *tp;
1912 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1913 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1915 return NULL;
1918 /* Returns the visibility of TYPE, which is the minimum visibility of its
1919 component types. */
1921 static int
1922 type_visibility (tree type)
1924 int vis = VISIBILITY_DEFAULT;
1925 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1926 return vis;
1929 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1930 specified (or if VISIBILITY is static). */
1932 static bool
1933 constrain_visibility (tree decl, int visibility)
1935 if (visibility == VISIBILITY_ANON)
1937 /* extern "C" declarations aren't affected by the anonymous
1938 namespace. */
1939 if (!DECL_EXTERN_C_P (decl))
1941 TREE_PUBLIC (decl) = 0;
1942 DECL_WEAK (decl) = 0;
1943 DECL_COMMON (decl) = 0;
1944 DECL_COMDAT_GROUP (decl) = NULL_TREE;
1945 DECL_INTERFACE_KNOWN (decl) = 1;
1946 if (DECL_LANG_SPECIFIC (decl))
1947 DECL_NOT_REALLY_EXTERN (decl) = 1;
1950 else if (visibility > DECL_VISIBILITY (decl)
1951 && !DECL_VISIBILITY_SPECIFIED (decl))
1953 DECL_VISIBILITY (decl) = (enum symbol_visibility) visibility;
1954 return true;
1956 return false;
1959 /* Constrain the visibility of DECL based on the visibility of its template
1960 arguments. */
1962 static void
1963 constrain_visibility_for_template (tree decl, tree targs)
1965 /* If this is a template instantiation, check the innermost
1966 template args for visibility constraints. The outer template
1967 args are covered by the class check. */
1968 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1969 int i;
1970 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1972 int vis = 0;
1974 tree arg = TREE_VEC_ELT (args, i-1);
1975 if (TYPE_P (arg))
1976 vis = type_visibility (arg);
1977 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1979 STRIP_NOPS (arg);
1980 if (TREE_CODE (arg) == ADDR_EXPR)
1981 arg = TREE_OPERAND (arg, 0);
1982 if (TREE_CODE (arg) == VAR_DECL
1983 || TREE_CODE (arg) == FUNCTION_DECL)
1985 if (! TREE_PUBLIC (arg))
1986 vis = VISIBILITY_ANON;
1987 else
1988 vis = DECL_VISIBILITY (arg);
1991 if (vis)
1992 constrain_visibility (decl, vis);
1996 /* Like c_determine_visibility, but with additional C++-specific
1997 behavior.
1999 Function-scope entities can rely on the function's visibility because
2000 it is set in start_preparsed_function.
2002 Class-scope entities cannot rely on the class's visibility until the end
2003 of the enclosing class definition.
2005 Note that because namespaces have multiple independent definitions,
2006 namespace visibility is handled elsewhere using the #pragma visibility
2007 machinery rather than by decorating the namespace declaration.
2009 The goal is for constraints from the type to give a diagnostic, and
2010 other constraints to be applied silently. */
2012 void
2013 determine_visibility (tree decl)
2015 tree class_type = NULL_TREE;
2016 bool use_template;
2017 bool orig_visibility_specified;
2018 enum symbol_visibility orig_visibility;
2020 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
2022 /* Only relevant for names with external linkage. */
2023 if (!TREE_PUBLIC (decl))
2024 return;
2026 /* Cloned constructors and destructors get the same visibility as
2027 the underlying function. That should be set up in
2028 maybe_clone_body. */
2029 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
2031 orig_visibility_specified = DECL_VISIBILITY_SPECIFIED (decl);
2032 orig_visibility = DECL_VISIBILITY (decl);
2034 if (TREE_CODE (decl) == TYPE_DECL)
2036 if (CLASS_TYPE_P (TREE_TYPE (decl)))
2037 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
2038 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
2039 use_template = 1;
2040 else
2041 use_template = 0;
2043 else if (DECL_LANG_SPECIFIC (decl))
2044 use_template = DECL_USE_TEMPLATE (decl);
2045 else
2046 use_template = 0;
2048 /* If DECL is a member of a class, visibility specifiers on the
2049 class can influence the visibility of the DECL. */
2050 if (DECL_CLASS_SCOPE_P (decl))
2051 class_type = DECL_CONTEXT (decl);
2052 else
2054 /* Not a class member. */
2056 /* Virtual tables have DECL_CONTEXT set to their associated class,
2057 so they are automatically handled above. */
2058 gcc_assert (TREE_CODE (decl) != VAR_DECL
2059 || !DECL_VTABLE_OR_VTT_P (decl));
2061 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
2063 /* Local statics and classes get the visibility of their
2064 containing function by default, except that
2065 -fvisibility-inlines-hidden doesn't affect them. */
2066 tree fn = DECL_CONTEXT (decl);
2067 if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
2069 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
2070 DECL_VISIBILITY_SPECIFIED (decl) =
2071 DECL_VISIBILITY_SPECIFIED (fn);
2073 else
2074 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
2076 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
2077 but have no TEMPLATE_INFO, so don't try to check it. */
2078 use_template = 0;
2080 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
2081 && flag_visibility_ms_compat)
2083 /* Under -fvisibility-ms-compat, types are visible by default,
2084 even though their contents aren't. */
2085 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
2086 int underlying_vis = type_visibility (underlying_type);
2087 if (underlying_vis == VISIBILITY_ANON
2088 || CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type))
2089 constrain_visibility (decl, underlying_vis);
2090 else
2091 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
2093 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2095 /* tinfo visibility is based on the type it's for. */
2096 constrain_visibility
2097 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
2099 /* Give the target a chance to override the visibility associated
2100 with DECL. */
2101 if (TREE_PUBLIC (decl)
2102 && !DECL_REALLY_EXTERN (decl)
2103 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
2104 && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
2105 targetm.cxx.determine_class_data_visibility (decl);
2107 else if (use_template)
2108 /* Template instantiations and specializations get visibility based
2109 on their template unless they override it with an attribute. */;
2110 else if (! DECL_VISIBILITY_SPECIFIED (decl))
2112 /* Set default visibility to whatever the user supplied with
2113 #pragma GCC visibility or a namespace visibility attribute. */
2114 DECL_VISIBILITY (decl) = default_visibility;
2115 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2119 if (use_template)
2121 /* If the specialization doesn't specify visibility, use the
2122 visibility from the template. */
2123 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2124 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2125 : DECL_TEMPLATE_INFO (decl));
2126 tree args = TI_ARGS (tinfo);
2128 if (args != error_mark_node)
2130 int depth = TMPL_ARGS_DEPTH (args);
2131 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2133 if (!DECL_VISIBILITY_SPECIFIED (decl))
2135 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2136 DECL_VISIBILITY_SPECIFIED (decl)
2137 = DECL_VISIBILITY_SPECIFIED (pattern);
2140 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
2141 if (args && depth > template_class_depth (class_type))
2142 /* Limit visibility based on its template arguments. */
2143 constrain_visibility_for_template (decl, args);
2147 if (class_type)
2148 determine_visibility_from_class (decl, class_type);
2150 if (decl_anon_ns_mem_p (decl))
2151 /* Names in an anonymous namespace get internal linkage.
2152 This might change once we implement export. */
2153 constrain_visibility (decl, VISIBILITY_ANON);
2154 else if (TREE_CODE (decl) != TYPE_DECL)
2156 /* Propagate anonymity from type to decl. */
2157 int tvis = type_visibility (TREE_TYPE (decl));
2158 if (tvis == VISIBILITY_ANON
2159 || ! DECL_VISIBILITY_SPECIFIED (decl))
2160 constrain_visibility (decl, tvis);
2162 else if (no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/true))
2163 /* DR 757: A type without linkage shall not be used as the type of a
2164 variable or function with linkage, unless
2165 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
2166 o the variable or function is not used (3.2 [basic.def.odr]) or is
2167 defined in the same translation unit.
2169 Since non-extern "C" decls need to be defined in the same
2170 translation unit, we can make the type internal. */
2171 constrain_visibility (decl, VISIBILITY_ANON);
2173 /* If visibility changed and DECL already has DECL_RTL, ensure
2174 symbol flags are updated. */
2175 if ((DECL_VISIBILITY (decl) != orig_visibility
2176 || DECL_VISIBILITY_SPECIFIED (decl) != orig_visibility_specified)
2177 && ((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
2178 || TREE_CODE (decl) == FUNCTION_DECL)
2179 && DECL_RTL_SET_P (decl))
2180 make_decl_rtl (decl);
2183 /* By default, static data members and function members receive
2184 the visibility of their containing class. */
2186 static void
2187 determine_visibility_from_class (tree decl, tree class_type)
2189 if (DECL_VISIBILITY_SPECIFIED (decl))
2190 return;
2192 if (visibility_options.inlines_hidden
2193 /* Don't do this for inline templates; specializations might not be
2194 inline, and we don't want them to inherit the hidden
2195 visibility. We'll set it here for all inline instantiations. */
2196 && !processing_template_decl
2197 && TREE_CODE (decl) == FUNCTION_DECL
2198 && DECL_DECLARED_INLINE_P (decl)
2199 && (! DECL_LANG_SPECIFIC (decl)
2200 || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2201 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2202 else
2204 /* Default to the class visibility. */
2205 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2206 DECL_VISIBILITY_SPECIFIED (decl)
2207 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2210 /* Give the target a chance to override the visibility associated
2211 with DECL. */
2212 if (TREE_CODE (decl) == VAR_DECL
2213 && (DECL_TINFO_P (decl)
2214 || (DECL_VTABLE_OR_VTT_P (decl)
2215 /* Construction virtual tables are not exported because
2216 they cannot be referred to from other object files;
2217 their name is not standardized by the ABI. */
2218 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2219 && TREE_PUBLIC (decl)
2220 && !DECL_REALLY_EXTERN (decl)
2221 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2222 targetm.cxx.determine_class_data_visibility (decl);
2225 /* Constrain the visibility of a class TYPE based on the visibility of its
2226 field types. Warn if any fields require lesser visibility. */
2228 void
2229 constrain_class_visibility (tree type)
2231 tree binfo;
2232 tree t;
2233 int i;
2235 int vis = type_visibility (type);
2237 if (vis == VISIBILITY_ANON
2238 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2239 return;
2241 /* Don't warn about visibility if the class has explicit visibility. */
2242 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2243 vis = VISIBILITY_INTERNAL;
2245 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
2246 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2248 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2249 int subvis = type_visibility (ftype);
2251 if (subvis == VISIBILITY_ANON)
2253 if (!in_main_input_context ())
2254 warning (0, "\
2255 %qT has a field %qD whose type uses the anonymous namespace",
2256 type, t);
2258 else if (MAYBE_CLASS_TYPE_P (ftype)
2259 && vis < VISIBILITY_HIDDEN
2260 && subvis >= VISIBILITY_HIDDEN)
2261 warning (OPT_Wattributes, "\
2262 %qT declared with greater visibility than the type of its field %qD",
2263 type, t);
2266 binfo = TYPE_BINFO (type);
2267 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2269 int subvis = type_visibility (TREE_TYPE (t));
2271 if (subvis == VISIBILITY_ANON)
2273 if (!in_main_input_context())
2274 warning (0, "\
2275 %qT has a base %qT whose type uses the anonymous namespace",
2276 type, TREE_TYPE (t));
2278 else if (vis < VISIBILITY_HIDDEN
2279 && subvis >= VISIBILITY_HIDDEN)
2280 warning (OPT_Wattributes, "\
2281 %qT declared with greater visibility than its base %qT",
2282 type, TREE_TYPE (t));
2286 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2287 for DECL has not already been determined, do so now by setting
2288 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2289 function is called entities with vague linkage whose definitions
2290 are available must have TREE_PUBLIC set.
2292 If this function decides to place DECL in COMDAT, it will set
2293 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2294 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2295 callers defer that decision until it is clear that DECL is actually
2296 required. */
2298 void
2299 import_export_decl (tree decl)
2301 int emit_p;
2302 bool comdat_p;
2303 bool import_p;
2304 tree class_type = NULL_TREE;
2306 if (DECL_INTERFACE_KNOWN (decl))
2307 return;
2309 /* We cannot determine what linkage to give to an entity with vague
2310 linkage until the end of the file. For example, a virtual table
2311 for a class will be defined if and only if the key method is
2312 defined in this translation unit. As a further example, consider
2313 that when compiling a translation unit that uses PCH file with
2314 "-frepo" it would be incorrect to make decisions about what
2315 entities to emit when building the PCH; those decisions must be
2316 delayed until the repository information has been processed. */
2317 gcc_assert (at_eof);
2318 /* Object file linkage for explicit instantiations is handled in
2319 mark_decl_instantiated. For static variables in functions with
2320 vague linkage, maybe_commonize_var is used.
2322 Therefore, the only declarations that should be provided to this
2323 function are those with external linkage that are:
2325 * implicit instantiations of function templates
2327 * inline function
2329 * implicit instantiations of static data members of class
2330 templates
2332 * virtual tables
2334 * typeinfo objects
2336 Furthermore, all entities that reach this point must have a
2337 definition available in this translation unit.
2339 The following assertions check these conditions. */
2340 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2341 || TREE_CODE (decl) == VAR_DECL);
2342 /* Any code that creates entities with TREE_PUBLIC cleared should
2343 also set DECL_INTERFACE_KNOWN. */
2344 gcc_assert (TREE_PUBLIC (decl));
2345 if (TREE_CODE (decl) == FUNCTION_DECL)
2346 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2347 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2348 || DECL_DECLARED_INLINE_P (decl));
2349 else
2350 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2351 || DECL_VTABLE_OR_VTT_P (decl)
2352 || DECL_TINFO_P (decl));
2353 /* Check that a definition of DECL is available in this translation
2354 unit. */
2355 gcc_assert (!DECL_REALLY_EXTERN (decl));
2357 /* Assume that DECL will not have COMDAT linkage. */
2358 comdat_p = false;
2359 /* Assume that DECL will not be imported into this translation
2360 unit. */
2361 import_p = false;
2363 /* See if the repository tells us whether or not to emit DECL in
2364 this translation unit. */
2365 emit_p = repo_emit_p (decl);
2366 if (emit_p == 0)
2367 import_p = true;
2368 else if (emit_p == 1)
2370 /* The repository indicates that this entity should be defined
2371 here. Make sure the back end honors that request. */
2372 if (TREE_CODE (decl) == VAR_DECL)
2373 mark_needed (decl);
2374 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2375 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2377 tree clone;
2378 FOR_EACH_CLONE (clone, decl)
2379 mark_needed (clone);
2381 else
2382 mark_needed (decl);
2383 /* Output the definition as an ordinary strong definition. */
2384 DECL_EXTERNAL (decl) = 0;
2385 DECL_INTERFACE_KNOWN (decl) = 1;
2386 return;
2389 if (import_p)
2390 /* We have already decided what to do with this DECL; there is no
2391 need to check anything further. */
2393 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2395 class_type = DECL_CONTEXT (decl);
2396 import_export_class (class_type);
2397 if (TYPE_FOR_JAVA (class_type))
2398 import_p = true;
2399 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2400 && CLASSTYPE_INTERFACE_ONLY (class_type))
2401 import_p = true;
2402 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2403 && !CLASSTYPE_USE_TEMPLATE (class_type)
2404 && CLASSTYPE_KEY_METHOD (class_type)
2405 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2406 /* The ABI requires that all virtual tables be emitted with
2407 COMDAT linkage. However, on systems where COMDAT symbols
2408 don't show up in the table of contents for a static
2409 archive, or on systems without weak symbols (where we
2410 approximate COMDAT linkage by using internal linkage), the
2411 linker will report errors about undefined symbols because
2412 it will not see the virtual table definition. Therefore,
2413 in the case that we know that the virtual table will be
2414 emitted in only one translation unit, we make the virtual
2415 table an ordinary definition with external linkage. */
2416 DECL_EXTERNAL (decl) = 0;
2417 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2419 /* CLASS_TYPE is being exported from this translation unit,
2420 so DECL should be defined here. */
2421 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2422 /* If a class is declared in a header with the "extern
2423 template" extension, then it will not be instantiated,
2424 even in translation units that would normally require
2425 it. Often such classes are explicitly instantiated in
2426 one translation unit. Therefore, the explicit
2427 instantiation must be made visible to other translation
2428 units. */
2429 DECL_EXTERNAL (decl) = 0;
2430 else
2432 /* The generic C++ ABI says that class data is always
2433 COMDAT, even if there is a key function. Some
2434 variants (e.g., the ARM EABI) says that class data
2435 only has COMDAT linkage if the class data might be
2436 emitted in more than one translation unit. When the
2437 key method can be inline and is inline, we still have
2438 to arrange for comdat even though
2439 class_data_always_comdat is false. */
2440 if (!CLASSTYPE_KEY_METHOD (class_type)
2441 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2442 || targetm.cxx.class_data_always_comdat ())
2444 /* The ABI requires COMDAT linkage. Normally, we
2445 only emit COMDAT things when they are needed;
2446 make sure that we realize that this entity is
2447 indeed needed. */
2448 comdat_p = true;
2449 mark_needed (decl);
2453 else if (!flag_implicit_templates
2454 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2455 import_p = true;
2456 else
2457 comdat_p = true;
2459 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2461 tree type = TREE_TYPE (DECL_NAME (decl));
2462 if (CLASS_TYPE_P (type))
2464 class_type = type;
2465 import_export_class (type);
2466 if (CLASSTYPE_INTERFACE_KNOWN (type)
2467 && TYPE_POLYMORPHIC_P (type)
2468 && CLASSTYPE_INTERFACE_ONLY (type)
2469 /* If -fno-rtti was specified, then we cannot be sure
2470 that RTTI information will be emitted with the
2471 virtual table of the class, so we must emit it
2472 wherever it is used. */
2473 && flag_rtti)
2474 import_p = true;
2475 else
2477 if (CLASSTYPE_INTERFACE_KNOWN (type)
2478 && !CLASSTYPE_INTERFACE_ONLY (type))
2480 comdat_p = (targetm.cxx.class_data_always_comdat ()
2481 || (CLASSTYPE_KEY_METHOD (type)
2482 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2483 mark_needed (decl);
2484 if (!flag_weak)
2486 comdat_p = false;
2487 DECL_EXTERNAL (decl) = 0;
2490 else
2491 comdat_p = true;
2494 else
2495 comdat_p = true;
2497 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2498 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2500 /* DECL is an implicit instantiation of a function or static
2501 data member. */
2502 if ((flag_implicit_templates
2503 && !flag_use_repository)
2504 || (flag_implicit_inline_templates
2505 && TREE_CODE (decl) == FUNCTION_DECL
2506 && DECL_DECLARED_INLINE_P (decl)))
2507 comdat_p = true;
2508 else
2509 /* If we are not implicitly generating templates, then mark
2510 this entity as undefined in this translation unit. */
2511 import_p = true;
2513 else if (DECL_FUNCTION_MEMBER_P (decl))
2515 if (!DECL_DECLARED_INLINE_P (decl))
2517 tree ctype = DECL_CONTEXT (decl);
2518 import_export_class (ctype);
2519 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2521 DECL_NOT_REALLY_EXTERN (decl)
2522 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2523 || (DECL_DECLARED_INLINE_P (decl)
2524 && ! flag_implement_inlines
2525 && !DECL_VINDEX (decl)));
2527 if (!DECL_NOT_REALLY_EXTERN (decl))
2528 DECL_EXTERNAL (decl) = 1;
2530 /* Always make artificials weak. */
2531 if (DECL_ARTIFICIAL (decl) && flag_weak)
2532 comdat_p = true;
2533 else
2534 maybe_make_one_only (decl);
2537 else
2538 comdat_p = true;
2540 else
2541 comdat_p = true;
2543 if (import_p)
2545 /* If we are importing DECL into this translation unit, mark is
2546 an undefined here. */
2547 DECL_EXTERNAL (decl) = 1;
2548 DECL_NOT_REALLY_EXTERN (decl) = 0;
2550 else if (comdat_p)
2552 /* If we decided to put DECL in COMDAT, mark it accordingly at
2553 this point. */
2554 comdat_linkage (decl);
2557 DECL_INTERFACE_KNOWN (decl) = 1;
2560 /* Return an expression that performs the destruction of DECL, which
2561 must be a VAR_DECL whose type has a non-trivial destructor, or is
2562 an array whose (innermost) elements have a non-trivial destructor. */
2564 tree
2565 build_cleanup (tree decl)
2567 tree temp;
2568 tree type = TREE_TYPE (decl);
2570 /* This function should only be called for declarations that really
2571 require cleanups. */
2572 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2574 /* Treat all objects with destructors as used; the destructor may do
2575 something substantive. */
2576 mark_used (decl);
2578 if (TREE_CODE (type) == ARRAY_TYPE)
2579 temp = decl;
2580 else
2581 temp = build_address (decl);
2582 temp = build_delete (TREE_TYPE (temp), temp,
2583 sfk_complete_destructor,
2584 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2585 return temp;
2588 /* Returns the initialization guard variable for the variable DECL,
2589 which has static storage duration. */
2591 tree
2592 get_guard (tree decl)
2594 tree sname;
2595 tree guard;
2597 sname = mangle_guard_variable (decl);
2598 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2599 if (! guard)
2601 tree guard_type;
2603 /* We use a type that is big enough to contain a mutex as well
2604 as an integer counter. */
2605 guard_type = targetm.cxx.guard_type ();
2606 guard = build_decl (DECL_SOURCE_LOCATION (decl),
2607 VAR_DECL, sname, guard_type);
2609 /* The guard should have the same linkage as what it guards. */
2610 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2611 TREE_STATIC (guard) = TREE_STATIC (decl);
2612 DECL_COMMON (guard) = DECL_COMMON (decl);
2613 DECL_COMDAT (guard) = DECL_COMDAT (decl);
2614 if (DECL_ONE_ONLY (decl))
2615 make_decl_one_only (guard, cxx_comdat_group (guard));
2616 if (TREE_PUBLIC (decl))
2617 DECL_WEAK (guard) = DECL_WEAK (decl);
2618 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2619 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2621 DECL_ARTIFICIAL (guard) = 1;
2622 DECL_IGNORED_P (guard) = 1;
2623 TREE_USED (guard) = 1;
2624 pushdecl_top_level_and_finish (guard, NULL_TREE);
2626 return guard;
2629 /* Return those bits of the GUARD variable that should be set when the
2630 guarded entity is actually initialized. */
2632 static tree
2633 get_guard_bits (tree guard)
2635 if (!targetm.cxx.guard_mask_bit ())
2637 /* We only set the first byte of the guard, in order to leave room
2638 for a mutex in the high-order bits. */
2639 guard = build1 (ADDR_EXPR,
2640 build_pointer_type (TREE_TYPE (guard)),
2641 guard);
2642 guard = build1 (NOP_EXPR,
2643 build_pointer_type (char_type_node),
2644 guard);
2645 guard = build1 (INDIRECT_REF, char_type_node, guard);
2648 return guard;
2651 /* Return an expression which determines whether or not the GUARD
2652 variable has already been initialized. */
2654 tree
2655 get_guard_cond (tree guard)
2657 tree guard_value;
2659 /* Check to see if the GUARD is zero. */
2660 guard = get_guard_bits (guard);
2662 /* Mask off all but the low bit. */
2663 if (targetm.cxx.guard_mask_bit ())
2665 guard_value = integer_one_node;
2666 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2667 guard_value = convert (TREE_TYPE (guard), guard_value);
2668 guard = cp_build_binary_op (input_location,
2669 BIT_AND_EXPR, guard, guard_value,
2670 tf_warning_or_error);
2673 guard_value = integer_zero_node;
2674 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2675 guard_value = convert (TREE_TYPE (guard), guard_value);
2676 return cp_build_binary_op (input_location,
2677 EQ_EXPR, guard, guard_value,
2678 tf_warning_or_error);
2681 /* Return an expression which sets the GUARD variable, indicating that
2682 the variable being guarded has been initialized. */
2684 tree
2685 set_guard (tree guard)
2687 tree guard_init;
2689 /* Set the GUARD to one. */
2690 guard = get_guard_bits (guard);
2691 guard_init = integer_one_node;
2692 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2693 guard_init = convert (TREE_TYPE (guard), guard_init);
2694 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2695 tf_warning_or_error);
2698 /* Start the process of running a particular set of global constructors
2699 or destructors. Subroutine of do_[cd]tors. */
2701 static tree
2702 start_objects (int method_type, int initp)
2704 tree body;
2705 tree fndecl;
2706 char type[10];
2708 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2710 if (initp != DEFAULT_INIT_PRIORITY)
2712 char joiner;
2714 #ifdef JOINER
2715 joiner = JOINER;
2716 #else
2717 joiner = '_';
2718 #endif
2720 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2722 else
2723 sprintf (type, "%c", method_type);
2725 fndecl = build_lang_decl (FUNCTION_DECL,
2726 get_file_function_name (type),
2727 build_function_type_list (void_type_node,
2728 NULL_TREE));
2729 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2731 TREE_PUBLIC (current_function_decl) = 0;
2733 /* Mark as artificial because it's not explicitly in the user's
2734 source code. */
2735 DECL_ARTIFICIAL (current_function_decl) = 1;
2737 /* Mark this declaration as used to avoid spurious warnings. */
2738 TREE_USED (current_function_decl) = 1;
2740 /* Mark this function as a global constructor or destructor. */
2741 if (method_type == 'I')
2742 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2743 else
2744 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2746 body = begin_compound_stmt (BCS_FN_BODY);
2748 return body;
2751 /* Finish the process of running a particular set of global constructors
2752 or destructors. Subroutine of do_[cd]tors. */
2754 static void
2755 finish_objects (int method_type, int initp, tree body)
2757 tree fn;
2759 /* Finish up. */
2760 finish_compound_stmt (body);
2761 fn = finish_function (0);
2763 if (method_type == 'I')
2765 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2766 decl_init_priority_insert (fn, initp);
2768 else
2770 DECL_STATIC_DESTRUCTOR (fn) = 1;
2771 decl_fini_priority_insert (fn, initp);
2774 expand_or_defer_fn (fn);
2777 /* The names of the parameters to the function created to handle
2778 initializations and destructions for objects with static storage
2779 duration. */
2780 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2781 #define PRIORITY_IDENTIFIER "__priority"
2783 /* The name of the function we create to handle initializations and
2784 destructions for objects with static storage duration. */
2785 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2787 /* The declaration for the __INITIALIZE_P argument. */
2788 static GTY(()) tree initialize_p_decl;
2790 /* The declaration for the __PRIORITY argument. */
2791 static GTY(()) tree priority_decl;
2793 /* The declaration for the static storage duration function. */
2794 static GTY(()) tree ssdf_decl;
2796 /* All the static storage duration functions created in this
2797 translation unit. */
2798 static GTY(()) VEC(tree,gc) *ssdf_decls;
2800 /* A map from priority levels to information about that priority
2801 level. There may be many such levels, so efficient lookup is
2802 important. */
2803 static splay_tree priority_info_map;
2805 /* Begins the generation of the function that will handle all
2806 initialization and destruction of objects with static storage
2807 duration. The function generated takes two parameters of type
2808 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2809 nonzero, it performs initializations. Otherwise, it performs
2810 destructions. It only performs those initializations or
2811 destructions with the indicated __PRIORITY. The generated function
2812 returns no value.
2814 It is assumed that this function will only be called once per
2815 translation unit. */
2817 static tree
2818 start_static_storage_duration_function (unsigned count)
2820 tree type;
2821 tree body;
2822 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2824 /* Create the identifier for this function. It will be of the form
2825 SSDF_IDENTIFIER_<number>. */
2826 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2828 type = build_function_type_list (void_type_node,
2829 integer_type_node, integer_type_node,
2830 NULL_TREE);
2832 /* Create the FUNCTION_DECL itself. */
2833 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2834 get_identifier (id),
2835 type);
2836 TREE_PUBLIC (ssdf_decl) = 0;
2837 DECL_ARTIFICIAL (ssdf_decl) = 1;
2839 /* Put this function in the list of functions to be called from the
2840 static constructors and destructors. */
2841 if (!ssdf_decls)
2843 ssdf_decls = VEC_alloc (tree, gc, 32);
2845 /* Take this opportunity to initialize the map from priority
2846 numbers to information about that priority level. */
2847 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2848 /*delete_key_fn=*/0,
2849 /*delete_value_fn=*/
2850 (splay_tree_delete_value_fn) &free);
2852 /* We always need to generate functions for the
2853 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2854 priorities later, we'll be sure to find the
2855 DEFAULT_INIT_PRIORITY. */
2856 get_priority_info (DEFAULT_INIT_PRIORITY);
2859 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2861 /* Create the argument list. */
2862 initialize_p_decl = cp_build_parm_decl
2863 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2864 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2865 TREE_USED (initialize_p_decl) = 1;
2866 priority_decl = cp_build_parm_decl
2867 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2868 DECL_CONTEXT (priority_decl) = ssdf_decl;
2869 TREE_USED (priority_decl) = 1;
2871 TREE_CHAIN (initialize_p_decl) = priority_decl;
2872 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2874 /* Put the function in the global scope. */
2875 pushdecl (ssdf_decl);
2877 /* Start the function itself. This is equivalent to declaring the
2878 function as:
2880 static void __ssdf (int __initialize_p, init __priority_p);
2882 It is static because we only need to call this function from the
2883 various constructor and destructor functions for this module. */
2884 start_preparsed_function (ssdf_decl,
2885 /*attrs=*/NULL_TREE,
2886 SF_PRE_PARSED);
2888 /* Set up the scope of the outermost block in the function. */
2889 body = begin_compound_stmt (BCS_FN_BODY);
2891 return body;
2894 /* Finish the generation of the function which performs initialization
2895 and destruction of objects with static storage duration. After
2896 this point, no more such objects can be created. */
2898 static void
2899 finish_static_storage_duration_function (tree body)
2901 /* Close out the function. */
2902 finish_compound_stmt (body);
2903 expand_or_defer_fn (finish_function (0));
2906 /* Return the information about the indicated PRIORITY level. If no
2907 code to handle this level has yet been generated, generate the
2908 appropriate prologue. */
2910 static priority_info
2911 get_priority_info (int priority)
2913 priority_info pi;
2914 splay_tree_node n;
2916 n = splay_tree_lookup (priority_info_map,
2917 (splay_tree_key) priority);
2918 if (!n)
2920 /* Create a new priority information structure, and insert it
2921 into the map. */
2922 pi = XNEW (struct priority_info_s);
2923 pi->initializations_p = 0;
2924 pi->destructions_p = 0;
2925 splay_tree_insert (priority_info_map,
2926 (splay_tree_key) priority,
2927 (splay_tree_value) pi);
2929 else
2930 pi = (priority_info) n->value;
2932 return pi;
2935 /* The effective initialization priority of a DECL. */
2937 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2938 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2939 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2941 /* Whether a DECL needs a guard to protect it against multiple
2942 initialization. */
2944 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2945 || DECL_ONE_ONLY (decl) \
2946 || DECL_WEAK (decl)))
2948 /* Called from one_static_initialization_or_destruction(),
2949 via walk_tree.
2950 Walks the initializer list of a global variable and looks for
2951 temporary variables (DECL_NAME() == NULL and DECL_ARTIFICIAL != 0)
2952 and that have their DECL_CONTEXT() == NULL.
2953 For each such temporary variable, set their DECL_CONTEXT() to
2954 the current function. This is necessary because otherwise
2955 some optimizers (enabled by -O2 -fprofile-arcs) might crash
2956 when trying to refer to a temporary variable that does not have
2957 it's DECL_CONTECT() properly set. */
2958 static tree
2959 fix_temporary_vars_context_r (tree *node,
2960 int *unused ATTRIBUTE_UNUSED,
2961 void *unused1 ATTRIBUTE_UNUSED)
2963 gcc_assert (current_function_decl);
2965 if (TREE_CODE (*node) == BIND_EXPR)
2967 tree var;
2969 for (var = BIND_EXPR_VARS (*node); var; var = TREE_CHAIN (var))
2970 if (TREE_CODE (var) == VAR_DECL
2971 && !DECL_NAME (var)
2972 && DECL_ARTIFICIAL (var)
2973 && !DECL_CONTEXT (var))
2974 DECL_CONTEXT (var) = current_function_decl;
2977 return NULL_TREE;
2980 /* Set up to handle the initialization or destruction of DECL. If
2981 INITP is nonzero, we are initializing the variable. Otherwise, we
2982 are destroying it. */
2984 static void
2985 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2987 tree guard_if_stmt = NULL_TREE;
2988 tree guard;
2990 /* If we are supposed to destruct and there's a trivial destructor,
2991 nothing has to be done. */
2992 if (!initp
2993 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2994 return;
2996 /* Trick the compiler into thinking we are at the file and line
2997 where DECL was declared so that error-messages make sense, and so
2998 that the debugger will show somewhat sensible file and line
2999 information. */
3000 input_location = DECL_SOURCE_LOCATION (decl);
3002 /* Make sure temporary variables in the initialiser all have
3003 their DECL_CONTEXT() set to a value different from NULL_TREE.
3004 This can happen when global variables initialisers are built.
3005 In that case, the DECL_CONTEXT() of the global variables _AND_ of all
3006 the temporary variables that might have been generated in the
3007 accompagning initialisers is NULL_TREE, meaning the variables have been
3008 declared in the global namespace.
3009 What we want to do here is to fix that and make sure the DECL_CONTEXT()
3010 of the temporaries are set to the current function decl. */
3011 cp_walk_tree_without_duplicates (&init,
3012 fix_temporary_vars_context_r,
3013 NULL);
3015 /* Because of:
3017 [class.access.spec]
3019 Access control for implicit calls to the constructors,
3020 the conversion functions, or the destructor called to
3021 create and destroy a static data member is performed as
3022 if these calls appeared in the scope of the member's
3023 class.
3025 we pretend we are in a static member function of the class of
3026 which the DECL is a member. */
3027 if (member_p (decl))
3029 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3030 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3033 /* Assume we don't need a guard. */
3034 guard = NULL_TREE;
3035 /* We need a guard if this is an object with external linkage that
3036 might be initialized in more than one place. (For example, a
3037 static data member of a template, when the data member requires
3038 construction.) */
3039 if (NEEDS_GUARD_P (decl))
3041 tree guard_cond;
3043 guard = get_guard (decl);
3045 /* When using __cxa_atexit, we just check the GUARD as we would
3046 for a local static. */
3047 if (flag_use_cxa_atexit)
3049 /* When using __cxa_atexit, we never try to destroy
3050 anything from a static destructor. */
3051 gcc_assert (initp);
3052 guard_cond = get_guard_cond (guard);
3054 /* If we don't have __cxa_atexit, then we will be running
3055 destructors from .fini sections, or their equivalents. So,
3056 we need to know how many times we've tried to initialize this
3057 object. We do initializations only if the GUARD is zero,
3058 i.e., if we are the first to initialize the variable. We do
3059 destructions only if the GUARD is one, i.e., if we are the
3060 last to destroy the variable. */
3061 else if (initp)
3062 guard_cond
3063 = cp_build_binary_op (input_location,
3064 EQ_EXPR,
3065 cp_build_unary_op (PREINCREMENT_EXPR,
3066 guard,
3067 /*noconvert=*/1,
3068 tf_warning_or_error),
3069 integer_one_node,
3070 tf_warning_or_error);
3071 else
3072 guard_cond
3073 = cp_build_binary_op (input_location,
3074 EQ_EXPR,
3075 cp_build_unary_op (PREDECREMENT_EXPR,
3076 guard,
3077 /*noconvert=*/1,
3078 tf_warning_or_error),
3079 integer_zero_node,
3080 tf_warning_or_error);
3082 guard_if_stmt = begin_if_stmt ();
3083 finish_if_stmt_cond (guard_cond, guard_if_stmt);
3087 /* If we're using __cxa_atexit, we have not already set the GUARD,
3088 so we must do so now. */
3089 if (guard && initp && flag_use_cxa_atexit)
3090 finish_expr_stmt (set_guard (guard));
3092 /* Perform the initialization or destruction. */
3093 if (initp)
3095 if (init)
3096 finish_expr_stmt (init);
3098 /* If we're using __cxa_atexit, register a function that calls the
3099 destructor for the object. */
3100 if (flag_use_cxa_atexit)
3101 finish_expr_stmt (register_dtor_fn (decl));
3103 else
3104 finish_expr_stmt (build_cleanup (decl));
3106 /* Finish the guard if-stmt, if necessary. */
3107 if (guard)
3109 finish_then_clause (guard_if_stmt);
3110 finish_if_stmt (guard_if_stmt);
3113 /* Now that we're done with DECL we don't need to pretend to be a
3114 member of its class any longer. */
3115 DECL_CONTEXT (current_function_decl) = NULL_TREE;
3116 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3119 /* Generate code to do the initialization or destruction of the decls in VARS,
3120 a TREE_LIST of VAR_DECL with static storage duration.
3121 Whether initialization or destruction is performed is specified by INITP. */
3123 static void
3124 do_static_initialization_or_destruction (tree vars, bool initp)
3126 tree node, init_if_stmt, cond;
3128 /* Build the outer if-stmt to check for initialization or destruction. */
3129 init_if_stmt = begin_if_stmt ();
3130 cond = initp ? integer_one_node : integer_zero_node;
3131 cond = cp_build_binary_op (input_location,
3132 EQ_EXPR,
3133 initialize_p_decl,
3134 cond,
3135 tf_warning_or_error);
3136 finish_if_stmt_cond (cond, init_if_stmt);
3138 node = vars;
3139 do {
3140 tree decl = TREE_VALUE (node);
3141 tree priority_if_stmt;
3142 int priority;
3143 priority_info pi;
3145 /* If we don't need a destructor, there's nothing to do. Avoid
3146 creating a possibly empty if-stmt. */
3147 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3149 node = TREE_CHAIN (node);
3150 continue;
3153 /* Remember that we had an initialization or finalization at this
3154 priority. */
3155 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
3156 pi = get_priority_info (priority);
3157 if (initp)
3158 pi->initializations_p = 1;
3159 else
3160 pi->destructions_p = 1;
3162 /* Conditionalize this initialization on being in the right priority
3163 and being initializing/finalizing appropriately. */
3164 priority_if_stmt = begin_if_stmt ();
3165 cond = cp_build_binary_op (input_location,
3166 EQ_EXPR,
3167 priority_decl,
3168 build_int_cst (NULL_TREE, priority),
3169 tf_warning_or_error);
3170 finish_if_stmt_cond (cond, priority_if_stmt);
3172 /* Process initializers with same priority. */
3173 for (; node
3174 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
3175 node = TREE_CHAIN (node))
3176 /* Do one initialization or destruction. */
3177 one_static_initialization_or_destruction (TREE_VALUE (node),
3178 TREE_PURPOSE (node), initp);
3180 /* Finish up the priority if-stmt body. */
3181 finish_then_clause (priority_if_stmt);
3182 finish_if_stmt (priority_if_stmt);
3184 } while (node);
3186 /* Finish up the init/destruct if-stmt body. */
3187 finish_then_clause (init_if_stmt);
3188 finish_if_stmt (init_if_stmt);
3191 /* VARS is a list of variables with static storage duration which may
3192 need initialization and/or finalization. Remove those variables
3193 that don't really need to be initialized or finalized, and return
3194 the resulting list. The order in which the variables appear in
3195 VARS is in reverse order of the order in which they should actually
3196 be initialized. The list we return is in the unreversed order;
3197 i.e., the first variable should be initialized first. */
3199 static tree
3200 prune_vars_needing_no_initialization (tree *vars)
3202 tree *var = vars;
3203 tree result = NULL_TREE;
3205 while (*var)
3207 tree t = *var;
3208 tree decl = TREE_VALUE (t);
3209 tree init = TREE_PURPOSE (t);
3211 /* Deal gracefully with error. */
3212 if (decl == error_mark_node)
3214 var = &TREE_CHAIN (t);
3215 continue;
3218 /* The only things that can be initialized are variables. */
3219 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3221 /* If this object is not defined, we don't need to do anything
3222 here. */
3223 if (DECL_EXTERNAL (decl))
3225 var = &TREE_CHAIN (t);
3226 continue;
3229 /* Also, if the initializer already contains errors, we can bail
3230 out now. */
3231 if (init && TREE_CODE (init) == TREE_LIST
3232 && value_member (error_mark_node, init))
3234 var = &TREE_CHAIN (t);
3235 continue;
3238 /* This variable is going to need initialization and/or
3239 finalization, so we add it to the list. */
3240 *var = TREE_CHAIN (t);
3241 TREE_CHAIN (t) = result;
3242 result = t;
3245 return result;
3248 /* Make sure we have told the back end about all the variables in
3249 VARS. */
3251 static void
3252 write_out_vars (tree vars)
3254 tree v;
3256 for (v = vars; v; v = TREE_CHAIN (v))
3258 tree var = TREE_VALUE (v);
3259 if (!var_finalized_p (var))
3261 import_export_decl (var);
3262 rest_of_decl_compilation (var, 1, 1);
3267 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3268 (otherwise) that will initialize all global objects with static
3269 storage duration having the indicated PRIORITY. */
3271 static void
3272 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3273 location_t *locus)
3275 char function_key;
3276 tree fndecl;
3277 tree body;
3278 size_t i;
3280 input_location = *locus;
3281 /* ??? */
3282 /* Was: locus->line++; */
3284 /* We use `I' to indicate initialization and `D' to indicate
3285 destruction. */
3286 function_key = constructor_p ? 'I' : 'D';
3288 /* We emit the function lazily, to avoid generating empty
3289 global constructors and destructors. */
3290 body = NULL_TREE;
3292 /* For Objective-C++, we may need to initialize metadata found in this module.
3293 This must be done _before_ any other static initializations. */
3294 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3295 && constructor_p && objc_static_init_needed_p ())
3297 body = start_objects (function_key, priority);
3298 objc_generate_static_init_call (NULL_TREE);
3301 /* Call the static storage duration function with appropriate
3302 arguments. */
3303 for (i = 0; VEC_iterate (tree, ssdf_decls, i, fndecl); ++i)
3305 /* Calls to pure or const functions will expand to nothing. */
3306 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3308 tree call;
3310 if (! body)
3311 body = start_objects (function_key, priority);
3313 call = cp_build_function_call_nary (fndecl, tf_warning_or_error,
3314 build_int_cst (NULL_TREE,
3315 constructor_p),
3316 build_int_cst (NULL_TREE,
3317 priority),
3318 NULL_TREE);
3319 finish_expr_stmt (call);
3323 /* Close out the function. */
3324 if (body)
3325 finish_objects (function_key, priority, body);
3328 /* Generate constructor and destructor functions for the priority
3329 indicated by N. */
3331 static int
3332 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3334 location_t *locus = (location_t *) data;
3335 int priority = (int) n->key;
3336 priority_info pi = (priority_info) n->value;
3338 /* Generate the functions themselves, but only if they are really
3339 needed. */
3340 if (pi->initializations_p)
3341 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3342 if (pi->destructions_p)
3343 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3345 /* Keep iterating. */
3346 return 0;
3349 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
3350 decls referenced from front-end specific constructs; it will be called
3351 only for language-specific tree nodes.
3353 Here we must deal with member pointers. */
3355 tree
3356 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3358 tree t = *tp;
3360 switch (TREE_CODE (t))
3362 case PTRMEM_CST:
3363 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3364 cgraph_mark_address_taken_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3365 break;
3366 case BASELINK:
3367 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3368 cgraph_mark_address_taken_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3369 break;
3370 case VAR_DECL:
3371 if (DECL_CONTEXT (t)
3372 && flag_use_repository
3373 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3374 /* If we need a static variable in a function, then we
3375 need the containing function. */
3376 mark_decl_referenced (DECL_CONTEXT (t));
3377 break;
3378 default:
3379 break;
3382 return NULL;
3385 /* Java requires that we be able to reference a local address for a
3386 method, and not be confused by PLT entries. If hidden aliases are
3387 supported, collect and return all the functions for which we should
3388 emit a hidden alias. */
3390 static struct pointer_set_t *
3391 collect_candidates_for_java_method_aliases (void)
3393 struct cgraph_node *node;
3394 struct pointer_set_t *candidates = NULL;
3396 #ifndef HAVE_GAS_HIDDEN
3397 return candidates;
3398 #endif
3400 for (node = cgraph_nodes; node ; node = node->next)
3402 tree fndecl = node->decl;
3404 if (DECL_CONTEXT (fndecl)
3405 && TYPE_P (DECL_CONTEXT (fndecl))
3406 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3407 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3409 if (candidates == NULL)
3410 candidates = pointer_set_create ();
3411 pointer_set_insert (candidates, fndecl);
3415 return candidates;
3419 /* Java requires that we be able to reference a local address for a
3420 method, and not be confused by PLT entries. If hidden aliases are
3421 supported, emit one for each java function that we've emitted.
3422 CANDIDATES is the set of FUNCTION_DECLs that were gathered
3423 by collect_candidates_for_java_method_aliases. */
3425 static void
3426 build_java_method_aliases (struct pointer_set_t *candidates)
3428 struct cgraph_node *node;
3430 #ifndef HAVE_GAS_HIDDEN
3431 return;
3432 #endif
3434 for (node = cgraph_nodes; node ; node = node->next)
3436 tree fndecl = node->decl;
3438 if (TREE_ASM_WRITTEN (fndecl)
3439 && pointer_set_contains (candidates, fndecl))
3441 /* Mangle the name in a predictable way; we need to reference
3442 this from a java compiled object file. */
3443 tree oid, nid, alias;
3444 const char *oname;
3445 char *nname;
3447 oid = DECL_ASSEMBLER_NAME (fndecl);
3448 oname = IDENTIFIER_POINTER (oid);
3449 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3450 nname = ACONCAT (("_ZGA", oname+2, NULL));
3451 nid = get_identifier (nname);
3453 alias = make_alias_for (fndecl, nid);
3454 TREE_PUBLIC (alias) = 1;
3455 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3457 assemble_alias (alias, oid);
3462 /* Return C++ property of T, based on given operation OP. */
3464 static int
3465 cpp_check (tree t, cpp_operation op)
3467 switch (op)
3469 case IS_ABSTRACT:
3470 return DECL_PURE_VIRTUAL_P (t);
3471 case IS_CONSTRUCTOR:
3472 return DECL_CONSTRUCTOR_P (t);
3473 case IS_DESTRUCTOR:
3474 return DECL_DESTRUCTOR_P (t);
3475 case IS_COPY_CONSTRUCTOR:
3476 return DECL_COPY_CONSTRUCTOR_P (t);
3477 case IS_TEMPLATE:
3478 return TREE_CODE (t) == TEMPLATE_DECL;
3479 default:
3480 return 0;
3484 /* Collect source file references recursively, starting from NAMESPC. */
3486 static void
3487 collect_source_refs (tree namespc)
3489 tree t;
3491 if (!namespc)
3492 return;
3494 /* Iterate over names in this name space. */
3495 for (t = NAMESPACE_LEVEL (namespc)->names; t; t = TREE_CHAIN (t))
3496 if (!DECL_IS_BUILTIN (t) )
3497 collect_source_ref (DECL_SOURCE_FILE (t));
3499 /* Dump siblings, if any */
3500 collect_source_refs (TREE_CHAIN (namespc));
3502 /* Dump children, if any */
3503 collect_source_refs (NAMESPACE_LEVEL (namespc)->namespaces);
3506 /* Collect decls relevant to SOURCE_FILE from all namespaces recursively,
3507 starting from NAMESPC. */
3509 static void
3510 collect_ada_namespace (tree namespc, const char *source_file)
3512 if (!namespc)
3513 return;
3515 /* Collect decls from this namespace */
3516 collect_ada_nodes (NAMESPACE_LEVEL (namespc)->names, source_file);
3518 /* Collect siblings, if any */
3519 collect_ada_namespace (TREE_CHAIN (namespc), source_file);
3521 /* Collect children, if any */
3522 collect_ada_namespace (NAMESPACE_LEVEL (namespc)->namespaces, source_file);
3525 /* Returns true iff there is a definition available for variable or
3526 function DECL. */
3528 static bool
3529 decl_defined_p (tree decl)
3531 if (TREE_CODE (decl) == FUNCTION_DECL)
3532 return (DECL_INITIAL (decl) != NULL_TREE);
3533 else
3535 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3536 return !DECL_EXTERNAL (decl);
3540 /* Complain that DECL uses a type with no linkage but is never defined. */
3542 static void
3543 no_linkage_error (tree decl)
3545 tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
3546 if (TYPE_ANONYMOUS_P (t))
3548 permerror (0, "%q+#D, declared using anonymous type, "
3549 "is used but never defined", decl);
3550 if (is_typedef_decl (TYPE_NAME (t)))
3551 permerror (0, "%q+#D does not refer to the unqualified type, "
3552 "so it is not used for linkage", TYPE_NAME (t));
3554 else
3555 permerror (0, "%q+#D, declared using local type %qT, "
3556 "is used but never defined", decl, t);
3559 /* Collect declarations from all namespaces relevant to SOURCE_FILE. */
3561 static void
3562 collect_all_refs (const char *source_file)
3564 collect_ada_namespace (global_namespace, source_file);
3567 /* This routine is called at the end of compilation.
3568 Its job is to create all the code needed to initialize and
3569 destroy the global aggregates. We do the destruction
3570 first, since that way we only need to reverse the decls once. */
3572 void
3573 cp_write_global_declarations (void)
3575 tree vars;
3576 bool reconsider;
3577 size_t i;
3578 location_t locus;
3579 unsigned ssdf_count = 0;
3580 int retries = 0;
3581 tree decl;
3582 struct pointer_set_t *candidates;
3584 locus = input_location;
3585 at_eof = 1;
3587 /* Bad parse errors. Just forget about it. */
3588 if (! global_bindings_p () || current_class_type
3589 || !VEC_empty (tree,decl_namespace_list))
3590 return;
3592 if (pch_file)
3593 c_common_write_pch ();
3595 /* Handle -fdump-ada-spec[-slim] */
3596 if (dump_enabled_p (TDI_ada))
3598 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
3599 collect_source_ref (main_input_filename);
3600 else
3601 collect_source_refs (global_namespace);
3603 dump_ada_specs (collect_all_refs, cpp_check);
3606 /* FIXME - huh? was input_line -= 1;*/
3608 /* We now have to write out all the stuff we put off writing out.
3609 These include:
3611 o Template specializations that we have not yet instantiated,
3612 but which are needed.
3613 o Initialization and destruction for non-local objects with
3614 static storage duration. (Local objects with static storage
3615 duration are initialized when their scope is first entered,
3616 and are cleaned up via atexit.)
3617 o Virtual function tables.
3619 All of these may cause others to be needed. For example,
3620 instantiating one function may cause another to be needed, and
3621 generating the initializer for an object may cause templates to be
3622 instantiated, etc., etc. */
3624 timevar_push (TV_VARCONST);
3626 emit_support_tinfos ();
3630 tree t;
3631 tree decl;
3633 reconsider = false;
3635 /* If there are templates that we've put off instantiating, do
3636 them now. */
3637 instantiate_pending_templates (retries);
3638 ggc_collect ();
3640 /* Write out virtual tables as required. Note that writing out
3641 the virtual table for a template class may cause the
3642 instantiation of members of that class. If we write out
3643 vtables then we remove the class from our list so we don't
3644 have to look at it again. */
3646 while (keyed_classes != NULL_TREE
3647 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3649 reconsider = true;
3650 keyed_classes = TREE_CHAIN (keyed_classes);
3653 t = keyed_classes;
3654 if (t != NULL_TREE)
3656 tree next = TREE_CHAIN (t);
3658 while (next)
3660 if (maybe_emit_vtables (TREE_VALUE (next)))
3662 reconsider = true;
3663 TREE_CHAIN (t) = TREE_CHAIN (next);
3665 else
3666 t = next;
3668 next = TREE_CHAIN (t);
3672 /* Write out needed type info variables. We have to be careful
3673 looping through unemitted decls, because emit_tinfo_decl may
3674 cause other variables to be needed. New elements will be
3675 appended, and we remove from the vector those that actually
3676 get emitted. */
3677 for (i = VEC_length (tree, unemitted_tinfo_decls);
3678 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3679 if (emit_tinfo_decl (t))
3681 reconsider = true;
3682 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3685 /* The list of objects with static storage duration is built up
3686 in reverse order. We clear STATIC_AGGREGATES so that any new
3687 aggregates added during the initialization of these will be
3688 initialized in the correct order when we next come around the
3689 loop. */
3690 vars = prune_vars_needing_no_initialization (&static_aggregates);
3692 if (vars)
3694 /* We need to start a new initialization function each time
3695 through the loop. That's because we need to know which
3696 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3697 isn't computed until a function is finished, and written
3698 out. That's a deficiency in the back end. When this is
3699 fixed, these initialization functions could all become
3700 inline, with resulting performance improvements. */
3701 tree ssdf_body;
3703 /* Set the line and file, so that it is obviously not from
3704 the source file. */
3705 input_location = locus;
3706 ssdf_body = start_static_storage_duration_function (ssdf_count);
3708 /* Make sure the back end knows about all the variables. */
3709 write_out_vars (vars);
3711 /* First generate code to do all the initializations. */
3712 if (vars)
3713 do_static_initialization_or_destruction (vars, /*initp=*/true);
3715 /* Then, generate code to do all the destructions. Do these
3716 in reverse order so that the most recently constructed
3717 variable is the first destroyed. If we're using
3718 __cxa_atexit, then we don't need to do this; functions
3719 were registered at initialization time to destroy the
3720 local statics. */
3721 if (!flag_use_cxa_atexit && vars)
3723 vars = nreverse (vars);
3724 do_static_initialization_or_destruction (vars, /*initp=*/false);
3726 else
3727 vars = NULL_TREE;
3729 /* Finish up the static storage duration function for this
3730 round. */
3731 input_location = locus;
3732 finish_static_storage_duration_function (ssdf_body);
3734 /* All those initializations and finalizations might cause
3735 us to need more inline functions, more template
3736 instantiations, etc. */
3737 reconsider = true;
3738 ssdf_count++;
3739 /* ??? was: locus.line++; */
3742 /* Go through the set of inline functions whose bodies have not
3743 been emitted yet. If out-of-line copies of these functions
3744 are required, emit them. */
3745 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3747 /* Does it need synthesizing? */
3748 if (DECL_DEFAULTED_FN (decl) && ! DECL_INITIAL (decl)
3749 && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3751 /* Even though we're already at the top-level, we push
3752 there again. That way, when we pop back a few lines
3753 hence, all of our state is restored. Otherwise,
3754 finish_function doesn't clean things up, and we end
3755 up with CURRENT_FUNCTION_DECL set. */
3756 push_to_top_level ();
3757 /* The decl's location will mark where it was first
3758 needed. Save that so synthesize method can indicate
3759 where it was needed from, in case of error */
3760 input_location = DECL_SOURCE_LOCATION (decl);
3761 synthesize_method (decl);
3762 pop_from_top_level ();
3763 reconsider = true;
3766 if (!DECL_SAVED_TREE (decl))
3767 continue;
3769 /* We lie to the back end, pretending that some functions
3770 are not defined when they really are. This keeps these
3771 functions from being put out unnecessarily. But, we must
3772 stop lying when the functions are referenced, or if they
3773 are not comdat since they need to be put out now. If
3774 DECL_INTERFACE_KNOWN, then we have already set
3775 DECL_EXTERNAL appropriately, so there's no need to check
3776 again, and we do not want to clear DECL_EXTERNAL if a
3777 previous call to import_export_decl set it.
3779 This is done in a separate for cycle, because if some
3780 deferred function is contained in another deferred
3781 function later in deferred_fns varray,
3782 rest_of_compilation would skip this function and we
3783 really cannot expand the same function twice. */
3784 import_export_decl (decl);
3785 if (DECL_NOT_REALLY_EXTERN (decl)
3786 && DECL_INITIAL (decl)
3787 && decl_needed_p (decl))
3789 struct cgraph_node *node = cgraph_get_node (decl), *alias, *next;
3791 DECL_EXTERNAL (decl) = 0;
3792 /* If we mark !DECL_EXTERNAL one of the same body aliases,
3793 we need to mark all of them that way. */
3794 if (node && node->same_body)
3796 DECL_EXTERNAL (node->decl) = 0;
3797 for (alias = node->same_body; alias; alias = alias->next)
3798 DECL_EXTERNAL (alias->decl) = 0;
3800 /* If we mark !DECL_EXTERNAL one of the symbols in some comdat
3801 group, we need to mark all symbols in the same comdat group
3802 that way. */
3803 if (node->same_comdat_group)
3804 for (next = node->same_comdat_group;
3805 next != node;
3806 next = next->same_comdat_group)
3808 DECL_EXTERNAL (next->decl) = 0;
3809 if (next->same_body)
3811 for (alias = next->same_body;
3812 alias;
3813 alias = alias->next)
3814 DECL_EXTERNAL (alias->decl) = 0;
3819 /* If we're going to need to write this function out, and
3820 there's already a body for it, create RTL for it now.
3821 (There might be no body if this is a method we haven't
3822 gotten around to synthesizing yet.) */
3823 if (!DECL_EXTERNAL (decl)
3824 && decl_needed_p (decl)
3825 && !TREE_ASM_WRITTEN (decl)
3826 && !cgraph_node (decl)->local.finalized)
3828 /* We will output the function; no longer consider it in this
3829 loop. */
3830 DECL_DEFER_OUTPUT (decl) = 0;
3831 /* Generate RTL for this function now that we know we
3832 need it. */
3833 expand_or_defer_fn (decl);
3834 /* If we're compiling -fsyntax-only pretend that this
3835 function has been written out so that we don't try to
3836 expand it again. */
3837 if (flag_syntax_only)
3838 TREE_ASM_WRITTEN (decl) = 1;
3839 reconsider = true;
3843 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3844 reconsider = true;
3846 /* Static data members are just like namespace-scope globals. */
3847 for (i = 0; VEC_iterate (tree, pending_statics, i, decl); ++i)
3849 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3850 /* Don't write it out if we haven't seen a definition. */
3851 || DECL_IN_AGGR_P (decl))
3852 continue;
3853 import_export_decl (decl);
3854 /* If this static data member is needed, provide it to the
3855 back end. */
3856 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3857 DECL_EXTERNAL (decl) = 0;
3859 if (VEC_length (tree, pending_statics) != 0
3860 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3861 VEC_length (tree, pending_statics)))
3862 reconsider = true;
3864 retries++;
3866 while (reconsider);
3868 /* All used inline functions must have a definition at this point. */
3869 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3871 if (/* Check online inline functions that were actually used. */
3872 DECL_ODR_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3873 /* If the definition actually was available here, then the
3874 fact that the function was not defined merely represents
3875 that for some reason (use of a template repository,
3876 #pragma interface, etc.) we decided not to emit the
3877 definition here. */
3878 && !DECL_INITIAL (decl)
3879 /* An explicit instantiation can be used to specify
3880 that the body is in another unit. It will have
3881 already verified there was a definition. */
3882 && !DECL_EXPLICIT_INSTANTIATION (decl))
3884 warning (0, "inline function %q+D used but never defined", decl);
3885 /* Avoid a duplicate warning from check_global_declaration_1. */
3886 TREE_NO_WARNING (decl) = 1;
3890 /* So must decls that use a type with no linkage. */
3891 for (i = 0; VEC_iterate (tree, no_linkage_decls, i, decl); ++i)
3892 if (!decl_defined_p (decl))
3893 no_linkage_error (decl);
3895 /* We give C linkage to static constructors and destructors. */
3896 push_lang_context (lang_name_c);
3898 /* Generate initialization and destruction functions for all
3899 priorities for which they are required. */
3900 if (priority_info_map)
3901 splay_tree_foreach (priority_info_map,
3902 generate_ctor_and_dtor_functions_for_priority,
3903 /*data=*/&locus);
3904 else if (c_dialect_objc () && objc_static_init_needed_p ())
3905 /* If this is obj-c++ and we need a static init, call
3906 generate_ctor_or_dtor_function. */
3907 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3908 DEFAULT_INIT_PRIORITY, &locus);
3910 /* We're done with the splay-tree now. */
3911 if (priority_info_map)
3912 splay_tree_delete (priority_info_map);
3914 /* Generate any missing aliases. */
3915 maybe_apply_pending_pragma_weaks ();
3917 /* We're done with static constructors, so we can go back to "C++"
3918 linkage now. */
3919 pop_lang_context ();
3921 /* Collect candidates for Java hidden aliases. */
3922 candidates = collect_candidates_for_java_method_aliases ();
3924 cgraph_finalize_compilation_unit ();
3926 /* Now, issue warnings about static, but not defined, functions,
3927 etc., and emit debugging information. */
3928 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3929 if (VEC_length (tree, pending_statics) != 0)
3931 check_global_declarations (VEC_address (tree, pending_statics),
3932 VEC_length (tree, pending_statics));
3933 emit_debug_global_declarations (VEC_address (tree, pending_statics),
3934 VEC_length (tree, pending_statics));
3937 /* Generate hidden aliases for Java. */
3938 if (candidates)
3940 build_java_method_aliases (candidates);
3941 pointer_set_destroy (candidates);
3944 finish_repo ();
3946 /* The entire file is now complete. If requested, dump everything
3947 to a file. */
3949 int flags;
3950 FILE *stream = dump_begin (TDI_tu, &flags);
3952 if (stream)
3954 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3955 dump_end (TDI_tu, stream);
3959 timevar_pop (TV_VARCONST);
3961 if (flag_detailed_statistics)
3963 dump_tree_statistics ();
3964 dump_time_statistics ();
3966 input_location = locus;
3968 #ifdef ENABLE_CHECKING
3969 validate_conversion_obstack ();
3970 #endif /* ENABLE_CHECKING */
3973 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3974 function to call in parse-tree form; it has not yet been
3975 semantically analyzed. ARGS are the arguments to the function.
3976 They have already been semantically analyzed. This may change
3977 ARGS. */
3979 tree
3980 build_offset_ref_call_from_tree (tree fn, VEC(tree,gc) **args)
3982 tree orig_fn;
3983 VEC(tree,gc) *orig_args = NULL;
3984 tree expr;
3985 tree object;
3987 orig_fn = fn;
3988 object = TREE_OPERAND (fn, 0);
3990 if (processing_template_decl)
3992 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3993 || TREE_CODE (fn) == MEMBER_REF);
3994 if (type_dependent_expression_p (fn)
3995 || any_type_dependent_arguments_p (*args))
3996 return build_nt_call_vec (fn, *args);
3998 orig_args = make_tree_vector_copy (*args);
4000 /* Transform the arguments and add the implicit "this"
4001 parameter. That must be done before the FN is transformed
4002 because we depend on the form of FN. */
4003 make_args_non_dependent (*args);
4004 object = build_non_dependent_expr (object);
4005 if (TREE_CODE (fn) == DOTSTAR_EXPR)
4006 object = cp_build_unary_op (ADDR_EXPR, object, 0, tf_warning_or_error);
4007 VEC_safe_insert (tree, gc, *args, 0, object);
4008 /* Now that the arguments are done, transform FN. */
4009 fn = build_non_dependent_expr (fn);
4012 /* A qualified name corresponding to a bound pointer-to-member is
4013 represented as an OFFSET_REF:
4015 struct B { void g(); };
4016 void (B::*p)();
4017 void B::g() { (this->*p)(); } */
4018 if (TREE_CODE (fn) == OFFSET_REF)
4020 tree object_addr = cp_build_unary_op (ADDR_EXPR, object, 0,
4021 tf_warning_or_error);
4022 fn = TREE_OPERAND (fn, 1);
4023 fn = get_member_function_from_ptrfunc (&object_addr, fn);
4024 VEC_safe_insert (tree, gc, *args, 0, object_addr);
4027 expr = cp_build_function_call_vec (fn, args, tf_warning_or_error);
4028 if (processing_template_decl && expr != error_mark_node)
4029 expr = build_min_non_dep_call_vec (expr, orig_fn, orig_args);
4031 if (orig_args != NULL)
4032 release_tree_vector (orig_args);
4034 return expr;
4038 void
4039 check_default_args (tree x)
4041 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
4042 bool saw_def = false;
4043 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
4044 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
4046 if (TREE_PURPOSE (arg))
4047 saw_def = true;
4048 else if (saw_def)
4050 error ("default argument missing for parameter %P of %q+#D", i, x);
4051 TREE_PURPOSE (arg) = error_mark_node;
4056 /* Return true if function DECL can be inlined. This is used to force
4057 instantiation of methods that might be interesting for inlining. */
4058 bool
4059 possibly_inlined_p (tree decl)
4061 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
4062 if (DECL_UNINLINABLE (decl))
4063 return false;
4064 if (!optimize || pragma_java_exceptions)
4065 return DECL_DECLARED_INLINE_P (decl);
4066 /* When optimizing, we might inline everything when flatten
4067 attribute or heuristics inlining for size or autoinlining
4068 is used. */
4069 return true;
4072 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
4073 If DECL is a specialization or implicitly declared class member,
4074 generate the actual definition. */
4076 void
4077 mark_used (tree decl)
4079 HOST_WIDE_INT saved_processing_template_decl = 0;
4081 /* If DECL is a BASELINK for a single function, then treat it just
4082 like the DECL for the function. Otherwise, if the BASELINK is
4083 for an overloaded function, we don't know which function was
4084 actually used until after overload resolution. */
4085 if (TREE_CODE (decl) == BASELINK)
4087 decl = BASELINK_FUNCTIONS (decl);
4088 if (really_overloaded_fn (decl))
4089 return;
4090 decl = OVL_CURRENT (decl);
4093 /* Set TREE_USED for the benefit of -Wunused. */
4094 TREE_USED (decl) = 1;
4095 if (DECL_CLONED_FUNCTION_P (decl))
4096 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4098 if (TREE_CODE (decl) == FUNCTION_DECL
4099 && DECL_DELETED_FN (decl))
4101 if (DECL_ARTIFICIAL (decl))
4103 if (DECL_OVERLOADED_OPERATOR_P (decl) == TYPE_EXPR
4104 && LAMBDA_TYPE_P (DECL_CONTEXT (decl)))
4106 /* We mark a lambda conversion op as deleted if we can't
4107 generate it properly; see maybe_add_lambda_conv_op. */
4108 sorry ("converting lambda which uses %<...%> to "
4109 "function pointer");
4110 return;
4113 error ("use of deleted function %qD", decl);
4114 if (!maybe_explain_implicit_delete (decl))
4115 error_at (DECL_SOURCE_LOCATION (decl), "declared here");
4116 return;
4118 /* If we don't need a value, then we don't need to synthesize DECL. */
4119 if (cp_unevaluated_operand != 0)
4120 return;
4122 /* We can only check DECL_ODR_USED on variables or functions with
4123 DECL_LANG_SPECIFIC set, and these are also the only decls that we
4124 might need special handling for. */
4125 if ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4126 || DECL_LANG_SPECIFIC (decl) == NULL
4127 || DECL_THUNK_P (decl))
4128 return;
4130 /* We only want to do this processing once. We don't need to keep trying
4131 to instantiate inline templates, because unit-at-a-time will make sure
4132 we get them compiled before functions that want to inline them. */
4133 if (DECL_ODR_USED (decl))
4134 return;
4136 /* If within finish_function, defer the rest until that function
4137 finishes, otherwise it might recurse. */
4138 if (defer_mark_used_calls)
4140 VEC_safe_push (tree, gc, deferred_mark_used_calls, decl);
4141 return;
4144 /* Normally, we can wait until instantiation-time to synthesize
4145 DECL. However, if DECL is a static data member initialized with
4146 a constant, we need the value right now because a reference to
4147 such a data member is not value-dependent. */
4148 if (TREE_CODE (decl) == VAR_DECL
4149 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
4150 && DECL_CLASS_SCOPE_P (decl))
4152 /* Don't try to instantiate members of dependent types. We
4153 cannot just use dependent_type_p here because this function
4154 may be called from fold_non_dependent_expr, and then we may
4155 see dependent types, even though processing_template_decl
4156 will not be set. */
4157 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl)))
4158 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl))))
4159 return;
4160 /* Pretend that we are not in a template, even if we are, so
4161 that the static data member initializer will be processed. */
4162 saved_processing_template_decl = processing_template_decl;
4163 processing_template_decl = 0;
4166 if (processing_template_decl)
4167 return;
4169 DECL_ODR_USED (decl) = 1;
4170 if (DECL_CLONED_FUNCTION_P (decl))
4171 DECL_ODR_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4173 /* DR 757: A type without linkage shall not be used as the type of a
4174 variable or function with linkage, unless
4175 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
4176 o the variable or function is not used (3.2 [basic.def.odr]) or is
4177 defined in the same translation unit. */
4178 if (cxx_dialect > cxx98
4179 && decl_linkage (decl) != lk_none
4180 && !DECL_EXTERN_C_P (decl)
4181 && !DECL_ARTIFICIAL (decl)
4182 && !decl_defined_p (decl)
4183 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
4185 if (is_local_extern (decl))
4186 /* There's no way to define a local extern, and adding it to
4187 the vector interferes with GC, so give an error now. */
4188 no_linkage_error (decl);
4189 else
4190 VEC_safe_push (tree, gc, no_linkage_decls, decl);
4193 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
4194 && !DECL_INITIAL (decl) && !DECL_ARTIFICIAL (decl))
4195 /* Remember it, so we can check it was defined. */
4196 note_vague_linkage_fn (decl);
4198 /* Is it a synthesized method that needs to be synthesized? */
4199 if (TREE_CODE (decl) == FUNCTION_DECL
4200 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
4201 && DECL_DEFAULTED_FN (decl)
4202 && ! DECL_INITIAL (decl))
4204 /* Remember the current location for a function we will end up
4205 synthesizing. Then we can inform the user where it was
4206 required in the case of error. */
4207 DECL_SOURCE_LOCATION (decl) = input_location;
4209 /* Synthesizing an implicitly defined member function will result in
4210 garbage collection. We must treat this situation as if we were
4211 within the body of a function so as to avoid collecting live data
4212 on the stack (such as overload resolution candidates).
4214 We could just let cp_write_global_declarations handle synthesizing
4215 this function, since we just added it to deferred_fns, but doing
4216 it at the use site produces better error messages. */
4217 ++function_depth;
4218 synthesize_method (decl);
4219 --function_depth;
4220 /* If this is a synthesized method we don't need to
4221 do the instantiation test below. */
4223 else if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4224 && DECL_TEMPLATE_INFO (decl)
4225 && (!DECL_EXPLICIT_INSTANTIATION (decl)
4226 || always_instantiate_p (decl)))
4227 /* If this is a function or variable that is an instance of some
4228 template, we now know that we will need to actually do the
4229 instantiation. We check that DECL is not an explicit
4230 instantiation because that is not checked in instantiate_decl.
4232 We put off instantiating functions in order to improve compile
4233 times. Maintaining a stack of active functions is expensive,
4234 and the inliner knows to instantiate any functions it might
4235 need. Therefore, we always try to defer instantiation. */
4236 instantiate_decl (decl, /*defer_ok=*/true,
4237 /*expl_inst_class_mem_p=*/false);
4239 processing_template_decl = saved_processing_template_decl;
4242 #include "gt-cp-decl2.h"