Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / cp / decl2.c
blob63197705b3271cacdf9150161615c0255c201fc0
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 = DECL_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 DECL_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 DECL_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 DECL_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 /* The width must be an integer type. */
1070 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (width)))
1071 error ("width of bit-field %qD has non-integral type %qT", value,
1072 TREE_TYPE (width));
1073 constant_expression_warning (width);
1074 DECL_INITIAL (value) = width;
1075 SET_DECL_C_BIT_FIELD (value);
1078 DECL_IN_AGGR_P (value) = 1;
1080 if (attrlist)
1081 cplus_decl_attributes (&value, attrlist, /*flags=*/0);
1083 return value;
1087 /* Returns true iff ATTR is an attribute which needs to be applied at
1088 instantiation time rather than template definition time. */
1090 static bool
1091 is_late_template_attribute (tree attr, tree decl)
1093 tree name = TREE_PURPOSE (attr);
1094 tree args = TREE_VALUE (attr);
1095 const struct attribute_spec *spec = lookup_attribute_spec (name);
1096 tree arg;
1098 if (!spec)
1099 /* Unknown attribute. */
1100 return false;
1102 /* Attribute weak handling wants to write out assembly right away. */
1103 if (is_attribute_p ("weak", name))
1104 return true;
1106 /* If any of the arguments are dependent expressions, we can't evaluate
1107 the attribute until instantiation time. */
1108 for (arg = args; arg; arg = TREE_CHAIN (arg))
1110 tree t = TREE_VALUE (arg);
1112 /* If the first attribute argument is an identifier, only consider
1113 second and following arguments. Attributes like mode, format,
1114 cleanup and several target specific attributes aren't late
1115 just because they have an IDENTIFIER_NODE as first argument. */
1116 if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1117 continue;
1119 if (value_dependent_expression_p (t)
1120 || type_dependent_expression_p (t))
1121 return true;
1124 if (TREE_CODE (decl) == TYPE_DECL
1125 || TYPE_P (decl)
1126 || spec->type_required)
1128 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1130 /* We can't apply any attributes to a completely unknown type until
1131 instantiation time. */
1132 enum tree_code code = TREE_CODE (type);
1133 if (code == TEMPLATE_TYPE_PARM
1134 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1135 || code == TYPENAME_TYPE)
1136 return true;
1137 /* Also defer most attributes on dependent types. This is not
1138 necessary in all cases, but is the better default. */
1139 else if (dependent_type_p (type)
1140 /* But attribute visibility specifically works on
1141 templates. */
1142 && !is_attribute_p ("visibility", name))
1143 return true;
1144 else
1145 return false;
1147 else
1148 return false;
1151 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1152 applied at instantiation time and return them. If IS_DEPENDENT is true,
1153 the declaration itself is dependent, so all attributes should be applied
1154 at instantiation time. */
1156 static tree
1157 splice_template_attributes (tree *attr_p, tree decl)
1159 tree *p = attr_p;
1160 tree late_attrs = NULL_TREE;
1161 tree *q = &late_attrs;
1163 if (!p)
1164 return NULL_TREE;
1166 for (; *p; )
1168 if (is_late_template_attribute (*p, decl))
1170 ATTR_IS_DEPENDENT (*p) = 1;
1171 *q = *p;
1172 *p = TREE_CHAIN (*p);
1173 q = &TREE_CHAIN (*q);
1174 *q = NULL_TREE;
1176 else
1177 p = &TREE_CHAIN (*p);
1180 return late_attrs;
1183 /* Remove any late attributes from the list in ATTR_P and attach them to
1184 DECL_P. */
1186 static void
1187 save_template_attributes (tree *attr_p, tree *decl_p)
1189 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1190 tree *q;
1191 tree old_attrs = NULL_TREE;
1193 if (!late_attrs)
1194 return;
1196 if (DECL_P (*decl_p))
1197 q = &DECL_ATTRIBUTES (*decl_p);
1198 else
1199 q = &TYPE_ATTRIBUTES (*decl_p);
1201 old_attrs = *q;
1203 /* Place the late attributes at the beginning of the attribute
1204 list. */
1205 TREE_CHAIN (tree_last (late_attrs)) = *q;
1206 *q = late_attrs;
1208 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1210 /* We've added new attributes directly to the main variant, so
1211 now we need to update all of the other variants to include
1212 these new attributes. */
1213 tree variant;
1214 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1215 variant = TYPE_NEXT_VARIANT (variant))
1217 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1218 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1223 /* Like reconstruct_complex_type, but handle also template trees. */
1225 tree
1226 cp_reconstruct_complex_type (tree type, tree bottom)
1228 tree inner, outer;
1230 if (TREE_CODE (type) == POINTER_TYPE)
1232 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1233 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1234 TYPE_REF_CAN_ALIAS_ALL (type));
1236 else if (TREE_CODE (type) == REFERENCE_TYPE)
1238 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1239 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1240 TYPE_REF_CAN_ALIAS_ALL (type));
1242 else if (TREE_CODE (type) == ARRAY_TYPE)
1244 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1245 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1246 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1247 element type qualification will be handled by the recursive
1248 cp_reconstruct_complex_type call and cp_build_qualified_type
1249 for ARRAY_TYPEs changes the element type. */
1250 return outer;
1252 else if (TREE_CODE (type) == FUNCTION_TYPE)
1254 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1255 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1256 outer = apply_memfn_quals (outer, type_memfn_quals (type));
1258 else if (TREE_CODE (type) == METHOD_TYPE)
1260 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1261 /* The build_method_type_directly() routine prepends 'this' to argument list,
1262 so we must compensate by getting rid of it. */
1263 outer
1264 = build_method_type_directly
1265 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1266 inner,
1267 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1269 else if (TREE_CODE (type) == OFFSET_TYPE)
1271 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1272 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1274 else
1275 return bottom;
1277 if (TYPE_ATTRIBUTES (type))
1278 outer = cp_build_type_attribute_variant (outer, TYPE_ATTRIBUTES (type));
1279 return cp_build_qualified_type (outer, cp_type_quals (type));
1282 /* Like decl_attributes, but handle C++ complexity. */
1284 void
1285 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1287 if (*decl == NULL_TREE || *decl == void_type_node
1288 || *decl == error_mark_node
1289 || attributes == NULL_TREE)
1290 return;
1292 if (processing_template_decl)
1294 if (check_for_bare_parameter_packs (attributes))
1295 return;
1297 save_template_attributes (&attributes, decl);
1298 if (attributes == NULL_TREE)
1299 return;
1302 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1303 decl = &DECL_TEMPLATE_RESULT (*decl);
1305 decl_attributes (decl, attributes, flags);
1307 if (TREE_CODE (*decl) == TYPE_DECL)
1308 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1311 /* Walks through the namespace- or function-scope anonymous union
1312 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1313 Returns one of the fields for use in the mangled name. */
1315 static tree
1316 build_anon_union_vars (tree type, tree object)
1318 tree main_decl = NULL_TREE;
1319 tree field;
1321 /* Rather than write the code to handle the non-union case,
1322 just give an error. */
1323 if (TREE_CODE (type) != UNION_TYPE)
1324 error ("anonymous struct not inside named type");
1326 for (field = TYPE_FIELDS (type);
1327 field != NULL_TREE;
1328 field = DECL_CHAIN (field))
1330 tree decl;
1331 tree ref;
1333 if (DECL_ARTIFICIAL (field))
1334 continue;
1335 if (TREE_CODE (field) != FIELD_DECL)
1337 permerror (input_location, "%q+#D invalid; an anonymous union can only "
1338 "have non-static data members", field);
1339 continue;
1342 if (TREE_PRIVATE (field))
1343 permerror (input_location, "private member %q+#D in anonymous union", field);
1344 else if (TREE_PROTECTED (field))
1345 permerror (input_location, "protected member %q+#D in anonymous union", field);
1347 if (processing_template_decl)
1348 ref = build_min_nt (COMPONENT_REF, object,
1349 DECL_NAME (field), NULL_TREE);
1350 else
1351 ref = build_class_member_access_expr (object, field, NULL_TREE,
1352 false, tf_warning_or_error);
1354 if (DECL_NAME (field))
1356 tree base;
1358 decl = build_decl (input_location,
1359 VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1360 DECL_ANON_UNION_VAR_P (decl) = 1;
1361 DECL_ARTIFICIAL (decl) = 1;
1363 base = get_base_address (object);
1364 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1365 TREE_STATIC (decl) = TREE_STATIC (base);
1366 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1368 SET_DECL_VALUE_EXPR (decl, ref);
1369 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1371 decl = pushdecl (decl);
1373 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1374 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1375 else
1376 decl = 0;
1378 if (main_decl == NULL_TREE)
1379 main_decl = decl;
1382 return main_decl;
1385 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1386 anonymous union, then all members must be laid out together. PUBLIC_P
1387 is nonzero if this union is not declared static. */
1389 void
1390 finish_anon_union (tree anon_union_decl)
1392 tree type;
1393 tree main_decl;
1394 bool public_p;
1396 if (anon_union_decl == error_mark_node)
1397 return;
1399 type = TREE_TYPE (anon_union_decl);
1400 public_p = TREE_PUBLIC (anon_union_decl);
1402 /* The VAR_DECL's context is the same as the TYPE's context. */
1403 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1405 if (TYPE_FIELDS (type) == NULL_TREE)
1406 return;
1408 if (public_p)
1410 error ("namespace-scope anonymous aggregates must be static");
1411 return;
1414 main_decl = build_anon_union_vars (type, anon_union_decl);
1415 if (main_decl == error_mark_node)
1416 return;
1417 if (main_decl == NULL_TREE)
1419 warning (0, "anonymous union with no members");
1420 return;
1423 if (!processing_template_decl)
1425 /* Use main_decl to set the mangled name. */
1426 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1427 maybe_commonize_var (anon_union_decl);
1428 mangle_decl (anon_union_decl);
1429 DECL_NAME (anon_union_decl) = NULL_TREE;
1432 pushdecl (anon_union_decl);
1433 if (building_stmt_tree ()
1434 && at_function_scope_p ())
1435 add_decl_expr (anon_union_decl);
1436 else if (!processing_template_decl)
1437 rest_of_decl_compilation (anon_union_decl,
1438 toplevel_bindings_p (), at_eof);
1441 /* Auxiliary functions to make type signatures for
1442 `operator new' and `operator delete' correspond to
1443 what compiler will be expecting. */
1445 tree
1446 coerce_new_type (tree type)
1448 int e = 0;
1449 tree args = TYPE_ARG_TYPES (type);
1451 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1453 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1455 e = 1;
1456 error ("%<operator new%> must return type %qT", ptr_type_node);
1459 if (args && args != void_list_node)
1461 if (TREE_PURPOSE (args))
1463 /* [basic.stc.dynamic.allocation]
1465 The first parameter shall not have an associated default
1466 argument. */
1467 error ("the first parameter of %<operator new%> cannot "
1468 "have a default argument");
1469 /* Throw away the default argument. */
1470 TREE_PURPOSE (args) = NULL_TREE;
1473 if (!same_type_p (TREE_VALUE (args), size_type_node))
1475 e = 2;
1476 args = TREE_CHAIN (args);
1479 else
1480 e = 2;
1482 if (e == 2)
1483 permerror (input_location, "%<operator new%> takes type %<size_t%> (%qT) "
1484 "as first parameter", size_type_node);
1486 switch (e)
1488 case 2:
1489 args = tree_cons (NULL_TREE, size_type_node, args);
1490 /* Fall through. */
1491 case 1:
1492 type = build_exception_variant
1493 (build_function_type (ptr_type_node, args),
1494 TYPE_RAISES_EXCEPTIONS (type));
1495 /* Fall through. */
1496 default:;
1498 return type;
1501 tree
1502 coerce_delete_type (tree type)
1504 int e = 0;
1505 tree args = TYPE_ARG_TYPES (type);
1507 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1509 if (!same_type_p (TREE_TYPE (type), void_type_node))
1511 e = 1;
1512 error ("%<operator delete%> must return type %qT", void_type_node);
1515 if (!args || args == void_list_node
1516 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1518 e = 2;
1519 if (args && args != void_list_node)
1520 args = TREE_CHAIN (args);
1521 error ("%<operator delete%> takes type %qT as first parameter",
1522 ptr_type_node);
1524 switch (e)
1526 case 2:
1527 args = tree_cons (NULL_TREE, ptr_type_node, args);
1528 /* Fall through. */
1529 case 1:
1530 type = build_exception_variant
1531 (build_function_type (void_type_node, args),
1532 TYPE_RAISES_EXCEPTIONS (type));
1533 /* Fall through. */
1534 default:;
1537 return type;
1540 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1541 and mark them as needed. */
1543 static void
1544 mark_vtable_entries (tree decl)
1546 tree fnaddr;
1547 unsigned HOST_WIDE_INT idx;
1549 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1550 idx, fnaddr)
1552 tree fn;
1554 STRIP_NOPS (fnaddr);
1556 if (TREE_CODE (fnaddr) != ADDR_EXPR
1557 && TREE_CODE (fnaddr) != FDESC_EXPR)
1558 /* This entry is an offset: a virtual base class offset, a
1559 virtual call offset, an RTTI offset, etc. */
1560 continue;
1562 fn = TREE_OPERAND (fnaddr, 0);
1563 TREE_ADDRESSABLE (fn) = 1;
1564 /* When we don't have vcall offsets, we output thunks whenever
1565 we output the vtables that contain them. With vcall offsets,
1566 we know all the thunks we'll need when we emit a virtual
1567 function, so we emit the thunks there instead. */
1568 if (DECL_THUNK_P (fn))
1569 use_thunk (fn, /*emit_p=*/0);
1570 mark_used (fn);
1574 /* Set DECL up to have the closest approximation of "initialized common"
1575 linkage available. */
1577 void
1578 comdat_linkage (tree decl)
1580 if (flag_weak)
1581 make_decl_one_only (decl, cxx_comdat_group (decl));
1582 else if (TREE_CODE (decl) == FUNCTION_DECL
1583 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1584 /* We can just emit function and compiler-generated variables
1585 statically; having multiple copies is (for the most part) only
1586 a waste of space.
1588 There are two correctness issues, however: the address of a
1589 template instantiation with external linkage should be the
1590 same, independent of what translation unit asks for the
1591 address, and this will not hold when we emit multiple copies of
1592 the function. However, there's little else we can do.
1594 Also, by default, the typeinfo implementation assumes that
1595 there will be only one copy of the string used as the name for
1596 each type. Therefore, if weak symbols are unavailable, the
1597 run-time library should perform a more conservative check; it
1598 should perform a string comparison, rather than an address
1599 comparison. */
1600 TREE_PUBLIC (decl) = 0;
1601 else
1603 /* Static data member template instantiations, however, cannot
1604 have multiple copies. */
1605 if (DECL_INITIAL (decl) == 0
1606 || DECL_INITIAL (decl) == error_mark_node)
1607 DECL_COMMON (decl) = 1;
1608 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1610 DECL_COMMON (decl) = 1;
1611 DECL_INITIAL (decl) = error_mark_node;
1613 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1615 /* We can't do anything useful; leave vars for explicit
1616 instantiation. */
1617 DECL_EXTERNAL (decl) = 1;
1618 DECL_NOT_REALLY_EXTERN (decl) = 0;
1622 DECL_COMDAT (decl) = 1;
1625 /* For win32 we also want to put explicit instantiations in
1626 linkonce sections, so that they will be merged with implicit
1627 instantiations; otherwise we get duplicate symbol errors.
1628 For Darwin we do not want explicit instantiations to be
1629 linkonce. */
1631 void
1632 maybe_make_one_only (tree decl)
1634 /* We used to say that this was not necessary on targets that support weak
1635 symbols, because the implicit instantiations will defer to the explicit
1636 one. However, that's not actually the case in SVR4; a strong definition
1637 after a weak one is an error. Also, not making explicit
1638 instantiations one_only means that we can end up with two copies of
1639 some template instantiations. */
1640 if (! flag_weak)
1641 return;
1643 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1644 we can get away with not emitting them if they aren't used. We need
1645 to for variables so that cp_finish_decl will update their linkage,
1646 because their DECL_INITIAL may not have been set properly yet. */
1648 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1649 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1650 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1652 make_decl_one_only (decl, cxx_comdat_group (decl));
1654 if (TREE_CODE (decl) == VAR_DECL)
1656 DECL_COMDAT (decl) = 1;
1657 /* Mark it needed so we don't forget to emit it. */
1658 mark_decl_referenced (decl);
1663 /* Returns true iff DECL, a FUNCTION_DECL or VAR_DECL, has vague linkage.
1664 This predicate will give the right answer during parsing of the
1665 function, which other tests may not. */
1667 bool
1668 vague_linkage_p (tree decl)
1670 /* Unfortunately, import_export_decl has not always been called
1671 before the function is processed, so we cannot simply check
1672 DECL_COMDAT. */
1673 return (DECL_COMDAT (decl)
1674 || (((TREE_CODE (decl) == FUNCTION_DECL
1675 && DECL_DECLARED_INLINE_P (decl))
1676 || (DECL_LANG_SPECIFIC (decl)
1677 && DECL_TEMPLATE_INSTANTIATION (decl)))
1678 && TREE_PUBLIC (decl)));
1681 /* Determine whether or not we want to specifically import or export CTYPE,
1682 using various heuristics. */
1684 static void
1685 import_export_class (tree ctype)
1687 /* -1 for imported, 1 for exported. */
1688 int import_export = 0;
1690 /* It only makes sense to call this function at EOF. The reason is
1691 that this function looks at whether or not the first non-inline
1692 non-abstract virtual member function has been defined in this
1693 translation unit. But, we can't possibly know that until we've
1694 seen the entire translation unit. */
1695 gcc_assert (at_eof);
1697 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1698 return;
1700 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1701 we will have CLASSTYPE_INTERFACE_ONLY set but not
1702 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1703 heuristic because someone will supply a #pragma implementation
1704 elsewhere, and deducing it here would produce a conflict. */
1705 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1706 return;
1708 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1709 import_export = -1;
1710 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1711 import_export = 1;
1712 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1713 && !flag_implicit_templates)
1714 /* For a template class, without -fimplicit-templates, check the
1715 repository. If the virtual table is assigned to this
1716 translation unit, then export the class; otherwise, import
1717 it. */
1718 import_export = repo_export_class_p (ctype) ? 1 : -1;
1719 else if (TYPE_POLYMORPHIC_P (ctype))
1721 /* The ABI specifies that the virtual table and associated
1722 information are emitted with the key method, if any. */
1723 tree method = CLASSTYPE_KEY_METHOD (ctype);
1724 /* If weak symbol support is not available, then we must be
1725 careful not to emit the vtable when the key function is
1726 inline. An inline function can be defined in multiple
1727 translation units. If we were to emit the vtable in each
1728 translation unit containing a definition, we would get
1729 multiple definition errors at link-time. */
1730 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1731 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1734 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1735 a definition anywhere else. */
1736 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1737 import_export = 0;
1739 /* Allow back ends the chance to overrule the decision. */
1740 if (targetm.cxx.import_export_class)
1741 import_export = targetm.cxx.import_export_class (ctype, import_export);
1743 if (import_export)
1745 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1746 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1750 /* Return true if VAR has already been provided to the back end; in that
1751 case VAR should not be modified further by the front end. */
1752 static bool
1753 var_finalized_p (tree var)
1755 return varpool_node (var)->finalized;
1758 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1759 must be emitted in this translation unit. Mark it as such. */
1761 void
1762 mark_needed (tree decl)
1764 /* It's possible that we no longer need to set
1765 TREE_SYMBOL_REFERENCED here directly, but doing so is
1766 harmless. */
1767 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1768 mark_decl_referenced (decl);
1771 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1772 returns true if a definition of this entity should be provided in
1773 this object file. Callers use this function to determine whether
1774 or not to let the back end know that a definition of DECL is
1775 available in this translation unit. */
1777 bool
1778 decl_needed_p (tree decl)
1780 gcc_assert (TREE_CODE (decl) == VAR_DECL
1781 || TREE_CODE (decl) == FUNCTION_DECL);
1782 /* This function should only be called at the end of the translation
1783 unit. We cannot be sure of whether or not something will be
1784 COMDAT until that point. */
1785 gcc_assert (at_eof);
1787 /* All entities with external linkage that are not COMDAT should be
1788 emitted; they may be referred to from other object files. */
1789 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1790 return true;
1791 /* If this entity was used, let the back end see it; it will decide
1792 whether or not to emit it into the object file. */
1793 if (TREE_USED (decl)
1794 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1795 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1796 return true;
1797 /* Functions marked "dllexport" must be emitted so that they are
1798 visible to other DLLs. */
1799 if (lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))
1800 return true;
1801 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1802 reference to DECL might cause it to be emitted later. */
1803 return false;
1806 /* If necessary, write out the vtables for the dynamic class CTYPE.
1807 Returns true if any vtables were emitted. */
1809 static bool
1810 maybe_emit_vtables (tree ctype)
1812 tree vtbl;
1813 tree primary_vtbl;
1814 int needed = 0;
1815 struct varpool_node *current = NULL, *last = NULL, *first = NULL;
1817 /* If the vtables for this class have already been emitted there is
1818 nothing more to do. */
1819 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1820 if (var_finalized_p (primary_vtbl))
1821 return false;
1822 /* Ignore dummy vtables made by get_vtable_decl. */
1823 if (TREE_TYPE (primary_vtbl) == void_type_node)
1824 return false;
1826 /* On some targets, we cannot determine the key method until the end
1827 of the translation unit -- which is when this function is
1828 called. */
1829 if (!targetm.cxx.key_method_may_be_inline ())
1830 determine_key_method (ctype);
1832 /* See if any of the vtables are needed. */
1833 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = DECL_CHAIN (vtbl))
1835 import_export_decl (vtbl);
1836 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1837 needed = 1;
1839 if (!needed)
1841 /* If the references to this class' vtables are optimized away,
1842 still emit the appropriate debugging information. See
1843 dfs_debug_mark. */
1844 if (DECL_COMDAT (primary_vtbl)
1845 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1846 note_debug_info_needed (ctype);
1847 return false;
1850 /* The ABI requires that we emit all of the vtables if we emit any
1851 of them. */
1852 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = DECL_CHAIN (vtbl))
1854 /* Mark entities references from the virtual table as used. */
1855 mark_vtable_entries (vtbl);
1857 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1859 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl), LOOKUP_NORMAL);
1861 /* It had better be all done at compile-time. */
1862 gcc_assert (!expr);
1865 /* Write it out. */
1866 DECL_EXTERNAL (vtbl) = 0;
1867 rest_of_decl_compilation (vtbl, 1, 1);
1869 /* Because we're only doing syntax-checking, we'll never end up
1870 actually marking the variable as written. */
1871 if (flag_syntax_only)
1872 TREE_ASM_WRITTEN (vtbl) = 1;
1873 else if (DECL_COMDAT (vtbl))
1875 current = varpool_node (vtbl);
1876 if (last)
1877 last->same_comdat_group = current;
1878 last = current;
1879 if (!first)
1880 first = current;
1884 if (first != last)
1885 last->same_comdat_group = first;
1887 /* Since we're writing out the vtable here, also write the debug
1888 info. */
1889 note_debug_info_needed (ctype);
1891 return true;
1894 /* A special return value from type_visibility meaning internal
1895 linkage. */
1897 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1899 /* walk_tree helper function for type_visibility. */
1901 static tree
1902 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1904 int *vis_p = (int *)data;
1905 if (! TYPE_P (*tp))
1907 *walk_subtrees = 0;
1909 else if (CLASS_TYPE_P (*tp))
1911 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1913 *vis_p = VISIBILITY_ANON;
1914 return *tp;
1916 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1917 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1919 return NULL;
1922 /* Returns the visibility of TYPE, which is the minimum visibility of its
1923 component types. */
1925 static int
1926 type_visibility (tree type)
1928 int vis = VISIBILITY_DEFAULT;
1929 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1930 return vis;
1933 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1934 specified (or if VISIBILITY is static). */
1936 static bool
1937 constrain_visibility (tree decl, int visibility)
1939 if (visibility == VISIBILITY_ANON)
1941 /* extern "C" declarations aren't affected by the anonymous
1942 namespace. */
1943 if (!DECL_EXTERN_C_P (decl))
1945 TREE_PUBLIC (decl) = 0;
1946 DECL_WEAK (decl) = 0;
1947 DECL_COMMON (decl) = 0;
1948 DECL_COMDAT_GROUP (decl) = NULL_TREE;
1949 DECL_INTERFACE_KNOWN (decl) = 1;
1950 if (DECL_LANG_SPECIFIC (decl))
1951 DECL_NOT_REALLY_EXTERN (decl) = 1;
1954 else if (visibility > DECL_VISIBILITY (decl)
1955 && !DECL_VISIBILITY_SPECIFIED (decl))
1957 DECL_VISIBILITY (decl) = (enum symbol_visibility) visibility;
1958 return true;
1960 return false;
1963 /* Constrain the visibility of DECL based on the visibility of its template
1964 arguments. */
1966 static void
1967 constrain_visibility_for_template (tree decl, tree targs)
1969 /* If this is a template instantiation, check the innermost
1970 template args for visibility constraints. The outer template
1971 args are covered by the class check. */
1972 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1973 int i;
1974 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1976 int vis = 0;
1978 tree arg = TREE_VEC_ELT (args, i-1);
1979 if (TYPE_P (arg))
1980 vis = type_visibility (arg);
1981 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1983 STRIP_NOPS (arg);
1984 if (TREE_CODE (arg) == ADDR_EXPR)
1985 arg = TREE_OPERAND (arg, 0);
1986 if (TREE_CODE (arg) == VAR_DECL
1987 || TREE_CODE (arg) == FUNCTION_DECL)
1989 if (! TREE_PUBLIC (arg))
1990 vis = VISIBILITY_ANON;
1991 else
1992 vis = DECL_VISIBILITY (arg);
1995 if (vis)
1996 constrain_visibility (decl, vis);
2000 /* Like c_determine_visibility, but with additional C++-specific
2001 behavior.
2003 Function-scope entities can rely on the function's visibility because
2004 it is set in start_preparsed_function.
2006 Class-scope entities cannot rely on the class's visibility until the end
2007 of the enclosing class definition.
2009 Note that because namespaces have multiple independent definitions,
2010 namespace visibility is handled elsewhere using the #pragma visibility
2011 machinery rather than by decorating the namespace declaration.
2013 The goal is for constraints from the type to give a diagnostic, and
2014 other constraints to be applied silently. */
2016 void
2017 determine_visibility (tree decl)
2019 tree class_type = NULL_TREE;
2020 bool use_template;
2021 bool orig_visibility_specified;
2022 enum symbol_visibility orig_visibility;
2024 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
2026 /* Only relevant for names with external linkage. */
2027 if (!TREE_PUBLIC (decl))
2028 return;
2030 /* Cloned constructors and destructors get the same visibility as
2031 the underlying function. That should be set up in
2032 maybe_clone_body. */
2033 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
2035 orig_visibility_specified = DECL_VISIBILITY_SPECIFIED (decl);
2036 orig_visibility = DECL_VISIBILITY (decl);
2038 if (TREE_CODE (decl) == TYPE_DECL)
2040 if (CLASS_TYPE_P (TREE_TYPE (decl)))
2041 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
2042 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
2043 use_template = 1;
2044 else
2045 use_template = 0;
2047 else if (DECL_LANG_SPECIFIC (decl))
2048 use_template = DECL_USE_TEMPLATE (decl);
2049 else
2050 use_template = 0;
2052 /* If DECL is a member of a class, visibility specifiers on the
2053 class can influence the visibility of the DECL. */
2054 if (DECL_CLASS_SCOPE_P (decl))
2055 class_type = DECL_CONTEXT (decl);
2056 else
2058 /* Not a class member. */
2060 /* Virtual tables have DECL_CONTEXT set to their associated class,
2061 so they are automatically handled above. */
2062 gcc_assert (TREE_CODE (decl) != VAR_DECL
2063 || !DECL_VTABLE_OR_VTT_P (decl));
2065 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
2067 /* Local statics and classes get the visibility of their
2068 containing function by default, except that
2069 -fvisibility-inlines-hidden doesn't affect them. */
2070 tree fn = DECL_CONTEXT (decl);
2071 if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
2073 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
2074 DECL_VISIBILITY_SPECIFIED (decl) =
2075 DECL_VISIBILITY_SPECIFIED (fn);
2077 else
2078 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
2080 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
2081 but have no TEMPLATE_INFO, so don't try to check it. */
2082 use_template = 0;
2084 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
2085 && flag_visibility_ms_compat)
2087 /* Under -fvisibility-ms-compat, types are visible by default,
2088 even though their contents aren't. */
2089 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
2090 int underlying_vis = type_visibility (underlying_type);
2091 if (underlying_vis == VISIBILITY_ANON
2092 || CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type))
2093 constrain_visibility (decl, underlying_vis);
2094 else
2095 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
2097 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2099 /* tinfo visibility is based on the type it's for. */
2100 constrain_visibility
2101 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
2103 /* Give the target a chance to override the visibility associated
2104 with DECL. */
2105 if (TREE_PUBLIC (decl)
2106 && !DECL_REALLY_EXTERN (decl)
2107 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
2108 && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
2109 targetm.cxx.determine_class_data_visibility (decl);
2111 else if (use_template)
2112 /* Template instantiations and specializations get visibility based
2113 on their template unless they override it with an attribute. */;
2114 else if (! DECL_VISIBILITY_SPECIFIED (decl))
2116 /* Set default visibility to whatever the user supplied with
2117 #pragma GCC visibility or a namespace visibility attribute. */
2118 DECL_VISIBILITY (decl) = default_visibility;
2119 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2123 if (use_template)
2125 /* If the specialization doesn't specify visibility, use the
2126 visibility from the template. */
2127 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2128 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2129 : DECL_TEMPLATE_INFO (decl));
2130 tree args = TI_ARGS (tinfo);
2132 if (args != error_mark_node)
2134 int depth = TMPL_ARGS_DEPTH (args);
2135 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2137 if (!DECL_VISIBILITY_SPECIFIED (decl))
2139 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2140 DECL_VISIBILITY_SPECIFIED (decl)
2141 = DECL_VISIBILITY_SPECIFIED (pattern);
2144 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
2145 if (args && depth > template_class_depth (class_type))
2146 /* Limit visibility based on its template arguments. */
2147 constrain_visibility_for_template (decl, args);
2151 if (class_type)
2152 determine_visibility_from_class (decl, class_type);
2154 if (decl_anon_ns_mem_p (decl))
2155 /* Names in an anonymous namespace get internal linkage.
2156 This might change once we implement export. */
2157 constrain_visibility (decl, VISIBILITY_ANON);
2158 else if (TREE_CODE (decl) != TYPE_DECL)
2160 /* Propagate anonymity from type to decl. */
2161 int tvis = type_visibility (TREE_TYPE (decl));
2162 if (tvis == VISIBILITY_ANON
2163 || ! DECL_VISIBILITY_SPECIFIED (decl))
2164 constrain_visibility (decl, tvis);
2166 else if (no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/true))
2167 /* DR 757: A type without linkage shall not be used as the type of a
2168 variable or function with linkage, unless
2169 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
2170 o the variable or function is not used (3.2 [basic.def.odr]) or is
2171 defined in the same translation unit.
2173 Since non-extern "C" decls need to be defined in the same
2174 translation unit, we can make the type internal. */
2175 constrain_visibility (decl, VISIBILITY_ANON);
2177 /* If visibility changed and DECL already has DECL_RTL, ensure
2178 symbol flags are updated. */
2179 if ((DECL_VISIBILITY (decl) != orig_visibility
2180 || DECL_VISIBILITY_SPECIFIED (decl) != orig_visibility_specified)
2181 && ((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
2182 || TREE_CODE (decl) == FUNCTION_DECL)
2183 && DECL_RTL_SET_P (decl))
2184 make_decl_rtl (decl);
2187 /* By default, static data members and function members receive
2188 the visibility of their containing class. */
2190 static void
2191 determine_visibility_from_class (tree decl, tree class_type)
2193 if (DECL_VISIBILITY_SPECIFIED (decl))
2194 return;
2196 if (visibility_options.inlines_hidden
2197 /* Don't do this for inline templates; specializations might not be
2198 inline, and we don't want them to inherit the hidden
2199 visibility. We'll set it here for all inline instantiations. */
2200 && !processing_template_decl
2201 && TREE_CODE (decl) == FUNCTION_DECL
2202 && DECL_DECLARED_INLINE_P (decl)
2203 && (! DECL_LANG_SPECIFIC (decl)
2204 || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2205 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2206 else
2208 /* Default to the class visibility. */
2209 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2210 DECL_VISIBILITY_SPECIFIED (decl)
2211 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2214 /* Give the target a chance to override the visibility associated
2215 with DECL. */
2216 if (TREE_CODE (decl) == VAR_DECL
2217 && (DECL_TINFO_P (decl)
2218 || (DECL_VTABLE_OR_VTT_P (decl)
2219 /* Construction virtual tables are not exported because
2220 they cannot be referred to from other object files;
2221 their name is not standardized by the ABI. */
2222 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2223 && TREE_PUBLIC (decl)
2224 && !DECL_REALLY_EXTERN (decl)
2225 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2226 targetm.cxx.determine_class_data_visibility (decl);
2229 /* Constrain the visibility of a class TYPE based on the visibility of its
2230 field types. Warn if any fields require lesser visibility. */
2232 void
2233 constrain_class_visibility (tree type)
2235 tree binfo;
2236 tree t;
2237 int i;
2239 int vis = type_visibility (type);
2241 if (vis == VISIBILITY_ANON
2242 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2243 return;
2245 /* Don't warn about visibility if the class has explicit visibility. */
2246 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2247 vis = VISIBILITY_INTERNAL;
2249 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
2250 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2252 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2253 int subvis = type_visibility (ftype);
2255 if (subvis == VISIBILITY_ANON)
2257 if (!in_main_input_context ())
2258 warning (0, "\
2259 %qT has a field %qD whose type uses the anonymous namespace",
2260 type, t);
2262 else if (MAYBE_CLASS_TYPE_P (ftype)
2263 && vis < VISIBILITY_HIDDEN
2264 && subvis >= VISIBILITY_HIDDEN)
2265 warning (OPT_Wattributes, "\
2266 %qT declared with greater visibility than the type of its field %qD",
2267 type, t);
2270 binfo = TYPE_BINFO (type);
2271 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2273 int subvis = type_visibility (TREE_TYPE (t));
2275 if (subvis == VISIBILITY_ANON)
2277 if (!in_main_input_context())
2278 warning (0, "\
2279 %qT has a base %qT whose type uses the anonymous namespace",
2280 type, TREE_TYPE (t));
2282 else if (vis < VISIBILITY_HIDDEN
2283 && subvis >= VISIBILITY_HIDDEN)
2284 warning (OPT_Wattributes, "\
2285 %qT declared with greater visibility than its base %qT",
2286 type, TREE_TYPE (t));
2290 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2291 for DECL has not already been determined, do so now by setting
2292 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2293 function is called entities with vague linkage whose definitions
2294 are available must have TREE_PUBLIC set.
2296 If this function decides to place DECL in COMDAT, it will set
2297 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2298 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2299 callers defer that decision until it is clear that DECL is actually
2300 required. */
2302 void
2303 import_export_decl (tree decl)
2305 int emit_p;
2306 bool comdat_p;
2307 bool import_p;
2308 tree class_type = NULL_TREE;
2310 if (DECL_INTERFACE_KNOWN (decl))
2311 return;
2313 /* We cannot determine what linkage to give to an entity with vague
2314 linkage until the end of the file. For example, a virtual table
2315 for a class will be defined if and only if the key method is
2316 defined in this translation unit. As a further example, consider
2317 that when compiling a translation unit that uses PCH file with
2318 "-frepo" it would be incorrect to make decisions about what
2319 entities to emit when building the PCH; those decisions must be
2320 delayed until the repository information has been processed. */
2321 gcc_assert (at_eof);
2322 /* Object file linkage for explicit instantiations is handled in
2323 mark_decl_instantiated. For static variables in functions with
2324 vague linkage, maybe_commonize_var is used.
2326 Therefore, the only declarations that should be provided to this
2327 function are those with external linkage that are:
2329 * implicit instantiations of function templates
2331 * inline function
2333 * implicit instantiations of static data members of class
2334 templates
2336 * virtual tables
2338 * typeinfo objects
2340 Furthermore, all entities that reach this point must have a
2341 definition available in this translation unit.
2343 The following assertions check these conditions. */
2344 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2345 || TREE_CODE (decl) == VAR_DECL);
2346 /* Any code that creates entities with TREE_PUBLIC cleared should
2347 also set DECL_INTERFACE_KNOWN. */
2348 gcc_assert (TREE_PUBLIC (decl));
2349 if (TREE_CODE (decl) == FUNCTION_DECL)
2350 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2351 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2352 || DECL_DECLARED_INLINE_P (decl));
2353 else
2354 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2355 || DECL_VTABLE_OR_VTT_P (decl)
2356 || DECL_TINFO_P (decl));
2357 /* Check that a definition of DECL is available in this translation
2358 unit. */
2359 gcc_assert (!DECL_REALLY_EXTERN (decl));
2361 /* Assume that DECL will not have COMDAT linkage. */
2362 comdat_p = false;
2363 /* Assume that DECL will not be imported into this translation
2364 unit. */
2365 import_p = false;
2367 /* See if the repository tells us whether or not to emit DECL in
2368 this translation unit. */
2369 emit_p = repo_emit_p (decl);
2370 if (emit_p == 0)
2371 import_p = true;
2372 else if (emit_p == 1)
2374 /* The repository indicates that this entity should be defined
2375 here. Make sure the back end honors that request. */
2376 if (TREE_CODE (decl) == VAR_DECL)
2377 mark_needed (decl);
2378 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2379 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2381 tree clone;
2382 FOR_EACH_CLONE (clone, decl)
2383 mark_needed (clone);
2385 else
2386 mark_needed (decl);
2387 /* Output the definition as an ordinary strong definition. */
2388 DECL_EXTERNAL (decl) = 0;
2389 DECL_INTERFACE_KNOWN (decl) = 1;
2390 return;
2393 if (import_p)
2394 /* We have already decided what to do with this DECL; there is no
2395 need to check anything further. */
2397 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2399 class_type = DECL_CONTEXT (decl);
2400 import_export_class (class_type);
2401 if (TYPE_FOR_JAVA (class_type))
2402 import_p = true;
2403 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2404 && CLASSTYPE_INTERFACE_ONLY (class_type))
2405 import_p = true;
2406 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2407 && !CLASSTYPE_USE_TEMPLATE (class_type)
2408 && CLASSTYPE_KEY_METHOD (class_type)
2409 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2410 /* The ABI requires that all virtual tables be emitted with
2411 COMDAT linkage. However, on systems where COMDAT symbols
2412 don't show up in the table of contents for a static
2413 archive, or on systems without weak symbols (where we
2414 approximate COMDAT linkage by using internal linkage), the
2415 linker will report errors about undefined symbols because
2416 it will not see the virtual table definition. Therefore,
2417 in the case that we know that the virtual table will be
2418 emitted in only one translation unit, we make the virtual
2419 table an ordinary definition with external linkage. */
2420 DECL_EXTERNAL (decl) = 0;
2421 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2423 /* CLASS_TYPE is being exported from this translation unit,
2424 so DECL should be defined here. */
2425 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2426 /* If a class is declared in a header with the "extern
2427 template" extension, then it will not be instantiated,
2428 even in translation units that would normally require
2429 it. Often such classes are explicitly instantiated in
2430 one translation unit. Therefore, the explicit
2431 instantiation must be made visible to other translation
2432 units. */
2433 DECL_EXTERNAL (decl) = 0;
2434 else
2436 /* The generic C++ ABI says that class data is always
2437 COMDAT, even if there is a key function. Some
2438 variants (e.g., the ARM EABI) says that class data
2439 only has COMDAT linkage if the class data might be
2440 emitted in more than one translation unit. When the
2441 key method can be inline and is inline, we still have
2442 to arrange for comdat even though
2443 class_data_always_comdat is false. */
2444 if (!CLASSTYPE_KEY_METHOD (class_type)
2445 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2446 || targetm.cxx.class_data_always_comdat ())
2448 /* The ABI requires COMDAT linkage. Normally, we
2449 only emit COMDAT things when they are needed;
2450 make sure that we realize that this entity is
2451 indeed needed. */
2452 comdat_p = true;
2453 mark_needed (decl);
2457 else if (!flag_implicit_templates
2458 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2459 import_p = true;
2460 else
2461 comdat_p = true;
2463 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2465 tree type = TREE_TYPE (DECL_NAME (decl));
2466 if (CLASS_TYPE_P (type))
2468 class_type = type;
2469 import_export_class (type);
2470 if (CLASSTYPE_INTERFACE_KNOWN (type)
2471 && TYPE_POLYMORPHIC_P (type)
2472 && CLASSTYPE_INTERFACE_ONLY (type)
2473 /* If -fno-rtti was specified, then we cannot be sure
2474 that RTTI information will be emitted with the
2475 virtual table of the class, so we must emit it
2476 wherever it is used. */
2477 && flag_rtti)
2478 import_p = true;
2479 else
2481 if (CLASSTYPE_INTERFACE_KNOWN (type)
2482 && !CLASSTYPE_INTERFACE_ONLY (type))
2484 comdat_p = (targetm.cxx.class_data_always_comdat ()
2485 || (CLASSTYPE_KEY_METHOD (type)
2486 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2487 mark_needed (decl);
2488 if (!flag_weak)
2490 comdat_p = false;
2491 DECL_EXTERNAL (decl) = 0;
2494 else
2495 comdat_p = true;
2498 else
2499 comdat_p = true;
2501 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2502 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2504 /* DECL is an implicit instantiation of a function or static
2505 data member. */
2506 if ((flag_implicit_templates
2507 && !flag_use_repository)
2508 || (flag_implicit_inline_templates
2509 && TREE_CODE (decl) == FUNCTION_DECL
2510 && DECL_DECLARED_INLINE_P (decl)))
2511 comdat_p = true;
2512 else
2513 /* If we are not implicitly generating templates, then mark
2514 this entity as undefined in this translation unit. */
2515 import_p = true;
2517 else if (DECL_FUNCTION_MEMBER_P (decl))
2519 if (!DECL_DECLARED_INLINE_P (decl))
2521 tree ctype = DECL_CONTEXT (decl);
2522 import_export_class (ctype);
2523 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2525 DECL_NOT_REALLY_EXTERN (decl)
2526 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2527 || (DECL_DECLARED_INLINE_P (decl)
2528 && ! flag_implement_inlines
2529 && !DECL_VINDEX (decl)));
2531 if (!DECL_NOT_REALLY_EXTERN (decl))
2532 DECL_EXTERNAL (decl) = 1;
2534 /* Always make artificials weak. */
2535 if (DECL_ARTIFICIAL (decl) && flag_weak)
2536 comdat_p = true;
2537 else
2538 maybe_make_one_only (decl);
2541 else
2542 comdat_p = true;
2544 else
2545 comdat_p = true;
2547 if (import_p)
2549 /* If we are importing DECL into this translation unit, mark is
2550 an undefined here. */
2551 DECL_EXTERNAL (decl) = 1;
2552 DECL_NOT_REALLY_EXTERN (decl) = 0;
2554 else if (comdat_p)
2556 /* If we decided to put DECL in COMDAT, mark it accordingly at
2557 this point. */
2558 comdat_linkage (decl);
2561 DECL_INTERFACE_KNOWN (decl) = 1;
2564 /* Return an expression that performs the destruction of DECL, which
2565 must be a VAR_DECL whose type has a non-trivial destructor, or is
2566 an array whose (innermost) elements have a non-trivial destructor. */
2568 tree
2569 build_cleanup (tree decl)
2571 tree temp;
2572 tree type = TREE_TYPE (decl);
2574 /* This function should only be called for declarations that really
2575 require cleanups. */
2576 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2578 /* Treat all objects with destructors as used; the destructor may do
2579 something substantive. */
2580 mark_used (decl);
2582 if (TREE_CODE (type) == ARRAY_TYPE)
2583 temp = decl;
2584 else
2585 temp = build_address (decl);
2586 temp = build_delete (TREE_TYPE (temp), temp,
2587 sfk_complete_destructor,
2588 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2589 return temp;
2592 /* Returns the initialization guard variable for the variable DECL,
2593 which has static storage duration. */
2595 tree
2596 get_guard (tree decl)
2598 tree sname;
2599 tree guard;
2601 sname = mangle_guard_variable (decl);
2602 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2603 if (! guard)
2605 tree guard_type;
2607 /* We use a type that is big enough to contain a mutex as well
2608 as an integer counter. */
2609 guard_type = targetm.cxx.guard_type ();
2610 guard = build_decl (DECL_SOURCE_LOCATION (decl),
2611 VAR_DECL, sname, guard_type);
2613 /* The guard should have the same linkage as what it guards. */
2614 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2615 TREE_STATIC (guard) = TREE_STATIC (decl);
2616 DECL_COMMON (guard) = DECL_COMMON (decl);
2617 DECL_COMDAT (guard) = DECL_COMDAT (decl);
2618 if (DECL_ONE_ONLY (decl))
2619 make_decl_one_only (guard, cxx_comdat_group (guard));
2620 if (TREE_PUBLIC (decl))
2621 DECL_WEAK (guard) = DECL_WEAK (decl);
2622 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2623 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2625 DECL_ARTIFICIAL (guard) = 1;
2626 DECL_IGNORED_P (guard) = 1;
2627 TREE_USED (guard) = 1;
2628 pushdecl_top_level_and_finish (guard, NULL_TREE);
2630 return guard;
2633 /* Return those bits of the GUARD variable that should be set when the
2634 guarded entity is actually initialized. */
2636 static tree
2637 get_guard_bits (tree guard)
2639 if (!targetm.cxx.guard_mask_bit ())
2641 /* We only set the first byte of the guard, in order to leave room
2642 for a mutex in the high-order bits. */
2643 guard = build1 (ADDR_EXPR,
2644 build_pointer_type (TREE_TYPE (guard)),
2645 guard);
2646 guard = build1 (NOP_EXPR,
2647 build_pointer_type (char_type_node),
2648 guard);
2649 guard = build1 (INDIRECT_REF, char_type_node, guard);
2652 return guard;
2655 /* Return an expression which determines whether or not the GUARD
2656 variable has already been initialized. */
2658 tree
2659 get_guard_cond (tree guard)
2661 tree guard_value;
2663 /* Check to see if the GUARD is zero. */
2664 guard = get_guard_bits (guard);
2666 /* Mask off all but the low bit. */
2667 if (targetm.cxx.guard_mask_bit ())
2669 guard_value = integer_one_node;
2670 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2671 guard_value = convert (TREE_TYPE (guard), guard_value);
2672 guard = cp_build_binary_op (input_location,
2673 BIT_AND_EXPR, guard, guard_value,
2674 tf_warning_or_error);
2677 guard_value = integer_zero_node;
2678 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2679 guard_value = convert (TREE_TYPE (guard), guard_value);
2680 return cp_build_binary_op (input_location,
2681 EQ_EXPR, guard, guard_value,
2682 tf_warning_or_error);
2685 /* Return an expression which sets the GUARD variable, indicating that
2686 the variable being guarded has been initialized. */
2688 tree
2689 set_guard (tree guard)
2691 tree guard_init;
2693 /* Set the GUARD to one. */
2694 guard = get_guard_bits (guard);
2695 guard_init = integer_one_node;
2696 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2697 guard_init = convert (TREE_TYPE (guard), guard_init);
2698 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2699 tf_warning_or_error);
2702 /* Start the process of running a particular set of global constructors
2703 or destructors. Subroutine of do_[cd]tors. */
2705 static tree
2706 start_objects (int method_type, int initp)
2708 tree body;
2709 tree fndecl;
2710 char type[10];
2712 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2714 if (initp != DEFAULT_INIT_PRIORITY)
2716 char joiner;
2718 #ifdef JOINER
2719 joiner = JOINER;
2720 #else
2721 joiner = '_';
2722 #endif
2724 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2726 else
2727 sprintf (type, "%c", method_type);
2729 fndecl = build_lang_decl (FUNCTION_DECL,
2730 get_file_function_name (type),
2731 build_function_type_list (void_type_node,
2732 NULL_TREE));
2733 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2735 TREE_PUBLIC (current_function_decl) = 0;
2737 /* Mark as artificial because it's not explicitly in the user's
2738 source code. */
2739 DECL_ARTIFICIAL (current_function_decl) = 1;
2741 /* Mark this declaration as used to avoid spurious warnings. */
2742 TREE_USED (current_function_decl) = 1;
2744 /* Mark this function as a global constructor or destructor. */
2745 if (method_type == 'I')
2746 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2747 else
2748 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2750 body = begin_compound_stmt (BCS_FN_BODY);
2752 return body;
2755 /* Finish the process of running a particular set of global constructors
2756 or destructors. Subroutine of do_[cd]tors. */
2758 static void
2759 finish_objects (int method_type, int initp, tree body)
2761 tree fn;
2763 /* Finish up. */
2764 finish_compound_stmt (body);
2765 fn = finish_function (0);
2767 if (method_type == 'I')
2769 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2770 decl_init_priority_insert (fn, initp);
2772 else
2774 DECL_STATIC_DESTRUCTOR (fn) = 1;
2775 decl_fini_priority_insert (fn, initp);
2778 expand_or_defer_fn (fn);
2781 /* The names of the parameters to the function created to handle
2782 initializations and destructions for objects with static storage
2783 duration. */
2784 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2785 #define PRIORITY_IDENTIFIER "__priority"
2787 /* The name of the function we create to handle initializations and
2788 destructions for objects with static storage duration. */
2789 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2791 /* The declaration for the __INITIALIZE_P argument. */
2792 static GTY(()) tree initialize_p_decl;
2794 /* The declaration for the __PRIORITY argument. */
2795 static GTY(()) tree priority_decl;
2797 /* The declaration for the static storage duration function. */
2798 static GTY(()) tree ssdf_decl;
2800 /* All the static storage duration functions created in this
2801 translation unit. */
2802 static GTY(()) VEC(tree,gc) *ssdf_decls;
2804 /* A map from priority levels to information about that priority
2805 level. There may be many such levels, so efficient lookup is
2806 important. */
2807 static splay_tree priority_info_map;
2809 /* Begins the generation of the function that will handle all
2810 initialization and destruction of objects with static storage
2811 duration. The function generated takes two parameters of type
2812 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2813 nonzero, it performs initializations. Otherwise, it performs
2814 destructions. It only performs those initializations or
2815 destructions with the indicated __PRIORITY. The generated function
2816 returns no value.
2818 It is assumed that this function will only be called once per
2819 translation unit. */
2821 static tree
2822 start_static_storage_duration_function (unsigned count)
2824 tree type;
2825 tree body;
2826 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2828 /* Create the identifier for this function. It will be of the form
2829 SSDF_IDENTIFIER_<number>. */
2830 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2832 type = build_function_type_list (void_type_node,
2833 integer_type_node, integer_type_node,
2834 NULL_TREE);
2836 /* Create the FUNCTION_DECL itself. */
2837 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2838 get_identifier (id),
2839 type);
2840 TREE_PUBLIC (ssdf_decl) = 0;
2841 DECL_ARTIFICIAL (ssdf_decl) = 1;
2843 /* Put this function in the list of functions to be called from the
2844 static constructors and destructors. */
2845 if (!ssdf_decls)
2847 ssdf_decls = VEC_alloc (tree, gc, 32);
2849 /* Take this opportunity to initialize the map from priority
2850 numbers to information about that priority level. */
2851 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2852 /*delete_key_fn=*/0,
2853 /*delete_value_fn=*/
2854 (splay_tree_delete_value_fn) &free);
2856 /* We always need to generate functions for the
2857 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2858 priorities later, we'll be sure to find the
2859 DEFAULT_INIT_PRIORITY. */
2860 get_priority_info (DEFAULT_INIT_PRIORITY);
2863 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2865 /* Create the argument list. */
2866 initialize_p_decl = cp_build_parm_decl
2867 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2868 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2869 TREE_USED (initialize_p_decl) = 1;
2870 priority_decl = cp_build_parm_decl
2871 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2872 DECL_CONTEXT (priority_decl) = ssdf_decl;
2873 TREE_USED (priority_decl) = 1;
2875 DECL_CHAIN (initialize_p_decl) = priority_decl;
2876 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2878 /* Put the function in the global scope. */
2879 pushdecl (ssdf_decl);
2881 /* Start the function itself. This is equivalent to declaring the
2882 function as:
2884 static void __ssdf (int __initialize_p, init __priority_p);
2886 It is static because we only need to call this function from the
2887 various constructor and destructor functions for this module. */
2888 start_preparsed_function (ssdf_decl,
2889 /*attrs=*/NULL_TREE,
2890 SF_PRE_PARSED);
2892 /* Set up the scope of the outermost block in the function. */
2893 body = begin_compound_stmt (BCS_FN_BODY);
2895 return body;
2898 /* Finish the generation of the function which performs initialization
2899 and destruction of objects with static storage duration. After
2900 this point, no more such objects can be created. */
2902 static void
2903 finish_static_storage_duration_function (tree body)
2905 /* Close out the function. */
2906 finish_compound_stmt (body);
2907 expand_or_defer_fn (finish_function (0));
2910 /* Return the information about the indicated PRIORITY level. If no
2911 code to handle this level has yet been generated, generate the
2912 appropriate prologue. */
2914 static priority_info
2915 get_priority_info (int priority)
2917 priority_info pi;
2918 splay_tree_node n;
2920 n = splay_tree_lookup (priority_info_map,
2921 (splay_tree_key) priority);
2922 if (!n)
2924 /* Create a new priority information structure, and insert it
2925 into the map. */
2926 pi = XNEW (struct priority_info_s);
2927 pi->initializations_p = 0;
2928 pi->destructions_p = 0;
2929 splay_tree_insert (priority_info_map,
2930 (splay_tree_key) priority,
2931 (splay_tree_value) pi);
2933 else
2934 pi = (priority_info) n->value;
2936 return pi;
2939 /* The effective initialization priority of a DECL. */
2941 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2942 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2943 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2945 /* Whether a DECL needs a guard to protect it against multiple
2946 initialization. */
2948 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2949 || DECL_ONE_ONLY (decl) \
2950 || DECL_WEAK (decl)))
2952 /* Called from one_static_initialization_or_destruction(),
2953 via walk_tree.
2954 Walks the initializer list of a global variable and looks for
2955 temporary variables (DECL_NAME() == NULL and DECL_ARTIFICIAL != 0)
2956 and that have their DECL_CONTEXT() == NULL.
2957 For each such temporary variable, set their DECL_CONTEXT() to
2958 the current function. This is necessary because otherwise
2959 some optimizers (enabled by -O2 -fprofile-arcs) might crash
2960 when trying to refer to a temporary variable that does not have
2961 it's DECL_CONTECT() properly set. */
2962 static tree
2963 fix_temporary_vars_context_r (tree *node,
2964 int *unused ATTRIBUTE_UNUSED,
2965 void *unused1 ATTRIBUTE_UNUSED)
2967 gcc_assert (current_function_decl);
2969 if (TREE_CODE (*node) == BIND_EXPR)
2971 tree var;
2973 for (var = BIND_EXPR_VARS (*node); var; var = DECL_CHAIN (var))
2974 if (TREE_CODE (var) == VAR_DECL
2975 && !DECL_NAME (var)
2976 && DECL_ARTIFICIAL (var)
2977 && !DECL_CONTEXT (var))
2978 DECL_CONTEXT (var) = current_function_decl;
2981 return NULL_TREE;
2984 /* Set up to handle the initialization or destruction of DECL. If
2985 INITP is nonzero, we are initializing the variable. Otherwise, we
2986 are destroying it. */
2988 static void
2989 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2991 tree guard_if_stmt = NULL_TREE;
2992 tree guard;
2994 /* If we are supposed to destruct and there's a trivial destructor,
2995 nothing has to be done. */
2996 if (!initp
2997 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2998 return;
3000 /* Trick the compiler into thinking we are at the file and line
3001 where DECL was declared so that error-messages make sense, and so
3002 that the debugger will show somewhat sensible file and line
3003 information. */
3004 input_location = DECL_SOURCE_LOCATION (decl);
3006 /* Make sure temporary variables in the initialiser all have
3007 their DECL_CONTEXT() set to a value different from NULL_TREE.
3008 This can happen when global variables initialisers are built.
3009 In that case, the DECL_CONTEXT() of the global variables _AND_ of all
3010 the temporary variables that might have been generated in the
3011 accompagning initialisers is NULL_TREE, meaning the variables have been
3012 declared in the global namespace.
3013 What we want to do here is to fix that and make sure the DECL_CONTEXT()
3014 of the temporaries are set to the current function decl. */
3015 cp_walk_tree_without_duplicates (&init,
3016 fix_temporary_vars_context_r,
3017 NULL);
3019 /* Because of:
3021 [class.access.spec]
3023 Access control for implicit calls to the constructors,
3024 the conversion functions, or the destructor called to
3025 create and destroy a static data member is performed as
3026 if these calls appeared in the scope of the member's
3027 class.
3029 we pretend we are in a static member function of the class of
3030 which the DECL is a member. */
3031 if (member_p (decl))
3033 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3034 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3037 /* Assume we don't need a guard. */
3038 guard = NULL_TREE;
3039 /* We need a guard if this is an object with external linkage that
3040 might be initialized in more than one place. (For example, a
3041 static data member of a template, when the data member requires
3042 construction.) */
3043 if (NEEDS_GUARD_P (decl))
3045 tree guard_cond;
3047 guard = get_guard (decl);
3049 /* When using __cxa_atexit, we just check the GUARD as we would
3050 for a local static. */
3051 if (flag_use_cxa_atexit)
3053 /* When using __cxa_atexit, we never try to destroy
3054 anything from a static destructor. */
3055 gcc_assert (initp);
3056 guard_cond = get_guard_cond (guard);
3058 /* If we don't have __cxa_atexit, then we will be running
3059 destructors from .fini sections, or their equivalents. So,
3060 we need to know how many times we've tried to initialize this
3061 object. We do initializations only if the GUARD is zero,
3062 i.e., if we are the first to initialize the variable. We do
3063 destructions only if the GUARD is one, i.e., if we are the
3064 last to destroy the variable. */
3065 else if (initp)
3066 guard_cond
3067 = cp_build_binary_op (input_location,
3068 EQ_EXPR,
3069 cp_build_unary_op (PREINCREMENT_EXPR,
3070 guard,
3071 /*noconvert=*/1,
3072 tf_warning_or_error),
3073 integer_one_node,
3074 tf_warning_or_error);
3075 else
3076 guard_cond
3077 = cp_build_binary_op (input_location,
3078 EQ_EXPR,
3079 cp_build_unary_op (PREDECREMENT_EXPR,
3080 guard,
3081 /*noconvert=*/1,
3082 tf_warning_or_error),
3083 integer_zero_node,
3084 tf_warning_or_error);
3086 guard_if_stmt = begin_if_stmt ();
3087 finish_if_stmt_cond (guard_cond, guard_if_stmt);
3091 /* If we're using __cxa_atexit, we have not already set the GUARD,
3092 so we must do so now. */
3093 if (guard && initp && flag_use_cxa_atexit)
3094 finish_expr_stmt (set_guard (guard));
3096 /* Perform the initialization or destruction. */
3097 if (initp)
3099 if (init)
3100 finish_expr_stmt (init);
3102 /* If we're using __cxa_atexit, register a function that calls the
3103 destructor for the object. */
3104 if (flag_use_cxa_atexit)
3105 finish_expr_stmt (register_dtor_fn (decl));
3107 else
3108 finish_expr_stmt (build_cleanup (decl));
3110 /* Finish the guard if-stmt, if necessary. */
3111 if (guard)
3113 finish_then_clause (guard_if_stmt);
3114 finish_if_stmt (guard_if_stmt);
3117 /* Now that we're done with DECL we don't need to pretend to be a
3118 member of its class any longer. */
3119 DECL_CONTEXT (current_function_decl) = NULL_TREE;
3120 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3123 /* Generate code to do the initialization or destruction of the decls in VARS,
3124 a TREE_LIST of VAR_DECL with static storage duration.
3125 Whether initialization or destruction is performed is specified by INITP. */
3127 static void
3128 do_static_initialization_or_destruction (tree vars, bool initp)
3130 tree node, init_if_stmt, cond;
3132 /* Build the outer if-stmt to check for initialization or destruction. */
3133 init_if_stmt = begin_if_stmt ();
3134 cond = initp ? integer_one_node : integer_zero_node;
3135 cond = cp_build_binary_op (input_location,
3136 EQ_EXPR,
3137 initialize_p_decl,
3138 cond,
3139 tf_warning_or_error);
3140 finish_if_stmt_cond (cond, init_if_stmt);
3142 node = vars;
3143 do {
3144 tree decl = TREE_VALUE (node);
3145 tree priority_if_stmt;
3146 int priority;
3147 priority_info pi;
3149 /* If we don't need a destructor, there's nothing to do. Avoid
3150 creating a possibly empty if-stmt. */
3151 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3153 node = TREE_CHAIN (node);
3154 continue;
3157 /* Remember that we had an initialization or finalization at this
3158 priority. */
3159 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
3160 pi = get_priority_info (priority);
3161 if (initp)
3162 pi->initializations_p = 1;
3163 else
3164 pi->destructions_p = 1;
3166 /* Conditionalize this initialization on being in the right priority
3167 and being initializing/finalizing appropriately. */
3168 priority_if_stmt = begin_if_stmt ();
3169 cond = cp_build_binary_op (input_location,
3170 EQ_EXPR,
3171 priority_decl,
3172 build_int_cst (NULL_TREE, priority),
3173 tf_warning_or_error);
3174 finish_if_stmt_cond (cond, priority_if_stmt);
3176 /* Process initializers with same priority. */
3177 for (; node
3178 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
3179 node = TREE_CHAIN (node))
3180 /* Do one initialization or destruction. */
3181 one_static_initialization_or_destruction (TREE_VALUE (node),
3182 TREE_PURPOSE (node), initp);
3184 /* Finish up the priority if-stmt body. */
3185 finish_then_clause (priority_if_stmt);
3186 finish_if_stmt (priority_if_stmt);
3188 } while (node);
3190 /* Finish up the init/destruct if-stmt body. */
3191 finish_then_clause (init_if_stmt);
3192 finish_if_stmt (init_if_stmt);
3195 /* VARS is a list of variables with static storage duration which may
3196 need initialization and/or finalization. Remove those variables
3197 that don't really need to be initialized or finalized, and return
3198 the resulting list. The order in which the variables appear in
3199 VARS is in reverse order of the order in which they should actually
3200 be initialized. The list we return is in the unreversed order;
3201 i.e., the first variable should be initialized first. */
3203 static tree
3204 prune_vars_needing_no_initialization (tree *vars)
3206 tree *var = vars;
3207 tree result = NULL_TREE;
3209 while (*var)
3211 tree t = *var;
3212 tree decl = TREE_VALUE (t);
3213 tree init = TREE_PURPOSE (t);
3215 /* Deal gracefully with error. */
3216 if (decl == error_mark_node)
3218 var = &TREE_CHAIN (t);
3219 continue;
3222 /* The only things that can be initialized are variables. */
3223 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3225 /* If this object is not defined, we don't need to do anything
3226 here. */
3227 if (DECL_EXTERNAL (decl))
3229 var = &TREE_CHAIN (t);
3230 continue;
3233 /* Also, if the initializer already contains errors, we can bail
3234 out now. */
3235 if (init && TREE_CODE (init) == TREE_LIST
3236 && value_member (error_mark_node, init))
3238 var = &TREE_CHAIN (t);
3239 continue;
3242 /* This variable is going to need initialization and/or
3243 finalization, so we add it to the list. */
3244 *var = TREE_CHAIN (t);
3245 TREE_CHAIN (t) = result;
3246 result = t;
3249 return result;
3252 /* Make sure we have told the back end about all the variables in
3253 VARS. */
3255 static void
3256 write_out_vars (tree vars)
3258 tree v;
3260 for (v = vars; v; v = TREE_CHAIN (v))
3262 tree var = TREE_VALUE (v);
3263 if (!var_finalized_p (var))
3265 import_export_decl (var);
3266 rest_of_decl_compilation (var, 1, 1);
3271 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3272 (otherwise) that will initialize all global objects with static
3273 storage duration having the indicated PRIORITY. */
3275 static void
3276 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3277 location_t *locus)
3279 char function_key;
3280 tree fndecl;
3281 tree body;
3282 size_t i;
3284 input_location = *locus;
3285 /* ??? */
3286 /* Was: locus->line++; */
3288 /* We use `I' to indicate initialization and `D' to indicate
3289 destruction. */
3290 function_key = constructor_p ? 'I' : 'D';
3292 /* We emit the function lazily, to avoid generating empty
3293 global constructors and destructors. */
3294 body = NULL_TREE;
3296 /* For Objective-C++, we may need to initialize metadata found in this module.
3297 This must be done _before_ any other static initializations. */
3298 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3299 && constructor_p && objc_static_init_needed_p ())
3301 body = start_objects (function_key, priority);
3302 objc_generate_static_init_call (NULL_TREE);
3305 /* Call the static storage duration function with appropriate
3306 arguments. */
3307 FOR_EACH_VEC_ELT (tree, ssdf_decls, i, fndecl)
3309 /* Calls to pure or const functions will expand to nothing. */
3310 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3312 tree call;
3314 if (! body)
3315 body = start_objects (function_key, priority);
3317 call = cp_build_function_call_nary (fndecl, tf_warning_or_error,
3318 build_int_cst (NULL_TREE,
3319 constructor_p),
3320 build_int_cst (NULL_TREE,
3321 priority),
3322 NULL_TREE);
3323 finish_expr_stmt (call);
3327 /* Close out the function. */
3328 if (body)
3329 finish_objects (function_key, priority, body);
3332 /* Generate constructor and destructor functions for the priority
3333 indicated by N. */
3335 static int
3336 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3338 location_t *locus = (location_t *) data;
3339 int priority = (int) n->key;
3340 priority_info pi = (priority_info) n->value;
3342 /* Generate the functions themselves, but only if they are really
3343 needed. */
3344 if (pi->initializations_p)
3345 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3346 if (pi->destructions_p)
3347 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3349 /* Keep iterating. */
3350 return 0;
3353 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
3354 decls referenced from front-end specific constructs; it will be called
3355 only for language-specific tree nodes.
3357 Here we must deal with member pointers. */
3359 tree
3360 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3362 tree t = *tp;
3364 switch (TREE_CODE (t))
3366 case PTRMEM_CST:
3367 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3368 cgraph_mark_address_taken_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3369 break;
3370 case BASELINK:
3371 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3372 cgraph_mark_address_taken_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3373 break;
3374 case VAR_DECL:
3375 if (DECL_CONTEXT (t)
3376 && flag_use_repository
3377 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3378 /* If we need a static variable in a function, then we
3379 need the containing function. */
3380 mark_decl_referenced (DECL_CONTEXT (t));
3381 break;
3382 default:
3383 break;
3386 return NULL;
3389 /* Java requires that we be able to reference a local address for a
3390 method, and not be confused by PLT entries. If hidden aliases are
3391 supported, collect and return all the functions for which we should
3392 emit a hidden alias. */
3394 static struct pointer_set_t *
3395 collect_candidates_for_java_method_aliases (void)
3397 struct cgraph_node *node;
3398 struct pointer_set_t *candidates = NULL;
3400 #ifndef HAVE_GAS_HIDDEN
3401 return candidates;
3402 #endif
3404 for (node = cgraph_nodes; node ; node = node->next)
3406 tree fndecl = node->decl;
3408 if (DECL_CONTEXT (fndecl)
3409 && TYPE_P (DECL_CONTEXT (fndecl))
3410 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3411 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3413 if (candidates == NULL)
3414 candidates = pointer_set_create ();
3415 pointer_set_insert (candidates, fndecl);
3419 return candidates;
3423 /* Java requires that we be able to reference a local address for a
3424 method, and not be confused by PLT entries. If hidden aliases are
3425 supported, emit one for each java function that we've emitted.
3426 CANDIDATES is the set of FUNCTION_DECLs that were gathered
3427 by collect_candidates_for_java_method_aliases. */
3429 static void
3430 build_java_method_aliases (struct pointer_set_t *candidates)
3432 struct cgraph_node *node;
3434 #ifndef HAVE_GAS_HIDDEN
3435 return;
3436 #endif
3438 for (node = cgraph_nodes; node ; node = node->next)
3440 tree fndecl = node->decl;
3442 if (TREE_ASM_WRITTEN (fndecl)
3443 && pointer_set_contains (candidates, fndecl))
3445 /* Mangle the name in a predictable way; we need to reference
3446 this from a java compiled object file. */
3447 tree oid, nid, alias;
3448 const char *oname;
3449 char *nname;
3451 oid = DECL_ASSEMBLER_NAME (fndecl);
3452 oname = IDENTIFIER_POINTER (oid);
3453 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3454 nname = ACONCAT (("_ZGA", oname+2, NULL));
3455 nid = get_identifier (nname);
3457 alias = make_alias_for (fndecl, nid);
3458 TREE_PUBLIC (alias) = 1;
3459 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3461 assemble_alias (alias, oid);
3466 /* Return C++ property of T, based on given operation OP. */
3468 static int
3469 cpp_check (tree t, cpp_operation op)
3471 switch (op)
3473 case IS_ABSTRACT:
3474 return DECL_PURE_VIRTUAL_P (t);
3475 case IS_CONSTRUCTOR:
3476 return DECL_CONSTRUCTOR_P (t);
3477 case IS_DESTRUCTOR:
3478 return DECL_DESTRUCTOR_P (t);
3479 case IS_COPY_CONSTRUCTOR:
3480 return DECL_COPY_CONSTRUCTOR_P (t);
3481 case IS_TEMPLATE:
3482 return TREE_CODE (t) == TEMPLATE_DECL;
3483 default:
3484 return 0;
3488 /* Collect source file references recursively, starting from NAMESPC. */
3490 static void
3491 collect_source_refs (tree namespc)
3493 tree t;
3495 if (!namespc)
3496 return;
3498 /* Iterate over names in this name space. */
3499 for (t = NAMESPACE_LEVEL (namespc)->names; t; t = TREE_CHAIN (t))
3500 if (!DECL_IS_BUILTIN (t) )
3501 collect_source_ref (DECL_SOURCE_FILE (t));
3503 /* Dump siblings, if any */
3504 collect_source_refs (TREE_CHAIN (namespc));
3506 /* Dump children, if any */
3507 collect_source_refs (NAMESPACE_LEVEL (namespc)->namespaces);
3510 /* Collect decls relevant to SOURCE_FILE from all namespaces recursively,
3511 starting from NAMESPC. */
3513 static void
3514 collect_ada_namespace (tree namespc, const char *source_file)
3516 if (!namespc)
3517 return;
3519 /* Collect decls from this namespace */
3520 collect_ada_nodes (NAMESPACE_LEVEL (namespc)->names, source_file);
3522 /* Collect siblings, if any */
3523 collect_ada_namespace (TREE_CHAIN (namespc), source_file);
3525 /* Collect children, if any */
3526 collect_ada_namespace (NAMESPACE_LEVEL (namespc)->namespaces, source_file);
3529 /* Returns true iff there is a definition available for variable or
3530 function DECL. */
3532 static bool
3533 decl_defined_p (tree decl)
3535 if (TREE_CODE (decl) == FUNCTION_DECL)
3536 return (DECL_INITIAL (decl) != NULL_TREE);
3537 else
3539 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3540 return !DECL_EXTERNAL (decl);
3544 /* Complain that DECL uses a type with no linkage but is never defined. */
3546 static void
3547 no_linkage_error (tree decl)
3549 tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
3550 if (TYPE_ANONYMOUS_P (t))
3552 permerror (0, "%q+#D, declared using anonymous type, "
3553 "is used but never defined", decl);
3554 if (is_typedef_decl (TYPE_NAME (t)))
3555 permerror (0, "%q+#D does not refer to the unqualified type, "
3556 "so it is not used for linkage", TYPE_NAME (t));
3558 else
3559 permerror (0, "%q+#D, declared using local type %qT, "
3560 "is used but never defined", decl, t);
3563 /* Collect declarations from all namespaces relevant to SOURCE_FILE. */
3565 static void
3566 collect_all_refs (const char *source_file)
3568 collect_ada_namespace (global_namespace, source_file);
3571 /* This routine is called at the end of compilation.
3572 Its job is to create all the code needed to initialize and
3573 destroy the global aggregates. We do the destruction
3574 first, since that way we only need to reverse the decls once. */
3576 void
3577 cp_write_global_declarations (void)
3579 tree vars;
3580 bool reconsider;
3581 size_t i;
3582 location_t locus;
3583 unsigned ssdf_count = 0;
3584 int retries = 0;
3585 tree decl;
3586 struct pointer_set_t *candidates;
3588 locus = input_location;
3589 at_eof = 1;
3591 /* Bad parse errors. Just forget about it. */
3592 if (! global_bindings_p () || current_class_type
3593 || !VEC_empty (tree,decl_namespace_list))
3594 return;
3596 if (pch_file)
3597 c_common_write_pch ();
3599 /* Handle -fdump-ada-spec[-slim] */
3600 if (dump_enabled_p (TDI_ada))
3602 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
3603 collect_source_ref (main_input_filename);
3604 else
3605 collect_source_refs (global_namespace);
3607 dump_ada_specs (collect_all_refs, cpp_check);
3610 /* FIXME - huh? was input_line -= 1;*/
3612 /* We now have to write out all the stuff we put off writing out.
3613 These include:
3615 o Template specializations that we have not yet instantiated,
3616 but which are needed.
3617 o Initialization and destruction for non-local objects with
3618 static storage duration. (Local objects with static storage
3619 duration are initialized when their scope is first entered,
3620 and are cleaned up via atexit.)
3621 o Virtual function tables.
3623 All of these may cause others to be needed. For example,
3624 instantiating one function may cause another to be needed, and
3625 generating the initializer for an object may cause templates to be
3626 instantiated, etc., etc. */
3628 timevar_push (TV_VARCONST);
3630 emit_support_tinfos ();
3634 tree t;
3635 tree decl;
3637 reconsider = false;
3639 /* If there are templates that we've put off instantiating, do
3640 them now. */
3641 instantiate_pending_templates (retries);
3642 ggc_collect ();
3644 /* Write out virtual tables as required. Note that writing out
3645 the virtual table for a template class may cause the
3646 instantiation of members of that class. If we write out
3647 vtables then we remove the class from our list so we don't
3648 have to look at it again. */
3650 while (keyed_classes != NULL_TREE
3651 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3653 reconsider = true;
3654 keyed_classes = TREE_CHAIN (keyed_classes);
3657 t = keyed_classes;
3658 if (t != NULL_TREE)
3660 tree next = TREE_CHAIN (t);
3662 while (next)
3664 if (maybe_emit_vtables (TREE_VALUE (next)))
3666 reconsider = true;
3667 TREE_CHAIN (t) = TREE_CHAIN (next);
3669 else
3670 t = next;
3672 next = TREE_CHAIN (t);
3676 /* Write out needed type info variables. We have to be careful
3677 looping through unemitted decls, because emit_tinfo_decl may
3678 cause other variables to be needed. New elements will be
3679 appended, and we remove from the vector those that actually
3680 get emitted. */
3681 for (i = VEC_length (tree, unemitted_tinfo_decls);
3682 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3683 if (emit_tinfo_decl (t))
3685 reconsider = true;
3686 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3689 /* The list of objects with static storage duration is built up
3690 in reverse order. We clear STATIC_AGGREGATES so that any new
3691 aggregates added during the initialization of these will be
3692 initialized in the correct order when we next come around the
3693 loop. */
3694 vars = prune_vars_needing_no_initialization (&static_aggregates);
3696 if (vars)
3698 /* We need to start a new initialization function each time
3699 through the loop. That's because we need to know which
3700 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3701 isn't computed until a function is finished, and written
3702 out. That's a deficiency in the back end. When this is
3703 fixed, these initialization functions could all become
3704 inline, with resulting performance improvements. */
3705 tree ssdf_body;
3707 /* Set the line and file, so that it is obviously not from
3708 the source file. */
3709 input_location = locus;
3710 ssdf_body = start_static_storage_duration_function (ssdf_count);
3712 /* Make sure the back end knows about all the variables. */
3713 write_out_vars (vars);
3715 /* First generate code to do all the initializations. */
3716 if (vars)
3717 do_static_initialization_or_destruction (vars, /*initp=*/true);
3719 /* Then, generate code to do all the destructions. Do these
3720 in reverse order so that the most recently constructed
3721 variable is the first destroyed. If we're using
3722 __cxa_atexit, then we don't need to do this; functions
3723 were registered at initialization time to destroy the
3724 local statics. */
3725 if (!flag_use_cxa_atexit && vars)
3727 vars = nreverse (vars);
3728 do_static_initialization_or_destruction (vars, /*initp=*/false);
3730 else
3731 vars = NULL_TREE;
3733 /* Finish up the static storage duration function for this
3734 round. */
3735 input_location = locus;
3736 finish_static_storage_duration_function (ssdf_body);
3738 /* All those initializations and finalizations might cause
3739 us to need more inline functions, more template
3740 instantiations, etc. */
3741 reconsider = true;
3742 ssdf_count++;
3743 /* ??? was: locus.line++; */
3746 /* Go through the set of inline functions whose bodies have not
3747 been emitted yet. If out-of-line copies of these functions
3748 are required, emit them. */
3749 FOR_EACH_VEC_ELT (tree, deferred_fns, i, decl)
3751 /* Does it need synthesizing? */
3752 if (DECL_DEFAULTED_FN (decl) && ! DECL_INITIAL (decl)
3753 && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3755 /* Even though we're already at the top-level, we push
3756 there again. That way, when we pop back a few lines
3757 hence, all of our state is restored. Otherwise,
3758 finish_function doesn't clean things up, and we end
3759 up with CURRENT_FUNCTION_DECL set. */
3760 push_to_top_level ();
3761 /* The decl's location will mark where it was first
3762 needed. Save that so synthesize method can indicate
3763 where it was needed from, in case of error */
3764 input_location = DECL_SOURCE_LOCATION (decl);
3765 synthesize_method (decl);
3766 pop_from_top_level ();
3767 reconsider = true;
3770 if (!DECL_SAVED_TREE (decl))
3771 continue;
3773 /* We lie to the back end, pretending that some functions
3774 are not defined when they really are. This keeps these
3775 functions from being put out unnecessarily. But, we must
3776 stop lying when the functions are referenced, or if they
3777 are not comdat since they need to be put out now. If
3778 DECL_INTERFACE_KNOWN, then we have already set
3779 DECL_EXTERNAL appropriately, so there's no need to check
3780 again, and we do not want to clear DECL_EXTERNAL if a
3781 previous call to import_export_decl set it.
3783 This is done in a separate for cycle, because if some
3784 deferred function is contained in another deferred
3785 function later in deferred_fns varray,
3786 rest_of_compilation would skip this function and we
3787 really cannot expand the same function twice. */
3788 import_export_decl (decl);
3789 if (DECL_NOT_REALLY_EXTERN (decl)
3790 && DECL_INITIAL (decl)
3791 && decl_needed_p (decl))
3793 struct cgraph_node *node = cgraph_get_node (decl), *alias, *next;
3795 DECL_EXTERNAL (decl) = 0;
3796 /* If we mark !DECL_EXTERNAL one of the same body aliases,
3797 we need to mark all of them that way. */
3798 if (node && node->same_body)
3800 DECL_EXTERNAL (node->decl) = 0;
3801 for (alias = node->same_body; alias; alias = alias->next)
3802 DECL_EXTERNAL (alias->decl) = 0;
3804 /* If we mark !DECL_EXTERNAL one of the symbols in some comdat
3805 group, we need to mark all symbols in the same comdat group
3806 that way. */
3807 if (node->same_comdat_group)
3808 for (next = node->same_comdat_group;
3809 next != node;
3810 next = next->same_comdat_group)
3812 DECL_EXTERNAL (next->decl) = 0;
3813 if (next->same_body)
3815 for (alias = next->same_body;
3816 alias;
3817 alias = alias->next)
3818 DECL_EXTERNAL (alias->decl) = 0;
3823 /* If we're going to need to write this function out, and
3824 there's already a body for it, create RTL for it now.
3825 (There might be no body if this is a method we haven't
3826 gotten around to synthesizing yet.) */
3827 if (!DECL_EXTERNAL (decl)
3828 && decl_needed_p (decl)
3829 && !TREE_ASM_WRITTEN (decl)
3830 && !cgraph_node (decl)->local.finalized)
3832 /* We will output the function; no longer consider it in this
3833 loop. */
3834 DECL_DEFER_OUTPUT (decl) = 0;
3835 /* Generate RTL for this function now that we know we
3836 need it. */
3837 expand_or_defer_fn (decl);
3838 /* If we're compiling -fsyntax-only pretend that this
3839 function has been written out so that we don't try to
3840 expand it again. */
3841 if (flag_syntax_only)
3842 TREE_ASM_WRITTEN (decl) = 1;
3843 reconsider = true;
3847 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3848 reconsider = true;
3850 /* Static data members are just like namespace-scope globals. */
3851 FOR_EACH_VEC_ELT (tree, pending_statics, i, decl)
3853 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3854 /* Don't write it out if we haven't seen a definition. */
3855 || DECL_IN_AGGR_P (decl))
3856 continue;
3857 import_export_decl (decl);
3858 /* If this static data member is needed, provide it to the
3859 back end. */
3860 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3861 DECL_EXTERNAL (decl) = 0;
3863 if (VEC_length (tree, pending_statics) != 0
3864 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3865 VEC_length (tree, pending_statics)))
3866 reconsider = true;
3868 retries++;
3870 while (reconsider);
3872 /* All used inline functions must have a definition at this point. */
3873 FOR_EACH_VEC_ELT (tree, deferred_fns, i, decl)
3875 if (/* Check online inline functions that were actually used. */
3876 DECL_ODR_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3877 /* If the definition actually was available here, then the
3878 fact that the function was not defined merely represents
3879 that for some reason (use of a template repository,
3880 #pragma interface, etc.) we decided not to emit the
3881 definition here. */
3882 && !DECL_INITIAL (decl)
3883 /* An explicit instantiation can be used to specify
3884 that the body is in another unit. It will have
3885 already verified there was a definition. */
3886 && !DECL_EXPLICIT_INSTANTIATION (decl))
3888 warning (0, "inline function %q+D used but never defined", decl);
3889 /* Avoid a duplicate warning from check_global_declaration_1. */
3890 TREE_NO_WARNING (decl) = 1;
3894 /* So must decls that use a type with no linkage. */
3895 FOR_EACH_VEC_ELT (tree, no_linkage_decls, i, decl)
3896 if (!decl_defined_p (decl))
3897 no_linkage_error (decl);
3899 /* We give C linkage to static constructors and destructors. */
3900 push_lang_context (lang_name_c);
3902 /* Generate initialization and destruction functions for all
3903 priorities for which they are required. */
3904 if (priority_info_map)
3905 splay_tree_foreach (priority_info_map,
3906 generate_ctor_and_dtor_functions_for_priority,
3907 /*data=*/&locus);
3908 else if (c_dialect_objc () && objc_static_init_needed_p ())
3909 /* If this is obj-c++ and we need a static init, call
3910 generate_ctor_or_dtor_function. */
3911 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3912 DEFAULT_INIT_PRIORITY, &locus);
3914 /* We're done with the splay-tree now. */
3915 if (priority_info_map)
3916 splay_tree_delete (priority_info_map);
3918 /* Generate any missing aliases. */
3919 maybe_apply_pending_pragma_weaks ();
3921 /* We're done with static constructors, so we can go back to "C++"
3922 linkage now. */
3923 pop_lang_context ();
3925 /* Collect candidates for Java hidden aliases. */
3926 candidates = collect_candidates_for_java_method_aliases ();
3928 cgraph_finalize_compilation_unit ();
3930 /* Now, issue warnings about static, but not defined, functions,
3931 etc., and emit debugging information. */
3932 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3933 if (VEC_length (tree, pending_statics) != 0)
3935 check_global_declarations (VEC_address (tree, pending_statics),
3936 VEC_length (tree, pending_statics));
3937 emit_debug_global_declarations (VEC_address (tree, pending_statics),
3938 VEC_length (tree, pending_statics));
3941 perform_deferred_noexcept_checks ();
3943 /* Generate hidden aliases for Java. */
3944 if (candidates)
3946 build_java_method_aliases (candidates);
3947 pointer_set_destroy (candidates);
3950 finish_repo ();
3952 /* The entire file is now complete. If requested, dump everything
3953 to a file. */
3955 int flags;
3956 FILE *stream = dump_begin (TDI_tu, &flags);
3958 if (stream)
3960 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3961 dump_end (TDI_tu, stream);
3965 timevar_pop (TV_VARCONST);
3967 if (flag_detailed_statistics)
3969 dump_tree_statistics ();
3970 dump_time_statistics ();
3972 input_location = locus;
3974 #ifdef ENABLE_CHECKING
3975 validate_conversion_obstack ();
3976 #endif /* ENABLE_CHECKING */
3979 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3980 function to call in parse-tree form; it has not yet been
3981 semantically analyzed. ARGS are the arguments to the function.
3982 They have already been semantically analyzed. This may change
3983 ARGS. */
3985 tree
3986 build_offset_ref_call_from_tree (tree fn, VEC(tree,gc) **args)
3988 tree orig_fn;
3989 VEC(tree,gc) *orig_args = NULL;
3990 tree expr;
3991 tree object;
3993 orig_fn = fn;
3994 object = TREE_OPERAND (fn, 0);
3996 if (processing_template_decl)
3998 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3999 || TREE_CODE (fn) == MEMBER_REF);
4000 if (type_dependent_expression_p (fn)
4001 || any_type_dependent_arguments_p (*args))
4002 return build_nt_call_vec (fn, *args);
4004 orig_args = make_tree_vector_copy (*args);
4006 /* Transform the arguments and add the implicit "this"
4007 parameter. That must be done before the FN is transformed
4008 because we depend on the form of FN. */
4009 make_args_non_dependent (*args);
4010 object = build_non_dependent_expr (object);
4011 if (TREE_CODE (fn) == DOTSTAR_EXPR)
4012 object = cp_build_unary_op (ADDR_EXPR, object, 0, tf_warning_or_error);
4013 VEC_safe_insert (tree, gc, *args, 0, object);
4014 /* Now that the arguments are done, transform FN. */
4015 fn = build_non_dependent_expr (fn);
4018 /* A qualified name corresponding to a bound pointer-to-member is
4019 represented as an OFFSET_REF:
4021 struct B { void g(); };
4022 void (B::*p)();
4023 void B::g() { (this->*p)(); } */
4024 if (TREE_CODE (fn) == OFFSET_REF)
4026 tree object_addr = cp_build_unary_op (ADDR_EXPR, object, 0,
4027 tf_warning_or_error);
4028 fn = TREE_OPERAND (fn, 1);
4029 fn = get_member_function_from_ptrfunc (&object_addr, fn);
4030 VEC_safe_insert (tree, gc, *args, 0, object_addr);
4033 expr = cp_build_function_call_vec (fn, args, tf_warning_or_error);
4034 if (processing_template_decl && expr != error_mark_node)
4035 expr = build_min_non_dep_call_vec (expr, orig_fn, orig_args);
4037 if (orig_args != NULL)
4038 release_tree_vector (orig_args);
4040 return expr;
4044 void
4045 check_default_args (tree x)
4047 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
4048 bool saw_def = false;
4049 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
4050 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
4052 if (TREE_PURPOSE (arg))
4053 saw_def = true;
4054 else if (saw_def)
4056 error ("default argument missing for parameter %P of %q+#D", i, x);
4057 TREE_PURPOSE (arg) = error_mark_node;
4062 /* Return true if function DECL can be inlined. This is used to force
4063 instantiation of methods that might be interesting for inlining. */
4064 bool
4065 possibly_inlined_p (tree decl)
4067 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
4068 if (DECL_UNINLINABLE (decl))
4069 return false;
4070 if (!optimize || pragma_java_exceptions)
4071 return DECL_DECLARED_INLINE_P (decl);
4072 /* When optimizing, we might inline everything when flatten
4073 attribute or heuristics inlining for size or autoinlining
4074 is used. */
4075 return true;
4078 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
4079 If DECL is a specialization or implicitly declared class member,
4080 generate the actual definition. */
4082 void
4083 mark_used (tree decl)
4085 HOST_WIDE_INT saved_processing_template_decl = 0;
4087 /* If DECL is a BASELINK for a single function, then treat it just
4088 like the DECL for the function. Otherwise, if the BASELINK is
4089 for an overloaded function, we don't know which function was
4090 actually used until after overload resolution. */
4091 if (TREE_CODE (decl) == BASELINK)
4093 decl = BASELINK_FUNCTIONS (decl);
4094 if (really_overloaded_fn (decl))
4095 return;
4096 decl = OVL_CURRENT (decl);
4099 /* Set TREE_USED for the benefit of -Wunused. */
4100 TREE_USED (decl) = 1;
4101 if (DECL_CLONED_FUNCTION_P (decl))
4102 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4104 if (TREE_CODE (decl) == FUNCTION_DECL
4105 && DECL_DELETED_FN (decl))
4107 if (DECL_ARTIFICIAL (decl))
4109 if (DECL_OVERLOADED_OPERATOR_P (decl) == TYPE_EXPR
4110 && LAMBDA_TYPE_P (DECL_CONTEXT (decl)))
4112 /* We mark a lambda conversion op as deleted if we can't
4113 generate it properly; see maybe_add_lambda_conv_op. */
4114 sorry ("converting lambda which uses %<...%> to "
4115 "function pointer");
4116 return;
4119 error ("use of deleted function %qD", decl);
4120 if (!maybe_explain_implicit_delete (decl))
4121 error_at (DECL_SOURCE_LOCATION (decl), "declared here");
4122 return;
4124 /* If we don't need a value, then we don't need to synthesize DECL. */
4125 if (cp_unevaluated_operand != 0)
4126 return;
4128 /* We can only check DECL_ODR_USED on variables or functions with
4129 DECL_LANG_SPECIFIC set, and these are also the only decls that we
4130 might need special handling for. */
4131 if ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4132 || DECL_LANG_SPECIFIC (decl) == NULL
4133 || DECL_THUNK_P (decl))
4134 return;
4136 /* We only want to do this processing once. We don't need to keep trying
4137 to instantiate inline templates, because unit-at-a-time will make sure
4138 we get them compiled before functions that want to inline them. */
4139 if (DECL_ODR_USED (decl))
4140 return;
4142 /* If within finish_function, defer the rest until that function
4143 finishes, otherwise it might recurse. */
4144 if (defer_mark_used_calls)
4146 VEC_safe_push (tree, gc, deferred_mark_used_calls, decl);
4147 return;
4150 /* Normally, we can wait until instantiation-time to synthesize
4151 DECL. However, if DECL is a static data member initialized with
4152 a constant, we need the value right now because a reference to
4153 such a data member is not value-dependent. */
4154 if (TREE_CODE (decl) == VAR_DECL
4155 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
4156 && DECL_CLASS_SCOPE_P (decl))
4158 /* Don't try to instantiate members of dependent types. We
4159 cannot just use dependent_type_p here because this function
4160 may be called from fold_non_dependent_expr, and then we may
4161 see dependent types, even though processing_template_decl
4162 will not be set. */
4163 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl)))
4164 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl))))
4165 return;
4166 /* Pretend that we are not in a template, even if we are, so
4167 that the static data member initializer will be processed. */
4168 saved_processing_template_decl = processing_template_decl;
4169 processing_template_decl = 0;
4172 if (processing_template_decl)
4173 return;
4175 DECL_ODR_USED (decl) = 1;
4176 if (DECL_CLONED_FUNCTION_P (decl))
4177 DECL_ODR_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4179 /* DR 757: A type without linkage shall not be used as the type of a
4180 variable or function with linkage, unless
4181 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
4182 o the variable or function is not used (3.2 [basic.def.odr]) or is
4183 defined in the same translation unit. */
4184 if (cxx_dialect > cxx98
4185 && decl_linkage (decl) != lk_none
4186 && !DECL_EXTERN_C_P (decl)
4187 && !DECL_ARTIFICIAL (decl)
4188 && !decl_defined_p (decl)
4189 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
4191 if (is_local_extern (decl))
4192 /* There's no way to define a local extern, and adding it to
4193 the vector interferes with GC, so give an error now. */
4194 no_linkage_error (decl);
4195 else
4196 VEC_safe_push (tree, gc, no_linkage_decls, decl);
4199 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
4200 && !DECL_INITIAL (decl) && !DECL_ARTIFICIAL (decl))
4201 /* Remember it, so we can check it was defined. */
4202 note_vague_linkage_fn (decl);
4204 /* Is it a synthesized method that needs to be synthesized? */
4205 if (TREE_CODE (decl) == FUNCTION_DECL
4206 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
4207 && DECL_DEFAULTED_FN (decl)
4208 && ! DECL_INITIAL (decl))
4210 /* Remember the current location for a function we will end up
4211 synthesizing. Then we can inform the user where it was
4212 required in the case of error. */
4213 DECL_SOURCE_LOCATION (decl) = input_location;
4215 /* Synthesizing an implicitly defined member function will result in
4216 garbage collection. We must treat this situation as if we were
4217 within the body of a function so as to avoid collecting live data
4218 on the stack (such as overload resolution candidates).
4220 We could just let cp_write_global_declarations handle synthesizing
4221 this function, since we just added it to deferred_fns, but doing
4222 it at the use site produces better error messages. */
4223 ++function_depth;
4224 synthesize_method (decl);
4225 --function_depth;
4226 /* If this is a synthesized method we don't need to
4227 do the instantiation test below. */
4229 else if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4230 && DECL_TEMPLATE_INFO (decl)
4231 && (!DECL_EXPLICIT_INSTANTIATION (decl)
4232 || always_instantiate_p (decl)))
4233 /* If this is a function or variable that is an instance of some
4234 template, we now know that we will need to actually do the
4235 instantiation. We check that DECL is not an explicit
4236 instantiation because that is not checked in instantiate_decl.
4238 We put off instantiating functions in order to improve compile
4239 times. Maintaining a stack of active functions is expensive,
4240 and the inliner knows to instantiate any functions it might
4241 need. Therefore, we always try to defer instantiation. */
4242 instantiate_decl (decl, /*defer_ok=*/true,
4243 /*expl_inst_class_mem_p=*/false);
4245 processing_template_decl = saved_processing_template_decl;
4248 #include "gt-cp-decl2.h"