* config/rs6000/aix61.h (PROCESSOR_DEFAULT): Change to
[official-gcc.git] / gcc / cp / decl2.c
bloba4b7dfa9bee4ddcdeaf2dace18c06c641f160077
1 /* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010,
4 2011 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 "c-family/c-objc.h"
46 #include "tree-mudflap.h"
47 #include "cgraph.h"
48 #include "tree-inline.h"
49 #include "c-family/c-pragma.h"
50 #include "tree-dump.h"
51 #include "intl.h"
52 #include "gimple.h"
53 #include "pointer-set.h"
54 #include "splay-tree.h"
55 #include "langhooks.h"
56 #include "c-family/c-ada-spec.h"
58 extern cpp_reader *parse_in;
60 /* This structure contains information about the initializations
61 and/or destructions required for a particular priority level. */
62 typedef struct priority_info_s {
63 /* Nonzero if there have been any initializations at this priority
64 throughout the translation unit. */
65 int initializations_p;
66 /* Nonzero if there have been any destructions at this priority
67 throughout the translation unit. */
68 int destructions_p;
69 } *priority_info;
71 static void mark_vtable_entries (tree);
72 static bool maybe_emit_vtables (tree);
73 static bool acceptable_java_type (tree);
74 static tree start_objects (int, int);
75 static void finish_objects (int, int, tree);
76 static tree start_static_storage_duration_function (unsigned);
77 static void finish_static_storage_duration_function (tree);
78 static priority_info get_priority_info (int);
79 static void do_static_initialization_or_destruction (tree, bool);
80 static void one_static_initialization_or_destruction (tree, tree, bool);
81 static void generate_ctor_or_dtor_function (bool, int, location_t *);
82 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node,
83 void *);
84 static tree prune_vars_needing_no_initialization (tree *);
85 static void write_out_vars (tree);
86 static void import_export_class (tree);
87 static tree get_guard_bits (tree);
88 static void determine_visibility_from_class (tree, tree);
89 static bool decl_defined_p (tree);
91 /* A list of static class variables. This is needed, because a
92 static class variable can be declared inside the class without
93 an initializer, and then initialized, statically, outside the class. */
94 static GTY(()) VEC(tree,gc) *pending_statics;
96 /* A list of functions which were declared inline, but which we
97 may need to emit outline anyway. */
98 static GTY(()) VEC(tree,gc) *deferred_fns;
100 /* A list of decls that use types with no linkage, which we need to make
101 sure are defined. */
102 static GTY(()) VEC(tree,gc) *no_linkage_decls;
104 /* Nonzero if we're done parsing and into end-of-file activities. */
106 int at_eof;
110 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
111 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
112 that apply to the function). */
114 tree
115 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
117 tree raises;
118 tree attrs;
119 int type_quals;
121 if (fntype == error_mark_node || ctype == error_mark_node)
122 return error_mark_node;
124 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
125 || TREE_CODE (fntype) == METHOD_TYPE);
127 type_quals = quals & ~TYPE_QUAL_RESTRICT;
128 ctype = cp_build_qualified_type (ctype, type_quals);
129 raises = TYPE_RAISES_EXCEPTIONS (fntype);
130 attrs = TYPE_ATTRIBUTES (fntype);
131 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
132 (TREE_CODE (fntype) == METHOD_TYPE
133 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
134 : TYPE_ARG_TYPES (fntype)));
135 if (raises)
136 fntype = build_exception_variant (fntype, raises);
137 if (attrs)
138 fntype = cp_build_type_attribute_variant (fntype, attrs);
140 return fntype;
143 /* Return a variant of FNTYPE, a FUNCTION_TYPE or METHOD_TYPE, with its
144 return type changed to NEW_RET. */
146 tree
147 change_return_type (tree new_ret, tree fntype)
149 tree newtype;
150 tree args = TYPE_ARG_TYPES (fntype);
151 tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
152 tree attrs = TYPE_ATTRIBUTES (fntype);
154 if (same_type_p (new_ret, TREE_TYPE (fntype)))
155 return fntype;
157 if (TREE_CODE (fntype) == FUNCTION_TYPE)
159 newtype = build_function_type (new_ret, args);
160 newtype = apply_memfn_quals (newtype, type_memfn_quals (fntype));
162 else
163 newtype = build_method_type_directly
164 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (fntype))),
165 new_ret, TREE_CHAIN (args));
166 if (raises)
167 newtype = build_exception_variant (newtype, raises);
168 if (attrs)
169 newtype = cp_build_type_attribute_variant (newtype, attrs);
171 return newtype;
174 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
175 appropriately. */
177 tree
178 cp_build_parm_decl (tree name, tree type)
180 tree parm = build_decl (input_location,
181 PARM_DECL, name, type);
182 /* DECL_ARG_TYPE is only used by the back end and the back end never
183 sees templates. */
184 if (!processing_template_decl)
185 DECL_ARG_TYPE (parm) = type_passed_as (type);
187 /* If the type is a pack expansion, then we have a function
188 parameter pack. */
189 if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
190 FUNCTION_PARAMETER_PACK_P (parm) = 1;
192 return parm;
195 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
196 indicated NAME. */
198 tree
199 build_artificial_parm (tree name, tree type)
201 tree parm = cp_build_parm_decl (name, type);
202 DECL_ARTIFICIAL (parm) = 1;
203 /* All our artificial parms are implicitly `const'; they cannot be
204 assigned to. */
205 TREE_READONLY (parm) = 1;
206 return parm;
209 /* Constructors for types with virtual baseclasses need an "in-charge" flag
210 saying whether this constructor is responsible for initialization of
211 virtual baseclasses or not. All destructors also need this "in-charge"
212 flag, which additionally determines whether or not the destructor should
213 free the memory for the object.
215 This function adds the "in-charge" flag to member function FN if
216 appropriate. It is called from grokclassfn and tsubst.
217 FN must be either a constructor or destructor.
219 The in-charge flag follows the 'this' parameter, and is followed by the
220 VTT parm (if any), then the user-written parms. */
222 void
223 maybe_retrofit_in_chrg (tree fn)
225 tree basetype, arg_types, parms, parm, fntype;
227 /* If we've already add the in-charge parameter don't do it again. */
228 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
229 return;
231 /* When processing templates we can't know, in general, whether or
232 not we're going to have virtual baseclasses. */
233 if (processing_template_decl)
234 return;
236 /* We don't need an in-charge parameter for constructors that don't
237 have virtual bases. */
238 if (DECL_CONSTRUCTOR_P (fn)
239 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
240 return;
242 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
243 basetype = TREE_TYPE (TREE_VALUE (arg_types));
244 arg_types = TREE_CHAIN (arg_types);
246 parms = DECL_CHAIN (DECL_ARGUMENTS (fn));
248 /* If this is a subobject constructor or destructor, our caller will
249 pass us a pointer to our VTT. */
250 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
252 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
254 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
255 DECL_CHAIN (parm) = parms;
256 parms = parm;
258 /* ...and then to TYPE_ARG_TYPES. */
259 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
261 DECL_HAS_VTT_PARM_P (fn) = 1;
264 /* Then add the in-charge parm (before the VTT parm). */
265 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
266 DECL_CHAIN (parm) = parms;
267 parms = parm;
268 arg_types = hash_tree_chain (integer_type_node, arg_types);
270 /* Insert our new parameter(s) into the list. */
271 DECL_CHAIN (DECL_ARGUMENTS (fn)) = parms;
273 /* And rebuild the function type. */
274 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
275 arg_types);
276 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
277 fntype = build_exception_variant (fntype,
278 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
279 if (TYPE_ATTRIBUTES (TREE_TYPE (fn)))
280 fntype = (cp_build_type_attribute_variant
281 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (fn))));
282 TREE_TYPE (fn) = fntype;
284 /* Now we've got the in-charge parameter. */
285 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
288 /* Classes overload their constituent function names automatically.
289 When a function name is declared in a record structure,
290 its name is changed to it overloaded name. Since names for
291 constructors and destructors can conflict, we place a leading
292 '$' for destructors.
294 CNAME is the name of the class we are grokking for.
296 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
298 FLAGS contains bits saying what's special about today's
299 arguments. DTOR_FLAG == DESTRUCTOR.
301 If FUNCTION is a destructor, then we must add the `auto-delete' field
302 as a second parameter. There is some hair associated with the fact
303 that we must "declare" this variable in the manner consistent with the
304 way the rest of the arguments were declared.
306 QUALS are the qualifiers for the this pointer. */
308 void
309 grokclassfn (tree ctype, tree function, enum overload_flags flags)
311 tree fn_name = DECL_NAME (function);
313 /* Even within an `extern "C"' block, members get C++ linkage. See
314 [dcl.link] for details. */
315 SET_DECL_LANGUAGE (function, lang_cplusplus);
317 if (fn_name == NULL_TREE)
319 error ("name missing for member function");
320 fn_name = get_identifier ("<anonymous>");
321 DECL_NAME (function) = fn_name;
324 DECL_CONTEXT (function) = ctype;
326 if (flags == DTOR_FLAG)
327 DECL_DESTRUCTOR_P (function) = 1;
329 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
330 maybe_retrofit_in_chrg (function);
333 /* Create an ARRAY_REF, checking for the user doing things backwards
334 along the way. */
336 tree
337 grok_array_decl (tree array_expr, tree index_exp)
339 tree type;
340 tree expr;
341 tree orig_array_expr = array_expr;
342 tree orig_index_exp = index_exp;
344 if (error_operand_p (array_expr) || error_operand_p (index_exp))
345 return error_mark_node;
347 if (processing_template_decl)
349 if (type_dependent_expression_p (array_expr)
350 || type_dependent_expression_p (index_exp))
351 return build_min_nt (ARRAY_REF, array_expr, index_exp,
352 NULL_TREE, NULL_TREE);
353 array_expr = build_non_dependent_expr (array_expr);
354 index_exp = build_non_dependent_expr (index_exp);
357 type = TREE_TYPE (array_expr);
358 gcc_assert (type);
359 type = non_reference (type);
361 /* If they have an `operator[]', use that. */
362 if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
363 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
364 array_expr, index_exp, NULL_TREE,
365 /*overloaded_p=*/NULL, tf_warning_or_error);
366 else
368 tree p1, p2, i1, i2;
370 /* Otherwise, create an ARRAY_REF for a pointer or array type.
371 It is a little-known fact that, if `a' is an array and `i' is
372 an int, you can write `i[a]', which means the same thing as
373 `a[i]'. */
374 if (TREE_CODE (type) == ARRAY_TYPE)
375 p1 = array_expr;
376 else
377 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
379 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
380 p2 = index_exp;
381 else
382 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
384 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
385 false);
386 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
387 false);
389 if ((p1 && i2) && (i1 && p2))
390 error ("ambiguous conversion for array subscript");
392 if (p1 && i2)
393 array_expr = p1, index_exp = i2;
394 else if (i1 && p2)
395 array_expr = p2, index_exp = i1;
396 else
398 error ("invalid types %<%T[%T]%> for array subscript",
399 type, TREE_TYPE (index_exp));
400 return error_mark_node;
403 if (array_expr == error_mark_node || index_exp == error_mark_node)
404 error ("ambiguous conversion for array subscript");
406 expr = build_array_ref (input_location, array_expr, index_exp);
408 if (processing_template_decl && expr != error_mark_node)
409 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
410 NULL_TREE, NULL_TREE);
411 return expr;
414 /* Given the cast expression EXP, checking out its validity. Either return
415 an error_mark_node if there was an unavoidable error, return a cast to
416 void for trying to delete a pointer w/ the value 0, or return the
417 call to delete. If DOING_VEC is true, we handle things differently
418 for doing an array delete.
419 Implements ARM $5.3.4. This is called from the parser. */
421 tree
422 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
424 tree t, type;
426 if (exp == error_mark_node)
427 return exp;
429 if (processing_template_decl)
431 t = build_min (DELETE_EXPR, void_type_node, exp, size);
432 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
433 DELETE_EXPR_USE_VEC (t) = doing_vec;
434 TREE_SIDE_EFFECTS (t) = 1;
435 return t;
438 /* An array can't have been allocated by new, so complain. */
439 if (TREE_CODE (exp) == VAR_DECL
440 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
441 warning (0, "deleting array %q#D", exp);
443 t = build_expr_type_conversion (WANT_POINTER, exp, true);
445 if (t == NULL_TREE || t == error_mark_node)
447 error ("type %q#T argument given to %<delete%>, expected pointer",
448 TREE_TYPE (exp));
449 return error_mark_node;
452 type = TREE_TYPE (t);
454 /* As of Valley Forge, you can delete a pointer to const. */
456 /* You can't delete functions. */
457 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
459 error ("cannot delete a function. Only pointer-to-objects are "
460 "valid arguments to %<delete%>");
461 return error_mark_node;
464 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
465 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
467 warning (0, "deleting %qT is undefined", type);
468 doing_vec = 0;
471 /* Deleting a pointer with the value zero is valid and has no effect. */
472 if (integer_zerop (t))
473 return build1 (NOP_EXPR, void_type_node, t);
475 if (doing_vec)
476 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
477 sfk_deleting_destructor,
478 use_global_delete);
479 else
480 return build_delete (type, t, sfk_deleting_destructor,
481 LOOKUP_NORMAL, use_global_delete);
484 /* Report an error if the indicated template declaration is not the
485 sort of thing that should be a member template. */
487 void
488 check_member_template (tree tmpl)
490 tree decl;
492 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
493 decl = DECL_TEMPLATE_RESULT (tmpl);
495 if (TREE_CODE (decl) == FUNCTION_DECL
496 || (TREE_CODE (decl) == TYPE_DECL
497 && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
499 /* The parser rejects template declarations in local classes. */
500 gcc_assert (!current_function_decl);
501 /* The parser rejects any use of virtual in a function template. */
502 gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
503 && DECL_VIRTUAL_P (decl)));
505 /* The debug-information generating code doesn't know what to do
506 with member templates. */
507 DECL_IGNORED_P (tmpl) = 1;
509 else
510 error ("template declaration of %q#D", decl);
513 /* Return true iff TYPE is a valid Java parameter or return type. */
515 static bool
516 acceptable_java_type (tree type)
518 if (type == error_mark_node)
519 return false;
521 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
522 return true;
523 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
525 type = TREE_TYPE (type);
526 if (TREE_CODE (type) == RECORD_TYPE)
528 tree args; int i;
529 if (! TYPE_FOR_JAVA (type))
530 return false;
531 if (! CLASSTYPE_TEMPLATE_INFO (type))
532 return true;
533 args = CLASSTYPE_TI_ARGS (type);
534 i = TREE_VEC_LENGTH (args);
535 while (--i >= 0)
537 type = TREE_VEC_ELT (args, i);
538 if (TREE_CODE (type) == POINTER_TYPE)
539 type = TREE_TYPE (type);
540 if (! TYPE_FOR_JAVA (type))
541 return false;
543 return true;
546 return false;
549 /* For a METHOD in a Java class CTYPE, return true if
550 the parameter and return types are valid Java types.
551 Otherwise, print appropriate error messages, and return false. */
553 bool
554 check_java_method (tree method)
556 bool jerr = false;
557 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
558 tree ret_type = TREE_TYPE (TREE_TYPE (method));
560 if (!acceptable_java_type (ret_type))
562 error ("Java method %qD has non-Java return type %qT",
563 method, ret_type);
564 jerr = true;
567 arg_types = TREE_CHAIN (arg_types);
568 if (DECL_HAS_IN_CHARGE_PARM_P (method))
569 arg_types = TREE_CHAIN (arg_types);
570 if (DECL_HAS_VTT_PARM_P (method))
571 arg_types = TREE_CHAIN (arg_types);
573 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
575 tree type = TREE_VALUE (arg_types);
576 if (!acceptable_java_type (type))
578 if (type != error_mark_node)
579 error ("Java method %qD has non-Java parameter type %qT",
580 method, type);
581 jerr = true;
584 return !jerr;
587 /* Sanity check: report error if this function FUNCTION is not
588 really a member of the class (CTYPE) it is supposed to belong to.
589 TEMPLATE_PARMS is used to specify the template parameters of a member
590 template passed as FUNCTION_DECL. If the member template is passed as a
591 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
592 from the declaration. If the function is not a function template, it
593 must be NULL.
594 It returns the original declaration for the function, NULL_TREE if
595 no declaration was found, error_mark_node if an error was emitted. */
597 tree
598 check_classfn (tree ctype, tree function, tree template_parms)
600 int ix;
601 bool is_template;
602 tree pushed_scope;
604 if (DECL_USE_TEMPLATE (function)
605 && !(TREE_CODE (function) == TEMPLATE_DECL
606 && DECL_TEMPLATE_SPECIALIZATION (function))
607 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
608 /* Since this is a specialization of a member template,
609 we're not going to find the declaration in the class.
610 For example, in:
612 struct S { template <typename T> void f(T); };
613 template <> void S::f(int);
615 we're not going to find `S::f(int)', but there's no
616 reason we should, either. We let our callers know we didn't
617 find the method, but we don't complain. */
618 return NULL_TREE;
620 /* Basic sanity check: for a template function, the template parameters
621 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
622 if (TREE_CODE (function) == TEMPLATE_DECL)
624 if (template_parms
625 && !comp_template_parms (template_parms,
626 DECL_TEMPLATE_PARMS (function)))
628 error ("template parameter lists provided don%'t match the "
629 "template parameters of %qD", function);
630 return error_mark_node;
632 template_parms = DECL_TEMPLATE_PARMS (function);
635 /* OK, is this a definition of a member template? */
636 is_template = (template_parms != NULL_TREE);
638 /* We must enter the scope here, because conversion operators are
639 named by target type, and type equivalence relies on typenames
640 resolving within the scope of CTYPE. */
641 pushed_scope = push_scope (ctype);
642 ix = class_method_index_for_fn (complete_type (ctype), function);
643 if (ix >= 0)
645 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
646 tree fndecls, fndecl = 0;
647 bool is_conv_op;
648 const char *format = NULL;
650 for (fndecls = VEC_index (tree, methods, ix);
651 fndecls; fndecls = OVL_NEXT (fndecls))
653 tree p1, p2;
655 fndecl = OVL_CURRENT (fndecls);
656 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
657 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
659 /* We cannot simply call decls_match because this doesn't
660 work for static member functions that are pretending to
661 be methods, and because the name may have been changed by
662 asm("new_name"). */
664 /* Get rid of the this parameter on functions that become
665 static. */
666 if (DECL_STATIC_FUNCTION_P (fndecl)
667 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
668 p1 = TREE_CHAIN (p1);
670 /* A member template definition only matches a member template
671 declaration. */
672 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
673 continue;
675 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
676 TREE_TYPE (TREE_TYPE (fndecl)))
677 && compparms (p1, p2)
678 && (!is_template
679 || comp_template_parms (template_parms,
680 DECL_TEMPLATE_PARMS (fndecl)))
681 && (DECL_TEMPLATE_SPECIALIZATION (function)
682 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
683 && (!DECL_TEMPLATE_SPECIALIZATION (function)
684 || (DECL_TI_TEMPLATE (function)
685 == DECL_TI_TEMPLATE (fndecl))))
686 break;
688 if (fndecls)
690 if (pushed_scope)
691 pop_scope (pushed_scope);
692 return OVL_CURRENT (fndecls);
695 error_at (DECL_SOURCE_LOCATION (function),
696 "prototype for %q#D does not match any in class %qT",
697 function, ctype);
698 is_conv_op = DECL_CONV_FN_P (fndecl);
700 if (is_conv_op)
701 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
702 fndecls = VEC_index (tree, methods, ix);
703 while (fndecls)
705 fndecl = OVL_CURRENT (fndecls);
706 fndecls = OVL_NEXT (fndecls);
708 if (!fndecls && is_conv_op)
710 if (VEC_length (tree, methods) > (size_t) ++ix)
712 fndecls = VEC_index (tree, methods, ix);
713 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
715 fndecls = NULL_TREE;
716 is_conv_op = false;
719 else
720 is_conv_op = false;
722 if (format)
723 format = " %+#D";
724 else if (fndecls)
725 format = N_("candidates are: %+#D");
726 else
727 format = N_("candidate is: %+#D");
728 error (format, fndecl);
731 else if (!COMPLETE_TYPE_P (ctype))
732 cxx_incomplete_type_error (function, ctype);
733 else
734 error ("no %q#D member function declared in class %qT",
735 function, ctype);
737 if (pushed_scope)
738 pop_scope (pushed_scope);
739 return error_mark_node;
742 /* DECL is a function with vague linkage. Remember it so that at the
743 end of the translation unit we can decide whether or not to emit
744 it. */
746 void
747 note_vague_linkage_fn (tree decl)
749 DECL_DEFER_OUTPUT (decl) = 1;
750 VEC_safe_push (tree, gc, deferred_fns, decl);
753 /* We have just processed the DECL, which is a static data member.
754 The other parameters are as for cp_finish_decl. */
756 void
757 finish_static_data_member_decl (tree decl,
758 tree init, bool init_const_expr_p,
759 tree asmspec_tree,
760 int flags)
762 DECL_CONTEXT (decl) = current_class_type;
764 /* We cannot call pushdecl here, because that would fill in the
765 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
766 the right thing, namely, to put this decl out straight away. */
768 if (! processing_template_decl)
769 VEC_safe_push (tree, gc, pending_statics, decl);
771 if (LOCAL_CLASS_P (current_class_type))
772 permerror (input_location, "local class %q#T shall not have static data member %q#D",
773 current_class_type, decl);
775 DECL_IN_AGGR_P (decl) = 1;
777 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
778 && TYPE_DOMAIN (TREE_TYPE (decl)) == NULL_TREE)
779 SET_VAR_HAD_UNKNOWN_BOUND (decl);
781 cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
784 /* DECLARATOR and DECLSPECS correspond to a class member. The other
785 parameters are as for cp_finish_decl. Return the DECL for the
786 class member declared. */
788 tree
789 grokfield (const cp_declarator *declarator,
790 cp_decl_specifier_seq *declspecs,
791 tree init, bool init_const_expr_p,
792 tree asmspec_tree,
793 tree attrlist)
795 tree value;
796 const char *asmspec = 0;
797 int flags = LOOKUP_ONLYCONVERTING;
798 tree name;
800 if (init
801 && TREE_CODE (init) == TREE_LIST
802 && TREE_VALUE (init) == error_mark_node
803 && TREE_CHAIN (init) == NULL_TREE)
804 init = NULL_TREE;
806 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
807 if (! value || error_operand_p (value))
808 /* friend or constructor went bad. */
809 return error_mark_node;
811 if (TREE_CODE (value) == TYPE_DECL && init)
813 error ("typedef %qD is initialized (use decltype instead)", value);
814 init = NULL_TREE;
817 /* Pass friendly classes back. */
818 if (value == void_type_node)
819 return value;
821 /* Pass friend decls back. */
822 if ((TREE_CODE (value) == FUNCTION_DECL
823 || TREE_CODE (value) == TEMPLATE_DECL)
824 && DECL_CONTEXT (value) != current_class_type)
825 return value;
827 name = DECL_NAME (value);
829 if (name != NULL_TREE)
831 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
833 error ("explicit template argument list not allowed");
834 return error_mark_node;
837 if (IDENTIFIER_POINTER (name)[0] == '_'
838 && ! strcmp (IDENTIFIER_POINTER (name), "_vptr"))
839 error ("member %qD conflicts with virtual function table field name",
840 value);
843 /* Stash away type declarations. */
844 if (TREE_CODE (value) == TYPE_DECL)
846 DECL_NONLOCAL (value) = 1;
847 DECL_CONTEXT (value) = current_class_type;
849 if (processing_template_decl)
850 value = push_template_decl (value);
852 if (attrlist)
854 int attrflags = 0;
856 /* If this is a typedef that names the class for linkage purposes
857 (7.1.3p8), apply any attributes directly to the type. */
858 if (TAGGED_TYPE_P (TREE_TYPE (value))
859 && value == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))))
860 attrflags = ATTR_FLAG_TYPE_IN_PLACE;
862 cplus_decl_attributes (&value, attrlist, attrflags);
865 if (declspecs->specs[(int)ds_typedef]
866 && TREE_TYPE (value) != error_mark_node
867 && TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))) != value)
868 set_underlying_type (value);
870 return value;
873 if (DECL_IN_AGGR_P (value))
875 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
876 return void_type_node;
879 if (asmspec_tree && asmspec_tree != error_mark_node)
880 asmspec = TREE_STRING_POINTER (asmspec_tree);
882 if (init)
884 if (TREE_CODE (value) == FUNCTION_DECL)
886 /* Initializers for functions are rejected early in the parser.
887 If we get here, it must be a pure specifier for a method. */
888 if (init == ridpointers[(int)RID_DELETE])
890 DECL_DELETED_FN (value) = 1;
891 DECL_DECLARED_INLINE_P (value) = 1;
892 DECL_INITIAL (value) = error_mark_node;
894 else if (init == ridpointers[(int)RID_DEFAULT])
896 if (defaultable_fn_check (value))
898 DECL_DEFAULTED_FN (value) = 1;
899 DECL_INITIALIZED_IN_CLASS_P (value) = 1;
900 DECL_DECLARED_INLINE_P (value) = 1;
903 else if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
905 if (integer_zerop (init))
906 DECL_PURE_VIRTUAL_P (value) = 1;
907 else if (error_operand_p (init))
908 ; /* An error has already been reported. */
909 else
910 error ("invalid initializer for member function %qD",
911 value);
913 else
915 gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
916 error ("initializer specified for static member function %qD",
917 value);
920 else if (pedantic && TREE_CODE (value) != VAR_DECL)
921 /* Already complained in grokdeclarator. */
922 init = NULL_TREE;
923 else if (!processing_template_decl)
925 if (TREE_CODE (init) == CONSTRUCTOR)
926 init = digest_init (TREE_TYPE (value), init);
927 init = maybe_constant_init (init);
929 if (init != error_mark_node && !TREE_CONSTANT (init))
931 /* We can allow references to things that are effectively
932 static, since references are initialized with the
933 address. */
934 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
935 || (TREE_STATIC (init) == 0
936 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
938 error ("field initializer is not constant");
939 init = error_mark_node;
945 if (processing_template_decl
946 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
948 value = push_template_decl (value);
949 if (error_operand_p (value))
950 return error_mark_node;
953 if (attrlist)
954 cplus_decl_attributes (&value, attrlist, 0);
956 switch (TREE_CODE (value))
958 case VAR_DECL:
959 finish_static_data_member_decl (value, init, init_const_expr_p,
960 asmspec_tree, flags);
961 return value;
963 case FIELD_DECL:
964 if (asmspec)
965 error ("%<asm%> specifiers are not permitted on non-static data members");
966 if (DECL_INITIAL (value) == error_mark_node)
967 init = error_mark_node;
968 cp_finish_decl (value, init, /*init_const_expr_p=*/false,
969 NULL_TREE, flags);
970 DECL_INITIAL (value) = init;
971 DECL_IN_AGGR_P (value) = 1;
972 return value;
974 case FUNCTION_DECL:
975 if (asmspec)
976 set_user_assembler_name (value, asmspec);
978 cp_finish_decl (value,
979 /*init=*/NULL_TREE,
980 /*init_const_expr_p=*/false,
981 asmspec_tree, flags);
983 /* Pass friends back this way. */
984 if (DECL_FRIEND_P (value))
985 return void_type_node;
987 DECL_IN_AGGR_P (value) = 1;
988 return value;
990 default:
991 gcc_unreachable ();
993 return NULL_TREE;
996 /* Like `grokfield', but for bitfields.
997 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
999 tree
1000 grokbitfield (const cp_declarator *declarator,
1001 cp_decl_specifier_seq *declspecs, tree width,
1002 tree attrlist)
1004 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, &attrlist);
1006 if (value == error_mark_node)
1007 return NULL_TREE; /* friends went bad. */
1009 /* Pass friendly classes back. */
1010 if (TREE_CODE (value) == VOID_TYPE)
1011 return void_type_node;
1013 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))
1014 && (POINTER_TYPE_P (value)
1015 || !dependent_type_p (TREE_TYPE (value))))
1017 error ("bit-field %qD with non-integral type", value);
1018 return error_mark_node;
1021 if (TREE_CODE (value) == TYPE_DECL)
1023 error ("cannot declare %qD to be a bit-field type", value);
1024 return NULL_TREE;
1027 /* Usually, finish_struct_1 catches bitfields with invalid types.
1028 But, in the case of bitfields with function type, we confuse
1029 ourselves into thinking they are member functions, so we must
1030 check here. */
1031 if (TREE_CODE (value) == FUNCTION_DECL)
1033 error ("cannot declare bit-field %qD with function type",
1034 DECL_NAME (value));
1035 return NULL_TREE;
1038 if (DECL_IN_AGGR_P (value))
1040 error ("%qD is already defined in the class %qT", value,
1041 DECL_CONTEXT (value));
1042 return void_type_node;
1045 if (TREE_STATIC (value))
1047 error ("static member %qD cannot be a bit-field", value);
1048 return NULL_TREE;
1050 cp_finish_decl (value, NULL_TREE, false, NULL_TREE, 0);
1052 if (width != error_mark_node)
1054 /* The width must be an integer type. */
1055 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (width)))
1056 error ("width of bit-field %qD has non-integral type %qT", value,
1057 TREE_TYPE (width));
1058 DECL_INITIAL (value) = width;
1059 SET_DECL_C_BIT_FIELD (value);
1062 DECL_IN_AGGR_P (value) = 1;
1064 if (attrlist)
1065 cplus_decl_attributes (&value, attrlist, /*flags=*/0);
1067 return value;
1071 /* Returns true iff ATTR is an attribute which needs to be applied at
1072 instantiation time rather than template definition time. */
1074 static bool
1075 is_late_template_attribute (tree attr, tree decl)
1077 tree name = TREE_PURPOSE (attr);
1078 tree args = TREE_VALUE (attr);
1079 const struct attribute_spec *spec = lookup_attribute_spec (name);
1080 tree arg;
1082 if (!spec)
1083 /* Unknown attribute. */
1084 return false;
1086 /* Attribute weak handling wants to write out assembly right away. */
1087 if (is_attribute_p ("weak", name))
1088 return true;
1090 /* If any of the arguments are dependent expressions, we can't evaluate
1091 the attribute until instantiation time. */
1092 for (arg = args; arg; arg = TREE_CHAIN (arg))
1094 tree t = TREE_VALUE (arg);
1096 /* If the first attribute argument is an identifier, only consider
1097 second and following arguments. Attributes like mode, format,
1098 cleanup and several target specific attributes aren't late
1099 just because they have an IDENTIFIER_NODE as first argument. */
1100 if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1101 continue;
1103 if (value_dependent_expression_p (t)
1104 || type_dependent_expression_p (t))
1105 return true;
1108 if (TREE_CODE (decl) == TYPE_DECL
1109 || TYPE_P (decl)
1110 || spec->type_required)
1112 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1114 /* We can't apply any attributes to a completely unknown type until
1115 instantiation time. */
1116 enum tree_code code = TREE_CODE (type);
1117 if (code == TEMPLATE_TYPE_PARM
1118 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1119 || code == TYPENAME_TYPE)
1120 return true;
1121 /* Also defer most attributes on dependent types. This is not
1122 necessary in all cases, but is the better default. */
1123 else if (dependent_type_p (type)
1124 /* But attribute visibility specifically works on
1125 templates. */
1126 && !is_attribute_p ("visibility", name))
1127 return true;
1128 else
1129 return false;
1131 else
1132 return false;
1135 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1136 applied at instantiation time and return them. If IS_DEPENDENT is true,
1137 the declaration itself is dependent, so all attributes should be applied
1138 at instantiation time. */
1140 static tree
1141 splice_template_attributes (tree *attr_p, tree decl)
1143 tree *p = attr_p;
1144 tree late_attrs = NULL_TREE;
1145 tree *q = &late_attrs;
1147 if (!p)
1148 return NULL_TREE;
1150 for (; *p; )
1152 if (is_late_template_attribute (*p, decl))
1154 ATTR_IS_DEPENDENT (*p) = 1;
1155 *q = *p;
1156 *p = TREE_CHAIN (*p);
1157 q = &TREE_CHAIN (*q);
1158 *q = NULL_TREE;
1160 else
1161 p = &TREE_CHAIN (*p);
1164 return late_attrs;
1167 /* Remove any late attributes from the list in ATTR_P and attach them to
1168 DECL_P. */
1170 static void
1171 save_template_attributes (tree *attr_p, tree *decl_p)
1173 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1174 tree *q;
1175 tree old_attrs = NULL_TREE;
1177 if (!late_attrs)
1178 return;
1180 if (DECL_P (*decl_p))
1181 q = &DECL_ATTRIBUTES (*decl_p);
1182 else
1183 q = &TYPE_ATTRIBUTES (*decl_p);
1185 old_attrs = *q;
1187 /* Place the late attributes at the beginning of the attribute
1188 list. */
1189 TREE_CHAIN (tree_last (late_attrs)) = *q;
1190 *q = late_attrs;
1192 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1194 /* We've added new attributes directly to the main variant, so
1195 now we need to update all of the other variants to include
1196 these new attributes. */
1197 tree variant;
1198 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1199 variant = TYPE_NEXT_VARIANT (variant))
1201 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1202 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1207 /* Like reconstruct_complex_type, but handle also template trees. */
1209 tree
1210 cp_reconstruct_complex_type (tree type, tree bottom)
1212 tree inner, outer;
1214 if (TREE_CODE (type) == POINTER_TYPE)
1216 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1217 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1218 TYPE_REF_CAN_ALIAS_ALL (type));
1220 else if (TREE_CODE (type) == REFERENCE_TYPE)
1222 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1223 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1224 TYPE_REF_CAN_ALIAS_ALL (type));
1226 else if (TREE_CODE (type) == ARRAY_TYPE)
1228 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1229 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1230 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1231 element type qualification will be handled by the recursive
1232 cp_reconstruct_complex_type call and cp_build_qualified_type
1233 for ARRAY_TYPEs changes the element type. */
1234 return outer;
1236 else if (TREE_CODE (type) == FUNCTION_TYPE)
1238 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1239 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1240 outer = apply_memfn_quals (outer, type_memfn_quals (type));
1242 else if (TREE_CODE (type) == METHOD_TYPE)
1244 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1245 /* The build_method_type_directly() routine prepends 'this' to argument list,
1246 so we must compensate by getting rid of it. */
1247 outer
1248 = build_method_type_directly
1249 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1250 inner,
1251 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1253 else if (TREE_CODE (type) == OFFSET_TYPE)
1255 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1256 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1258 else
1259 return bottom;
1261 if (TYPE_ATTRIBUTES (type))
1262 outer = cp_build_type_attribute_variant (outer, TYPE_ATTRIBUTES (type));
1263 return cp_build_qualified_type (outer, cp_type_quals (type));
1266 /* Like decl_attributes, but handle C++ complexity. */
1268 void
1269 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1271 if (*decl == NULL_TREE || *decl == void_type_node
1272 || *decl == error_mark_node
1273 || attributes == NULL_TREE)
1274 return;
1276 if (processing_template_decl)
1278 if (check_for_bare_parameter_packs (attributes))
1279 return;
1281 save_template_attributes (&attributes, decl);
1282 if (attributes == NULL_TREE)
1283 return;
1286 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1287 decl = &DECL_TEMPLATE_RESULT (*decl);
1289 decl_attributes (decl, attributes, flags);
1291 if (TREE_CODE (*decl) == TYPE_DECL)
1292 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1295 /* Walks through the namespace- or function-scope anonymous union
1296 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1297 Returns one of the fields for use in the mangled name. */
1299 static tree
1300 build_anon_union_vars (tree type, tree object)
1302 tree main_decl = NULL_TREE;
1303 tree field;
1305 /* Rather than write the code to handle the non-union case,
1306 just give an error. */
1307 if (TREE_CODE (type) != UNION_TYPE)
1308 error ("anonymous struct not inside named type");
1310 for (field = TYPE_FIELDS (type);
1311 field != NULL_TREE;
1312 field = DECL_CHAIN (field))
1314 tree decl;
1315 tree ref;
1317 if (DECL_ARTIFICIAL (field))
1318 continue;
1319 if (TREE_CODE (field) != FIELD_DECL)
1321 permerror (input_location, "%q+#D invalid; an anonymous union can only "
1322 "have non-static data members", field);
1323 continue;
1326 if (TREE_PRIVATE (field))
1327 permerror (input_location, "private member %q+#D in anonymous union", field);
1328 else if (TREE_PROTECTED (field))
1329 permerror (input_location, "protected member %q+#D in anonymous union", field);
1331 if (processing_template_decl)
1332 ref = build_min_nt (COMPONENT_REF, object,
1333 DECL_NAME (field), NULL_TREE);
1334 else
1335 ref = build_class_member_access_expr (object, field, NULL_TREE,
1336 false, tf_warning_or_error);
1338 if (DECL_NAME (field))
1340 tree base;
1342 decl = build_decl (input_location,
1343 VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1344 DECL_ANON_UNION_VAR_P (decl) = 1;
1345 DECL_ARTIFICIAL (decl) = 1;
1347 base = get_base_address (object);
1348 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1349 TREE_STATIC (decl) = TREE_STATIC (base);
1350 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1352 SET_DECL_VALUE_EXPR (decl, ref);
1353 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1355 decl = pushdecl (decl);
1357 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1358 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1359 else
1360 decl = 0;
1362 if (main_decl == NULL_TREE)
1363 main_decl = decl;
1366 return main_decl;
1369 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1370 anonymous union, then all members must be laid out together. PUBLIC_P
1371 is nonzero if this union is not declared static. */
1373 void
1374 finish_anon_union (tree anon_union_decl)
1376 tree type;
1377 tree main_decl;
1378 bool public_p;
1380 if (anon_union_decl == error_mark_node)
1381 return;
1383 type = TREE_TYPE (anon_union_decl);
1384 public_p = TREE_PUBLIC (anon_union_decl);
1386 /* The VAR_DECL's context is the same as the TYPE's context. */
1387 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1389 if (TYPE_FIELDS (type) == NULL_TREE)
1390 return;
1392 if (public_p)
1394 error ("namespace-scope anonymous aggregates must be static");
1395 return;
1398 main_decl = build_anon_union_vars (type, anon_union_decl);
1399 if (main_decl == error_mark_node)
1400 return;
1401 if (main_decl == NULL_TREE)
1403 warning (0, "anonymous union with no members");
1404 return;
1407 if (!processing_template_decl)
1409 /* Use main_decl to set the mangled name. */
1410 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1411 maybe_commonize_var (anon_union_decl);
1412 if (TREE_STATIC (anon_union_decl) || DECL_EXTERNAL (anon_union_decl))
1413 mangle_decl (anon_union_decl);
1414 DECL_NAME (anon_union_decl) = NULL_TREE;
1417 pushdecl (anon_union_decl);
1418 if (building_stmt_tree ()
1419 && at_function_scope_p ())
1420 add_decl_expr (anon_union_decl);
1421 else if (!processing_template_decl)
1422 rest_of_decl_compilation (anon_union_decl,
1423 toplevel_bindings_p (), at_eof);
1426 /* Auxiliary functions to make type signatures for
1427 `operator new' and `operator delete' correspond to
1428 what compiler will be expecting. */
1430 tree
1431 coerce_new_type (tree type)
1433 int e = 0;
1434 tree args = TYPE_ARG_TYPES (type);
1436 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1438 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1440 e = 1;
1441 error ("%<operator new%> must return type %qT", ptr_type_node);
1444 if (args && args != void_list_node)
1446 if (TREE_PURPOSE (args))
1448 /* [basic.stc.dynamic.allocation]
1450 The first parameter shall not have an associated default
1451 argument. */
1452 error ("the first parameter of %<operator new%> cannot "
1453 "have a default argument");
1454 /* Throw away the default argument. */
1455 TREE_PURPOSE (args) = NULL_TREE;
1458 if (!same_type_p (TREE_VALUE (args), size_type_node))
1460 e = 2;
1461 args = TREE_CHAIN (args);
1464 else
1465 e = 2;
1467 if (e == 2)
1468 permerror (input_location, "%<operator new%> takes type %<size_t%> (%qT) "
1469 "as first parameter", size_type_node);
1471 switch (e)
1473 case 2:
1474 args = tree_cons (NULL_TREE, size_type_node, args);
1475 /* Fall through. */
1476 case 1:
1477 type = build_exception_variant
1478 (build_function_type (ptr_type_node, args),
1479 TYPE_RAISES_EXCEPTIONS (type));
1480 /* Fall through. */
1481 default:;
1483 return type;
1486 tree
1487 coerce_delete_type (tree type)
1489 int e = 0;
1490 tree args = TYPE_ARG_TYPES (type);
1492 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1494 if (!same_type_p (TREE_TYPE (type), void_type_node))
1496 e = 1;
1497 error ("%<operator delete%> must return type %qT", void_type_node);
1500 if (!args || args == void_list_node
1501 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1503 e = 2;
1504 if (args && args != void_list_node)
1505 args = TREE_CHAIN (args);
1506 error ("%<operator delete%> takes type %qT as first parameter",
1507 ptr_type_node);
1509 switch (e)
1511 case 2:
1512 args = tree_cons (NULL_TREE, ptr_type_node, args);
1513 /* Fall through. */
1514 case 1:
1515 type = build_exception_variant
1516 (build_function_type (void_type_node, args),
1517 TYPE_RAISES_EXCEPTIONS (type));
1518 /* Fall through. */
1519 default:;
1522 return type;
1525 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1526 and mark them as needed. */
1528 static void
1529 mark_vtable_entries (tree decl)
1531 tree fnaddr;
1532 unsigned HOST_WIDE_INT idx;
1534 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1535 idx, fnaddr)
1537 tree fn;
1539 STRIP_NOPS (fnaddr);
1541 if (TREE_CODE (fnaddr) != ADDR_EXPR
1542 && TREE_CODE (fnaddr) != FDESC_EXPR)
1543 /* This entry is an offset: a virtual base class offset, a
1544 virtual call offset, an RTTI offset, etc. */
1545 continue;
1547 fn = TREE_OPERAND (fnaddr, 0);
1548 TREE_ADDRESSABLE (fn) = 1;
1549 /* When we don't have vcall offsets, we output thunks whenever
1550 we output the vtables that contain them. With vcall offsets,
1551 we know all the thunks we'll need when we emit a virtual
1552 function, so we emit the thunks there instead. */
1553 if (DECL_THUNK_P (fn))
1554 use_thunk (fn, /*emit_p=*/0);
1555 mark_used (fn);
1559 /* Set DECL up to have the closest approximation of "initialized common"
1560 linkage available. */
1562 void
1563 comdat_linkage (tree decl)
1565 if (flag_weak)
1566 make_decl_one_only (decl, cxx_comdat_group (decl));
1567 else if (TREE_CODE (decl) == FUNCTION_DECL
1568 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1569 /* We can just emit function and compiler-generated variables
1570 statically; having multiple copies is (for the most part) only
1571 a waste of space.
1573 There are two correctness issues, however: the address of a
1574 template instantiation with external linkage should be the
1575 same, independent of what translation unit asks for the
1576 address, and this will not hold when we emit multiple copies of
1577 the function. However, there's little else we can do.
1579 Also, by default, the typeinfo implementation assumes that
1580 there will be only one copy of the string used as the name for
1581 each type. Therefore, if weak symbols are unavailable, the
1582 run-time library should perform a more conservative check; it
1583 should perform a string comparison, rather than an address
1584 comparison. */
1585 TREE_PUBLIC (decl) = 0;
1586 else
1588 /* Static data member template instantiations, however, cannot
1589 have multiple copies. */
1590 if (DECL_INITIAL (decl) == 0
1591 || DECL_INITIAL (decl) == error_mark_node)
1592 DECL_COMMON (decl) = 1;
1593 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1595 DECL_COMMON (decl) = 1;
1596 DECL_INITIAL (decl) = error_mark_node;
1598 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1600 /* We can't do anything useful; leave vars for explicit
1601 instantiation. */
1602 DECL_EXTERNAL (decl) = 1;
1603 DECL_NOT_REALLY_EXTERN (decl) = 0;
1607 DECL_COMDAT (decl) = 1;
1610 /* For win32 we also want to put explicit instantiations in
1611 linkonce sections, so that they will be merged with implicit
1612 instantiations; otherwise we get duplicate symbol errors.
1613 For Darwin we do not want explicit instantiations to be
1614 linkonce. */
1616 void
1617 maybe_make_one_only (tree decl)
1619 /* We used to say that this was not necessary on targets that support weak
1620 symbols, because the implicit instantiations will defer to the explicit
1621 one. However, that's not actually the case in SVR4; a strong definition
1622 after a weak one is an error. Also, not making explicit
1623 instantiations one_only means that we can end up with two copies of
1624 some template instantiations. */
1625 if (! flag_weak)
1626 return;
1628 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1629 we can get away with not emitting them if they aren't used. We need
1630 to for variables so that cp_finish_decl will update their linkage,
1631 because their DECL_INITIAL may not have been set properly yet. */
1633 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1634 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1635 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1637 make_decl_one_only (decl, cxx_comdat_group (decl));
1639 if (TREE_CODE (decl) == VAR_DECL)
1641 DECL_COMDAT (decl) = 1;
1642 /* Mark it needed so we don't forget to emit it. */
1643 mark_decl_referenced (decl);
1648 /* Returns true iff DECL, a FUNCTION_DECL or VAR_DECL, has vague linkage.
1649 This predicate will give the right answer during parsing of the
1650 function, which other tests may not. */
1652 bool
1653 vague_linkage_p (tree decl)
1655 /* Unfortunately, import_export_decl has not always been called
1656 before the function is processed, so we cannot simply check
1657 DECL_COMDAT. */
1658 return (DECL_COMDAT (decl)
1659 || (((TREE_CODE (decl) == FUNCTION_DECL
1660 && DECL_DECLARED_INLINE_P (decl))
1661 || (DECL_LANG_SPECIFIC (decl)
1662 && DECL_TEMPLATE_INSTANTIATION (decl)))
1663 && TREE_PUBLIC (decl)));
1666 /* Determine whether or not we want to specifically import or export CTYPE,
1667 using various heuristics. */
1669 static void
1670 import_export_class (tree ctype)
1672 /* -1 for imported, 1 for exported. */
1673 int import_export = 0;
1675 /* It only makes sense to call this function at EOF. The reason is
1676 that this function looks at whether or not the first non-inline
1677 non-abstract virtual member function has been defined in this
1678 translation unit. But, we can't possibly know that until we've
1679 seen the entire translation unit. */
1680 gcc_assert (at_eof);
1682 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1683 return;
1685 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1686 we will have CLASSTYPE_INTERFACE_ONLY set but not
1687 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1688 heuristic because someone will supply a #pragma implementation
1689 elsewhere, and deducing it here would produce a conflict. */
1690 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1691 return;
1693 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1694 import_export = -1;
1695 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1696 import_export = 1;
1697 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1698 && !flag_implicit_templates)
1699 /* For a template class, without -fimplicit-templates, check the
1700 repository. If the virtual table is assigned to this
1701 translation unit, then export the class; otherwise, import
1702 it. */
1703 import_export = repo_export_class_p (ctype) ? 1 : -1;
1704 else if (TYPE_POLYMORPHIC_P (ctype))
1706 /* The ABI specifies that the virtual table and associated
1707 information are emitted with the key method, if any. */
1708 tree method = CLASSTYPE_KEY_METHOD (ctype);
1709 /* If weak symbol support is not available, then we must be
1710 careful not to emit the vtable when the key function is
1711 inline. An inline function can be defined in multiple
1712 translation units. If we were to emit the vtable in each
1713 translation unit containing a definition, we would get
1714 multiple definition errors at link-time. */
1715 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1716 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1719 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1720 a definition anywhere else. */
1721 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1722 import_export = 0;
1724 /* Allow back ends the chance to overrule the decision. */
1725 if (targetm.cxx.import_export_class)
1726 import_export = targetm.cxx.import_export_class (ctype, import_export);
1728 if (import_export)
1730 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1731 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1735 /* Return true if VAR has already been provided to the back end; in that
1736 case VAR should not be modified further by the front end. */
1737 static bool
1738 var_finalized_p (tree var)
1740 return varpool_node (var)->finalized;
1743 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1744 must be emitted in this translation unit. Mark it as such. */
1746 void
1747 mark_needed (tree decl)
1749 /* It's possible that we no longer need to set
1750 TREE_SYMBOL_REFERENCED here directly, but doing so is
1751 harmless. */
1752 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1753 mark_decl_referenced (decl);
1756 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1757 returns true if a definition of this entity should be provided in
1758 this object file. Callers use this function to determine whether
1759 or not to let the back end know that a definition of DECL is
1760 available in this translation unit. */
1762 bool
1763 decl_needed_p (tree decl)
1765 gcc_assert (TREE_CODE (decl) == VAR_DECL
1766 || TREE_CODE (decl) == FUNCTION_DECL);
1767 /* This function should only be called at the end of the translation
1768 unit. We cannot be sure of whether or not something will be
1769 COMDAT until that point. */
1770 gcc_assert (at_eof);
1772 /* All entities with external linkage that are not COMDAT should be
1773 emitted; they may be referred to from other object files. */
1774 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1775 return true;
1776 /* If this entity was used, let the back end see it; it will decide
1777 whether or not to emit it into the object file. */
1778 if (TREE_USED (decl)
1779 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1780 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1781 return true;
1782 /* Functions marked "dllexport" must be emitted so that they are
1783 visible to other DLLs. */
1784 if (flag_keep_inline_dllexport
1785 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))
1786 return true;
1787 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1788 reference to DECL might cause it to be emitted later. */
1789 return false;
1792 /* If necessary, write out the vtables for the dynamic class CTYPE.
1793 Returns true if any vtables were emitted. */
1795 static bool
1796 maybe_emit_vtables (tree ctype)
1798 tree vtbl;
1799 tree primary_vtbl;
1800 int needed = 0;
1801 struct varpool_node *current = NULL, *last = NULL, *first = NULL;
1803 /* If the vtables for this class have already been emitted there is
1804 nothing more to do. */
1805 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1806 if (var_finalized_p (primary_vtbl))
1807 return false;
1808 /* Ignore dummy vtables made by get_vtable_decl. */
1809 if (TREE_TYPE (primary_vtbl) == void_type_node)
1810 return false;
1812 /* On some targets, we cannot determine the key method until the end
1813 of the translation unit -- which is when this function is
1814 called. */
1815 if (!targetm.cxx.key_method_may_be_inline ())
1816 determine_key_method (ctype);
1818 /* See if any of the vtables are needed. */
1819 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = DECL_CHAIN (vtbl))
1821 import_export_decl (vtbl);
1822 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1823 needed = 1;
1825 if (!needed)
1827 /* If the references to this class' vtables are optimized away,
1828 still emit the appropriate debugging information. See
1829 dfs_debug_mark. */
1830 if (DECL_COMDAT (primary_vtbl)
1831 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1832 note_debug_info_needed (ctype);
1833 return false;
1836 /* The ABI requires that we emit all of the vtables if we emit any
1837 of them. */
1838 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = DECL_CHAIN (vtbl))
1840 /* Mark entities references from the virtual table as used. */
1841 mark_vtable_entries (vtbl);
1843 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1845 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl), LOOKUP_NORMAL);
1847 /* It had better be all done at compile-time. */
1848 gcc_assert (!expr);
1851 /* Write it out. */
1852 DECL_EXTERNAL (vtbl) = 0;
1853 rest_of_decl_compilation (vtbl, 1, 1);
1855 /* Because we're only doing syntax-checking, we'll never end up
1856 actually marking the variable as written. */
1857 if (flag_syntax_only)
1858 TREE_ASM_WRITTEN (vtbl) = 1;
1859 else if (DECL_COMDAT (vtbl))
1861 current = varpool_node (vtbl);
1862 if (last)
1863 last->same_comdat_group = current;
1864 last = current;
1865 if (!first)
1866 first = current;
1870 if (first != last)
1871 last->same_comdat_group = first;
1873 /* Since we're writing out the vtable here, also write the debug
1874 info. */
1875 note_debug_info_needed (ctype);
1877 return true;
1880 /* A special return value from type_visibility meaning internal
1881 linkage. */
1883 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1885 /* walk_tree helper function for type_visibility. */
1887 static tree
1888 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1890 int *vis_p = (int *)data;
1891 if (! TYPE_P (*tp))
1893 *walk_subtrees = 0;
1895 else if (CLASS_TYPE_P (*tp))
1897 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1899 *vis_p = VISIBILITY_ANON;
1900 return *tp;
1902 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1903 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1905 return NULL;
1908 /* Returns the visibility of TYPE, which is the minimum visibility of its
1909 component types. */
1911 static int
1912 type_visibility (tree type)
1914 int vis = VISIBILITY_DEFAULT;
1915 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1916 return vis;
1919 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1920 specified (or if VISIBILITY is static). */
1922 static bool
1923 constrain_visibility (tree decl, int visibility)
1925 if (visibility == VISIBILITY_ANON)
1927 /* extern "C" declarations aren't affected by the anonymous
1928 namespace. */
1929 if (!DECL_EXTERN_C_P (decl))
1931 TREE_PUBLIC (decl) = 0;
1932 DECL_WEAK (decl) = 0;
1933 DECL_COMMON (decl) = 0;
1934 DECL_COMDAT_GROUP (decl) = NULL_TREE;
1935 DECL_INTERFACE_KNOWN (decl) = 1;
1936 if (DECL_LANG_SPECIFIC (decl))
1937 DECL_NOT_REALLY_EXTERN (decl) = 1;
1940 else if (visibility > DECL_VISIBILITY (decl)
1941 && !DECL_VISIBILITY_SPECIFIED (decl))
1943 DECL_VISIBILITY (decl) = (enum symbol_visibility) visibility;
1944 return true;
1946 return false;
1949 /* Constrain the visibility of DECL based on the visibility of its template
1950 arguments. */
1952 static void
1953 constrain_visibility_for_template (tree decl, tree targs)
1955 /* If this is a template instantiation, check the innermost
1956 template args for visibility constraints. The outer template
1957 args are covered by the class check. */
1958 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1959 int i;
1960 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1962 int vis = 0;
1964 tree arg = TREE_VEC_ELT (args, i-1);
1965 if (TYPE_P (arg))
1966 vis = type_visibility (arg);
1967 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1969 STRIP_NOPS (arg);
1970 if (TREE_CODE (arg) == ADDR_EXPR)
1971 arg = TREE_OPERAND (arg, 0);
1972 if (TREE_CODE (arg) == VAR_DECL
1973 || TREE_CODE (arg) == FUNCTION_DECL)
1975 if (! TREE_PUBLIC (arg))
1976 vis = VISIBILITY_ANON;
1977 else
1978 vis = DECL_VISIBILITY (arg);
1981 if (vis)
1982 constrain_visibility (decl, vis);
1986 /* Like c_determine_visibility, but with additional C++-specific
1987 behavior.
1989 Function-scope entities can rely on the function's visibility because
1990 it is set in start_preparsed_function.
1992 Class-scope entities cannot rely on the class's visibility until the end
1993 of the enclosing class definition.
1995 Note that because namespaces have multiple independent definitions,
1996 namespace visibility is handled elsewhere using the #pragma visibility
1997 machinery rather than by decorating the namespace declaration.
1999 The goal is for constraints from the type to give a diagnostic, and
2000 other constraints to be applied silently. */
2002 void
2003 determine_visibility (tree decl)
2005 tree class_type = NULL_TREE;
2006 bool use_template;
2007 bool orig_visibility_specified;
2008 enum symbol_visibility orig_visibility;
2010 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
2012 /* Only relevant for names with external linkage. */
2013 if (!TREE_PUBLIC (decl))
2014 return;
2016 /* Cloned constructors and destructors get the same visibility as
2017 the underlying function. That should be set up in
2018 maybe_clone_body. */
2019 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
2021 orig_visibility_specified = DECL_VISIBILITY_SPECIFIED (decl);
2022 orig_visibility = DECL_VISIBILITY (decl);
2024 if (TREE_CODE (decl) == TYPE_DECL)
2026 if (CLASS_TYPE_P (TREE_TYPE (decl)))
2027 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
2028 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
2029 use_template = 1;
2030 else
2031 use_template = 0;
2033 else if (DECL_LANG_SPECIFIC (decl))
2034 use_template = DECL_USE_TEMPLATE (decl);
2035 else
2036 use_template = 0;
2038 /* If DECL is a member of a class, visibility specifiers on the
2039 class can influence the visibility of the DECL. */
2040 if (DECL_CLASS_SCOPE_P (decl))
2041 class_type = DECL_CONTEXT (decl);
2042 else
2044 /* Not a class member. */
2046 /* Virtual tables have DECL_CONTEXT set to their associated class,
2047 so they are automatically handled above. */
2048 gcc_assert (TREE_CODE (decl) != VAR_DECL
2049 || !DECL_VTABLE_OR_VTT_P (decl));
2051 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
2053 /* Local statics and classes get the visibility of their
2054 containing function by default, except that
2055 -fvisibility-inlines-hidden doesn't affect them. */
2056 tree fn = DECL_CONTEXT (decl);
2057 if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
2059 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
2060 DECL_VISIBILITY_SPECIFIED (decl) =
2061 DECL_VISIBILITY_SPECIFIED (fn);
2063 else
2064 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
2066 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
2067 but have no TEMPLATE_INFO, so don't try to check it. */
2068 use_template = 0;
2070 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
2071 && flag_visibility_ms_compat)
2073 /* Under -fvisibility-ms-compat, types are visible by default,
2074 even though their contents aren't. */
2075 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
2076 int underlying_vis = type_visibility (underlying_type);
2077 if (underlying_vis == VISIBILITY_ANON
2078 || (CLASS_TYPE_P (underlying_type)
2079 && CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type)))
2080 constrain_visibility (decl, underlying_vis);
2081 else
2082 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
2084 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2086 /* tinfo visibility is based on the type it's for. */
2087 constrain_visibility
2088 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
2090 /* Give the target a chance to override the visibility associated
2091 with DECL. */
2092 if (TREE_PUBLIC (decl)
2093 && !DECL_REALLY_EXTERN (decl)
2094 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
2095 && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
2096 targetm.cxx.determine_class_data_visibility (decl);
2098 else if (use_template)
2099 /* Template instantiations and specializations get visibility based
2100 on their template unless they override it with an attribute. */;
2101 else if (! DECL_VISIBILITY_SPECIFIED (decl))
2103 /* Set default visibility to whatever the user supplied with
2104 #pragma GCC visibility or a namespace visibility attribute. */
2105 DECL_VISIBILITY (decl) = default_visibility;
2106 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2110 if (use_template)
2112 /* If the specialization doesn't specify visibility, use the
2113 visibility from the template. */
2114 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2115 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2116 : DECL_TEMPLATE_INFO (decl));
2117 tree args = TI_ARGS (tinfo);
2119 if (args != error_mark_node)
2121 int depth = TMPL_ARGS_DEPTH (args);
2122 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2124 if (!DECL_VISIBILITY_SPECIFIED (decl))
2126 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2127 DECL_VISIBILITY_SPECIFIED (decl)
2128 = DECL_VISIBILITY_SPECIFIED (pattern);
2131 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
2132 if (args && depth > template_class_depth (class_type))
2133 /* Limit visibility based on its template arguments. */
2134 constrain_visibility_for_template (decl, args);
2138 if (class_type)
2139 determine_visibility_from_class (decl, class_type);
2141 if (decl_anon_ns_mem_p (decl))
2142 /* Names in an anonymous namespace get internal linkage.
2143 This might change once we implement export. */
2144 constrain_visibility (decl, VISIBILITY_ANON);
2145 else if (TREE_CODE (decl) != TYPE_DECL)
2147 /* Propagate anonymity from type to decl. */
2148 int tvis = type_visibility (TREE_TYPE (decl));
2149 if (tvis == VISIBILITY_ANON
2150 || ! DECL_VISIBILITY_SPECIFIED (decl))
2151 constrain_visibility (decl, tvis);
2153 else if (no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/true))
2154 /* DR 757: A type without linkage shall not be used as the type of a
2155 variable or function with linkage, unless
2156 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
2157 o the variable or function is not used (3.2 [basic.def.odr]) or is
2158 defined in the same translation unit.
2160 Since non-extern "C" decls need to be defined in the same
2161 translation unit, we can make the type internal. */
2162 constrain_visibility (decl, VISIBILITY_ANON);
2164 /* If visibility changed and DECL already has DECL_RTL, ensure
2165 symbol flags are updated. */
2166 if ((DECL_VISIBILITY (decl) != orig_visibility
2167 || DECL_VISIBILITY_SPECIFIED (decl) != orig_visibility_specified)
2168 && ((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
2169 || TREE_CODE (decl) == FUNCTION_DECL)
2170 && DECL_RTL_SET_P (decl))
2171 make_decl_rtl (decl);
2174 /* By default, static data members and function members receive
2175 the visibility of their containing class. */
2177 static void
2178 determine_visibility_from_class (tree decl, tree class_type)
2180 if (DECL_VISIBILITY_SPECIFIED (decl))
2181 return;
2183 if (visibility_options.inlines_hidden
2184 /* Don't do this for inline templates; specializations might not be
2185 inline, and we don't want them to inherit the hidden
2186 visibility. We'll set it here for all inline instantiations. */
2187 && !processing_template_decl
2188 && TREE_CODE (decl) == FUNCTION_DECL
2189 && DECL_DECLARED_INLINE_P (decl)
2190 && (! DECL_LANG_SPECIFIC (decl)
2191 || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2192 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2193 else
2195 /* Default to the class visibility. */
2196 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2197 DECL_VISIBILITY_SPECIFIED (decl)
2198 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2201 /* Give the target a chance to override the visibility associated
2202 with DECL. */
2203 if (TREE_CODE (decl) == VAR_DECL
2204 && (DECL_TINFO_P (decl)
2205 || (DECL_VTABLE_OR_VTT_P (decl)
2206 /* Construction virtual tables are not exported because
2207 they cannot be referred to from other object files;
2208 their name is not standardized by the ABI. */
2209 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2210 && TREE_PUBLIC (decl)
2211 && !DECL_REALLY_EXTERN (decl)
2212 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2213 targetm.cxx.determine_class_data_visibility (decl);
2216 /* Constrain the visibility of a class TYPE based on the visibility of its
2217 field types. Warn if any fields require lesser visibility. */
2219 void
2220 constrain_class_visibility (tree type)
2222 tree binfo;
2223 tree t;
2224 int i;
2226 int vis = type_visibility (type);
2228 if (vis == VISIBILITY_ANON
2229 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2230 return;
2232 /* Don't warn about visibility if the class has explicit visibility. */
2233 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2234 vis = VISIBILITY_INTERNAL;
2236 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
2237 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2239 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2240 int subvis = type_visibility (ftype);
2242 if (subvis == VISIBILITY_ANON)
2244 if (!in_main_input_context ())
2245 warning (0, "\
2246 %qT has a field %qD whose type uses the anonymous namespace",
2247 type, t);
2249 else if (MAYBE_CLASS_TYPE_P (ftype)
2250 && vis < VISIBILITY_HIDDEN
2251 && subvis >= VISIBILITY_HIDDEN)
2252 warning (OPT_Wattributes, "\
2253 %qT declared with greater visibility than the type of its field %qD",
2254 type, t);
2257 binfo = TYPE_BINFO (type);
2258 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2260 int subvis = type_visibility (TREE_TYPE (t));
2262 if (subvis == VISIBILITY_ANON)
2264 if (!in_main_input_context())
2265 warning (0, "\
2266 %qT has a base %qT whose type uses the anonymous namespace",
2267 type, TREE_TYPE (t));
2269 else if (vis < VISIBILITY_HIDDEN
2270 && subvis >= VISIBILITY_HIDDEN)
2271 warning (OPT_Wattributes, "\
2272 %qT declared with greater visibility than its base %qT",
2273 type, TREE_TYPE (t));
2277 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2278 for DECL has not already been determined, do so now by setting
2279 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2280 function is called entities with vague linkage whose definitions
2281 are available must have TREE_PUBLIC set.
2283 If this function decides to place DECL in COMDAT, it will set
2284 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2285 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2286 callers defer that decision until it is clear that DECL is actually
2287 required. */
2289 void
2290 import_export_decl (tree decl)
2292 int emit_p;
2293 bool comdat_p;
2294 bool import_p;
2295 tree class_type = NULL_TREE;
2297 if (DECL_INTERFACE_KNOWN (decl))
2298 return;
2300 /* We cannot determine what linkage to give to an entity with vague
2301 linkage until the end of the file. For example, a virtual table
2302 for a class will be defined if and only if the key method is
2303 defined in this translation unit. As a further example, consider
2304 that when compiling a translation unit that uses PCH file with
2305 "-frepo" it would be incorrect to make decisions about what
2306 entities to emit when building the PCH; those decisions must be
2307 delayed until the repository information has been processed. */
2308 gcc_assert (at_eof);
2309 /* Object file linkage for explicit instantiations is handled in
2310 mark_decl_instantiated. For static variables in functions with
2311 vague linkage, maybe_commonize_var is used.
2313 Therefore, the only declarations that should be provided to this
2314 function are those with external linkage that are:
2316 * implicit instantiations of function templates
2318 * inline function
2320 * implicit instantiations of static data members of class
2321 templates
2323 * virtual tables
2325 * typeinfo objects
2327 Furthermore, all entities that reach this point must have a
2328 definition available in this translation unit.
2330 The following assertions check these conditions. */
2331 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2332 || TREE_CODE (decl) == VAR_DECL);
2333 /* Any code that creates entities with TREE_PUBLIC cleared should
2334 also set DECL_INTERFACE_KNOWN. */
2335 gcc_assert (TREE_PUBLIC (decl));
2336 if (TREE_CODE (decl) == FUNCTION_DECL)
2337 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2338 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2339 || DECL_DECLARED_INLINE_P (decl));
2340 else
2341 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2342 || DECL_VTABLE_OR_VTT_P (decl)
2343 || DECL_TINFO_P (decl));
2344 /* Check that a definition of DECL is available in this translation
2345 unit. */
2346 gcc_assert (!DECL_REALLY_EXTERN (decl));
2348 /* Assume that DECL will not have COMDAT linkage. */
2349 comdat_p = false;
2350 /* Assume that DECL will not be imported into this translation
2351 unit. */
2352 import_p = false;
2354 /* See if the repository tells us whether or not to emit DECL in
2355 this translation unit. */
2356 emit_p = repo_emit_p (decl);
2357 if (emit_p == 0)
2358 import_p = true;
2359 else if (emit_p == 1)
2361 /* The repository indicates that this entity should be defined
2362 here. Make sure the back end honors that request. */
2363 if (TREE_CODE (decl) == VAR_DECL)
2364 mark_needed (decl);
2365 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2366 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2368 tree clone;
2369 FOR_EACH_CLONE (clone, decl)
2370 mark_needed (clone);
2372 else
2373 mark_needed (decl);
2374 /* Output the definition as an ordinary strong definition. */
2375 DECL_EXTERNAL (decl) = 0;
2376 DECL_INTERFACE_KNOWN (decl) = 1;
2377 return;
2380 if (import_p)
2381 /* We have already decided what to do with this DECL; there is no
2382 need to check anything further. */
2384 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2386 class_type = DECL_CONTEXT (decl);
2387 import_export_class (class_type);
2388 if (TYPE_FOR_JAVA (class_type))
2389 import_p = true;
2390 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2391 && CLASSTYPE_INTERFACE_ONLY (class_type))
2392 import_p = true;
2393 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2394 && !CLASSTYPE_USE_TEMPLATE (class_type)
2395 && CLASSTYPE_KEY_METHOD (class_type)
2396 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2397 /* The ABI requires that all virtual tables be emitted with
2398 COMDAT linkage. However, on systems where COMDAT symbols
2399 don't show up in the table of contents for a static
2400 archive, or on systems without weak symbols (where we
2401 approximate COMDAT linkage by using internal linkage), the
2402 linker will report errors about undefined symbols because
2403 it will not see the virtual table definition. Therefore,
2404 in the case that we know that the virtual table will be
2405 emitted in only one translation unit, we make the virtual
2406 table an ordinary definition with external linkage. */
2407 DECL_EXTERNAL (decl) = 0;
2408 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2410 /* CLASS_TYPE is being exported from this translation unit,
2411 so DECL should be defined here. */
2412 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2413 /* If a class is declared in a header with the "extern
2414 template" extension, then it will not be instantiated,
2415 even in translation units that would normally require
2416 it. Often such classes are explicitly instantiated in
2417 one translation unit. Therefore, the explicit
2418 instantiation must be made visible to other translation
2419 units. */
2420 DECL_EXTERNAL (decl) = 0;
2421 else
2423 /* The generic C++ ABI says that class data is always
2424 COMDAT, even if there is a key function. Some
2425 variants (e.g., the ARM EABI) says that class data
2426 only has COMDAT linkage if the class data might be
2427 emitted in more than one translation unit. When the
2428 key method can be inline and is inline, we still have
2429 to arrange for comdat even though
2430 class_data_always_comdat is false. */
2431 if (!CLASSTYPE_KEY_METHOD (class_type)
2432 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2433 || targetm.cxx.class_data_always_comdat ())
2435 /* The ABI requires COMDAT linkage. Normally, we
2436 only emit COMDAT things when they are needed;
2437 make sure that we realize that this entity is
2438 indeed needed. */
2439 comdat_p = true;
2440 mark_needed (decl);
2444 else if (!flag_implicit_templates
2445 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2446 import_p = true;
2447 else
2448 comdat_p = true;
2450 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2452 tree type = TREE_TYPE (DECL_NAME (decl));
2453 if (CLASS_TYPE_P (type))
2455 class_type = type;
2456 import_export_class (type);
2457 if (CLASSTYPE_INTERFACE_KNOWN (type)
2458 && TYPE_POLYMORPHIC_P (type)
2459 && CLASSTYPE_INTERFACE_ONLY (type)
2460 /* If -fno-rtti was specified, then we cannot be sure
2461 that RTTI information will be emitted with the
2462 virtual table of the class, so we must emit it
2463 wherever it is used. */
2464 && flag_rtti)
2465 import_p = true;
2466 else
2468 if (CLASSTYPE_INTERFACE_KNOWN (type)
2469 && !CLASSTYPE_INTERFACE_ONLY (type))
2471 comdat_p = (targetm.cxx.class_data_always_comdat ()
2472 || (CLASSTYPE_KEY_METHOD (type)
2473 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2474 mark_needed (decl);
2475 if (!flag_weak)
2477 comdat_p = false;
2478 DECL_EXTERNAL (decl) = 0;
2481 else
2482 comdat_p = true;
2485 else
2486 comdat_p = true;
2488 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2489 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2491 /* DECL is an implicit instantiation of a function or static
2492 data member. */
2493 if ((flag_implicit_templates
2494 && !flag_use_repository)
2495 || (flag_implicit_inline_templates
2496 && TREE_CODE (decl) == FUNCTION_DECL
2497 && DECL_DECLARED_INLINE_P (decl)))
2498 comdat_p = true;
2499 else
2500 /* If we are not implicitly generating templates, then mark
2501 this entity as undefined in this translation unit. */
2502 import_p = true;
2504 else if (DECL_FUNCTION_MEMBER_P (decl))
2506 if (!DECL_DECLARED_INLINE_P (decl))
2508 tree ctype = DECL_CONTEXT (decl);
2509 import_export_class (ctype);
2510 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2512 DECL_NOT_REALLY_EXTERN (decl)
2513 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2514 || (DECL_DECLARED_INLINE_P (decl)
2515 && ! flag_implement_inlines
2516 && !DECL_VINDEX (decl)));
2518 if (!DECL_NOT_REALLY_EXTERN (decl))
2519 DECL_EXTERNAL (decl) = 1;
2521 /* Always make artificials weak. */
2522 if (DECL_ARTIFICIAL (decl) && flag_weak)
2523 comdat_p = true;
2524 else
2525 maybe_make_one_only (decl);
2528 else
2529 comdat_p = true;
2531 else
2532 comdat_p = true;
2534 if (import_p)
2536 /* If we are importing DECL into this translation unit, mark is
2537 an undefined here. */
2538 DECL_EXTERNAL (decl) = 1;
2539 DECL_NOT_REALLY_EXTERN (decl) = 0;
2541 else if (comdat_p)
2543 /* If we decided to put DECL in COMDAT, mark it accordingly at
2544 this point. */
2545 comdat_linkage (decl);
2548 DECL_INTERFACE_KNOWN (decl) = 1;
2551 /* Return an expression that performs the destruction of DECL, which
2552 must be a VAR_DECL whose type has a non-trivial destructor, or is
2553 an array whose (innermost) elements have a non-trivial destructor. */
2555 tree
2556 build_cleanup (tree decl)
2558 tree temp;
2559 tree type = TREE_TYPE (decl);
2561 /* This function should only be called for declarations that really
2562 require cleanups. */
2563 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2565 /* Treat all objects with destructors as used; the destructor may do
2566 something substantive. */
2567 mark_used (decl);
2569 if (TREE_CODE (type) == ARRAY_TYPE)
2570 temp = decl;
2571 else
2572 temp = build_address (decl);
2573 temp = build_delete (TREE_TYPE (temp), temp,
2574 sfk_complete_destructor,
2575 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2576 return temp;
2579 /* Returns the initialization guard variable for the variable DECL,
2580 which has static storage duration. */
2582 tree
2583 get_guard (tree decl)
2585 tree sname;
2586 tree guard;
2588 sname = mangle_guard_variable (decl);
2589 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2590 if (! guard)
2592 tree guard_type;
2594 /* We use a type that is big enough to contain a mutex as well
2595 as an integer counter. */
2596 guard_type = targetm.cxx.guard_type ();
2597 guard = build_decl (DECL_SOURCE_LOCATION (decl),
2598 VAR_DECL, sname, guard_type);
2600 /* The guard should have the same linkage as what it guards. */
2601 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2602 TREE_STATIC (guard) = TREE_STATIC (decl);
2603 DECL_COMMON (guard) = DECL_COMMON (decl);
2604 DECL_COMDAT (guard) = DECL_COMDAT (decl);
2605 if (DECL_ONE_ONLY (decl))
2606 make_decl_one_only (guard, cxx_comdat_group (guard));
2607 if (TREE_PUBLIC (decl))
2608 DECL_WEAK (guard) = DECL_WEAK (decl);
2609 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2610 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2612 DECL_ARTIFICIAL (guard) = 1;
2613 DECL_IGNORED_P (guard) = 1;
2614 TREE_USED (guard) = 1;
2615 pushdecl_top_level_and_finish (guard, NULL_TREE);
2617 return guard;
2620 /* Return those bits of the GUARD variable that should be set when the
2621 guarded entity is actually initialized. */
2623 static tree
2624 get_guard_bits (tree guard)
2626 if (!targetm.cxx.guard_mask_bit ())
2628 /* We only set the first byte of the guard, in order to leave room
2629 for a mutex in the high-order bits. */
2630 guard = build1 (ADDR_EXPR,
2631 build_pointer_type (TREE_TYPE (guard)),
2632 guard);
2633 guard = build1 (NOP_EXPR,
2634 build_pointer_type (char_type_node),
2635 guard);
2636 guard = build1 (INDIRECT_REF, char_type_node, guard);
2639 return guard;
2642 /* Return an expression which determines whether or not the GUARD
2643 variable has already been initialized. */
2645 tree
2646 get_guard_cond (tree guard)
2648 tree guard_value;
2650 /* Check to see if the GUARD is zero. */
2651 guard = get_guard_bits (guard);
2653 /* Mask off all but the low bit. */
2654 if (targetm.cxx.guard_mask_bit ())
2656 guard_value = integer_one_node;
2657 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2658 guard_value = convert (TREE_TYPE (guard), guard_value);
2659 guard = cp_build_binary_op (input_location,
2660 BIT_AND_EXPR, guard, guard_value,
2661 tf_warning_or_error);
2664 guard_value = integer_zero_node;
2665 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2666 guard_value = convert (TREE_TYPE (guard), guard_value);
2667 return cp_build_binary_op (input_location,
2668 EQ_EXPR, guard, guard_value,
2669 tf_warning_or_error);
2672 /* Return an expression which sets the GUARD variable, indicating that
2673 the variable being guarded has been initialized. */
2675 tree
2676 set_guard (tree guard)
2678 tree guard_init;
2680 /* Set the GUARD to one. */
2681 guard = get_guard_bits (guard);
2682 guard_init = integer_one_node;
2683 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2684 guard_init = convert (TREE_TYPE (guard), guard_init);
2685 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2686 tf_warning_or_error);
2689 /* Start the process of running a particular set of global constructors
2690 or destructors. Subroutine of do_[cd]tors. */
2692 static tree
2693 start_objects (int method_type, int initp)
2695 tree body;
2696 tree fndecl;
2697 char type[14];
2699 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2701 if (initp != DEFAULT_INIT_PRIORITY)
2703 char joiner;
2705 #ifdef JOINER
2706 joiner = JOINER;
2707 #else
2708 joiner = '_';
2709 #endif
2711 sprintf (type, "sub_%c%c%.5u", method_type, joiner, initp);
2713 else
2714 sprintf (type, "sub_%c", method_type);
2716 fndecl = build_lang_decl (FUNCTION_DECL,
2717 get_file_function_name (type),
2718 build_function_type_list (void_type_node,
2719 NULL_TREE));
2720 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2722 TREE_PUBLIC (current_function_decl) = 0;
2724 /* Mark as artificial because it's not explicitly in the user's
2725 source code. */
2726 DECL_ARTIFICIAL (current_function_decl) = 1;
2728 /* Mark this declaration as used to avoid spurious warnings. */
2729 TREE_USED (current_function_decl) = 1;
2731 /* Mark this function as a global constructor or destructor. */
2732 if (method_type == 'I')
2733 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2734 else
2735 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2737 body = begin_compound_stmt (BCS_FN_BODY);
2739 return body;
2742 /* Finish the process of running a particular set of global constructors
2743 or destructors. Subroutine of do_[cd]tors. */
2745 static void
2746 finish_objects (int method_type, int initp, tree body)
2748 tree fn;
2750 /* Finish up. */
2751 finish_compound_stmt (body);
2752 fn = finish_function (0);
2754 if (method_type == 'I')
2756 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2757 decl_init_priority_insert (fn, initp);
2759 else
2761 DECL_STATIC_DESTRUCTOR (fn) = 1;
2762 decl_fini_priority_insert (fn, initp);
2765 expand_or_defer_fn (fn);
2768 /* The names of the parameters to the function created to handle
2769 initializations and destructions for objects with static storage
2770 duration. */
2771 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2772 #define PRIORITY_IDENTIFIER "__priority"
2774 /* The name of the function we create to handle initializations and
2775 destructions for objects with static storage duration. */
2776 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2778 /* The declaration for the __INITIALIZE_P argument. */
2779 static GTY(()) tree initialize_p_decl;
2781 /* The declaration for the __PRIORITY argument. */
2782 static GTY(()) tree priority_decl;
2784 /* The declaration for the static storage duration function. */
2785 static GTY(()) tree ssdf_decl;
2787 /* All the static storage duration functions created in this
2788 translation unit. */
2789 static GTY(()) VEC(tree,gc) *ssdf_decls;
2791 /* A map from priority levels to information about that priority
2792 level. There may be many such levels, so efficient lookup is
2793 important. */
2794 static splay_tree priority_info_map;
2796 /* Begins the generation of the function that will handle all
2797 initialization and destruction of objects with static storage
2798 duration. The function generated takes two parameters of type
2799 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2800 nonzero, it performs initializations. Otherwise, it performs
2801 destructions. It only performs those initializations or
2802 destructions with the indicated __PRIORITY. The generated function
2803 returns no value.
2805 It is assumed that this function will only be called once per
2806 translation unit. */
2808 static tree
2809 start_static_storage_duration_function (unsigned count)
2811 tree type;
2812 tree body;
2813 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2815 /* Create the identifier for this function. It will be of the form
2816 SSDF_IDENTIFIER_<number>. */
2817 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2819 type = build_function_type_list (void_type_node,
2820 integer_type_node, integer_type_node,
2821 NULL_TREE);
2823 /* Create the FUNCTION_DECL itself. */
2824 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2825 get_identifier (id),
2826 type);
2827 TREE_PUBLIC (ssdf_decl) = 0;
2828 DECL_ARTIFICIAL (ssdf_decl) = 1;
2830 /* Put this function in the list of functions to be called from the
2831 static constructors and destructors. */
2832 if (!ssdf_decls)
2834 ssdf_decls = VEC_alloc (tree, gc, 32);
2836 /* Take this opportunity to initialize the map from priority
2837 numbers to information about that priority level. */
2838 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2839 /*delete_key_fn=*/0,
2840 /*delete_value_fn=*/
2841 (splay_tree_delete_value_fn) &free);
2843 /* We always need to generate functions for the
2844 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2845 priorities later, we'll be sure to find the
2846 DEFAULT_INIT_PRIORITY. */
2847 get_priority_info (DEFAULT_INIT_PRIORITY);
2850 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2852 /* Create the argument list. */
2853 initialize_p_decl = cp_build_parm_decl
2854 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2855 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2856 TREE_USED (initialize_p_decl) = 1;
2857 priority_decl = cp_build_parm_decl
2858 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2859 DECL_CONTEXT (priority_decl) = ssdf_decl;
2860 TREE_USED (priority_decl) = 1;
2862 DECL_CHAIN (initialize_p_decl) = priority_decl;
2863 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2865 /* Put the function in the global scope. */
2866 pushdecl (ssdf_decl);
2868 /* Start the function itself. This is equivalent to declaring the
2869 function as:
2871 static void __ssdf (int __initialize_p, init __priority_p);
2873 It is static because we only need to call this function from the
2874 various constructor and destructor functions for this module. */
2875 start_preparsed_function (ssdf_decl,
2876 /*attrs=*/NULL_TREE,
2877 SF_PRE_PARSED);
2879 /* Set up the scope of the outermost block in the function. */
2880 body = begin_compound_stmt (BCS_FN_BODY);
2882 return body;
2885 /* Finish the generation of the function which performs initialization
2886 and destruction of objects with static storage duration. After
2887 this point, no more such objects can be created. */
2889 static void
2890 finish_static_storage_duration_function (tree body)
2892 /* Close out the function. */
2893 finish_compound_stmt (body);
2894 expand_or_defer_fn (finish_function (0));
2897 /* Return the information about the indicated PRIORITY level. If no
2898 code to handle this level has yet been generated, generate the
2899 appropriate prologue. */
2901 static priority_info
2902 get_priority_info (int priority)
2904 priority_info pi;
2905 splay_tree_node n;
2907 n = splay_tree_lookup (priority_info_map,
2908 (splay_tree_key) priority);
2909 if (!n)
2911 /* Create a new priority information structure, and insert it
2912 into the map. */
2913 pi = XNEW (struct priority_info_s);
2914 pi->initializations_p = 0;
2915 pi->destructions_p = 0;
2916 splay_tree_insert (priority_info_map,
2917 (splay_tree_key) priority,
2918 (splay_tree_value) pi);
2920 else
2921 pi = (priority_info) n->value;
2923 return pi;
2926 /* The effective initialization priority of a DECL. */
2928 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2929 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2930 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2932 /* Whether a DECL needs a guard to protect it against multiple
2933 initialization. */
2935 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2936 || DECL_ONE_ONLY (decl) \
2937 || DECL_WEAK (decl)))
2939 /* Called from one_static_initialization_or_destruction(),
2940 via walk_tree.
2941 Walks the initializer list of a global variable and looks for
2942 temporary variables (DECL_NAME() == NULL and DECL_ARTIFICIAL != 0)
2943 and that have their DECL_CONTEXT() == NULL.
2944 For each such temporary variable, set their DECL_CONTEXT() to
2945 the current function. This is necessary because otherwise
2946 some optimizers (enabled by -O2 -fprofile-arcs) might crash
2947 when trying to refer to a temporary variable that does not have
2948 it's DECL_CONTECT() properly set. */
2949 static tree
2950 fix_temporary_vars_context_r (tree *node,
2951 int *unused ATTRIBUTE_UNUSED,
2952 void *unused1 ATTRIBUTE_UNUSED)
2954 gcc_assert (current_function_decl);
2956 if (TREE_CODE (*node) == BIND_EXPR)
2958 tree var;
2960 for (var = BIND_EXPR_VARS (*node); var; var = DECL_CHAIN (var))
2961 if (TREE_CODE (var) == VAR_DECL
2962 && !DECL_NAME (var)
2963 && DECL_ARTIFICIAL (var)
2964 && !DECL_CONTEXT (var))
2965 DECL_CONTEXT (var) = current_function_decl;
2968 return NULL_TREE;
2971 /* Set up to handle the initialization or destruction of DECL. If
2972 INITP is nonzero, we are initializing the variable. Otherwise, we
2973 are destroying it. */
2975 static void
2976 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2978 tree guard_if_stmt = NULL_TREE;
2979 tree guard;
2981 /* If we are supposed to destruct and there's a trivial destructor,
2982 nothing has to be done. */
2983 if (!initp
2984 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2985 return;
2987 /* Trick the compiler into thinking we are at the file and line
2988 where DECL was declared so that error-messages make sense, and so
2989 that the debugger will show somewhat sensible file and line
2990 information. */
2991 input_location = DECL_SOURCE_LOCATION (decl);
2993 /* Make sure temporary variables in the initialiser all have
2994 their DECL_CONTEXT() set to a value different from NULL_TREE.
2995 This can happen when global variables initialisers are built.
2996 In that case, the DECL_CONTEXT() of the global variables _AND_ of all
2997 the temporary variables that might have been generated in the
2998 accompagning initialisers is NULL_TREE, meaning the variables have been
2999 declared in the global namespace.
3000 What we want to do here is to fix that and make sure the DECL_CONTEXT()
3001 of the temporaries are set to the current function decl. */
3002 cp_walk_tree_without_duplicates (&init,
3003 fix_temporary_vars_context_r,
3004 NULL);
3006 /* Because of:
3008 [class.access.spec]
3010 Access control for implicit calls to the constructors,
3011 the conversion functions, or the destructor called to
3012 create and destroy a static data member is performed as
3013 if these calls appeared in the scope of the member's
3014 class.
3016 we pretend we are in a static member function of the class of
3017 which the DECL is a member. */
3018 if (member_p (decl))
3020 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3021 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3024 /* Assume we don't need a guard. */
3025 guard = NULL_TREE;
3026 /* We need a guard if this is an object with external linkage that
3027 might be initialized in more than one place. (For example, a
3028 static data member of a template, when the data member requires
3029 construction.) */
3030 if (NEEDS_GUARD_P (decl))
3032 tree guard_cond;
3034 guard = get_guard (decl);
3036 /* When using __cxa_atexit, we just check the GUARD as we would
3037 for a local static. */
3038 if (flag_use_cxa_atexit)
3040 /* When using __cxa_atexit, we never try to destroy
3041 anything from a static destructor. */
3042 gcc_assert (initp);
3043 guard_cond = get_guard_cond (guard);
3045 /* If we don't have __cxa_atexit, then we will be running
3046 destructors from .fini sections, or their equivalents. So,
3047 we need to know how many times we've tried to initialize this
3048 object. We do initializations only if the GUARD is zero,
3049 i.e., if we are the first to initialize the variable. We do
3050 destructions only if the GUARD is one, i.e., if we are the
3051 last to destroy the variable. */
3052 else if (initp)
3053 guard_cond
3054 = cp_build_binary_op (input_location,
3055 EQ_EXPR,
3056 cp_build_unary_op (PREINCREMENT_EXPR,
3057 guard,
3058 /*noconvert=*/1,
3059 tf_warning_or_error),
3060 integer_one_node,
3061 tf_warning_or_error);
3062 else
3063 guard_cond
3064 = cp_build_binary_op (input_location,
3065 EQ_EXPR,
3066 cp_build_unary_op (PREDECREMENT_EXPR,
3067 guard,
3068 /*noconvert=*/1,
3069 tf_warning_or_error),
3070 integer_zero_node,
3071 tf_warning_or_error);
3073 guard_if_stmt = begin_if_stmt ();
3074 finish_if_stmt_cond (guard_cond, guard_if_stmt);
3078 /* If we're using __cxa_atexit, we have not already set the GUARD,
3079 so we must do so now. */
3080 if (guard && initp && flag_use_cxa_atexit)
3081 finish_expr_stmt (set_guard (guard));
3083 /* Perform the initialization or destruction. */
3084 if (initp)
3086 if (init)
3087 finish_expr_stmt (init);
3089 /* If we're using __cxa_atexit, register a function that calls the
3090 destructor for the object. */
3091 if (flag_use_cxa_atexit)
3092 finish_expr_stmt (register_dtor_fn (decl));
3094 else
3095 finish_expr_stmt (build_cleanup (decl));
3097 /* Finish the guard if-stmt, if necessary. */
3098 if (guard)
3100 finish_then_clause (guard_if_stmt);
3101 finish_if_stmt (guard_if_stmt);
3104 /* Now that we're done with DECL we don't need to pretend to be a
3105 member of its class any longer. */
3106 DECL_CONTEXT (current_function_decl) = NULL_TREE;
3107 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3110 /* Generate code to do the initialization or destruction of the decls in VARS,
3111 a TREE_LIST of VAR_DECL with static storage duration.
3112 Whether initialization or destruction is performed is specified by INITP. */
3114 static void
3115 do_static_initialization_or_destruction (tree vars, bool initp)
3117 tree node, init_if_stmt, cond;
3119 /* Build the outer if-stmt to check for initialization or destruction. */
3120 init_if_stmt = begin_if_stmt ();
3121 cond = initp ? integer_one_node : integer_zero_node;
3122 cond = cp_build_binary_op (input_location,
3123 EQ_EXPR,
3124 initialize_p_decl,
3125 cond,
3126 tf_warning_or_error);
3127 finish_if_stmt_cond (cond, init_if_stmt);
3129 node = vars;
3130 do {
3131 tree decl = TREE_VALUE (node);
3132 tree priority_if_stmt;
3133 int priority;
3134 priority_info pi;
3136 /* If we don't need a destructor, there's nothing to do. Avoid
3137 creating a possibly empty if-stmt. */
3138 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3140 node = TREE_CHAIN (node);
3141 continue;
3144 /* Remember that we had an initialization or finalization at this
3145 priority. */
3146 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
3147 pi = get_priority_info (priority);
3148 if (initp)
3149 pi->initializations_p = 1;
3150 else
3151 pi->destructions_p = 1;
3153 /* Conditionalize this initialization on being in the right priority
3154 and being initializing/finalizing appropriately. */
3155 priority_if_stmt = begin_if_stmt ();
3156 cond = cp_build_binary_op (input_location,
3157 EQ_EXPR,
3158 priority_decl,
3159 build_int_cst (NULL_TREE, priority),
3160 tf_warning_or_error);
3161 finish_if_stmt_cond (cond, priority_if_stmt);
3163 /* Process initializers with same priority. */
3164 for (; node
3165 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
3166 node = TREE_CHAIN (node))
3167 /* Do one initialization or destruction. */
3168 one_static_initialization_or_destruction (TREE_VALUE (node),
3169 TREE_PURPOSE (node), initp);
3171 /* Finish up the priority if-stmt body. */
3172 finish_then_clause (priority_if_stmt);
3173 finish_if_stmt (priority_if_stmt);
3175 } while (node);
3177 /* Finish up the init/destruct if-stmt body. */
3178 finish_then_clause (init_if_stmt);
3179 finish_if_stmt (init_if_stmt);
3182 /* VARS is a list of variables with static storage duration which may
3183 need initialization and/or finalization. Remove those variables
3184 that don't really need to be initialized or finalized, and return
3185 the resulting list. The order in which the variables appear in
3186 VARS is in reverse order of the order in which they should actually
3187 be initialized. The list we return is in the unreversed order;
3188 i.e., the first variable should be initialized first. */
3190 static tree
3191 prune_vars_needing_no_initialization (tree *vars)
3193 tree *var = vars;
3194 tree result = NULL_TREE;
3196 while (*var)
3198 tree t = *var;
3199 tree decl = TREE_VALUE (t);
3200 tree init = TREE_PURPOSE (t);
3202 /* Deal gracefully with error. */
3203 if (decl == error_mark_node)
3205 var = &TREE_CHAIN (t);
3206 continue;
3209 /* The only things that can be initialized are variables. */
3210 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3212 /* If this object is not defined, we don't need to do anything
3213 here. */
3214 if (DECL_EXTERNAL (decl))
3216 var = &TREE_CHAIN (t);
3217 continue;
3220 /* Also, if the initializer already contains errors, we can bail
3221 out now. */
3222 if (init && TREE_CODE (init) == TREE_LIST
3223 && value_member (error_mark_node, init))
3225 var = &TREE_CHAIN (t);
3226 continue;
3229 /* This variable is going to need initialization and/or
3230 finalization, so we add it to the list. */
3231 *var = TREE_CHAIN (t);
3232 TREE_CHAIN (t) = result;
3233 result = t;
3236 return result;
3239 /* Make sure we have told the back end about all the variables in
3240 VARS. */
3242 static void
3243 write_out_vars (tree vars)
3245 tree v;
3247 for (v = vars; v; v = TREE_CHAIN (v))
3249 tree var = TREE_VALUE (v);
3250 if (!var_finalized_p (var))
3252 import_export_decl (var);
3253 rest_of_decl_compilation (var, 1, 1);
3258 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3259 (otherwise) that will initialize all global objects with static
3260 storage duration having the indicated PRIORITY. */
3262 static void
3263 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3264 location_t *locus)
3266 char function_key;
3267 tree fndecl;
3268 tree body;
3269 size_t i;
3271 input_location = *locus;
3272 /* ??? */
3273 /* Was: locus->line++; */
3275 /* We use `I' to indicate initialization and `D' to indicate
3276 destruction. */
3277 function_key = constructor_p ? 'I' : 'D';
3279 /* We emit the function lazily, to avoid generating empty
3280 global constructors and destructors. */
3281 body = NULL_TREE;
3283 /* For Objective-C++, we may need to initialize metadata found in this module.
3284 This must be done _before_ any other static initializations. */
3285 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3286 && constructor_p && objc_static_init_needed_p ())
3288 body = start_objects (function_key, priority);
3289 objc_generate_static_init_call (NULL_TREE);
3292 /* Call the static storage duration function with appropriate
3293 arguments. */
3294 FOR_EACH_VEC_ELT (tree, ssdf_decls, i, fndecl)
3296 /* Calls to pure or const functions will expand to nothing. */
3297 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3299 tree call;
3301 if (! body)
3302 body = start_objects (function_key, priority);
3304 call = cp_build_function_call_nary (fndecl, tf_warning_or_error,
3305 build_int_cst (NULL_TREE,
3306 constructor_p),
3307 build_int_cst (NULL_TREE,
3308 priority),
3309 NULL_TREE);
3310 finish_expr_stmt (call);
3314 /* Close out the function. */
3315 if (body)
3316 finish_objects (function_key, priority, body);
3319 /* Generate constructor and destructor functions for the priority
3320 indicated by N. */
3322 static int
3323 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3325 location_t *locus = (location_t *) data;
3326 int priority = (int) n->key;
3327 priority_info pi = (priority_info) n->value;
3329 /* Generate the functions themselves, but only if they are really
3330 needed. */
3331 if (pi->initializations_p)
3332 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3333 if (pi->destructions_p)
3334 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3336 /* Keep iterating. */
3337 return 0;
3340 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
3341 decls referenced from front-end specific constructs; it will be called
3342 only for language-specific tree nodes.
3344 Here we must deal with member pointers. */
3346 tree
3347 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3349 tree t = *tp;
3351 switch (TREE_CODE (t))
3353 case PTRMEM_CST:
3354 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3355 cgraph_mark_address_taken_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3356 break;
3357 case BASELINK:
3358 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3359 cgraph_mark_address_taken_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3360 break;
3361 case VAR_DECL:
3362 if (DECL_CONTEXT (t)
3363 && flag_use_repository
3364 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3365 /* If we need a static variable in a function, then we
3366 need the containing function. */
3367 mark_decl_referenced (DECL_CONTEXT (t));
3368 break;
3369 default:
3370 break;
3373 return NULL;
3376 /* Java requires that we be able to reference a local address for a
3377 method, and not be confused by PLT entries. If hidden aliases are
3378 supported, collect and return all the functions for which we should
3379 emit a hidden alias. */
3381 static struct pointer_set_t *
3382 collect_candidates_for_java_method_aliases (void)
3384 struct cgraph_node *node;
3385 struct pointer_set_t *candidates = NULL;
3387 #ifndef HAVE_GAS_HIDDEN
3388 return candidates;
3389 #endif
3391 for (node = cgraph_nodes; node ; node = node->next)
3393 tree fndecl = node->decl;
3395 if (DECL_CONTEXT (fndecl)
3396 && TYPE_P (DECL_CONTEXT (fndecl))
3397 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3398 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3400 if (candidates == NULL)
3401 candidates = pointer_set_create ();
3402 pointer_set_insert (candidates, fndecl);
3406 return candidates;
3410 /* Java requires that we be able to reference a local address for a
3411 method, and not be confused by PLT entries. If hidden aliases are
3412 supported, emit one for each java function that we've emitted.
3413 CANDIDATES is the set of FUNCTION_DECLs that were gathered
3414 by collect_candidates_for_java_method_aliases. */
3416 static void
3417 build_java_method_aliases (struct pointer_set_t *candidates)
3419 struct cgraph_node *node;
3421 #ifndef HAVE_GAS_HIDDEN
3422 return;
3423 #endif
3425 for (node = cgraph_nodes; node ; node = node->next)
3427 tree fndecl = node->decl;
3429 if (TREE_ASM_WRITTEN (fndecl)
3430 && pointer_set_contains (candidates, fndecl))
3432 /* Mangle the name in a predictable way; we need to reference
3433 this from a java compiled object file. */
3434 tree oid, nid, alias;
3435 const char *oname;
3436 char *nname;
3438 oid = DECL_ASSEMBLER_NAME (fndecl);
3439 oname = IDENTIFIER_POINTER (oid);
3440 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3441 nname = ACONCAT (("_ZGA", oname+2, NULL));
3442 nid = get_identifier (nname);
3444 alias = make_alias_for (fndecl, nid);
3445 TREE_PUBLIC (alias) = 1;
3446 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3448 assemble_alias (alias, oid);
3453 /* Return C++ property of T, based on given operation OP. */
3455 static int
3456 cpp_check (tree t, cpp_operation op)
3458 switch (op)
3460 case IS_ABSTRACT:
3461 return DECL_PURE_VIRTUAL_P (t);
3462 case IS_CONSTRUCTOR:
3463 return DECL_CONSTRUCTOR_P (t);
3464 case IS_DESTRUCTOR:
3465 return DECL_DESTRUCTOR_P (t);
3466 case IS_COPY_CONSTRUCTOR:
3467 return DECL_COPY_CONSTRUCTOR_P (t);
3468 case IS_TEMPLATE:
3469 return TREE_CODE (t) == TEMPLATE_DECL;
3470 default:
3471 return 0;
3475 /* Collect source file references recursively, starting from NAMESPC. */
3477 static void
3478 collect_source_refs (tree namespc)
3480 tree t;
3482 if (!namespc)
3483 return;
3485 /* Iterate over names in this name space. */
3486 for (t = NAMESPACE_LEVEL (namespc)->names; t; t = TREE_CHAIN (t))
3487 if (!DECL_IS_BUILTIN (t) )
3488 collect_source_ref (DECL_SOURCE_FILE (t));
3490 /* Dump siblings, if any */
3491 collect_source_refs (TREE_CHAIN (namespc));
3493 /* Dump children, if any */
3494 collect_source_refs (NAMESPACE_LEVEL (namespc)->namespaces);
3497 /* Collect decls relevant to SOURCE_FILE from all namespaces recursively,
3498 starting from NAMESPC. */
3500 static void
3501 collect_ada_namespace (tree namespc, const char *source_file)
3503 if (!namespc)
3504 return;
3506 /* Collect decls from this namespace */
3507 collect_ada_nodes (NAMESPACE_LEVEL (namespc)->names, source_file);
3509 /* Collect siblings, if any */
3510 collect_ada_namespace (TREE_CHAIN (namespc), source_file);
3512 /* Collect children, if any */
3513 collect_ada_namespace (NAMESPACE_LEVEL (namespc)->namespaces, source_file);
3516 /* Returns true iff there is a definition available for variable or
3517 function DECL. */
3519 static bool
3520 decl_defined_p (tree decl)
3522 if (TREE_CODE (decl) == FUNCTION_DECL)
3523 return (DECL_INITIAL (decl) != NULL_TREE);
3524 else
3526 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3527 return !DECL_EXTERNAL (decl);
3531 /* Nonzero for a VAR_DECL whose value can be used in a constant expression.
3533 [expr.const]
3535 An integral constant-expression can only involve ... const
3536 variables of integral or enumeration types initialized with
3537 constant expressions ...
3539 C++0x also allows constexpr variables and temporaries initialized
3540 with constant expressions. We handle the former here, but the latter
3541 are just folded away in cxx_eval_constant_expression.
3543 The standard does not require that the expression be non-volatile.
3544 G++ implements the proposed correction in DR 457. */
3546 bool
3547 decl_constant_var_p (tree decl)
3549 bool ret;
3550 tree type = TREE_TYPE (decl);
3551 if (TREE_CODE (decl) != VAR_DECL)
3552 return false;
3553 if (DECL_DECLARED_CONSTEXPR_P (decl))
3554 ret = true;
3555 else if (CP_TYPE_CONST_NON_VOLATILE_P (type)
3556 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
3558 /* We don't know if a template static data member is initialized with
3559 a constant expression until we instantiate its initializer. */
3560 mark_used (decl);
3561 ret = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl);
3563 else
3564 ret = false;
3566 gcc_assert (!ret || DECL_INITIAL (decl));
3567 return ret;
3570 /* Returns true if DECL could be a symbolic constant variable, depending on
3571 its initializer. */
3573 bool
3574 decl_maybe_constant_var_p (tree decl)
3576 tree type = TREE_TYPE (decl);
3577 if (TREE_CODE (decl) != VAR_DECL)
3578 return false;
3579 if (DECL_DECLARED_CONSTEXPR_P (decl))
3580 return true;
3581 return (CP_TYPE_CONST_NON_VOLATILE_P (type)
3582 && INTEGRAL_OR_ENUMERATION_TYPE_P (type));
3585 /* Complain that DECL uses a type with no linkage but is never defined. */
3587 static void
3588 no_linkage_error (tree decl)
3590 tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
3591 if (TYPE_ANONYMOUS_P (t))
3593 permerror (0, "%q+#D, declared using anonymous type, "
3594 "is used but never defined", decl);
3595 if (is_typedef_decl (TYPE_NAME (t)))
3596 permerror (0, "%q+#D does not refer to the unqualified type, "
3597 "so it is not used for linkage", TYPE_NAME (t));
3599 else
3600 permerror (0, "%q+#D, declared using local type %qT, "
3601 "is used but never defined", decl, t);
3604 /* Collect declarations from all namespaces relevant to SOURCE_FILE. */
3606 static void
3607 collect_all_refs (const char *source_file)
3609 collect_ada_namespace (global_namespace, source_file);
3612 /* This routine is called at the end of compilation.
3613 Its job is to create all the code needed to initialize and
3614 destroy the global aggregates. We do the destruction
3615 first, since that way we only need to reverse the decls once. */
3617 void
3618 cp_write_global_declarations (void)
3620 tree vars;
3621 bool reconsider;
3622 size_t i;
3623 location_t locus;
3624 unsigned ssdf_count = 0;
3625 int retries = 0;
3626 tree decl;
3627 struct pointer_set_t *candidates;
3629 locus = input_location;
3630 at_eof = 1;
3632 /* Bad parse errors. Just forget about it. */
3633 if (! global_bindings_p () || current_class_type
3634 || !VEC_empty (tree,decl_namespace_list))
3635 return;
3637 if (pch_file)
3638 c_common_write_pch ();
3640 /* Handle -fdump-ada-spec[-slim] */
3641 if (dump_enabled_p (TDI_ada))
3643 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
3644 collect_source_ref (main_input_filename);
3645 else
3646 collect_source_refs (global_namespace);
3648 dump_ada_specs (collect_all_refs, cpp_check);
3651 /* FIXME - huh? was input_line -= 1;*/
3653 /* We now have to write out all the stuff we put off writing out.
3654 These include:
3656 o Template specializations that we have not yet instantiated,
3657 but which are needed.
3658 o Initialization and destruction for non-local objects with
3659 static storage duration. (Local objects with static storage
3660 duration are initialized when their scope is first entered,
3661 and are cleaned up via atexit.)
3662 o Virtual function tables.
3664 All of these may cause others to be needed. For example,
3665 instantiating one function may cause another to be needed, and
3666 generating the initializer for an object may cause templates to be
3667 instantiated, etc., etc. */
3669 timevar_push (TV_VARCONST);
3671 emit_support_tinfos ();
3675 tree t;
3676 tree decl;
3678 reconsider = false;
3680 /* If there are templates that we've put off instantiating, do
3681 them now. */
3682 instantiate_pending_templates (retries);
3683 ggc_collect ();
3685 /* Write out virtual tables as required. Note that writing out
3686 the virtual table for a template class may cause the
3687 instantiation of members of that class. If we write out
3688 vtables then we remove the class from our list so we don't
3689 have to look at it again. */
3691 while (keyed_classes != NULL_TREE
3692 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3694 reconsider = true;
3695 keyed_classes = TREE_CHAIN (keyed_classes);
3698 t = keyed_classes;
3699 if (t != NULL_TREE)
3701 tree next = TREE_CHAIN (t);
3703 while (next)
3705 if (maybe_emit_vtables (TREE_VALUE (next)))
3707 reconsider = true;
3708 TREE_CHAIN (t) = TREE_CHAIN (next);
3710 else
3711 t = next;
3713 next = TREE_CHAIN (t);
3717 /* Write out needed type info variables. We have to be careful
3718 looping through unemitted decls, because emit_tinfo_decl may
3719 cause other variables to be needed. New elements will be
3720 appended, and we remove from the vector those that actually
3721 get emitted. */
3722 for (i = VEC_length (tree, unemitted_tinfo_decls);
3723 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3724 if (emit_tinfo_decl (t))
3726 reconsider = true;
3727 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3730 /* The list of objects with static storage duration is built up
3731 in reverse order. We clear STATIC_AGGREGATES so that any new
3732 aggregates added during the initialization of these will be
3733 initialized in the correct order when we next come around the
3734 loop. */
3735 vars = prune_vars_needing_no_initialization (&static_aggregates);
3737 if (vars)
3739 /* We need to start a new initialization function each time
3740 through the loop. That's because we need to know which
3741 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3742 isn't computed until a function is finished, and written
3743 out. That's a deficiency in the back end. When this is
3744 fixed, these initialization functions could all become
3745 inline, with resulting performance improvements. */
3746 tree ssdf_body;
3748 /* Set the line and file, so that it is obviously not from
3749 the source file. */
3750 input_location = locus;
3751 ssdf_body = start_static_storage_duration_function (ssdf_count);
3753 /* Make sure the back end knows about all the variables. */
3754 write_out_vars (vars);
3756 /* First generate code to do all the initializations. */
3757 if (vars)
3758 do_static_initialization_or_destruction (vars, /*initp=*/true);
3760 /* Then, generate code to do all the destructions. Do these
3761 in reverse order so that the most recently constructed
3762 variable is the first destroyed. If we're using
3763 __cxa_atexit, then we don't need to do this; functions
3764 were registered at initialization time to destroy the
3765 local statics. */
3766 if (!flag_use_cxa_atexit && vars)
3768 vars = nreverse (vars);
3769 do_static_initialization_or_destruction (vars, /*initp=*/false);
3771 else
3772 vars = NULL_TREE;
3774 /* Finish up the static storage duration function for this
3775 round. */
3776 input_location = locus;
3777 finish_static_storage_duration_function (ssdf_body);
3779 /* All those initializations and finalizations might cause
3780 us to need more inline functions, more template
3781 instantiations, etc. */
3782 reconsider = true;
3783 ssdf_count++;
3784 /* ??? was: locus.line++; */
3787 /* Go through the set of inline functions whose bodies have not
3788 been emitted yet. If out-of-line copies of these functions
3789 are required, emit them. */
3790 FOR_EACH_VEC_ELT (tree, deferred_fns, i, decl)
3792 /* Does it need synthesizing? */
3793 if (DECL_DEFAULTED_FN (decl) && ! DECL_INITIAL (decl)
3794 && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3796 /* Even though we're already at the top-level, we push
3797 there again. That way, when we pop back a few lines
3798 hence, all of our state is restored. Otherwise,
3799 finish_function doesn't clean things up, and we end
3800 up with CURRENT_FUNCTION_DECL set. */
3801 push_to_top_level ();
3802 /* The decl's location will mark where it was first
3803 needed. Save that so synthesize method can indicate
3804 where it was needed from, in case of error */
3805 input_location = DECL_SOURCE_LOCATION (decl);
3806 synthesize_method (decl);
3807 pop_from_top_level ();
3808 reconsider = true;
3811 if (!DECL_SAVED_TREE (decl))
3812 continue;
3814 /* We lie to the back end, pretending that some functions
3815 are not defined when they really are. This keeps these
3816 functions from being put out unnecessarily. But, we must
3817 stop lying when the functions are referenced, or if they
3818 are not comdat since they need to be put out now. If
3819 DECL_INTERFACE_KNOWN, then we have already set
3820 DECL_EXTERNAL appropriately, so there's no need to check
3821 again, and we do not want to clear DECL_EXTERNAL if a
3822 previous call to import_export_decl set it.
3824 This is done in a separate for cycle, because if some
3825 deferred function is contained in another deferred
3826 function later in deferred_fns varray,
3827 rest_of_compilation would skip this function and we
3828 really cannot expand the same function twice. */
3829 import_export_decl (decl);
3830 if (DECL_NOT_REALLY_EXTERN (decl)
3831 && DECL_INITIAL (decl)
3832 && decl_needed_p (decl))
3834 struct cgraph_node *node = cgraph_get_node (decl), *alias, *next;
3836 DECL_EXTERNAL (decl) = 0;
3837 /* If we mark !DECL_EXTERNAL one of the same body aliases,
3838 we need to mark all of them that way. */
3839 if (node && node->same_body)
3841 DECL_EXTERNAL (node->decl) = 0;
3842 for (alias = node->same_body; alias; alias = alias->next)
3843 DECL_EXTERNAL (alias->decl) = 0;
3845 /* If we mark !DECL_EXTERNAL one of the symbols in some comdat
3846 group, we need to mark all symbols in the same comdat group
3847 that way. */
3848 if (node->same_comdat_group)
3849 for (next = node->same_comdat_group;
3850 next != node;
3851 next = next->same_comdat_group)
3853 DECL_EXTERNAL (next->decl) = 0;
3854 if (next->same_body)
3856 for (alias = next->same_body;
3857 alias;
3858 alias = alias->next)
3859 DECL_EXTERNAL (alias->decl) = 0;
3864 /* If we're going to need to write this function out, and
3865 there's already a body for it, create RTL for it now.
3866 (There might be no body if this is a method we haven't
3867 gotten around to synthesizing yet.) */
3868 if (!DECL_EXTERNAL (decl)
3869 && decl_needed_p (decl)
3870 && !TREE_ASM_WRITTEN (decl)
3871 && !cgraph_node (decl)->local.finalized)
3873 /* We will output the function; no longer consider it in this
3874 loop. */
3875 DECL_DEFER_OUTPUT (decl) = 0;
3876 /* Generate RTL for this function now that we know we
3877 need it. */
3878 expand_or_defer_fn (decl);
3879 /* If we're compiling -fsyntax-only pretend that this
3880 function has been written out so that we don't try to
3881 expand it again. */
3882 if (flag_syntax_only)
3883 TREE_ASM_WRITTEN (decl) = 1;
3884 reconsider = true;
3888 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3889 reconsider = true;
3891 /* Static data members are just like namespace-scope globals. */
3892 FOR_EACH_VEC_ELT (tree, pending_statics, i, decl)
3894 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3895 /* Don't write it out if we haven't seen a definition. */
3896 || DECL_IN_AGGR_P (decl))
3897 continue;
3898 import_export_decl (decl);
3899 /* If this static data member is needed, provide it to the
3900 back end. */
3901 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3902 DECL_EXTERNAL (decl) = 0;
3904 if (VEC_length (tree, pending_statics) != 0
3905 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3906 VEC_length (tree, pending_statics)))
3907 reconsider = true;
3909 retries++;
3911 while (reconsider);
3913 /* All used inline functions must have a definition at this point. */
3914 FOR_EACH_VEC_ELT (tree, deferred_fns, i, decl)
3916 if (/* Check online inline functions that were actually used. */
3917 DECL_ODR_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3918 /* If the definition actually was available here, then the
3919 fact that the function was not defined merely represents
3920 that for some reason (use of a template repository,
3921 #pragma interface, etc.) we decided not to emit the
3922 definition here. */
3923 && !DECL_INITIAL (decl)
3924 /* An explicit instantiation can be used to specify
3925 that the body is in another unit. It will have
3926 already verified there was a definition. */
3927 && !DECL_EXPLICIT_INSTANTIATION (decl))
3929 warning (0, "inline function %q+D used but never defined", decl);
3930 /* Avoid a duplicate warning from check_global_declaration_1. */
3931 TREE_NO_WARNING (decl) = 1;
3935 /* So must decls that use a type with no linkage. */
3936 FOR_EACH_VEC_ELT (tree, no_linkage_decls, i, decl)
3937 if (!decl_defined_p (decl))
3938 no_linkage_error (decl);
3940 /* Then, do the Objective-C stuff. This is where all the
3941 Objective-C module stuff gets generated (symtab,
3942 class/protocol/selector lists etc). This must be done after C++
3943 templates, destructors etc. so that selectors used in C++
3944 templates are properly allocated. */
3945 if (c_dialect_objc ())
3946 objc_write_global_declarations ();
3948 /* We give C linkage to static constructors and destructors. */
3949 push_lang_context (lang_name_c);
3951 /* Generate initialization and destruction functions for all
3952 priorities for which they are required. */
3953 if (priority_info_map)
3954 splay_tree_foreach (priority_info_map,
3955 generate_ctor_and_dtor_functions_for_priority,
3956 /*data=*/&locus);
3957 else if (c_dialect_objc () && objc_static_init_needed_p ())
3958 /* If this is obj-c++ and we need a static init, call
3959 generate_ctor_or_dtor_function. */
3960 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3961 DEFAULT_INIT_PRIORITY, &locus);
3963 /* We're done with the splay-tree now. */
3964 if (priority_info_map)
3965 splay_tree_delete (priority_info_map);
3967 /* Generate any missing aliases. */
3968 maybe_apply_pending_pragma_weaks ();
3970 /* We're done with static constructors, so we can go back to "C++"
3971 linkage now. */
3972 pop_lang_context ();
3974 /* Collect candidates for Java hidden aliases. */
3975 candidates = collect_candidates_for_java_method_aliases ();
3977 cgraph_finalize_compilation_unit ();
3979 /* Now, issue warnings about static, but not defined, functions,
3980 etc., and emit debugging information. */
3981 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3982 if (VEC_length (tree, pending_statics) != 0)
3984 check_global_declarations (VEC_address (tree, pending_statics),
3985 VEC_length (tree, pending_statics));
3986 emit_debug_global_declarations (VEC_address (tree, pending_statics),
3987 VEC_length (tree, pending_statics));
3990 perform_deferred_noexcept_checks ();
3992 /* Generate hidden aliases for Java. */
3993 if (candidates)
3995 build_java_method_aliases (candidates);
3996 pointer_set_destroy (candidates);
3999 finish_repo ();
4001 /* The entire file is now complete. If requested, dump everything
4002 to a file. */
4004 int flags;
4005 FILE *stream = dump_begin (TDI_tu, &flags);
4007 if (stream)
4009 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
4010 dump_end (TDI_tu, stream);
4014 timevar_pop (TV_VARCONST);
4016 if (flag_detailed_statistics)
4018 dump_tree_statistics ();
4019 dump_time_statistics ();
4021 input_location = locus;
4023 #ifdef ENABLE_CHECKING
4024 validate_conversion_obstack ();
4025 #endif /* ENABLE_CHECKING */
4028 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
4029 function to call in parse-tree form; it has not yet been
4030 semantically analyzed. ARGS are the arguments to the function.
4031 They have already been semantically analyzed. This may change
4032 ARGS. */
4034 tree
4035 build_offset_ref_call_from_tree (tree fn, VEC(tree,gc) **args)
4037 tree orig_fn;
4038 VEC(tree,gc) *orig_args = NULL;
4039 tree expr;
4040 tree object;
4042 orig_fn = fn;
4043 object = TREE_OPERAND (fn, 0);
4045 if (processing_template_decl)
4047 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
4048 || TREE_CODE (fn) == MEMBER_REF);
4049 if (type_dependent_expression_p (fn)
4050 || any_type_dependent_arguments_p (*args))
4051 return build_nt_call_vec (fn, *args);
4053 orig_args = make_tree_vector_copy (*args);
4055 /* Transform the arguments and add the implicit "this"
4056 parameter. That must be done before the FN is transformed
4057 because we depend on the form of FN. */
4058 make_args_non_dependent (*args);
4059 object = build_non_dependent_expr (object);
4060 if (TREE_CODE (fn) == DOTSTAR_EXPR)
4061 object = cp_build_addr_expr (object, tf_warning_or_error);
4062 VEC_safe_insert (tree, gc, *args, 0, object);
4063 /* Now that the arguments are done, transform FN. */
4064 fn = build_non_dependent_expr (fn);
4067 /* A qualified name corresponding to a bound pointer-to-member is
4068 represented as an OFFSET_REF:
4070 struct B { void g(); };
4071 void (B::*p)();
4072 void B::g() { (this->*p)(); } */
4073 if (TREE_CODE (fn) == OFFSET_REF)
4075 tree object_addr = cp_build_addr_expr (object, tf_warning_or_error);
4076 fn = TREE_OPERAND (fn, 1);
4077 fn = get_member_function_from_ptrfunc (&object_addr, fn);
4078 VEC_safe_insert (tree, gc, *args, 0, object_addr);
4081 expr = cp_build_function_call_vec (fn, args, tf_warning_or_error);
4082 if (processing_template_decl && expr != error_mark_node)
4083 expr = build_min_non_dep_call_vec (expr, orig_fn, orig_args);
4085 if (orig_args != NULL)
4086 release_tree_vector (orig_args);
4088 return expr;
4092 void
4093 check_default_args (tree x)
4095 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
4096 bool saw_def = false;
4097 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
4098 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
4100 if (TREE_PURPOSE (arg))
4101 saw_def = true;
4102 else if (saw_def)
4104 error ("default argument missing for parameter %P of %q+#D", i, x);
4105 TREE_PURPOSE (arg) = error_mark_node;
4110 /* Return true if function DECL can be inlined. This is used to force
4111 instantiation of methods that might be interesting for inlining. */
4112 bool
4113 possibly_inlined_p (tree decl)
4115 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
4116 if (DECL_UNINLINABLE (decl))
4117 return false;
4118 if (!optimize || pragma_java_exceptions)
4119 return DECL_DECLARED_INLINE_P (decl);
4120 /* When optimizing, we might inline everything when flatten
4121 attribute or heuristics inlining for size or autoinlining
4122 is used. */
4123 return true;
4126 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
4127 If DECL is a specialization or implicitly declared class member,
4128 generate the actual definition. */
4130 void
4131 mark_used (tree decl)
4133 /* If DECL is a BASELINK for a single function, then treat it just
4134 like the DECL for the function. Otherwise, if the BASELINK is
4135 for an overloaded function, we don't know which function was
4136 actually used until after overload resolution. */
4137 if (TREE_CODE (decl) == BASELINK)
4139 decl = BASELINK_FUNCTIONS (decl);
4140 if (really_overloaded_fn (decl))
4141 return;
4142 decl = OVL_CURRENT (decl);
4145 /* Set TREE_USED for the benefit of -Wunused. */
4146 TREE_USED (decl) = 1;
4147 if (DECL_CLONED_FUNCTION_P (decl))
4148 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4150 if (TREE_CODE (decl) == FUNCTION_DECL
4151 && DECL_DELETED_FN (decl))
4153 if (DECL_ARTIFICIAL (decl))
4155 if (DECL_OVERLOADED_OPERATOR_P (decl) == TYPE_EXPR
4156 && LAMBDA_TYPE_P (DECL_CONTEXT (decl)))
4158 /* We mark a lambda conversion op as deleted if we can't
4159 generate it properly; see maybe_add_lambda_conv_op. */
4160 sorry ("converting lambda which uses %<...%> to "
4161 "function pointer");
4162 return;
4165 error ("use of deleted function %qD", decl);
4166 if (!maybe_explain_implicit_delete (decl))
4167 error_at (DECL_SOURCE_LOCATION (decl), "declared here");
4168 return;
4171 /* We can only check DECL_ODR_USED on variables or functions with
4172 DECL_LANG_SPECIFIC set, and these are also the only decls that we
4173 might need special handling for. */
4174 if ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4175 || DECL_LANG_SPECIFIC (decl) == NULL
4176 || DECL_THUNK_P (decl))
4177 return;
4179 /* We only want to do this processing once. We don't need to keep trying
4180 to instantiate inline templates, because unit-at-a-time will make sure
4181 we get them compiled before functions that want to inline them. */
4182 if (DECL_ODR_USED (decl))
4183 return;
4185 /* If within finish_function, defer the rest until that function
4186 finishes, otherwise it might recurse. */
4187 if (defer_mark_used_calls)
4189 VEC_safe_push (tree, gc, deferred_mark_used_calls, decl);
4190 return;
4193 /* Normally, we can wait until instantiation-time to synthesize DECL.
4194 However, if DECL is a static data member initialized with a constant
4195 or a constexpr function, we need it right now because a reference to
4196 such a data member or a call to such function is not value-dependent. */
4197 if ((decl_maybe_constant_var_p (decl)
4198 || (TREE_CODE (decl) == FUNCTION_DECL
4199 && DECL_DECLARED_CONSTEXPR_P (decl)))
4200 && !DECL_INITIAL (decl)
4201 && DECL_LANG_SPECIFIC (decl)
4202 && DECL_TEMPLATE_INSTANTIATION (decl))
4204 /* Instantiating a function will result in garbage collection. We
4205 must treat this situation as if we were within the body of a
4206 function so as to avoid collecting live data only referenced from
4207 the stack (such as overload resolution candidates). */
4208 ++function_depth;
4209 instantiate_decl (decl, /*defer_ok=*/false,
4210 /*expl_inst_class_mem_p=*/false);
4211 --function_depth;
4214 /* If we don't need a value, then we don't need to synthesize DECL. */
4215 if (cp_unevaluated_operand != 0)
4216 return;
4218 if (processing_template_decl)
4219 return;
4221 /* Check this too in case we're within fold_non_dependent_expr. */
4222 if (DECL_TEMPLATE_INFO (decl)
4223 && uses_template_parms (DECL_TI_ARGS (decl)))
4224 return;
4226 DECL_ODR_USED (decl) = 1;
4227 if (DECL_CLONED_FUNCTION_P (decl))
4228 DECL_ODR_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4230 /* DR 757: A type without linkage shall not be used as the type of a
4231 variable or function with linkage, unless
4232 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
4233 o the variable or function is not used (3.2 [basic.def.odr]) or is
4234 defined in the same translation unit. */
4235 if (cxx_dialect > cxx98
4236 && decl_linkage (decl) != lk_none
4237 && !DECL_EXTERN_C_P (decl)
4238 && !DECL_ARTIFICIAL (decl)
4239 && !decl_defined_p (decl)
4240 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
4242 if (is_local_extern (decl))
4243 /* There's no way to define a local extern, and adding it to
4244 the vector interferes with GC, so give an error now. */
4245 no_linkage_error (decl);
4246 else
4247 VEC_safe_push (tree, gc, no_linkage_decls, decl);
4250 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
4251 && !DECL_INITIAL (decl) && !DECL_ARTIFICIAL (decl))
4252 /* Remember it, so we can check it was defined. */
4253 note_vague_linkage_fn (decl);
4255 /* Is it a synthesized method that needs to be synthesized? */
4256 if (TREE_CODE (decl) == FUNCTION_DECL
4257 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
4258 && DECL_DEFAULTED_FN (decl)
4259 && ! DECL_INITIAL (decl))
4261 /* Remember the current location for a function we will end up
4262 synthesizing. Then we can inform the user where it was
4263 required in the case of error. */
4264 DECL_SOURCE_LOCATION (decl) = input_location;
4266 /* Synthesizing an implicitly defined member function will result in
4267 garbage collection. We must treat this situation as if we were
4268 within the body of a function so as to avoid collecting live data
4269 on the stack (such as overload resolution candidates).
4271 We could just let cp_write_global_declarations handle synthesizing
4272 this function, since we just added it to deferred_fns, but doing
4273 it at the use site produces better error messages. */
4274 ++function_depth;
4275 synthesize_method (decl);
4276 --function_depth;
4277 /* If this is a synthesized method we don't need to
4278 do the instantiation test below. */
4280 else if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4281 && DECL_TEMPLATE_INFO (decl)
4282 && (!DECL_EXPLICIT_INSTANTIATION (decl)
4283 || always_instantiate_p (decl)))
4284 /* If this is a function or variable that is an instance of some
4285 template, we now know that we will need to actually do the
4286 instantiation. We check that DECL is not an explicit
4287 instantiation because that is not checked in instantiate_decl.
4289 We put off instantiating functions in order to improve compile
4290 times. Maintaining a stack of active functions is expensive,
4291 and the inliner knows to instantiate any functions it might
4292 need. Therefore, we always try to defer instantiation. */
4293 instantiate_decl (decl, /*defer_ok=*/true,
4294 /*expl_inst_class_mem_p=*/false);
4297 #include "gt-cp-decl2.h"