re PR c++/12909 (ambiguity in mangling vector types)
[official-gcc.git] / gcc / cp / decl2.c
blob81d7ee3212f4d1c9249d427d1ae55cf60f777215
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
4 Free Software Foundation, Inc.
5 Hacked by Michael Tiemann (tiemann@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
24 /* Process declarations and symbol lookup for C++ front end.
25 Also constructs types; the standard scalar types at initialization,
26 and structure, union, array and enum types when they are declared. */
28 /* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "tree.h"
36 #include "rtl.h"
37 #include "expr.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "decl.h"
41 #include "output.h"
42 #include "except.h"
43 #include "toplev.h"
44 #include "timevar.h"
45 #include "cpplib.h"
46 #include "target.h"
47 #include "c-common.h"
48 #include "tree-mudflap.h"
49 #include "cgraph.h"
50 #include "tree-inline.h"
51 #include "c-pragma.h"
52 #include "tree-dump.h"
53 #include "intl.h"
54 #include "gimple.h"
55 #include "pointer-set.h"
57 extern cpp_reader *parse_in;
59 /* This structure contains information about the initializations
60 and/or destructions required for a particular priority level. */
61 typedef struct priority_info_s {
62 /* Nonzero if there have been any initializations at this priority
63 throughout the translation unit. */
64 int initializations_p;
65 /* Nonzero if there have been any destructions at this priority
66 throughout the translation unit. */
67 int destructions_p;
68 } *priority_info;
70 static void mark_vtable_entries (tree);
71 static bool maybe_emit_vtables (tree);
72 static bool acceptable_java_type (tree);
73 static tree start_objects (int, int);
74 static void finish_objects (int, int, tree);
75 static tree start_static_storage_duration_function (unsigned);
76 static void finish_static_storage_duration_function (tree);
77 static priority_info get_priority_info (int);
78 static void do_static_initialization_or_destruction (tree, bool);
79 static void one_static_initialization_or_destruction (tree, tree, bool);
80 static void generate_ctor_or_dtor_function (bool, int, location_t *);
81 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node,
82 void *);
83 static tree prune_vars_needing_no_initialization (tree *);
84 static void write_out_vars (tree);
85 static void import_export_class (tree);
86 static tree get_guard_bits (tree);
87 static void determine_visibility_from_class (tree, tree);
88 static bool decl_defined_p (tree);
90 /* A list of static class variables. This is needed, because a
91 static class variable can be declared inside the class without
92 an initializer, and then initialized, statically, outside the class. */
93 static GTY(()) VEC(tree,gc) *pending_statics;
95 /* A list of functions which were declared inline, but which we
96 may need to emit outline anyway. */
97 static GTY(()) VEC(tree,gc) *deferred_fns;
99 /* A list of decls that use types with no linkage, which we need to make
100 sure are defined. */
101 static GTY(()) VEC(tree,gc) *no_linkage_decls;
103 /* Nonzero if we're done parsing and into end-of-file activities. */
105 int at_eof;
109 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
110 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
111 that apply to the function). */
113 tree
114 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
116 tree raises;
117 tree attrs;
118 int type_quals;
120 if (fntype == error_mark_node || ctype == error_mark_node)
121 return error_mark_node;
123 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
124 || TREE_CODE (fntype) == METHOD_TYPE);
126 type_quals = quals & ~TYPE_QUAL_RESTRICT;
127 ctype = cp_build_qualified_type (ctype, type_quals);
128 raises = TYPE_RAISES_EXCEPTIONS (fntype);
129 attrs = TYPE_ATTRIBUTES (fntype);
130 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
131 (TREE_CODE (fntype) == METHOD_TYPE
132 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
133 : TYPE_ARG_TYPES (fntype)));
134 if (raises)
135 fntype = build_exception_variant (fntype, raises);
136 if (attrs)
137 fntype = cp_build_type_attribute_variant (fntype, attrs);
139 return fntype;
142 /* Return a variant of FNTYPE, a FUNCTION_TYPE or METHOD_TYPE, with its
143 return type changed to NEW_RET. */
145 tree
146 change_return_type (tree new_ret, tree fntype)
148 tree newtype;
149 tree args = TYPE_ARG_TYPES (fntype);
150 tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
151 tree attrs = TYPE_ATTRIBUTES (fntype);
153 if (same_type_p (new_ret, TREE_TYPE (fntype)))
154 return fntype;
156 if (TREE_CODE (fntype) == FUNCTION_TYPE)
157 newtype = build_function_type (new_ret, args);
158 else
159 newtype = build_method_type_directly (TYPE_METHOD_BASETYPE (fntype),
160 new_ret, TREE_CHAIN (args));
161 if (raises)
162 newtype = build_exception_variant (newtype, raises);
163 if (attrs)
164 newtype = cp_build_type_attribute_variant (newtype, attrs);
166 return newtype;
169 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
170 appropriately. */
172 tree
173 cp_build_parm_decl (tree name, tree type)
175 tree parm = build_decl (input_location,
176 PARM_DECL, name, type);
177 /* DECL_ARG_TYPE is only used by the back end and the back end never
178 sees templates. */
179 if (!processing_template_decl)
180 DECL_ARG_TYPE (parm) = type_passed_as (type);
182 /* If the type is a pack expansion, then we have a function
183 parameter pack. */
184 if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
185 FUNCTION_PARAMETER_PACK_P (parm) = 1;
187 return parm;
190 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
191 indicated NAME. */
193 tree
194 build_artificial_parm (tree name, tree type)
196 tree parm = cp_build_parm_decl (name, type);
197 DECL_ARTIFICIAL (parm) = 1;
198 /* All our artificial parms are implicitly `const'; they cannot be
199 assigned to. */
200 TREE_READONLY (parm) = 1;
201 return parm;
204 /* Constructors for types with virtual baseclasses need an "in-charge" flag
205 saying whether this constructor is responsible for initialization of
206 virtual baseclasses or not. All destructors also need this "in-charge"
207 flag, which additionally determines whether or not the destructor should
208 free the memory for the object.
210 This function adds the "in-charge" flag to member function FN if
211 appropriate. It is called from grokclassfn and tsubst.
212 FN must be either a constructor or destructor.
214 The in-charge flag follows the 'this' parameter, and is followed by the
215 VTT parm (if any), then the user-written parms. */
217 void
218 maybe_retrofit_in_chrg (tree fn)
220 tree basetype, arg_types, parms, parm, fntype;
222 /* If we've already add the in-charge parameter don't do it again. */
223 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
224 return;
226 /* When processing templates we can't know, in general, whether or
227 not we're going to have virtual baseclasses. */
228 if (processing_template_decl)
229 return;
231 /* We don't need an in-charge parameter for constructors that don't
232 have virtual bases. */
233 if (DECL_CONSTRUCTOR_P (fn)
234 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
235 return;
237 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
238 basetype = TREE_TYPE (TREE_VALUE (arg_types));
239 arg_types = TREE_CHAIN (arg_types);
241 parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
243 /* If this is a subobject constructor or destructor, our caller will
244 pass us a pointer to our VTT. */
245 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
247 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
249 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
250 TREE_CHAIN (parm) = parms;
251 parms = parm;
253 /* ...and then to TYPE_ARG_TYPES. */
254 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
256 DECL_HAS_VTT_PARM_P (fn) = 1;
259 /* Then add the in-charge parm (before the VTT parm). */
260 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
261 TREE_CHAIN (parm) = parms;
262 parms = parm;
263 arg_types = hash_tree_chain (integer_type_node, arg_types);
265 /* Insert our new parameter(s) into the list. */
266 TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
268 /* And rebuild the function type. */
269 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
270 arg_types);
271 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
272 fntype = build_exception_variant (fntype,
273 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
274 if (TYPE_ATTRIBUTES (TREE_TYPE (fn)))
275 fntype = (cp_build_type_attribute_variant
276 (fntype, TYPE_ATTRIBUTES (TREE_TYPE (fn))));
277 TREE_TYPE (fn) = fntype;
279 /* Now we've got the in-charge parameter. */
280 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
283 /* Classes overload their constituent function names automatically.
284 When a function name is declared in a record structure,
285 its name is changed to it overloaded name. Since names for
286 constructors and destructors can conflict, we place a leading
287 '$' for destructors.
289 CNAME is the name of the class we are grokking for.
291 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
293 FLAGS contains bits saying what's special about today's
294 arguments. DTOR_FLAG == DESTRUCTOR.
296 If FUNCTION is a destructor, then we must add the `auto-delete' field
297 as a second parameter. There is some hair associated with the fact
298 that we must "declare" this variable in the manner consistent with the
299 way the rest of the arguments were declared.
301 QUALS are the qualifiers for the this pointer. */
303 void
304 grokclassfn (tree ctype, tree function, enum overload_flags flags)
306 tree fn_name = DECL_NAME (function);
308 /* Even within an `extern "C"' block, members get C++ linkage. See
309 [dcl.link] for details. */
310 SET_DECL_LANGUAGE (function, lang_cplusplus);
312 if (fn_name == NULL_TREE)
314 error ("name missing for member function");
315 fn_name = get_identifier ("<anonymous>");
316 DECL_NAME (function) = fn_name;
319 DECL_CONTEXT (function) = ctype;
321 if (flags == DTOR_FLAG)
322 DECL_DESTRUCTOR_P (function) = 1;
324 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
325 maybe_retrofit_in_chrg (function);
328 /* Create an ARRAY_REF, checking for the user doing things backwards
329 along the way. */
331 tree
332 grok_array_decl (tree array_expr, tree index_exp)
334 tree type;
335 tree expr;
336 tree orig_array_expr = array_expr;
337 tree orig_index_exp = index_exp;
339 if (error_operand_p (array_expr) || error_operand_p (index_exp))
340 return error_mark_node;
342 if (processing_template_decl)
344 if (type_dependent_expression_p (array_expr)
345 || type_dependent_expression_p (index_exp))
346 return build_min_nt (ARRAY_REF, array_expr, index_exp,
347 NULL_TREE, NULL_TREE);
348 array_expr = build_non_dependent_expr (array_expr);
349 index_exp = build_non_dependent_expr (index_exp);
352 type = TREE_TYPE (array_expr);
353 gcc_assert (type);
354 type = non_reference (type);
356 /* If they have an `operator[]', use that. */
357 if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
358 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
359 array_expr, index_exp, NULL_TREE,
360 /*overloaded_p=*/NULL, tf_warning_or_error);
361 else
363 tree p1, p2, i1, i2;
365 /* Otherwise, create an ARRAY_REF for a pointer or array type.
366 It is a little-known fact that, if `a' is an array and `i' is
367 an int, you can write `i[a]', which means the same thing as
368 `a[i]'. */
369 if (TREE_CODE (type) == ARRAY_TYPE)
370 p1 = array_expr;
371 else
372 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
374 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
375 p2 = index_exp;
376 else
377 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
379 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
380 false);
381 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
382 false);
384 if ((p1 && i2) && (i1 && p2))
385 error ("ambiguous conversion for array subscript");
387 if (p1 && i2)
388 array_expr = p1, index_exp = i2;
389 else if (i1 && p2)
390 array_expr = p2, index_exp = i1;
391 else
393 error ("invalid types %<%T[%T]%> for array subscript",
394 type, TREE_TYPE (index_exp));
395 return error_mark_node;
398 if (array_expr == error_mark_node || index_exp == error_mark_node)
399 error ("ambiguous conversion for array subscript");
401 expr = build_array_ref (input_location, array_expr, index_exp);
403 if (processing_template_decl && expr != error_mark_node)
404 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
405 NULL_TREE, NULL_TREE);
406 return expr;
409 /* Given the cast expression EXP, checking out its validity. Either return
410 an error_mark_node if there was an unavoidable error, return a cast to
411 void for trying to delete a pointer w/ the value 0, or return the
412 call to delete. If DOING_VEC is true, we handle things differently
413 for doing an array delete.
414 Implements ARM $5.3.4. This is called from the parser. */
416 tree
417 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
419 tree t, type;
421 if (exp == error_mark_node)
422 return exp;
424 if (processing_template_decl)
426 t = build_min (DELETE_EXPR, void_type_node, exp, size);
427 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
428 DELETE_EXPR_USE_VEC (t) = doing_vec;
429 TREE_SIDE_EFFECTS (t) = 1;
430 return t;
433 /* An array can't have been allocated by new, so complain. */
434 if (TREE_CODE (exp) == VAR_DECL
435 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
436 warning (0, "deleting array %q#D", exp);
438 t = build_expr_type_conversion (WANT_POINTER, exp, true);
440 if (t == NULL_TREE || t == error_mark_node)
442 error ("type %q#T argument given to %<delete%>, expected pointer",
443 TREE_TYPE (exp));
444 return error_mark_node;
447 type = TREE_TYPE (t);
449 /* As of Valley Forge, you can delete a pointer to const. */
451 /* You can't delete functions. */
452 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
454 error ("cannot delete a function. Only pointer-to-objects are "
455 "valid arguments to %<delete%>");
456 return error_mark_node;
459 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
460 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
462 warning (0, "deleting %qT is undefined", type);
463 doing_vec = 0;
466 /* Deleting a pointer with the value zero is valid and has no effect. */
467 if (integer_zerop (t))
468 return build1 (NOP_EXPR, void_type_node, t);
470 if (doing_vec)
471 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
472 sfk_deleting_destructor,
473 use_global_delete);
474 else
475 return build_delete (type, t, sfk_deleting_destructor,
476 LOOKUP_NORMAL, use_global_delete);
479 /* Report an error if the indicated template declaration is not the
480 sort of thing that should be a member template. */
482 void
483 check_member_template (tree tmpl)
485 tree decl;
487 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
488 decl = DECL_TEMPLATE_RESULT (tmpl);
490 if (TREE_CODE (decl) == FUNCTION_DECL
491 || (TREE_CODE (decl) == TYPE_DECL
492 && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
494 /* The parser rejects template declarations in local classes. */
495 gcc_assert (!current_function_decl);
496 /* The parser rejects any use of virtual in a function template. */
497 gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
498 && DECL_VIRTUAL_P (decl)));
500 /* The debug-information generating code doesn't know what to do
501 with member templates. */
502 DECL_IGNORED_P (tmpl) = 1;
504 else
505 error ("template declaration of %q#D", decl);
508 /* Return true iff TYPE is a valid Java parameter or return type. */
510 static bool
511 acceptable_java_type (tree type)
513 if (type == error_mark_node)
514 return false;
516 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
517 return true;
518 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
520 type = TREE_TYPE (type);
521 if (TREE_CODE (type) == RECORD_TYPE)
523 tree args; int i;
524 if (! TYPE_FOR_JAVA (type))
525 return false;
526 if (! CLASSTYPE_TEMPLATE_INFO (type))
527 return true;
528 args = CLASSTYPE_TI_ARGS (type);
529 i = TREE_VEC_LENGTH (args);
530 while (--i >= 0)
532 type = TREE_VEC_ELT (args, i);
533 if (TREE_CODE (type) == POINTER_TYPE)
534 type = TREE_TYPE (type);
535 if (! TYPE_FOR_JAVA (type))
536 return false;
538 return true;
541 return false;
544 /* For a METHOD in a Java class CTYPE, return true if
545 the parameter and return types are valid Java types.
546 Otherwise, print appropriate error messages, and return false. */
548 bool
549 check_java_method (tree method)
551 bool jerr = false;
552 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
553 tree ret_type = TREE_TYPE (TREE_TYPE (method));
555 if (!acceptable_java_type (ret_type))
557 error ("Java method %qD has non-Java return type %qT",
558 method, ret_type);
559 jerr = true;
562 arg_types = TREE_CHAIN (arg_types);
563 if (DECL_HAS_IN_CHARGE_PARM_P (method))
564 arg_types = TREE_CHAIN (arg_types);
565 if (DECL_HAS_VTT_PARM_P (method))
566 arg_types = TREE_CHAIN (arg_types);
568 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
570 tree type = TREE_VALUE (arg_types);
571 if (!acceptable_java_type (type))
573 if (type != error_mark_node)
574 error ("Java method %qD has non-Java parameter type %qT",
575 method, type);
576 jerr = true;
579 return !jerr;
582 /* Sanity check: report error if this function FUNCTION is not
583 really a member of the class (CTYPE) it is supposed to belong to.
584 TEMPLATE_PARMS is used to specify the template parameters of a member
585 template passed as FUNCTION_DECL. If the member template is passed as a
586 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
587 from the declaration. If the function is not a function template, it
588 must be NULL.
589 It returns the original declaration for the function, NULL_TREE if
590 no declaration was found, error_mark_node if an error was emitted. */
592 tree
593 check_classfn (tree ctype, tree function, tree template_parms)
595 int ix;
596 bool is_template;
597 tree pushed_scope;
599 if (DECL_USE_TEMPLATE (function)
600 && !(TREE_CODE (function) == TEMPLATE_DECL
601 && DECL_TEMPLATE_SPECIALIZATION (function))
602 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
603 /* Since this is a specialization of a member template,
604 we're not going to find the declaration in the class.
605 For example, in:
607 struct S { template <typename T> void f(T); };
608 template <> void S::f(int);
610 we're not going to find `S::f(int)', but there's no
611 reason we should, either. We let our callers know we didn't
612 find the method, but we don't complain. */
613 return NULL_TREE;
615 /* Basic sanity check: for a template function, the template parameters
616 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
617 if (TREE_CODE (function) == TEMPLATE_DECL)
619 if (template_parms
620 && !comp_template_parms (template_parms,
621 DECL_TEMPLATE_PARMS (function)))
623 error ("template parameter lists provided don't match the "
624 "template parameters of %qD", function);
625 return error_mark_node;
627 template_parms = DECL_TEMPLATE_PARMS (function);
630 /* OK, is this a definition of a member template? */
631 is_template = (template_parms != NULL_TREE);
633 /* We must enter the scope here, because conversion operators are
634 named by target type, and type equivalence relies on typenames
635 resolving within the scope of CTYPE. */
636 pushed_scope = push_scope (ctype);
637 ix = class_method_index_for_fn (complete_type (ctype), function);
638 if (ix >= 0)
640 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
641 tree fndecls, fndecl = 0;
642 bool is_conv_op;
643 const char *format = NULL;
645 for (fndecls = VEC_index (tree, methods, ix);
646 fndecls; fndecls = OVL_NEXT (fndecls))
648 tree p1, p2;
650 fndecl = OVL_CURRENT (fndecls);
651 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
652 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
654 /* We cannot simply call decls_match because this doesn't
655 work for static member functions that are pretending to
656 be methods, and because the name may have been changed by
657 asm("new_name"). */
659 /* Get rid of the this parameter on functions that become
660 static. */
661 if (DECL_STATIC_FUNCTION_P (fndecl)
662 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
663 p1 = TREE_CHAIN (p1);
665 /* A member template definition only matches a member template
666 declaration. */
667 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
668 continue;
670 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
671 TREE_TYPE (TREE_TYPE (fndecl)))
672 && compparms (p1, p2)
673 && (!is_template
674 || comp_template_parms (template_parms,
675 DECL_TEMPLATE_PARMS (fndecl)))
676 && (DECL_TEMPLATE_SPECIALIZATION (function)
677 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
678 && (!DECL_TEMPLATE_SPECIALIZATION (function)
679 || (DECL_TI_TEMPLATE (function)
680 == DECL_TI_TEMPLATE (fndecl))))
681 break;
683 if (fndecls)
685 if (pushed_scope)
686 pop_scope (pushed_scope);
687 return OVL_CURRENT (fndecls);
690 error_at (DECL_SOURCE_LOCATION (function),
691 "prototype for %q#D does not match any in class %qT",
692 function, ctype);
693 is_conv_op = DECL_CONV_FN_P (fndecl);
695 if (is_conv_op)
696 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
697 fndecls = VEC_index (tree, methods, ix);
698 while (fndecls)
700 fndecl = OVL_CURRENT (fndecls);
701 fndecls = OVL_NEXT (fndecls);
703 if (!fndecls && is_conv_op)
705 if (VEC_length (tree, methods) > (size_t) ++ix)
707 fndecls = VEC_index (tree, methods, ix);
708 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
710 fndecls = NULL_TREE;
711 is_conv_op = false;
714 else
715 is_conv_op = false;
717 if (format)
718 format = " %+#D";
719 else if (fndecls)
720 format = N_("candidates are: %+#D");
721 else
722 format = N_("candidate is: %+#D");
723 error (format, fndecl);
726 else if (!COMPLETE_TYPE_P (ctype))
727 cxx_incomplete_type_error (function, ctype);
728 else
729 error ("no %q#D member function declared in class %qT",
730 function, ctype);
732 if (pushed_scope)
733 pop_scope (pushed_scope);
734 return error_mark_node;
737 /* DECL is a function with vague linkage. Remember it so that at the
738 end of the translation unit we can decide whether or not to emit
739 it. */
741 void
742 note_vague_linkage_fn (tree decl)
744 DECL_DEFER_OUTPUT (decl) = 1;
745 VEC_safe_push (tree, gc, deferred_fns, decl);
748 /* We have just processed the DECL, which is a static data member.
749 The other parameters are as for cp_finish_decl. */
751 void
752 finish_static_data_member_decl (tree decl,
753 tree init, bool init_const_expr_p,
754 tree asmspec_tree,
755 int flags)
757 DECL_CONTEXT (decl) = current_class_type;
759 /* We cannot call pushdecl here, because that would fill in the
760 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
761 the right thing, namely, to put this decl out straight away. */
763 if (! processing_template_decl)
764 VEC_safe_push (tree, gc, pending_statics, decl);
766 if (LOCAL_CLASS_P (current_class_type))
767 permerror (input_location, "local class %q#T shall not have static data member %q#D",
768 current_class_type, decl);
770 /* Static consts need not be initialized in the class definition. */
771 if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
773 static int explained = 0;
775 error ("initializer invalid for static member with constructor");
776 if (!explained)
778 error ("(an out of class initialization is required)");
779 explained = 1;
781 init = NULL_TREE;
784 DECL_INITIAL (decl) = init;
785 DECL_IN_AGGR_P (decl) = 1;
787 cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
790 /* DECLARATOR and DECLSPECS correspond to a class member. The other
791 parameters are as for cp_finish_decl. Return the DECL for the
792 class member declared. */
794 tree
795 grokfield (const cp_declarator *declarator,
796 cp_decl_specifier_seq *declspecs,
797 tree init, bool init_const_expr_p,
798 tree asmspec_tree,
799 tree attrlist)
801 tree value;
802 const char *asmspec = 0;
803 int flags = LOOKUP_ONLYCONVERTING;
804 tree name;
806 if (init
807 && TREE_CODE (init) == TREE_LIST
808 && TREE_VALUE (init) == error_mark_node
809 && TREE_CHAIN (init) == NULL_TREE)
810 init = NULL_TREE;
812 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
813 if (! value || error_operand_p (value))
814 /* friend or constructor went bad. */
815 return error_mark_node;
817 if (TREE_CODE (value) == TYPE_DECL && init)
819 error ("typedef %qD is initialized (use decltype instead)", value);
820 init = NULL_TREE;
823 /* Pass friendly classes back. */
824 if (value == void_type_node)
825 return value;
827 /* Pass friend decls back. */
828 if ((TREE_CODE (value) == FUNCTION_DECL
829 || TREE_CODE (value) == TEMPLATE_DECL)
830 && DECL_CONTEXT (value) != current_class_type)
831 return value;
833 name = DECL_NAME (value);
835 if (name != NULL_TREE)
837 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
839 error ("explicit template argument list not allowed");
840 return error_mark_node;
843 if (IDENTIFIER_POINTER (name)[0] == '_'
844 && ! strcmp (IDENTIFIER_POINTER (name), "_vptr"))
845 error ("member %qD conflicts with virtual function table field name",
846 value);
849 /* Stash away type declarations. */
850 if (TREE_CODE (value) == TYPE_DECL)
852 DECL_NONLOCAL (value) = 1;
853 DECL_CONTEXT (value) = current_class_type;
855 if (processing_template_decl)
856 value = push_template_decl (value);
858 if (attrlist)
860 int attrflags = 0;
862 /* If this is a typedef that names the class for linkage purposes
863 (7.1.3p8), apply any attributes directly to the type. */
864 if (TAGGED_TYPE_P (TREE_TYPE (value))
865 && value == TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))))
866 attrflags = ATTR_FLAG_TYPE_IN_PLACE;
868 cplus_decl_attributes (&value, attrlist, attrflags);
871 if (declspecs->specs[(int)ds_typedef]
872 && TREE_TYPE (value) != error_mark_node
873 && TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (value))) != value)
874 cp_set_underlying_type (value);
876 return value;
879 if (DECL_IN_AGGR_P (value))
881 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
882 return void_type_node;
885 if (asmspec_tree && asmspec_tree != error_mark_node)
886 asmspec = TREE_STRING_POINTER (asmspec_tree);
888 if (init)
890 if (TREE_CODE (value) == FUNCTION_DECL)
892 /* Initializers for functions are rejected early in the parser.
893 If we get here, it must be a pure specifier for a method. */
894 if (init == ridpointers[(int)RID_DELETE])
896 DECL_DELETED_FN (value) = 1;
897 DECL_DECLARED_INLINE_P (value) = 1;
898 DECL_INITIAL (value) = error_mark_node;
900 else if (init == ridpointers[(int)RID_DEFAULT])
902 if (defaultable_fn_check (value))
904 DECL_DEFAULTED_FN (value) = 1;
905 DECL_INITIALIZED_IN_CLASS_P (value) = 1;
906 DECL_DECLARED_INLINE_P (value) = 1;
909 else if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
911 gcc_assert (error_operand_p (init) || integer_zerop (init));
912 DECL_PURE_VIRTUAL_P (value) = 1;
914 else
916 gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
917 error ("initializer specified for static member function %qD",
918 value);
921 else if (pedantic && TREE_CODE (value) != VAR_DECL)
922 /* Already complained in grokdeclarator. */
923 init = NULL_TREE;
924 else if (!processing_template_decl)
926 if (TREE_CODE (init) == CONSTRUCTOR)
927 init = digest_init (TREE_TYPE (value), init);
928 else
929 init = integral_constant_value (init);
931 if (init != error_mark_node && !TREE_CONSTANT (init))
933 /* We can allow references to things that are effectively
934 static, since references are initialized with the
935 address. */
936 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
937 || (TREE_STATIC (init) == 0
938 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
940 error ("field initializer is not constant");
941 init = error_mark_node;
947 if (processing_template_decl
948 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
950 value = push_template_decl (value);
951 if (error_operand_p (value))
952 return error_mark_node;
955 if (attrlist)
956 cplus_decl_attributes (&value, attrlist, 0);
958 switch (TREE_CODE (value))
960 case VAR_DECL:
961 finish_static_data_member_decl (value, init, init_const_expr_p,
962 asmspec_tree, flags);
963 return value;
965 case FIELD_DECL:
966 if (asmspec)
967 error ("%<asm%> specifiers are not permitted on non-static data members");
968 if (DECL_INITIAL (value) == error_mark_node)
969 init = error_mark_node;
970 cp_finish_decl (value, init, /*init_const_expr_p=*/false,
971 NULL_TREE, flags);
972 DECL_INITIAL (value) = init;
973 DECL_IN_AGGR_P (value) = 1;
974 return value;
976 case FUNCTION_DECL:
977 if (asmspec)
978 set_user_assembler_name (value, asmspec);
980 cp_finish_decl (value,
981 /*init=*/NULL_TREE,
982 /*init_const_expr_p=*/false,
983 asmspec_tree, flags);
985 /* Pass friends back this way. */
986 if (DECL_FRIEND_P (value))
987 return void_type_node;
989 DECL_IN_AGGR_P (value) = 1;
990 return value;
992 default:
993 gcc_unreachable ();
995 return NULL_TREE;
998 /* Like `grokfield', but for bitfields.
999 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
1001 tree
1002 grokbitfield (const cp_declarator *declarator,
1003 cp_decl_specifier_seq *declspecs, tree width,
1004 tree attrlist)
1006 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, &attrlist);
1008 if (value == error_mark_node)
1009 return NULL_TREE; /* friends went bad. */
1011 /* Pass friendly classes back. */
1012 if (TREE_CODE (value) == VOID_TYPE)
1013 return void_type_node;
1015 if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (value))
1016 && (POINTER_TYPE_P (value)
1017 || !dependent_type_p (TREE_TYPE (value))))
1019 error ("bit-field %qD with non-integral type", value);
1020 return error_mark_node;
1023 if (TREE_CODE (value) == TYPE_DECL)
1025 error ("cannot declare %qD to be a bit-field type", value);
1026 return NULL_TREE;
1029 /* Usually, finish_struct_1 catches bitfields with invalid types.
1030 But, in the case of bitfields with function type, we confuse
1031 ourselves into thinking they are member functions, so we must
1032 check here. */
1033 if (TREE_CODE (value) == FUNCTION_DECL)
1035 error ("cannot declare bit-field %qD with function type",
1036 DECL_NAME (value));
1037 return NULL_TREE;
1040 if (DECL_IN_AGGR_P (value))
1042 error ("%qD is already defined in the class %qT", value,
1043 DECL_CONTEXT (value));
1044 return void_type_node;
1047 if (TREE_STATIC (value))
1049 error ("static member %qD cannot be a bit-field", value);
1050 return NULL_TREE;
1052 cp_finish_decl (value, NULL_TREE, false, NULL_TREE, 0);
1054 if (width != error_mark_node)
1056 constant_expression_warning (width);
1057 DECL_INITIAL (value) = width;
1058 SET_DECL_C_BIT_FIELD (value);
1061 DECL_IN_AGGR_P (value) = 1;
1063 if (attrlist)
1064 cplus_decl_attributes (&value, attrlist, /*flags=*/0);
1066 return value;
1070 /* Returns true iff ATTR is an attribute which needs to be applied at
1071 instantiation time rather than template definition time. */
1073 static bool
1074 is_late_template_attribute (tree attr, tree decl)
1076 tree name = TREE_PURPOSE (attr);
1077 tree args = TREE_VALUE (attr);
1078 const struct attribute_spec *spec = lookup_attribute_spec (name);
1079 tree arg;
1081 if (!spec)
1082 /* Unknown attribute. */
1083 return false;
1085 /* Attribute weak handling wants to write out assembly right away. */
1086 if (is_attribute_p ("weak", name))
1087 return true;
1089 /* If any of the arguments are dependent expressions, we can't evaluate
1090 the attribute until instantiation time. */
1091 for (arg = args; arg; arg = TREE_CHAIN (arg))
1093 tree t = TREE_VALUE (arg);
1095 /* If the first attribute argument is an identifier, only consider
1096 second and following arguments. Attributes like mode, format,
1097 cleanup and several target specific attributes aren't late
1098 just because they have an IDENTIFIER_NODE as first argument. */
1099 if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1100 continue;
1102 if (value_dependent_expression_p (t)
1103 || type_dependent_expression_p (t))
1104 return true;
1107 if (TREE_CODE (decl) == TYPE_DECL
1108 || TYPE_P (decl)
1109 || spec->type_required)
1111 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1113 /* We can't apply any attributes to a completely unknown type until
1114 instantiation time. */
1115 enum tree_code code = TREE_CODE (type);
1116 if (code == TEMPLATE_TYPE_PARM
1117 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1118 || code == TYPENAME_TYPE)
1119 return true;
1120 /* Also defer most attributes on dependent types. This is not
1121 necessary in all cases, but is the better default. */
1122 else if (dependent_type_p (type)
1123 /* But attribute visibility specifically works on
1124 templates. */
1125 && !is_attribute_p ("visibility", name))
1126 return true;
1127 else
1128 return false;
1130 else
1131 return false;
1134 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1135 applied at instantiation time and return them. If IS_DEPENDENT is true,
1136 the declaration itself is dependent, so all attributes should be applied
1137 at instantiation time. */
1139 static tree
1140 splice_template_attributes (tree *attr_p, tree decl)
1142 tree *p = attr_p;
1143 tree late_attrs = NULL_TREE;
1144 tree *q = &late_attrs;
1146 if (!p)
1147 return NULL_TREE;
1149 for (; *p; )
1151 if (is_late_template_attribute (*p, decl))
1153 ATTR_IS_DEPENDENT (*p) = 1;
1154 *q = *p;
1155 *p = TREE_CHAIN (*p);
1156 q = &TREE_CHAIN (*q);
1157 *q = NULL_TREE;
1159 else
1160 p = &TREE_CHAIN (*p);
1163 return late_attrs;
1166 /* Remove any late attributes from the list in ATTR_P and attach them to
1167 DECL_P. */
1169 static void
1170 save_template_attributes (tree *attr_p, tree *decl_p)
1172 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1173 tree *q;
1174 tree old_attrs = NULL_TREE;
1176 if (!late_attrs)
1177 return;
1179 if (DECL_P (*decl_p))
1180 q = &DECL_ATTRIBUTES (*decl_p);
1181 else
1182 q = &TYPE_ATTRIBUTES (*decl_p);
1184 old_attrs = *q;
1186 /* Place the late attributes at the beginning of the attribute
1187 list. */
1188 TREE_CHAIN (tree_last (late_attrs)) = *q;
1189 *q = late_attrs;
1191 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1193 /* We've added new attributes directly to the main variant, so
1194 now we need to update all of the other variants to include
1195 these new attributes. */
1196 tree variant;
1197 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1198 variant = TYPE_NEXT_VARIANT (variant))
1200 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1201 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1206 /* Like reconstruct_complex_type, but handle also template trees. */
1208 tree
1209 cp_reconstruct_complex_type (tree type, tree bottom)
1211 tree inner, outer;
1213 if (TREE_CODE (type) == POINTER_TYPE)
1215 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1216 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1217 TYPE_REF_CAN_ALIAS_ALL (type));
1219 else if (TREE_CODE (type) == REFERENCE_TYPE)
1221 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1222 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1223 TYPE_REF_CAN_ALIAS_ALL (type));
1225 else if (TREE_CODE (type) == ARRAY_TYPE)
1227 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1228 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1229 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1230 element type qualification will be handled by the recursive
1231 cp_reconstruct_complex_type call and cp_build_qualified_type
1232 for ARRAY_TYPEs changes the element type. */
1233 return outer;
1235 else if (TREE_CODE (type) == FUNCTION_TYPE)
1237 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1238 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1240 else if (TREE_CODE (type) == METHOD_TYPE)
1242 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1243 /* The build_method_type_directly() routine prepends 'this' to argument list,
1244 so we must compensate by getting rid of it. */
1245 outer
1246 = build_method_type_directly
1247 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1248 inner,
1249 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1251 else if (TREE_CODE (type) == OFFSET_TYPE)
1253 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1254 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1256 else
1257 return bottom;
1259 if (TYPE_ATTRIBUTES (type))
1260 outer = cp_build_type_attribute_variant (outer, TYPE_ATTRIBUTES (type));
1261 return cp_build_qualified_type (outer, TYPE_QUALS (type));
1264 /* Like decl_attributes, but handle C++ complexity. */
1266 void
1267 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1269 if (*decl == NULL_TREE || *decl == void_type_node
1270 || *decl == error_mark_node
1271 || attributes == NULL_TREE)
1272 return;
1274 if (processing_template_decl)
1276 if (check_for_bare_parameter_packs (attributes))
1277 return;
1279 save_template_attributes (&attributes, decl);
1280 if (attributes == NULL_TREE)
1281 return;
1284 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1285 decl = &DECL_TEMPLATE_RESULT (*decl);
1287 decl_attributes (decl, attributes, flags);
1289 if (TREE_CODE (*decl) == TYPE_DECL)
1290 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1293 /* Walks through the namespace- or function-scope anonymous union
1294 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1295 Returns one of the fields for use in the mangled name. */
1297 static tree
1298 build_anon_union_vars (tree type, tree object)
1300 tree main_decl = NULL_TREE;
1301 tree field;
1303 /* Rather than write the code to handle the non-union case,
1304 just give an error. */
1305 if (TREE_CODE (type) != UNION_TYPE)
1306 error ("anonymous struct not inside named type");
1308 for (field = TYPE_FIELDS (type);
1309 field != NULL_TREE;
1310 field = TREE_CHAIN (field))
1312 tree decl;
1313 tree ref;
1315 if (DECL_ARTIFICIAL (field))
1316 continue;
1317 if (TREE_CODE (field) != FIELD_DECL)
1319 permerror (input_location, "%q+#D invalid; an anonymous union can only "
1320 "have non-static data members", field);
1321 continue;
1324 if (TREE_PRIVATE (field))
1325 permerror (input_location, "private member %q+#D in anonymous union", field);
1326 else if (TREE_PROTECTED (field))
1327 permerror (input_location, "protected member %q+#D in anonymous union", field);
1329 if (processing_template_decl)
1330 ref = build_min_nt (COMPONENT_REF, object,
1331 DECL_NAME (field), NULL_TREE);
1332 else
1333 ref = build_class_member_access_expr (object, field, NULL_TREE,
1334 false, tf_warning_or_error);
1336 if (DECL_NAME (field))
1338 tree base;
1340 decl = build_decl (input_location,
1341 VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1342 DECL_ANON_UNION_VAR_P (decl) = 1;
1343 DECL_ARTIFICIAL (decl) = 1;
1345 base = get_base_address (object);
1346 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1347 TREE_STATIC (decl) = TREE_STATIC (base);
1348 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1350 SET_DECL_VALUE_EXPR (decl, ref);
1351 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1353 decl = pushdecl (decl);
1355 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1356 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1357 else
1358 decl = 0;
1360 if (main_decl == NULL_TREE)
1361 main_decl = decl;
1364 return main_decl;
1367 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1368 anonymous union, then all members must be laid out together. PUBLIC_P
1369 is nonzero if this union is not declared static. */
1371 void
1372 finish_anon_union (tree anon_union_decl)
1374 tree type;
1375 tree main_decl;
1376 bool public_p;
1378 if (anon_union_decl == error_mark_node)
1379 return;
1381 type = TREE_TYPE (anon_union_decl);
1382 public_p = TREE_PUBLIC (anon_union_decl);
1384 /* The VAR_DECL's context is the same as the TYPE's context. */
1385 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1387 if (TYPE_FIELDS (type) == NULL_TREE)
1388 return;
1390 if (public_p)
1392 error ("namespace-scope anonymous aggregates must be static");
1393 return;
1396 main_decl = build_anon_union_vars (type, anon_union_decl);
1397 if (main_decl == error_mark_node)
1398 return;
1399 if (main_decl == NULL_TREE)
1401 warning (0, "anonymous union with no members");
1402 return;
1405 if (!processing_template_decl)
1407 /* Use main_decl to set the mangled name. */
1408 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1409 maybe_commonize_var (anon_union_decl);
1410 mangle_decl (anon_union_decl);
1411 DECL_NAME (anon_union_decl) = NULL_TREE;
1414 pushdecl (anon_union_decl);
1415 if (building_stmt_tree ()
1416 && at_function_scope_p ())
1417 add_decl_expr (anon_union_decl);
1418 else if (!processing_template_decl)
1419 rest_of_decl_compilation (anon_union_decl,
1420 toplevel_bindings_p (), at_eof);
1423 /* Auxiliary functions to make type signatures for
1424 `operator new' and `operator delete' correspond to
1425 what compiler will be expecting. */
1427 tree
1428 coerce_new_type (tree type)
1430 int e = 0;
1431 tree args = TYPE_ARG_TYPES (type);
1433 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1435 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1437 e = 1;
1438 error ("%<operator new%> must return type %qT", ptr_type_node);
1441 if (args && args != void_list_node)
1443 if (TREE_PURPOSE (args))
1445 /* [basic.stc.dynamic.allocation]
1447 The first parameter shall not have an associated default
1448 argument. */
1449 error ("the first parameter of %<operator new%> cannot "
1450 "have a default argument");
1451 /* Throw away the default argument. */
1452 TREE_PURPOSE (args) = NULL_TREE;
1455 if (!same_type_p (TREE_VALUE (args), size_type_node))
1457 e = 2;
1458 args = TREE_CHAIN (args);
1461 else
1462 e = 2;
1464 if (e == 2)
1465 permerror (input_location, "%<operator new%> takes type %<size_t%> (%qT) "
1466 "as first parameter", size_type_node);
1468 switch (e)
1470 case 2:
1471 args = tree_cons (NULL_TREE, size_type_node, args);
1472 /* Fall through. */
1473 case 1:
1474 type = build_exception_variant
1475 (build_function_type (ptr_type_node, args),
1476 TYPE_RAISES_EXCEPTIONS (type));
1477 /* Fall through. */
1478 default:;
1480 return type;
1483 tree
1484 coerce_delete_type (tree type)
1486 int e = 0;
1487 tree args = TYPE_ARG_TYPES (type);
1489 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1491 if (!same_type_p (TREE_TYPE (type), void_type_node))
1493 e = 1;
1494 error ("%<operator delete%> must return type %qT", void_type_node);
1497 if (!args || args == void_list_node
1498 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1500 e = 2;
1501 if (args && args != void_list_node)
1502 args = TREE_CHAIN (args);
1503 error ("%<operator delete%> takes type %qT as first parameter",
1504 ptr_type_node);
1506 switch (e)
1508 case 2:
1509 args = tree_cons (NULL_TREE, ptr_type_node, args);
1510 /* Fall through. */
1511 case 1:
1512 type = build_exception_variant
1513 (build_function_type (void_type_node, args),
1514 TYPE_RAISES_EXCEPTIONS (type));
1515 /* Fall through. */
1516 default:;
1519 return type;
1522 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1523 and mark them as needed. */
1525 static void
1526 mark_vtable_entries (tree decl)
1528 tree fnaddr;
1529 unsigned HOST_WIDE_INT idx;
1531 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1532 idx, fnaddr)
1534 tree fn;
1536 STRIP_NOPS (fnaddr);
1538 if (TREE_CODE (fnaddr) != ADDR_EXPR
1539 && TREE_CODE (fnaddr) != FDESC_EXPR)
1540 /* This entry is an offset: a virtual base class offset, a
1541 virtual call offset, an RTTI offset, etc. */
1542 continue;
1544 fn = TREE_OPERAND (fnaddr, 0);
1545 TREE_ADDRESSABLE (fn) = 1;
1546 /* When we don't have vcall offsets, we output thunks whenever
1547 we output the vtables that contain them. With vcall offsets,
1548 we know all the thunks we'll need when we emit a virtual
1549 function, so we emit the thunks there instead. */
1550 if (DECL_THUNK_P (fn))
1551 use_thunk (fn, /*emit_p=*/0);
1552 mark_used (fn);
1556 /* Set DECL up to have the closest approximation of "initialized common"
1557 linkage available. */
1559 void
1560 comdat_linkage (tree decl)
1562 if (flag_weak)
1563 make_decl_one_only (decl, cxx_comdat_group (decl));
1564 else if (TREE_CODE (decl) == FUNCTION_DECL
1565 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1566 /* We can just emit function and compiler-generated variables
1567 statically; having multiple copies is (for the most part) only
1568 a waste of space.
1570 There are two correctness issues, however: the address of a
1571 template instantiation with external linkage should be the
1572 same, independent of what translation unit asks for the
1573 address, and this will not hold when we emit multiple copies of
1574 the function. However, there's little else we can do.
1576 Also, by default, the typeinfo implementation assumes that
1577 there will be only one copy of the string used as the name for
1578 each type. Therefore, if weak symbols are unavailable, the
1579 run-time library should perform a more conservative check; it
1580 should perform a string comparison, rather than an address
1581 comparison. */
1582 TREE_PUBLIC (decl) = 0;
1583 else
1585 /* Static data member template instantiations, however, cannot
1586 have multiple copies. */
1587 if (DECL_INITIAL (decl) == 0
1588 || DECL_INITIAL (decl) == error_mark_node)
1589 DECL_COMMON (decl) = 1;
1590 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1592 DECL_COMMON (decl) = 1;
1593 DECL_INITIAL (decl) = error_mark_node;
1595 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1597 /* We can't do anything useful; leave vars for explicit
1598 instantiation. */
1599 DECL_EXTERNAL (decl) = 1;
1600 DECL_NOT_REALLY_EXTERN (decl) = 0;
1604 DECL_COMDAT (decl) = 1;
1607 /* For win32 we also want to put explicit instantiations in
1608 linkonce sections, so that they will be merged with implicit
1609 instantiations; otherwise we get duplicate symbol errors.
1610 For Darwin we do not want explicit instantiations to be
1611 linkonce. */
1613 void
1614 maybe_make_one_only (tree decl)
1616 /* We used to say that this was not necessary on targets that support weak
1617 symbols, because the implicit instantiations will defer to the explicit
1618 one. However, that's not actually the case in SVR4; a strong definition
1619 after a weak one is an error. Also, not making explicit
1620 instantiations one_only means that we can end up with two copies of
1621 some template instantiations. */
1622 if (! flag_weak)
1623 return;
1625 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1626 we can get away with not emitting them if they aren't used. We need
1627 to for variables so that cp_finish_decl will update their linkage,
1628 because their DECL_INITIAL may not have been set properly yet. */
1630 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1631 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1632 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1634 make_decl_one_only (decl, cxx_comdat_group (decl));
1636 if (TREE_CODE (decl) == VAR_DECL)
1638 DECL_COMDAT (decl) = 1;
1639 /* Mark it needed so we don't forget to emit it. */
1640 mark_decl_referenced (decl);
1645 /* Returns true iff DECL, a FUNCTION_DECL or VAR_DECL, has vague linkage.
1646 This predicate will give the right answer during parsing of the
1647 function, which other tests may not. */
1649 bool
1650 vague_linkage_p (tree decl)
1652 /* Unfortunately, import_export_decl has not always been called
1653 before the function is processed, so we cannot simply check
1654 DECL_COMDAT. */
1655 return (DECL_COMDAT (decl)
1656 || (((TREE_CODE (decl) == FUNCTION_DECL
1657 && DECL_DECLARED_INLINE_P (decl))
1658 || DECL_TEMPLATE_INSTANTIATION (decl))
1659 && TREE_PUBLIC (decl)));
1662 /* Determine whether or not we want to specifically import or export CTYPE,
1663 using various heuristics. */
1665 static void
1666 import_export_class (tree ctype)
1668 /* -1 for imported, 1 for exported. */
1669 int import_export = 0;
1671 /* It only makes sense to call this function at EOF. The reason is
1672 that this function looks at whether or not the first non-inline
1673 non-abstract virtual member function has been defined in this
1674 translation unit. But, we can't possibly know that until we've
1675 seen the entire translation unit. */
1676 gcc_assert (at_eof);
1678 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1679 return;
1681 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1682 we will have CLASSTYPE_INTERFACE_ONLY set but not
1683 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1684 heuristic because someone will supply a #pragma implementation
1685 elsewhere, and deducing it here would produce a conflict. */
1686 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1687 return;
1689 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1690 import_export = -1;
1691 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1692 import_export = 1;
1693 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1694 && !flag_implicit_templates)
1695 /* For a template class, without -fimplicit-templates, check the
1696 repository. If the virtual table is assigned to this
1697 translation unit, then export the class; otherwise, import
1698 it. */
1699 import_export = repo_export_class_p (ctype) ? 1 : -1;
1700 else if (TYPE_POLYMORPHIC_P (ctype))
1702 /* The ABI specifies that the virtual table and associated
1703 information are emitted with the key method, if any. */
1704 tree method = CLASSTYPE_KEY_METHOD (ctype);
1705 /* If weak symbol support is not available, then we must be
1706 careful not to emit the vtable when the key function is
1707 inline. An inline function can be defined in multiple
1708 translation units. If we were to emit the vtable in each
1709 translation unit containing a definition, we would get
1710 multiple definition errors at link-time. */
1711 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1712 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1715 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1716 a definition anywhere else. */
1717 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1718 import_export = 0;
1720 /* Allow back ends the chance to overrule the decision. */
1721 if (targetm.cxx.import_export_class)
1722 import_export = targetm.cxx.import_export_class (ctype, import_export);
1724 if (import_export)
1726 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1727 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1731 /* Return true if VAR has already been provided to the back end; in that
1732 case VAR should not be modified further by the front end. */
1733 static bool
1734 var_finalized_p (tree var)
1736 return varpool_node (var)->finalized;
1739 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1740 must be emitted in this translation unit. Mark it as such. */
1742 void
1743 mark_needed (tree decl)
1745 /* It's possible that we no longer need to set
1746 TREE_SYMBOL_REFERENCED here directly, but doing so is
1747 harmless. */
1748 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1749 mark_decl_referenced (decl);
1752 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1753 returns true if a definition of this entity should be provided in
1754 this object file. Callers use this function to determine whether
1755 or not to let the back end know that a definition of DECL is
1756 available in this translation unit. */
1758 bool
1759 decl_needed_p (tree decl)
1761 gcc_assert (TREE_CODE (decl) == VAR_DECL
1762 || TREE_CODE (decl) == FUNCTION_DECL);
1763 /* This function should only be called at the end of the translation
1764 unit. We cannot be sure of whether or not something will be
1765 COMDAT until that point. */
1766 gcc_assert (at_eof);
1768 /* All entities with external linkage that are not COMDAT should be
1769 emitted; they may be referred to from other object files. */
1770 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1771 return true;
1772 /* If this entity was used, let the back end see it; it will decide
1773 whether or not to emit it into the object file. */
1774 if (TREE_USED (decl)
1775 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1776 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1777 return true;
1778 /* Functions marked "dllexport" must be emitted so that they are
1779 visible to other DLLs. */
1780 if (lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))
1781 return true;
1782 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1783 reference to DECL might cause it to be emitted later. */
1784 return false;
1787 /* If necessary, write out the vtables for the dynamic class CTYPE.
1788 Returns true if any vtables were emitted. */
1790 static bool
1791 maybe_emit_vtables (tree ctype)
1793 tree vtbl;
1794 tree primary_vtbl;
1795 int needed = 0;
1797 /* If the vtables for this class have already been emitted there is
1798 nothing more to do. */
1799 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1800 if (var_finalized_p (primary_vtbl))
1801 return false;
1802 /* Ignore dummy vtables made by get_vtable_decl. */
1803 if (TREE_TYPE (primary_vtbl) == void_type_node)
1804 return false;
1806 /* On some targets, we cannot determine the key method until the end
1807 of the translation unit -- which is when this function is
1808 called. */
1809 if (!targetm.cxx.key_method_may_be_inline ())
1810 determine_key_method (ctype);
1812 /* See if any of the vtables are needed. */
1813 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1815 import_export_decl (vtbl);
1816 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1817 needed = 1;
1819 if (!needed)
1821 /* If the references to this class' vtables are optimized away,
1822 still emit the appropriate debugging information. See
1823 dfs_debug_mark. */
1824 if (DECL_COMDAT (primary_vtbl)
1825 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1826 note_debug_info_needed (ctype);
1827 return false;
1830 /* The ABI requires that we emit all of the vtables if we emit any
1831 of them. */
1832 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1834 /* Mark entities references from the virtual table as used. */
1835 mark_vtable_entries (vtbl);
1837 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1839 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl), LOOKUP_NORMAL);
1841 /* It had better be all done at compile-time. */
1842 gcc_assert (!expr);
1845 /* Write it out. */
1846 DECL_EXTERNAL (vtbl) = 0;
1847 rest_of_decl_compilation (vtbl, 1, 1);
1849 /* Because we're only doing syntax-checking, we'll never end up
1850 actually marking the variable as written. */
1851 if (flag_syntax_only)
1852 TREE_ASM_WRITTEN (vtbl) = 1;
1855 /* Since we're writing out the vtable here, also write the debug
1856 info. */
1857 note_debug_info_needed (ctype);
1859 return true;
1862 /* A special return value from type_visibility meaning internal
1863 linkage. */
1865 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1867 /* walk_tree helper function for type_visibility. */
1869 static tree
1870 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1872 int *vis_p = (int *)data;
1873 if (! TYPE_P (*tp))
1875 *walk_subtrees = 0;
1877 else if (CLASS_TYPE_P (*tp))
1879 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1881 *vis_p = VISIBILITY_ANON;
1882 return *tp;
1884 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1885 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1887 return NULL;
1890 /* Returns the visibility of TYPE, which is the minimum visibility of its
1891 component types. */
1893 static int
1894 type_visibility (tree type)
1896 int vis = VISIBILITY_DEFAULT;
1897 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1898 return vis;
1901 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1902 specified (or if VISIBILITY is static). */
1904 static bool
1905 constrain_visibility (tree decl, int visibility)
1907 if (visibility == VISIBILITY_ANON)
1909 /* extern "C" declarations aren't affected by the anonymous
1910 namespace. */
1911 if (!DECL_EXTERN_C_P (decl))
1913 TREE_PUBLIC (decl) = 0;
1914 DECL_WEAK (decl) = 0;
1915 DECL_COMMON (decl) = 0;
1916 DECL_COMDAT_GROUP (decl) = NULL_TREE;
1917 DECL_INTERFACE_KNOWN (decl) = 1;
1918 if (DECL_LANG_SPECIFIC (decl))
1919 DECL_NOT_REALLY_EXTERN (decl) = 1;
1922 else if (visibility > DECL_VISIBILITY (decl)
1923 && !DECL_VISIBILITY_SPECIFIED (decl))
1925 DECL_VISIBILITY (decl) = (enum symbol_visibility) visibility;
1926 return true;
1928 return false;
1931 /* Constrain the visibility of DECL based on the visibility of its template
1932 arguments. */
1934 static void
1935 constrain_visibility_for_template (tree decl, tree targs)
1937 /* If this is a template instantiation, check the innermost
1938 template args for visibility constraints. The outer template
1939 args are covered by the class check. */
1940 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1941 int i;
1942 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1944 int vis = 0;
1946 tree arg = TREE_VEC_ELT (args, i-1);
1947 if (TYPE_P (arg))
1948 vis = type_visibility (arg);
1949 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1951 STRIP_NOPS (arg);
1952 if (TREE_CODE (arg) == ADDR_EXPR)
1953 arg = TREE_OPERAND (arg, 0);
1954 if (TREE_CODE (arg) == VAR_DECL
1955 || TREE_CODE (arg) == FUNCTION_DECL)
1957 if (! TREE_PUBLIC (arg))
1958 vis = VISIBILITY_ANON;
1959 else
1960 vis = DECL_VISIBILITY (arg);
1963 if (vis)
1964 constrain_visibility (decl, vis);
1968 /* Like c_determine_visibility, but with additional C++-specific
1969 behavior.
1971 Function-scope entities can rely on the function's visibility because
1972 it is set in start_preparsed_function.
1974 Class-scope entities cannot rely on the class's visibility until the end
1975 of the enclosing class definition.
1977 Note that because namespaces have multiple independent definitions,
1978 namespace visibility is handled elsewhere using the #pragma visibility
1979 machinery rather than by decorating the namespace declaration.
1981 The goal is for constraints from the type to give a diagnostic, and
1982 other constraints to be applied silently. */
1984 void
1985 determine_visibility (tree decl)
1987 tree class_type = NULL_TREE;
1988 bool use_template;
1989 bool orig_visibility_specified;
1990 enum symbol_visibility orig_visibility;
1992 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
1994 /* Only relevant for names with external linkage. */
1995 if (!TREE_PUBLIC (decl))
1996 return;
1998 /* Cloned constructors and destructors get the same visibility as
1999 the underlying function. That should be set up in
2000 maybe_clone_body. */
2001 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
2003 orig_visibility_specified = DECL_VISIBILITY_SPECIFIED (decl);
2004 orig_visibility = DECL_VISIBILITY (decl);
2006 if (TREE_CODE (decl) == TYPE_DECL)
2008 if (CLASS_TYPE_P (TREE_TYPE (decl)))
2009 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
2010 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
2011 use_template = 1;
2012 else
2013 use_template = 0;
2015 else if (DECL_LANG_SPECIFIC (decl))
2016 use_template = DECL_USE_TEMPLATE (decl);
2017 else
2018 use_template = 0;
2020 /* If DECL is a member of a class, visibility specifiers on the
2021 class can influence the visibility of the DECL. */
2022 if (DECL_CLASS_SCOPE_P (decl))
2023 class_type = DECL_CONTEXT (decl);
2024 else
2026 /* Not a class member. */
2028 /* Virtual tables have DECL_CONTEXT set to their associated class,
2029 so they are automatically handled above. */
2030 gcc_assert (TREE_CODE (decl) != VAR_DECL
2031 || !DECL_VTABLE_OR_VTT_P (decl));
2033 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
2035 /* Local statics and classes get the visibility of their
2036 containing function by default, except that
2037 -fvisibility-inlines-hidden doesn't affect them. */
2038 tree fn = DECL_CONTEXT (decl);
2039 if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
2041 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
2042 DECL_VISIBILITY_SPECIFIED (decl) =
2043 DECL_VISIBILITY_SPECIFIED (fn);
2045 else
2046 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
2048 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
2049 but have no TEMPLATE_INFO, so don't try to check it. */
2050 use_template = 0;
2052 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
2053 && flag_visibility_ms_compat)
2055 /* Under -fvisibility-ms-compat, types are visible by default,
2056 even though their contents aren't. */
2057 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
2058 int underlying_vis = type_visibility (underlying_type);
2059 if (underlying_vis == VISIBILITY_ANON
2060 || CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type))
2061 constrain_visibility (decl, underlying_vis);
2062 else
2063 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
2065 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2067 /* tinfo visibility is based on the type it's for. */
2068 constrain_visibility
2069 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
2071 /* Give the target a chance to override the visibility associated
2072 with DECL. */
2073 if (TREE_PUBLIC (decl)
2074 && !DECL_REALLY_EXTERN (decl)
2075 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
2076 && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
2077 targetm.cxx.determine_class_data_visibility (decl);
2079 else if (use_template)
2080 /* Template instantiations and specializations get visibility based
2081 on their template unless they override it with an attribute. */;
2082 else if (! DECL_VISIBILITY_SPECIFIED (decl))
2084 /* Set default visibility to whatever the user supplied with
2085 #pragma GCC visibility or a namespace visibility attribute. */
2086 DECL_VISIBILITY (decl) = default_visibility;
2087 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2091 if (use_template)
2093 /* If the specialization doesn't specify visibility, use the
2094 visibility from the template. */
2095 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2096 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2097 : DECL_TEMPLATE_INFO (decl));
2098 tree args = TI_ARGS (tinfo);
2100 if (args != error_mark_node)
2102 int depth = TMPL_ARGS_DEPTH (args);
2103 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2105 if (!DECL_VISIBILITY_SPECIFIED (decl))
2107 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2108 DECL_VISIBILITY_SPECIFIED (decl)
2109 = DECL_VISIBILITY_SPECIFIED (pattern);
2112 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
2113 if (args && depth > template_class_depth (class_type))
2114 /* Limit visibility based on its template arguments. */
2115 constrain_visibility_for_template (decl, args);
2119 if (class_type)
2120 determine_visibility_from_class (decl, class_type);
2122 if (decl_anon_ns_mem_p (decl))
2123 /* Names in an anonymous namespace get internal linkage.
2124 This might change once we implement export. */
2125 constrain_visibility (decl, VISIBILITY_ANON);
2126 else if (TREE_CODE (decl) != TYPE_DECL)
2128 /* Propagate anonymity from type to decl. */
2129 int tvis = type_visibility (TREE_TYPE (decl));
2130 if (tvis == VISIBILITY_ANON
2131 || ! DECL_VISIBILITY_SPECIFIED (decl))
2132 constrain_visibility (decl, tvis);
2134 else if (no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/true))
2135 /* DR 757: A type without linkage shall not be used as the type of a
2136 variable or function with linkage, unless
2137 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
2138 o the variable or function is not used (3.2 [basic.def.odr]) or is
2139 defined in the same translation unit.
2141 Since non-extern "C" decls need to be defined in the same
2142 translation unit, we can make the type internal. */
2143 constrain_visibility (decl, VISIBILITY_ANON);
2145 /* If visibility changed and DECL already has DECL_RTL, ensure
2146 symbol flags are updated. */
2147 if ((DECL_VISIBILITY (decl) != orig_visibility
2148 || DECL_VISIBILITY_SPECIFIED (decl) != orig_visibility_specified)
2149 && ((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
2150 || TREE_CODE (decl) == FUNCTION_DECL)
2151 && DECL_RTL_SET_P (decl))
2152 make_decl_rtl (decl);
2155 /* By default, static data members and function members receive
2156 the visibility of their containing class. */
2158 static void
2159 determine_visibility_from_class (tree decl, tree class_type)
2161 if (DECL_VISIBILITY_SPECIFIED (decl))
2162 return;
2164 if (visibility_options.inlines_hidden
2165 /* Don't do this for inline templates; specializations might not be
2166 inline, and we don't want them to inherit the hidden
2167 visibility. We'll set it here for all inline instantiations. */
2168 && !processing_template_decl
2169 && TREE_CODE (decl) == FUNCTION_DECL
2170 && DECL_DECLARED_INLINE_P (decl)
2171 && (! DECL_LANG_SPECIFIC (decl)
2172 || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2173 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2174 else
2176 /* Default to the class visibility. */
2177 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2178 DECL_VISIBILITY_SPECIFIED (decl)
2179 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2182 /* Give the target a chance to override the visibility associated
2183 with DECL. */
2184 if (TREE_CODE (decl) == VAR_DECL
2185 && (DECL_TINFO_P (decl)
2186 || (DECL_VTABLE_OR_VTT_P (decl)
2187 /* Construction virtual tables are not exported because
2188 they cannot be referred to from other object files;
2189 their name is not standardized by the ABI. */
2190 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2191 && TREE_PUBLIC (decl)
2192 && !DECL_REALLY_EXTERN (decl)
2193 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2194 targetm.cxx.determine_class_data_visibility (decl);
2197 /* Constrain the visibility of a class TYPE based on the visibility of its
2198 field types. Warn if any fields require lesser visibility. */
2200 void
2201 constrain_class_visibility (tree type)
2203 tree binfo;
2204 tree t;
2205 int i;
2207 int vis = type_visibility (type);
2209 if (vis == VISIBILITY_ANON
2210 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2211 return;
2213 /* Don't warn about visibility if the class has explicit visibility. */
2214 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2215 vis = VISIBILITY_INTERNAL;
2217 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
2218 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2220 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2221 int subvis = type_visibility (ftype);
2223 if (subvis == VISIBILITY_ANON)
2225 if (!in_main_input_context ())
2226 warning (0, "\
2227 %qT has a field %qD whose type uses the anonymous namespace",
2228 type, t);
2230 else if (MAYBE_CLASS_TYPE_P (ftype)
2231 && vis < VISIBILITY_HIDDEN
2232 && subvis >= VISIBILITY_HIDDEN)
2233 warning (OPT_Wattributes, "\
2234 %qT declared with greater visibility than the type of its field %qD",
2235 type, t);
2238 binfo = TYPE_BINFO (type);
2239 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2241 int subvis = type_visibility (TREE_TYPE (t));
2243 if (subvis == VISIBILITY_ANON)
2245 if (!in_main_input_context())
2246 warning (0, "\
2247 %qT has a base %qT whose type uses the anonymous namespace",
2248 type, TREE_TYPE (t));
2250 else if (vis < VISIBILITY_HIDDEN
2251 && subvis >= VISIBILITY_HIDDEN)
2252 warning (OPT_Wattributes, "\
2253 %qT declared with greater visibility than its base %qT",
2254 type, TREE_TYPE (t));
2258 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2259 for DECL has not already been determined, do so now by setting
2260 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2261 function is called entities with vague linkage whose definitions
2262 are available must have TREE_PUBLIC set.
2264 If this function decides to place DECL in COMDAT, it will set
2265 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2266 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2267 callers defer that decision until it is clear that DECL is actually
2268 required. */
2270 void
2271 import_export_decl (tree decl)
2273 int emit_p;
2274 bool comdat_p;
2275 bool import_p;
2276 tree class_type = NULL_TREE;
2278 if (DECL_INTERFACE_KNOWN (decl))
2279 return;
2281 /* We cannot determine what linkage to give to an entity with vague
2282 linkage until the end of the file. For example, a virtual table
2283 for a class will be defined if and only if the key method is
2284 defined in this translation unit. As a further example, consider
2285 that when compiling a translation unit that uses PCH file with
2286 "-frepo" it would be incorrect to make decisions about what
2287 entities to emit when building the PCH; those decisions must be
2288 delayed until the repository information has been processed. */
2289 gcc_assert (at_eof);
2290 /* Object file linkage for explicit instantiations is handled in
2291 mark_decl_instantiated. For static variables in functions with
2292 vague linkage, maybe_commonize_var is used.
2294 Therefore, the only declarations that should be provided to this
2295 function are those with external linkage that are:
2297 * implicit instantiations of function templates
2299 * inline function
2301 * implicit instantiations of static data members of class
2302 templates
2304 * virtual tables
2306 * typeinfo objects
2308 Furthermore, all entities that reach this point must have a
2309 definition available in this translation unit.
2311 The following assertions check these conditions. */
2312 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2313 || TREE_CODE (decl) == VAR_DECL);
2314 /* Any code that creates entities with TREE_PUBLIC cleared should
2315 also set DECL_INTERFACE_KNOWN. */
2316 gcc_assert (TREE_PUBLIC (decl));
2317 if (TREE_CODE (decl) == FUNCTION_DECL)
2318 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2319 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2320 || DECL_DECLARED_INLINE_P (decl));
2321 else
2322 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2323 || DECL_VTABLE_OR_VTT_P (decl)
2324 || DECL_TINFO_P (decl));
2325 /* Check that a definition of DECL is available in this translation
2326 unit. */
2327 gcc_assert (!DECL_REALLY_EXTERN (decl));
2329 /* Assume that DECL will not have COMDAT linkage. */
2330 comdat_p = false;
2331 /* Assume that DECL will not be imported into this translation
2332 unit. */
2333 import_p = false;
2335 /* See if the repository tells us whether or not to emit DECL in
2336 this translation unit. */
2337 emit_p = repo_emit_p (decl);
2338 if (emit_p == 0)
2339 import_p = true;
2340 else if (emit_p == 1)
2342 /* The repository indicates that this entity should be defined
2343 here. Make sure the back end honors that request. */
2344 if (TREE_CODE (decl) == VAR_DECL)
2345 mark_needed (decl);
2346 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2347 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2349 tree clone;
2350 FOR_EACH_CLONE (clone, decl)
2351 mark_needed (clone);
2353 else
2354 mark_needed (decl);
2355 /* Output the definition as an ordinary strong definition. */
2356 DECL_EXTERNAL (decl) = 0;
2357 DECL_INTERFACE_KNOWN (decl) = 1;
2358 return;
2361 if (import_p)
2362 /* We have already decided what to do with this DECL; there is no
2363 need to check anything further. */
2365 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2367 class_type = DECL_CONTEXT (decl);
2368 import_export_class (class_type);
2369 if (TYPE_FOR_JAVA (class_type))
2370 import_p = true;
2371 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2372 && CLASSTYPE_INTERFACE_ONLY (class_type))
2373 import_p = true;
2374 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2375 && !CLASSTYPE_USE_TEMPLATE (class_type)
2376 && CLASSTYPE_KEY_METHOD (class_type)
2377 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2378 /* The ABI requires that all virtual tables be emitted with
2379 COMDAT linkage. However, on systems where COMDAT symbols
2380 don't show up in the table of contents for a static
2381 archive, or on systems without weak symbols (where we
2382 approximate COMDAT linkage by using internal linkage), the
2383 linker will report errors about undefined symbols because
2384 it will not see the virtual table definition. Therefore,
2385 in the case that we know that the virtual table will be
2386 emitted in only one translation unit, we make the virtual
2387 table an ordinary definition with external linkage. */
2388 DECL_EXTERNAL (decl) = 0;
2389 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2391 /* CLASS_TYPE is being exported from this translation unit,
2392 so DECL should be defined here. */
2393 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2394 /* If a class is declared in a header with the "extern
2395 template" extension, then it will not be instantiated,
2396 even in translation units that would normally require
2397 it. Often such classes are explicitly instantiated in
2398 one translation unit. Therefore, the explicit
2399 instantiation must be made visible to other translation
2400 units. */
2401 DECL_EXTERNAL (decl) = 0;
2402 else
2404 /* The generic C++ ABI says that class data is always
2405 COMDAT, even if there is a key function. Some
2406 variants (e.g., the ARM EABI) says that class data
2407 only has COMDAT linkage if the class data might be
2408 emitted in more than one translation unit. When the
2409 key method can be inline and is inline, we still have
2410 to arrange for comdat even though
2411 class_data_always_comdat is false. */
2412 if (!CLASSTYPE_KEY_METHOD (class_type)
2413 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2414 || targetm.cxx.class_data_always_comdat ())
2416 /* The ABI requires COMDAT linkage. Normally, we
2417 only emit COMDAT things when they are needed;
2418 make sure that we realize that this entity is
2419 indeed needed. */
2420 comdat_p = true;
2421 mark_needed (decl);
2425 else if (!flag_implicit_templates
2426 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2427 import_p = true;
2428 else
2429 comdat_p = true;
2431 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2433 tree type = TREE_TYPE (DECL_NAME (decl));
2434 if (CLASS_TYPE_P (type))
2436 class_type = type;
2437 import_export_class (type);
2438 if (CLASSTYPE_INTERFACE_KNOWN (type)
2439 && TYPE_POLYMORPHIC_P (type)
2440 && CLASSTYPE_INTERFACE_ONLY (type)
2441 /* If -fno-rtti was specified, then we cannot be sure
2442 that RTTI information will be emitted with the
2443 virtual table of the class, so we must emit it
2444 wherever it is used. */
2445 && flag_rtti)
2446 import_p = true;
2447 else
2449 if (CLASSTYPE_INTERFACE_KNOWN (type)
2450 && !CLASSTYPE_INTERFACE_ONLY (type))
2452 comdat_p = (targetm.cxx.class_data_always_comdat ()
2453 || (CLASSTYPE_KEY_METHOD (type)
2454 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2455 mark_needed (decl);
2456 if (!flag_weak)
2458 comdat_p = false;
2459 DECL_EXTERNAL (decl) = 0;
2462 else
2463 comdat_p = true;
2466 else
2467 comdat_p = true;
2469 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2470 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2472 /* DECL is an implicit instantiation of a function or static
2473 data member. */
2474 if ((flag_implicit_templates
2475 && !flag_use_repository)
2476 || (flag_implicit_inline_templates
2477 && TREE_CODE (decl) == FUNCTION_DECL
2478 && DECL_DECLARED_INLINE_P (decl)))
2479 comdat_p = true;
2480 else
2481 /* If we are not implicitly generating templates, then mark
2482 this entity as undefined in this translation unit. */
2483 import_p = true;
2485 else if (DECL_FUNCTION_MEMBER_P (decl))
2487 if (!DECL_DECLARED_INLINE_P (decl))
2489 tree ctype = DECL_CONTEXT (decl);
2490 import_export_class (ctype);
2491 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2493 DECL_NOT_REALLY_EXTERN (decl)
2494 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2495 || (DECL_DECLARED_INLINE_P (decl)
2496 && ! flag_implement_inlines
2497 && !DECL_VINDEX (decl)));
2499 if (!DECL_NOT_REALLY_EXTERN (decl))
2500 DECL_EXTERNAL (decl) = 1;
2502 /* Always make artificials weak. */
2503 if (DECL_ARTIFICIAL (decl) && flag_weak)
2504 comdat_p = true;
2505 else
2506 maybe_make_one_only (decl);
2509 else
2510 comdat_p = true;
2512 else
2513 comdat_p = true;
2515 if (import_p)
2517 /* If we are importing DECL into this translation unit, mark is
2518 an undefined here. */
2519 DECL_EXTERNAL (decl) = 1;
2520 DECL_NOT_REALLY_EXTERN (decl) = 0;
2522 else if (comdat_p)
2524 /* If we decided to put DECL in COMDAT, mark it accordingly at
2525 this point. */
2526 comdat_linkage (decl);
2529 DECL_INTERFACE_KNOWN (decl) = 1;
2532 /* Return an expression that performs the destruction of DECL, which
2533 must be a VAR_DECL whose type has a non-trivial destructor, or is
2534 an array whose (innermost) elements have a non-trivial destructor. */
2536 tree
2537 build_cleanup (tree decl)
2539 tree temp;
2540 tree type = TREE_TYPE (decl);
2542 /* This function should only be called for declarations that really
2543 require cleanups. */
2544 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2546 /* Treat all objects with destructors as used; the destructor may do
2547 something substantive. */
2548 mark_used (decl);
2550 if (TREE_CODE (type) == ARRAY_TYPE)
2551 temp = decl;
2552 else
2553 temp = build_address (decl);
2554 temp = build_delete (TREE_TYPE (temp), temp,
2555 sfk_complete_destructor,
2556 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2557 return temp;
2560 /* Returns the initialization guard variable for the variable DECL,
2561 which has static storage duration. */
2563 tree
2564 get_guard (tree decl)
2566 tree sname;
2567 tree guard;
2569 sname = mangle_guard_variable (decl);
2570 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2571 if (! guard)
2573 tree guard_type;
2575 /* We use a type that is big enough to contain a mutex as well
2576 as an integer counter. */
2577 guard_type = targetm.cxx.guard_type ();
2578 guard = build_decl (DECL_SOURCE_LOCATION (decl),
2579 VAR_DECL, sname, guard_type);
2581 /* The guard should have the same linkage as what it guards. */
2582 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2583 TREE_STATIC (guard) = TREE_STATIC (decl);
2584 DECL_COMMON (guard) = DECL_COMMON (decl);
2585 DECL_COMDAT (guard) = DECL_COMDAT (decl);
2586 if (DECL_ONE_ONLY (decl))
2587 make_decl_one_only (guard, cxx_comdat_group (guard));
2588 if (TREE_PUBLIC (decl))
2589 DECL_WEAK (guard) = DECL_WEAK (decl);
2590 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2591 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2593 DECL_ARTIFICIAL (guard) = 1;
2594 DECL_IGNORED_P (guard) = 1;
2595 TREE_USED (guard) = 1;
2596 pushdecl_top_level_and_finish (guard, NULL_TREE);
2598 return guard;
2601 /* Return those bits of the GUARD variable that should be set when the
2602 guarded entity is actually initialized. */
2604 static tree
2605 get_guard_bits (tree guard)
2607 if (!targetm.cxx.guard_mask_bit ())
2609 /* We only set the first byte of the guard, in order to leave room
2610 for a mutex in the high-order bits. */
2611 guard = build1 (ADDR_EXPR,
2612 build_pointer_type (TREE_TYPE (guard)),
2613 guard);
2614 guard = build1 (NOP_EXPR,
2615 build_pointer_type (char_type_node),
2616 guard);
2617 guard = build1 (INDIRECT_REF, char_type_node, guard);
2620 return guard;
2623 /* Return an expression which determines whether or not the GUARD
2624 variable has already been initialized. */
2626 tree
2627 get_guard_cond (tree guard)
2629 tree guard_value;
2631 /* Check to see if the GUARD is zero. */
2632 guard = get_guard_bits (guard);
2634 /* Mask off all but the low bit. */
2635 if (targetm.cxx.guard_mask_bit ())
2637 guard_value = integer_one_node;
2638 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2639 guard_value = convert (TREE_TYPE (guard), guard_value);
2640 guard = cp_build_binary_op (input_location,
2641 BIT_AND_EXPR, guard, guard_value,
2642 tf_warning_or_error);
2645 guard_value = integer_zero_node;
2646 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2647 guard_value = convert (TREE_TYPE (guard), guard_value);
2648 return cp_build_binary_op (input_location,
2649 EQ_EXPR, guard, guard_value,
2650 tf_warning_or_error);
2653 /* Return an expression which sets the GUARD variable, indicating that
2654 the variable being guarded has been initialized. */
2656 tree
2657 set_guard (tree guard)
2659 tree guard_init;
2661 /* Set the GUARD to one. */
2662 guard = get_guard_bits (guard);
2663 guard_init = integer_one_node;
2664 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2665 guard_init = convert (TREE_TYPE (guard), guard_init);
2666 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2667 tf_warning_or_error);
2670 /* Start the process of running a particular set of global constructors
2671 or destructors. Subroutine of do_[cd]tors. */
2673 static tree
2674 start_objects (int method_type, int initp)
2676 tree body;
2677 tree fndecl;
2678 char type[10];
2680 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2682 if (initp != DEFAULT_INIT_PRIORITY)
2684 char joiner;
2686 #ifdef JOINER
2687 joiner = JOINER;
2688 #else
2689 joiner = '_';
2690 #endif
2692 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2694 else
2695 sprintf (type, "%c", method_type);
2697 fndecl = build_lang_decl (FUNCTION_DECL,
2698 get_file_function_name (type),
2699 build_function_type (void_type_node,
2700 void_list_node));
2701 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2703 TREE_PUBLIC (current_function_decl) = 0;
2705 /* Mark as artificial because it's not explicitly in the user's
2706 source code. */
2707 DECL_ARTIFICIAL (current_function_decl) = 1;
2709 /* Mark this declaration as used to avoid spurious warnings. */
2710 TREE_USED (current_function_decl) = 1;
2712 /* Mark this function as a global constructor or destructor. */
2713 if (method_type == 'I')
2714 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2715 else
2716 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2718 body = begin_compound_stmt (BCS_FN_BODY);
2720 return body;
2723 /* Finish the process of running a particular set of global constructors
2724 or destructors. Subroutine of do_[cd]tors. */
2726 static void
2727 finish_objects (int method_type, int initp, tree body)
2729 tree fn;
2731 /* Finish up. */
2732 finish_compound_stmt (body);
2733 fn = finish_function (0);
2735 if (method_type == 'I')
2737 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2738 decl_init_priority_insert (fn, initp);
2740 else
2742 DECL_STATIC_DESTRUCTOR (fn) = 1;
2743 decl_fini_priority_insert (fn, initp);
2746 expand_or_defer_fn (fn);
2749 /* The names of the parameters to the function created to handle
2750 initializations and destructions for objects with static storage
2751 duration. */
2752 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2753 #define PRIORITY_IDENTIFIER "__priority"
2755 /* The name of the function we create to handle initializations and
2756 destructions for objects with static storage duration. */
2757 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2759 /* The declaration for the __INITIALIZE_P argument. */
2760 static GTY(()) tree initialize_p_decl;
2762 /* The declaration for the __PRIORITY argument. */
2763 static GTY(()) tree priority_decl;
2765 /* The declaration for the static storage duration function. */
2766 static GTY(()) tree ssdf_decl;
2768 /* All the static storage duration functions created in this
2769 translation unit. */
2770 static GTY(()) VEC(tree,gc) *ssdf_decls;
2772 /* A map from priority levels to information about that priority
2773 level. There may be many such levels, so efficient lookup is
2774 important. */
2775 static splay_tree priority_info_map;
2777 /* Begins the generation of the function that will handle all
2778 initialization and destruction of objects with static storage
2779 duration. The function generated takes two parameters of type
2780 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2781 nonzero, it performs initializations. Otherwise, it performs
2782 destructions. It only performs those initializations or
2783 destructions with the indicated __PRIORITY. The generated function
2784 returns no value.
2786 It is assumed that this function will only be called once per
2787 translation unit. */
2789 static tree
2790 start_static_storage_duration_function (unsigned count)
2792 tree parm_types;
2793 tree type;
2794 tree body;
2795 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2797 /* Create the identifier for this function. It will be of the form
2798 SSDF_IDENTIFIER_<number>. */
2799 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2801 /* Create the parameters. */
2802 parm_types = void_list_node;
2803 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2804 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2805 type = build_function_type (void_type_node, parm_types);
2807 /* Create the FUNCTION_DECL itself. */
2808 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2809 get_identifier (id),
2810 type);
2811 TREE_PUBLIC (ssdf_decl) = 0;
2812 DECL_ARTIFICIAL (ssdf_decl) = 1;
2814 /* Put this function in the list of functions to be called from the
2815 static constructors and destructors. */
2816 if (!ssdf_decls)
2818 ssdf_decls = VEC_alloc (tree, gc, 32);
2820 /* Take this opportunity to initialize the map from priority
2821 numbers to information about that priority level. */
2822 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2823 /*delete_key_fn=*/0,
2824 /*delete_value_fn=*/
2825 (splay_tree_delete_value_fn) &free);
2827 /* We always need to generate functions for the
2828 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2829 priorities later, we'll be sure to find the
2830 DEFAULT_INIT_PRIORITY. */
2831 get_priority_info (DEFAULT_INIT_PRIORITY);
2834 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2836 /* Create the argument list. */
2837 initialize_p_decl = cp_build_parm_decl
2838 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2839 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2840 TREE_USED (initialize_p_decl) = 1;
2841 priority_decl = cp_build_parm_decl
2842 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2843 DECL_CONTEXT (priority_decl) = ssdf_decl;
2844 TREE_USED (priority_decl) = 1;
2846 TREE_CHAIN (initialize_p_decl) = priority_decl;
2847 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2849 /* Put the function in the global scope. */
2850 pushdecl (ssdf_decl);
2852 /* Start the function itself. This is equivalent to declaring the
2853 function as:
2855 static void __ssdf (int __initialize_p, init __priority_p);
2857 It is static because we only need to call this function from the
2858 various constructor and destructor functions for this module. */
2859 start_preparsed_function (ssdf_decl,
2860 /*attrs=*/NULL_TREE,
2861 SF_PRE_PARSED);
2863 /* Set up the scope of the outermost block in the function. */
2864 body = begin_compound_stmt (BCS_FN_BODY);
2866 return body;
2869 /* Finish the generation of the function which performs initialization
2870 and destruction of objects with static storage duration. After
2871 this point, no more such objects can be created. */
2873 static void
2874 finish_static_storage_duration_function (tree body)
2876 /* Close out the function. */
2877 finish_compound_stmt (body);
2878 expand_or_defer_fn (finish_function (0));
2881 /* Return the information about the indicated PRIORITY level. If no
2882 code to handle this level has yet been generated, generate the
2883 appropriate prologue. */
2885 static priority_info
2886 get_priority_info (int priority)
2888 priority_info pi;
2889 splay_tree_node n;
2891 n = splay_tree_lookup (priority_info_map,
2892 (splay_tree_key) priority);
2893 if (!n)
2895 /* Create a new priority information structure, and insert it
2896 into the map. */
2897 pi = XNEW (struct priority_info_s);
2898 pi->initializations_p = 0;
2899 pi->destructions_p = 0;
2900 splay_tree_insert (priority_info_map,
2901 (splay_tree_key) priority,
2902 (splay_tree_value) pi);
2904 else
2905 pi = (priority_info) n->value;
2907 return pi;
2910 /* The effective initialization priority of a DECL. */
2912 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2913 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2914 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2916 /* Whether a DECL needs a guard to protect it against multiple
2917 initialization. */
2919 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2920 || DECL_ONE_ONLY (decl) \
2921 || DECL_WEAK (decl)))
2923 /* Called from one_static_initialization_or_destruction(),
2924 via walk_tree.
2925 Walks the initializer list of a global variable and looks for
2926 temporary variables (DECL_NAME() == NULL and DECL_ARTIFICIAL != 0)
2927 and that have their DECL_CONTEXT() == NULL.
2928 For each such temporary variable, set their DECL_CONTEXT() to
2929 the current function. This is necessary because otherwise
2930 some optimizers (enabled by -O2 -fprofile-arcs) might crash
2931 when trying to refer to a temporary variable that does not have
2932 it's DECL_CONTECT() properly set. */
2933 static tree
2934 fix_temporary_vars_context_r (tree *node,
2935 int *unused ATTRIBUTE_UNUSED,
2936 void *unused1 ATTRIBUTE_UNUSED)
2938 gcc_assert (current_function_decl);
2940 if (TREE_CODE (*node) == BIND_EXPR)
2942 tree var;
2944 for (var = BIND_EXPR_VARS (*node); var; var = TREE_CHAIN (var))
2945 if (TREE_CODE (var) == VAR_DECL
2946 && !DECL_NAME (var)
2947 && DECL_ARTIFICIAL (var)
2948 && !DECL_CONTEXT (var))
2949 DECL_CONTEXT (var) = current_function_decl;
2952 return NULL_TREE;
2955 /* Set up to handle the initialization or destruction of DECL. If
2956 INITP is nonzero, we are initializing the variable. Otherwise, we
2957 are destroying it. */
2959 static void
2960 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2962 tree guard_if_stmt = NULL_TREE;
2963 tree guard;
2965 /* If we are supposed to destruct and there's a trivial destructor,
2966 nothing has to be done. */
2967 if (!initp
2968 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2969 return;
2971 /* Trick the compiler into thinking we are at the file and line
2972 where DECL was declared so that error-messages make sense, and so
2973 that the debugger will show somewhat sensible file and line
2974 information. */
2975 input_location = DECL_SOURCE_LOCATION (decl);
2977 /* Make sure temporary variables in the initialiser all have
2978 their DECL_CONTEXT() set to a value different from NULL_TREE.
2979 This can happen when global variables initialisers are built.
2980 In that case, the DECL_CONTEXT() of the global variables _AND_ of all
2981 the temporary variables that might have been generated in the
2982 accompagning initialisers is NULL_TREE, meaning the variables have been
2983 declared in the global namespace.
2984 What we want to do here is to fix that and make sure the DECL_CONTEXT()
2985 of the temporaries are set to the current function decl. */
2986 cp_walk_tree_without_duplicates (&init,
2987 fix_temporary_vars_context_r,
2988 NULL);
2990 /* Because of:
2992 [class.access.spec]
2994 Access control for implicit calls to the constructors,
2995 the conversion functions, or the destructor called to
2996 create and destroy a static data member is performed as
2997 if these calls appeared in the scope of the member's
2998 class.
3000 we pretend we are in a static member function of the class of
3001 which the DECL is a member. */
3002 if (member_p (decl))
3004 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
3005 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
3008 /* Assume we don't need a guard. */
3009 guard = NULL_TREE;
3010 /* We need a guard if this is an object with external linkage that
3011 might be initialized in more than one place. (For example, a
3012 static data member of a template, when the data member requires
3013 construction.) */
3014 if (NEEDS_GUARD_P (decl))
3016 tree guard_cond;
3018 guard = get_guard (decl);
3020 /* When using __cxa_atexit, we just check the GUARD as we would
3021 for a local static. */
3022 if (flag_use_cxa_atexit)
3024 /* When using __cxa_atexit, we never try to destroy
3025 anything from a static destructor. */
3026 gcc_assert (initp);
3027 guard_cond = get_guard_cond (guard);
3029 /* If we don't have __cxa_atexit, then we will be running
3030 destructors from .fini sections, or their equivalents. So,
3031 we need to know how many times we've tried to initialize this
3032 object. We do initializations only if the GUARD is zero,
3033 i.e., if we are the first to initialize the variable. We do
3034 destructions only if the GUARD is one, i.e., if we are the
3035 last to destroy the variable. */
3036 else if (initp)
3037 guard_cond
3038 = cp_build_binary_op (input_location,
3039 EQ_EXPR,
3040 cp_build_unary_op (PREINCREMENT_EXPR,
3041 guard,
3042 /*noconvert=*/1,
3043 tf_warning_or_error),
3044 integer_one_node,
3045 tf_warning_or_error);
3046 else
3047 guard_cond
3048 = cp_build_binary_op (input_location,
3049 EQ_EXPR,
3050 cp_build_unary_op (PREDECREMENT_EXPR,
3051 guard,
3052 /*noconvert=*/1,
3053 tf_warning_or_error),
3054 integer_zero_node,
3055 tf_warning_or_error);
3057 guard_if_stmt = begin_if_stmt ();
3058 finish_if_stmt_cond (guard_cond, guard_if_stmt);
3062 /* If we're using __cxa_atexit, we have not already set the GUARD,
3063 so we must do so now. */
3064 if (guard && initp && flag_use_cxa_atexit)
3065 finish_expr_stmt (set_guard (guard));
3067 /* Perform the initialization or destruction. */
3068 if (initp)
3070 if (init)
3071 finish_expr_stmt (init);
3073 /* If we're using __cxa_atexit, register a function that calls the
3074 destructor for the object. */
3075 if (flag_use_cxa_atexit)
3076 finish_expr_stmt (register_dtor_fn (decl));
3078 else
3079 finish_expr_stmt (build_cleanup (decl));
3081 /* Finish the guard if-stmt, if necessary. */
3082 if (guard)
3084 finish_then_clause (guard_if_stmt);
3085 finish_if_stmt (guard_if_stmt);
3088 /* Now that we're done with DECL we don't need to pretend to be a
3089 member of its class any longer. */
3090 DECL_CONTEXT (current_function_decl) = NULL_TREE;
3091 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
3094 /* Generate code to do the initialization or destruction of the decls in VARS,
3095 a TREE_LIST of VAR_DECL with static storage duration.
3096 Whether initialization or destruction is performed is specified by INITP. */
3098 static void
3099 do_static_initialization_or_destruction (tree vars, bool initp)
3101 tree node, init_if_stmt, cond;
3103 /* Build the outer if-stmt to check for initialization or destruction. */
3104 init_if_stmt = begin_if_stmt ();
3105 cond = initp ? integer_one_node : integer_zero_node;
3106 cond = cp_build_binary_op (input_location,
3107 EQ_EXPR,
3108 initialize_p_decl,
3109 cond,
3110 tf_warning_or_error);
3111 finish_if_stmt_cond (cond, init_if_stmt);
3113 node = vars;
3114 do {
3115 tree decl = TREE_VALUE (node);
3116 tree priority_if_stmt;
3117 int priority;
3118 priority_info pi;
3120 /* If we don't need a destructor, there's nothing to do. Avoid
3121 creating a possibly empty if-stmt. */
3122 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3124 node = TREE_CHAIN (node);
3125 continue;
3128 /* Remember that we had an initialization or finalization at this
3129 priority. */
3130 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
3131 pi = get_priority_info (priority);
3132 if (initp)
3133 pi->initializations_p = 1;
3134 else
3135 pi->destructions_p = 1;
3137 /* Conditionalize this initialization on being in the right priority
3138 and being initializing/finalizing appropriately. */
3139 priority_if_stmt = begin_if_stmt ();
3140 cond = cp_build_binary_op (input_location,
3141 EQ_EXPR,
3142 priority_decl,
3143 build_int_cst (NULL_TREE, priority),
3144 tf_warning_or_error);
3145 finish_if_stmt_cond (cond, priority_if_stmt);
3147 /* Process initializers with same priority. */
3148 for (; node
3149 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
3150 node = TREE_CHAIN (node))
3151 /* Do one initialization or destruction. */
3152 one_static_initialization_or_destruction (TREE_VALUE (node),
3153 TREE_PURPOSE (node), initp);
3155 /* Finish up the priority if-stmt body. */
3156 finish_then_clause (priority_if_stmt);
3157 finish_if_stmt (priority_if_stmt);
3159 } while (node);
3161 /* Finish up the init/destruct if-stmt body. */
3162 finish_then_clause (init_if_stmt);
3163 finish_if_stmt (init_if_stmt);
3166 /* VARS is a list of variables with static storage duration which may
3167 need initialization and/or finalization. Remove those variables
3168 that don't really need to be initialized or finalized, and return
3169 the resulting list. The order in which the variables appear in
3170 VARS is in reverse order of the order in which they should actually
3171 be initialized. The list we return is in the unreversed order;
3172 i.e., the first variable should be initialized first. */
3174 static tree
3175 prune_vars_needing_no_initialization (tree *vars)
3177 tree *var = vars;
3178 tree result = NULL_TREE;
3180 while (*var)
3182 tree t = *var;
3183 tree decl = TREE_VALUE (t);
3184 tree init = TREE_PURPOSE (t);
3186 /* Deal gracefully with error. */
3187 if (decl == error_mark_node)
3189 var = &TREE_CHAIN (t);
3190 continue;
3193 /* The only things that can be initialized are variables. */
3194 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3196 /* If this object is not defined, we don't need to do anything
3197 here. */
3198 if (DECL_EXTERNAL (decl))
3200 var = &TREE_CHAIN (t);
3201 continue;
3204 /* Also, if the initializer already contains errors, we can bail
3205 out now. */
3206 if (init && TREE_CODE (init) == TREE_LIST
3207 && value_member (error_mark_node, init))
3209 var = &TREE_CHAIN (t);
3210 continue;
3213 /* This variable is going to need initialization and/or
3214 finalization, so we add it to the list. */
3215 *var = TREE_CHAIN (t);
3216 TREE_CHAIN (t) = result;
3217 result = t;
3220 return result;
3223 /* Make sure we have told the back end about all the variables in
3224 VARS. */
3226 static void
3227 write_out_vars (tree vars)
3229 tree v;
3231 for (v = vars; v; v = TREE_CHAIN (v))
3233 tree var = TREE_VALUE (v);
3234 if (!var_finalized_p (var))
3236 import_export_decl (var);
3237 rest_of_decl_compilation (var, 1, 1);
3242 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3243 (otherwise) that will initialize all global objects with static
3244 storage duration having the indicated PRIORITY. */
3246 static void
3247 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3248 location_t *locus)
3250 char function_key;
3251 tree arguments;
3252 tree fndecl;
3253 tree body;
3254 size_t i;
3256 input_location = *locus;
3257 /* ??? */
3258 /* Was: locus->line++; */
3260 /* We use `I' to indicate initialization and `D' to indicate
3261 destruction. */
3262 function_key = constructor_p ? 'I' : 'D';
3264 /* We emit the function lazily, to avoid generating empty
3265 global constructors and destructors. */
3266 body = NULL_TREE;
3268 /* For Objective-C++, we may need to initialize metadata found in this module.
3269 This must be done _before_ any other static initializations. */
3270 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3271 && constructor_p && objc_static_init_needed_p ())
3273 body = start_objects (function_key, priority);
3274 objc_generate_static_init_call (NULL_TREE);
3277 /* Call the static storage duration function with appropriate
3278 arguments. */
3279 for (i = 0; VEC_iterate (tree, ssdf_decls, i, fndecl); ++i)
3281 /* Calls to pure or const functions will expand to nothing. */
3282 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3284 if (! body)
3285 body = start_objects (function_key, priority);
3287 arguments = tree_cons (NULL_TREE,
3288 build_int_cst (NULL_TREE, priority),
3289 NULL_TREE);
3290 arguments = tree_cons (NULL_TREE,
3291 build_int_cst (NULL_TREE, constructor_p),
3292 arguments);
3293 finish_expr_stmt (cp_build_function_call (fndecl, arguments,
3294 tf_warning_or_error));
3298 /* Close out the function. */
3299 if (body)
3300 finish_objects (function_key, priority, body);
3303 /* Generate constructor and destructor functions for the priority
3304 indicated by N. */
3306 static int
3307 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3309 location_t *locus = (location_t *) data;
3310 int priority = (int) n->key;
3311 priority_info pi = (priority_info) n->value;
3313 /* Generate the functions themselves, but only if they are really
3314 needed. */
3315 if (pi->initializations_p)
3316 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3317 if (pi->destructions_p)
3318 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3320 /* Keep iterating. */
3321 return 0;
3324 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
3325 decls referenced from front-end specific constructs; it will be called
3326 only for language-specific tree nodes.
3328 Here we must deal with member pointers. */
3330 tree
3331 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3333 tree t = *tp;
3335 switch (TREE_CODE (t))
3337 case PTRMEM_CST:
3338 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3339 cgraph_mark_address_taken_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3340 break;
3341 case BASELINK:
3342 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3343 cgraph_mark_address_taken_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3344 break;
3345 case VAR_DECL:
3346 if (DECL_VTABLE_OR_VTT_P (t))
3348 /* The ABI requires that all virtual tables be emitted
3349 whenever one of them is. */
3350 tree vtbl;
3351 for (vtbl = CLASSTYPE_VTABLES (DECL_CONTEXT (t));
3352 vtbl;
3353 vtbl = TREE_CHAIN (vtbl))
3354 mark_decl_referenced (vtbl);
3356 else if (DECL_CONTEXT (t)
3357 && flag_use_repository
3358 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3359 /* If we need a static variable in a function, then we
3360 need the containing function. */
3361 mark_decl_referenced (DECL_CONTEXT (t));
3362 break;
3363 default:
3364 break;
3367 return NULL;
3370 /* Java requires that we be able to reference a local address for a
3371 method, and not be confused by PLT entries. If hidden aliases are
3372 supported, collect and return all the functions for which we should
3373 emit a hidden alias. */
3375 static struct pointer_set_t *
3376 collect_candidates_for_java_method_aliases (void)
3378 struct cgraph_node *node;
3379 struct pointer_set_t *candidates = NULL;
3381 #ifndef HAVE_GAS_HIDDEN
3382 return candidates;
3383 #endif
3385 for (node = cgraph_nodes; node ; node = node->next)
3387 tree fndecl = node->decl;
3389 if (DECL_CONTEXT (fndecl)
3390 && TYPE_P (DECL_CONTEXT (fndecl))
3391 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3392 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3394 if (candidates == NULL)
3395 candidates = pointer_set_create ();
3396 pointer_set_insert (candidates, fndecl);
3400 return candidates;
3404 /* Java requires that we be able to reference a local address for a
3405 method, and not be confused by PLT entries. If hidden aliases are
3406 supported, emit one for each java function that we've emitted.
3407 CANDIDATES is the set of FUNCTION_DECLs that were gathered
3408 by collect_candidates_for_java_method_aliases. */
3410 static void
3411 build_java_method_aliases (struct pointer_set_t *candidates)
3413 struct cgraph_node *node;
3415 #ifndef HAVE_GAS_HIDDEN
3416 return;
3417 #endif
3419 for (node = cgraph_nodes; node ; node = node->next)
3421 tree fndecl = node->decl;
3423 if (TREE_ASM_WRITTEN (fndecl)
3424 && pointer_set_contains (candidates, fndecl))
3426 /* Mangle the name in a predictable way; we need to reference
3427 this from a java compiled object file. */
3428 tree oid, nid, alias;
3429 const char *oname;
3430 char *nname;
3432 oid = DECL_ASSEMBLER_NAME (fndecl);
3433 oname = IDENTIFIER_POINTER (oid);
3434 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3435 nname = ACONCAT (("_ZGA", oname+2, NULL));
3436 nid = get_identifier (nname);
3438 alias = make_alias_for (fndecl, nid);
3439 TREE_PUBLIC (alias) = 1;
3440 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3442 assemble_alias (alias, oid);
3447 /* Returns true iff there is a definition available for variable or
3448 function DECL. */
3450 static bool
3451 decl_defined_p (tree decl)
3453 if (TREE_CODE (decl) == FUNCTION_DECL)
3454 return (DECL_INITIAL (decl) != NULL_TREE);
3455 else
3457 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3458 return !DECL_EXTERNAL (decl);
3462 /* Complain that DECL uses a type with no linkage but is never defined. */
3464 static void
3465 no_linkage_error (tree decl)
3467 tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
3468 if (TYPE_ANONYMOUS_P (t))
3470 permerror (0, "%q+#D, declared using anonymous type, "
3471 "is used but never defined", decl);
3472 if (is_typedef_decl (TYPE_NAME (t)))
3473 permerror (0, "%q+#D does not refer to the unqualified type, "
3474 "so it is not used for linkage", TYPE_NAME (t));
3476 else
3477 permerror (0, "%q+#D, declared using local type %qT, "
3478 "is used but never defined", decl, t);
3481 /* This routine is called at the end of compilation.
3482 Its job is to create all the code needed to initialize and
3483 destroy the global aggregates. We do the destruction
3484 first, since that way we only need to reverse the decls once. */
3486 void
3487 cp_write_global_declarations (void)
3489 tree vars;
3490 bool reconsider;
3491 size_t i;
3492 location_t locus;
3493 unsigned ssdf_count = 0;
3494 int retries = 0;
3495 tree decl;
3496 struct pointer_set_t *candidates;
3498 locus = input_location;
3499 at_eof = 1;
3501 /* Bad parse errors. Just forget about it. */
3502 if (! global_bindings_p () || current_class_type || decl_namespace_list)
3503 return;
3505 if (pch_file)
3506 c_common_write_pch ();
3508 /* FIXME - huh? was input_line -= 1;*/
3510 /* We now have to write out all the stuff we put off writing out.
3511 These include:
3513 o Template specializations that we have not yet instantiated,
3514 but which are needed.
3515 o Initialization and destruction for non-local objects with
3516 static storage duration. (Local objects with static storage
3517 duration are initialized when their scope is first entered,
3518 and are cleaned up via atexit.)
3519 o Virtual function tables.
3521 All of these may cause others to be needed. For example,
3522 instantiating one function may cause another to be needed, and
3523 generating the initializer for an object may cause templates to be
3524 instantiated, etc., etc. */
3526 timevar_push (TV_VARCONST);
3528 emit_support_tinfos ();
3532 tree t;
3533 tree decl;
3535 reconsider = false;
3537 /* If there are templates that we've put off instantiating, do
3538 them now. */
3539 instantiate_pending_templates (retries);
3540 ggc_collect ();
3542 /* Write out virtual tables as required. Note that writing out
3543 the virtual table for a template class may cause the
3544 instantiation of members of that class. If we write out
3545 vtables then we remove the class from our list so we don't
3546 have to look at it again. */
3548 while (keyed_classes != NULL_TREE
3549 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3551 reconsider = true;
3552 keyed_classes = TREE_CHAIN (keyed_classes);
3555 t = keyed_classes;
3556 if (t != NULL_TREE)
3558 tree next = TREE_CHAIN (t);
3560 while (next)
3562 if (maybe_emit_vtables (TREE_VALUE (next)))
3564 reconsider = true;
3565 TREE_CHAIN (t) = TREE_CHAIN (next);
3567 else
3568 t = next;
3570 next = TREE_CHAIN (t);
3574 /* Write out needed type info variables. We have to be careful
3575 looping through unemitted decls, because emit_tinfo_decl may
3576 cause other variables to be needed. New elements will be
3577 appended, and we remove from the vector those that actually
3578 get emitted. */
3579 for (i = VEC_length (tree, unemitted_tinfo_decls);
3580 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3581 if (emit_tinfo_decl (t))
3583 reconsider = true;
3584 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3587 /* The list of objects with static storage duration is built up
3588 in reverse order. We clear STATIC_AGGREGATES so that any new
3589 aggregates added during the initialization of these will be
3590 initialized in the correct order when we next come around the
3591 loop. */
3592 vars = prune_vars_needing_no_initialization (&static_aggregates);
3594 if (vars)
3596 /* We need to start a new initialization function each time
3597 through the loop. That's because we need to know which
3598 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3599 isn't computed until a function is finished, and written
3600 out. That's a deficiency in the back end. When this is
3601 fixed, these initialization functions could all become
3602 inline, with resulting performance improvements. */
3603 tree ssdf_body;
3605 /* Set the line and file, so that it is obviously not from
3606 the source file. */
3607 input_location = locus;
3608 ssdf_body = start_static_storage_duration_function (ssdf_count);
3610 /* Make sure the back end knows about all the variables. */
3611 write_out_vars (vars);
3613 /* First generate code to do all the initializations. */
3614 if (vars)
3615 do_static_initialization_or_destruction (vars, /*initp=*/true);
3617 /* Then, generate code to do all the destructions. Do these
3618 in reverse order so that the most recently constructed
3619 variable is the first destroyed. If we're using
3620 __cxa_atexit, then we don't need to do this; functions
3621 were registered at initialization time to destroy the
3622 local statics. */
3623 if (!flag_use_cxa_atexit && vars)
3625 vars = nreverse (vars);
3626 do_static_initialization_or_destruction (vars, /*initp=*/false);
3628 else
3629 vars = NULL_TREE;
3631 /* Finish up the static storage duration function for this
3632 round. */
3633 input_location = locus;
3634 finish_static_storage_duration_function (ssdf_body);
3636 /* All those initializations and finalizations might cause
3637 us to need more inline functions, more template
3638 instantiations, etc. */
3639 reconsider = true;
3640 ssdf_count++;
3641 /* ??? was: locus.line++; */
3644 /* Go through the set of inline functions whose bodies have not
3645 been emitted yet. If out-of-line copies of these functions
3646 are required, emit them. */
3647 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3649 /* Does it need synthesizing? */
3650 if (DECL_DEFAULTED_FN (decl) && ! DECL_INITIAL (decl)
3651 && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3653 /* Even though we're already at the top-level, we push
3654 there again. That way, when we pop back a few lines
3655 hence, all of our state is restored. Otherwise,
3656 finish_function doesn't clean things up, and we end
3657 up with CURRENT_FUNCTION_DECL set. */
3658 push_to_top_level ();
3659 /* The decl's location will mark where it was first
3660 needed. Save that so synthesize method can indicate
3661 where it was needed from, in case of error */
3662 input_location = DECL_SOURCE_LOCATION (decl);
3663 synthesize_method (decl);
3664 pop_from_top_level ();
3665 reconsider = true;
3668 if (!DECL_SAVED_TREE (decl))
3669 continue;
3671 /* We lie to the back end, pretending that some functions
3672 are not defined when they really are. This keeps these
3673 functions from being put out unnecessarily. But, we must
3674 stop lying when the functions are referenced, or if they
3675 are not comdat since they need to be put out now. If
3676 DECL_INTERFACE_KNOWN, then we have already set
3677 DECL_EXTERNAL appropriately, so there's no need to check
3678 again, and we do not want to clear DECL_EXTERNAL if a
3679 previous call to import_export_decl set it.
3681 This is done in a separate for cycle, because if some
3682 deferred function is contained in another deferred
3683 function later in deferred_fns varray,
3684 rest_of_compilation would skip this function and we
3685 really cannot expand the same function twice. */
3686 import_export_decl (decl);
3687 if (DECL_NOT_REALLY_EXTERN (decl)
3688 && DECL_INITIAL (decl)
3689 && decl_needed_p (decl))
3691 struct cgraph_node *node = cgraph_get_node (decl), *alias, *next;
3693 DECL_EXTERNAL (decl) = 0;
3694 /* If we mark !DECL_EXTERNAL one of the same body aliases,
3695 we need to mark all of them that way. */
3696 if (node && node->same_body)
3698 DECL_EXTERNAL (node->decl) = 0;
3699 for (alias = node->same_body; alias; alias = alias->next)
3700 DECL_EXTERNAL (alias->decl) = 0;
3702 /* If we mark !DECL_EXTERNAL one of the symbols in some comdat
3703 group, we need to mark all symbols in the same comdat group
3704 that way. */
3705 if (node->same_comdat_group)
3706 for (next = node->same_comdat_group;
3707 next != node;
3708 next = next->same_comdat_group)
3710 DECL_EXTERNAL (next->decl) = 0;
3711 if (next->same_body)
3713 for (alias = next->same_body;
3714 alias;
3715 alias = alias->next)
3716 DECL_EXTERNAL (alias->decl) = 0;
3721 /* If we're going to need to write this function out, and
3722 there's already a body for it, create RTL for it now.
3723 (There might be no body if this is a method we haven't
3724 gotten around to synthesizing yet.) */
3725 if (!DECL_EXTERNAL (decl)
3726 && decl_needed_p (decl)
3727 && !TREE_ASM_WRITTEN (decl)
3728 && !cgraph_node (decl)->local.finalized)
3730 /* We will output the function; no longer consider it in this
3731 loop. */
3732 DECL_DEFER_OUTPUT (decl) = 0;
3733 /* Generate RTL for this function now that we know we
3734 need it. */
3735 expand_or_defer_fn (decl);
3736 /* If we're compiling -fsyntax-only pretend that this
3737 function has been written out so that we don't try to
3738 expand it again. */
3739 if (flag_syntax_only)
3740 TREE_ASM_WRITTEN (decl) = 1;
3741 reconsider = true;
3745 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3746 reconsider = true;
3748 /* Static data members are just like namespace-scope globals. */
3749 for (i = 0; VEC_iterate (tree, pending_statics, i, decl); ++i)
3751 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3752 /* Don't write it out if we haven't seen a definition. */
3753 || DECL_IN_AGGR_P (decl))
3754 continue;
3755 import_export_decl (decl);
3756 /* If this static data member is needed, provide it to the
3757 back end. */
3758 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3759 DECL_EXTERNAL (decl) = 0;
3761 if (VEC_length (tree, pending_statics) != 0
3762 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3763 VEC_length (tree, pending_statics)))
3764 reconsider = true;
3766 retries++;
3768 while (reconsider);
3770 /* All used inline functions must have a definition at this point. */
3771 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3773 if (/* Check online inline functions that were actually used. */
3774 DECL_ODR_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3775 /* If the definition actually was available here, then the
3776 fact that the function was not defined merely represents
3777 that for some reason (use of a template repository,
3778 #pragma interface, etc.) we decided not to emit the
3779 definition here. */
3780 && !DECL_INITIAL (decl)
3781 /* An explicit instantiation can be used to specify
3782 that the body is in another unit. It will have
3783 already verified there was a definition. */
3784 && !DECL_EXPLICIT_INSTANTIATION (decl))
3786 warning (0, "inline function %q+D used but never defined", decl);
3787 /* Avoid a duplicate warning from check_global_declaration_1. */
3788 TREE_NO_WARNING (decl) = 1;
3792 /* So must decls that use a type with no linkage. */
3793 for (i = 0; VEC_iterate (tree, no_linkage_decls, i, decl); ++i)
3794 if (!decl_defined_p (decl))
3795 no_linkage_error (decl);
3797 /* We give C linkage to static constructors and destructors. */
3798 push_lang_context (lang_name_c);
3800 /* Generate initialization and destruction functions for all
3801 priorities for which they are required. */
3802 if (priority_info_map)
3803 splay_tree_foreach (priority_info_map,
3804 generate_ctor_and_dtor_functions_for_priority,
3805 /*data=*/&locus);
3806 else if (c_dialect_objc () && objc_static_init_needed_p ())
3807 /* If this is obj-c++ and we need a static init, call
3808 generate_ctor_or_dtor_function. */
3809 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3810 DEFAULT_INIT_PRIORITY, &locus);
3812 /* We're done with the splay-tree now. */
3813 if (priority_info_map)
3814 splay_tree_delete (priority_info_map);
3816 /* Generate any missing aliases. */
3817 maybe_apply_pending_pragma_weaks ();
3819 /* We're done with static constructors, so we can go back to "C++"
3820 linkage now. */
3821 pop_lang_context ();
3823 /* Collect candidates for Java hidden aliases. */
3824 candidates = collect_candidates_for_java_method_aliases ();
3826 cgraph_finalize_compilation_unit ();
3828 /* Now, issue warnings about static, but not defined, functions,
3829 etc., and emit debugging information. */
3830 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3831 if (VEC_length (tree, pending_statics) != 0)
3833 check_global_declarations (VEC_address (tree, pending_statics),
3834 VEC_length (tree, pending_statics));
3835 emit_debug_global_declarations (VEC_address (tree, pending_statics),
3836 VEC_length (tree, pending_statics));
3839 /* Generate hidden aliases for Java. */
3840 if (candidates)
3842 build_java_method_aliases (candidates);
3843 pointer_set_destroy (candidates);
3846 finish_repo ();
3848 /* The entire file is now complete. If requested, dump everything
3849 to a file. */
3851 int flags;
3852 FILE *stream = dump_begin (TDI_tu, &flags);
3854 if (stream)
3856 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3857 dump_end (TDI_tu, stream);
3861 timevar_pop (TV_VARCONST);
3863 if (flag_detailed_statistics)
3865 dump_tree_statistics ();
3866 dump_time_statistics ();
3868 input_location = locus;
3870 #ifdef ENABLE_CHECKING
3871 validate_conversion_obstack ();
3872 #endif /* ENABLE_CHECKING */
3875 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3876 function to call in parse-tree form; it has not yet been
3877 semantically analyzed. ARGS are the arguments to the function.
3878 They have already been semantically analyzed. This may change
3879 ARGS. */
3881 tree
3882 build_offset_ref_call_from_tree (tree fn, VEC(tree,gc) **args)
3884 tree orig_fn;
3885 VEC(tree,gc) *orig_args = NULL;
3886 tree expr;
3887 tree object;
3889 orig_fn = fn;
3890 object = TREE_OPERAND (fn, 0);
3892 if (processing_template_decl)
3894 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3895 || TREE_CODE (fn) == MEMBER_REF);
3896 if (type_dependent_expression_p (fn)
3897 || any_type_dependent_arguments_p (*args))
3898 return build_nt_call_vec (fn, *args);
3900 orig_args = make_tree_vector_copy (*args);
3902 /* Transform the arguments and add the implicit "this"
3903 parameter. That must be done before the FN is transformed
3904 because we depend on the form of FN. */
3905 make_args_non_dependent (*args);
3906 object = build_non_dependent_expr (object);
3907 if (TREE_CODE (fn) == DOTSTAR_EXPR)
3908 object = cp_build_unary_op (ADDR_EXPR, object, 0, tf_warning_or_error);
3909 VEC_safe_insert (tree, gc, *args, 0, object);
3910 /* Now that the arguments are done, transform FN. */
3911 fn = build_non_dependent_expr (fn);
3914 /* A qualified name corresponding to a bound pointer-to-member is
3915 represented as an OFFSET_REF:
3917 struct B { void g(); };
3918 void (B::*p)();
3919 void B::g() { (this->*p)(); } */
3920 if (TREE_CODE (fn) == OFFSET_REF)
3922 tree object_addr = cp_build_unary_op (ADDR_EXPR, object, 0,
3923 tf_warning_or_error);
3924 fn = TREE_OPERAND (fn, 1);
3925 fn = get_member_function_from_ptrfunc (&object_addr, fn);
3926 VEC_safe_insert (tree, gc, *args, 0, object_addr);
3929 expr = cp_build_function_call_vec (fn, args, tf_warning_or_error);
3930 if (processing_template_decl && expr != error_mark_node)
3931 expr = build_min_non_dep_call_vec (expr, orig_fn, orig_args);
3933 if (orig_args != NULL)
3934 release_tree_vector (orig_args);
3936 return expr;
3940 void
3941 check_default_args (tree x)
3943 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
3944 bool saw_def = false;
3945 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
3946 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
3948 if (TREE_PURPOSE (arg))
3949 saw_def = true;
3950 else if (saw_def)
3952 error ("default argument missing for parameter %P of %q+#D", i, x);
3953 TREE_PURPOSE (arg) = error_mark_node;
3958 /* Return true if function DECL can be inlined. This is used to force
3959 instantiation of methods that might be interesting for inlining. */
3960 bool
3961 possibly_inlined_p (tree decl)
3963 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
3964 if (DECL_UNINLINABLE (decl))
3965 return false;
3966 if (!optimize || pragma_java_exceptions)
3967 return DECL_DECLARED_INLINE_P (decl);
3968 /* When optimizing, we might inline everything when flatten
3969 attribute or heuristics inlining for size or autoinlining
3970 is used. */
3971 return true;
3974 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
3975 If DECL is a specialization or implicitly declared class member,
3976 generate the actual definition. */
3978 void
3979 mark_used (tree decl)
3981 HOST_WIDE_INT saved_processing_template_decl = 0;
3983 /* If DECL is a BASELINK for a single function, then treat it just
3984 like the DECL for the function. Otherwise, if the BASELINK is
3985 for an overloaded function, we don't know which function was
3986 actually used until after overload resolution. */
3987 if (TREE_CODE (decl) == BASELINK)
3989 decl = BASELINK_FUNCTIONS (decl);
3990 if (really_overloaded_fn (decl))
3991 return;
3992 decl = OVL_CURRENT (decl);
3995 /* Set TREE_USED for the benefit of -Wunused. */
3996 TREE_USED (decl) = 1;
3997 if (DECL_CLONED_FUNCTION_P (decl))
3998 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4000 if (TREE_CODE (decl) == FUNCTION_DECL
4001 && DECL_DELETED_FN (decl))
4003 error ("deleted function %q+D", decl);
4004 error ("used here");
4005 return;
4007 /* If we don't need a value, then we don't need to synthesize DECL. */
4008 if (cp_unevaluated_operand != 0)
4009 return;
4011 /* We can only check DECL_ODR_USED on variables or functions with
4012 DECL_LANG_SPECIFIC set, and these are also the only decls that we
4013 might need special handling for. */
4014 if ((TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4015 || DECL_LANG_SPECIFIC (decl) == NULL
4016 || DECL_THUNK_P (decl))
4017 return;
4019 /* We only want to do this processing once. We don't need to keep trying
4020 to instantiate inline templates, because unit-at-a-time will make sure
4021 we get them compiled before functions that want to inline them. */
4022 if (DECL_ODR_USED (decl))
4023 return;
4025 /* If within finish_function, defer the rest until that function
4026 finishes, otherwise it might recurse. */
4027 if (defer_mark_used_calls)
4029 VEC_safe_push (tree, gc, deferred_mark_used_calls, decl);
4030 return;
4033 /* Normally, we can wait until instantiation-time to synthesize
4034 DECL. However, if DECL is a static data member initialized with
4035 a constant, we need the value right now because a reference to
4036 such a data member is not value-dependent. */
4037 if (TREE_CODE (decl) == VAR_DECL
4038 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
4039 && DECL_CLASS_SCOPE_P (decl))
4041 /* Don't try to instantiate members of dependent types. We
4042 cannot just use dependent_type_p here because this function
4043 may be called from fold_non_dependent_expr, and then we may
4044 see dependent types, even though processing_template_decl
4045 will not be set. */
4046 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl)))
4047 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl))))
4048 return;
4049 /* Pretend that we are not in a template, even if we are, so
4050 that the static data member initializer will be processed. */
4051 saved_processing_template_decl = processing_template_decl;
4052 processing_template_decl = 0;
4055 if (processing_template_decl)
4056 return;
4058 DECL_ODR_USED (decl) = 1;
4059 if (DECL_CLONED_FUNCTION_P (decl))
4060 DECL_ODR_USED (DECL_CLONED_FUNCTION (decl)) = 1;
4062 /* DR 757: A type without linkage shall not be used as the type of a
4063 variable or function with linkage, unless
4064 o the variable or function has extern "C" linkage (7.5 [dcl.link]), or
4065 o the variable or function is not used (3.2 [basic.def.odr]) or is
4066 defined in the same translation unit. */
4067 if (cxx_dialect > cxx98
4068 && decl_linkage (decl) != lk_none
4069 && !DECL_EXTERN_C_P (decl)
4070 && !DECL_ARTIFICIAL (decl)
4071 && !decl_defined_p (decl)
4072 && no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false))
4074 if (is_local_extern (decl))
4075 /* There's no way to define a local extern, and adding it to
4076 the vector interferes with GC, so give an error now. */
4077 no_linkage_error (decl);
4078 else
4079 VEC_safe_push (tree, gc, no_linkage_decls, decl);
4082 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
4083 && !DECL_INITIAL (decl) && !DECL_ARTIFICIAL (decl))
4084 /* Remember it, so we can check it was defined. */
4085 note_vague_linkage_fn (decl);
4087 /* Is it a synthesized method that needs to be synthesized? */
4088 if (TREE_CODE (decl) == FUNCTION_DECL
4089 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
4090 && DECL_DEFAULTED_FN (decl)
4091 && ! DECL_INITIAL (decl))
4093 /* Remember the current location for a function we will end up
4094 synthesizing. Then we can inform the user where it was
4095 required in the case of error. */
4096 DECL_SOURCE_LOCATION (decl) = input_location;
4098 /* Synthesizing an implicitly defined member function will result in
4099 garbage collection. We must treat this situation as if we were
4100 within the body of a function so as to avoid collecting live data
4101 on the stack (such as overload resolution candidates).
4103 We could just let cp_write_global_declarations handle synthesizing
4104 this function, since we just added it to deferred_fns, but doing
4105 it at the use site produces better error messages. */
4106 ++function_depth;
4107 synthesize_method (decl);
4108 --function_depth;
4109 /* If this is a synthesized method we don't need to
4110 do the instantiation test below. */
4112 else if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4113 && DECL_TEMPLATE_INFO (decl)
4114 && (!DECL_EXPLICIT_INSTANTIATION (decl)
4115 || always_instantiate_p (decl)))
4116 /* If this is a function or variable that is an instance of some
4117 template, we now know that we will need to actually do the
4118 instantiation. We check that DECL is not an explicit
4119 instantiation because that is not checked in instantiate_decl.
4121 We put off instantiating functions in order to improve compile
4122 times. Maintaining a stack of active functions is expensive,
4123 and the inliner knows to instantiate any functions it might
4124 need. Therefore, we always try to defer instantiation. */
4125 instantiate_decl (decl, /*defer_ok=*/true,
4126 /*expl_inst_class_mem_p=*/false);
4128 processing_template_decl = saved_processing_template_decl;
4131 #include "gt-cp-decl2.h"