Merge from trunk @ 138209
[official-gcc.git] / gcc / cp / decl2.c
blob20b0826faf26394f63260426de156464180243f5
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
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"
56 extern cpp_reader *parse_in;
58 /* This structure contains information about the initializations
59 and/or destructions required for a particular priority level. */
60 typedef struct priority_info_s {
61 /* Nonzero if there have been any initializations at this priority
62 throughout the translation unit. */
63 int initializations_p;
64 /* Nonzero if there have been any destructions at this priority
65 throughout the translation unit. */
66 int destructions_p;
67 } *priority_info;
69 static void mark_vtable_entries (tree);
70 static bool maybe_emit_vtables (tree);
71 static bool acceptable_java_type (tree);
72 static tree start_objects (int, int);
73 static void finish_objects (int, int, tree);
74 static tree start_static_storage_duration_function (unsigned);
75 static void finish_static_storage_duration_function (tree);
76 static priority_info get_priority_info (int);
77 static void do_static_initialization_or_destruction (tree, bool);
78 static void one_static_initialization_or_destruction (tree, tree, bool);
79 static void generate_ctor_or_dtor_function (bool, int, location_t *);
80 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node,
81 void *);
82 static tree prune_vars_needing_no_initialization (tree *);
83 static void write_out_vars (tree);
84 static void import_export_class (tree);
85 static tree get_guard_bits (tree);
86 static void determine_visibility_from_class (tree, tree);
88 /* A list of static class variables. This is needed, because a
89 static class variable can be declared inside the class without
90 an initializer, and then initialized, statically, outside the class. */
91 static GTY(()) VEC(tree,gc) *pending_statics;
93 /* A list of functions which were declared inline, but which we
94 may need to emit outline anyway. */
95 static GTY(()) VEC(tree,gc) *deferred_fns;
97 /* Nonzero if we're done parsing and into end-of-file activities. */
99 int at_eof;
103 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
104 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
105 that apply to the function). */
107 tree
108 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
110 tree raises;
111 int type_quals;
113 if (fntype == error_mark_node || ctype == error_mark_node)
114 return error_mark_node;
116 type_quals = quals & ~TYPE_QUAL_RESTRICT;
117 ctype = cp_build_qualified_type (ctype, type_quals);
118 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
119 (TREE_CODE (fntype) == METHOD_TYPE
120 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
121 : TYPE_ARG_TYPES (fntype)));
122 raises = TYPE_RAISES_EXCEPTIONS (fntype);
123 if (raises)
124 fntype = build_exception_variant (fntype, raises);
126 return fntype;
129 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
130 appropriately. */
132 tree
133 cp_build_parm_decl (tree name, tree type)
135 tree parm = build_decl (PARM_DECL, name, type);
136 /* DECL_ARG_TYPE is only used by the back end and the back end never
137 sees templates. */
138 if (!processing_template_decl)
139 DECL_ARG_TYPE (parm) = type_passed_as (type);
141 /* If the type is a pack expansion, then we have a function
142 parameter pack. */
143 if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
144 FUNCTION_PARAMETER_PACK_P (parm) = 1;
146 return parm;
149 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
150 indicated NAME. */
152 tree
153 build_artificial_parm (tree name, tree type)
155 tree parm = cp_build_parm_decl (name, type);
156 DECL_ARTIFICIAL (parm) = 1;
157 /* All our artificial parms are implicitly `const'; they cannot be
158 assigned to. */
159 TREE_READONLY (parm) = 1;
160 return parm;
163 /* Constructors for types with virtual baseclasses need an "in-charge" flag
164 saying whether this constructor is responsible for initialization of
165 virtual baseclasses or not. All destructors also need this "in-charge"
166 flag, which additionally determines whether or not the destructor should
167 free the memory for the object.
169 This function adds the "in-charge" flag to member function FN if
170 appropriate. It is called from grokclassfn and tsubst.
171 FN must be either a constructor or destructor.
173 The in-charge flag follows the 'this' parameter, and is followed by the
174 VTT parm (if any), then the user-written parms. */
176 void
177 maybe_retrofit_in_chrg (tree fn)
179 tree basetype, arg_types, parms, parm, fntype;
181 /* If we've already add the in-charge parameter don't do it again. */
182 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
183 return;
185 /* When processing templates we can't know, in general, whether or
186 not we're going to have virtual baseclasses. */
187 if (processing_template_decl)
188 return;
190 /* We don't need an in-charge parameter for constructors that don't
191 have virtual bases. */
192 if (DECL_CONSTRUCTOR_P (fn)
193 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
194 return;
196 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
197 basetype = TREE_TYPE (TREE_VALUE (arg_types));
198 arg_types = TREE_CHAIN (arg_types);
200 parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
202 /* If this is a subobject constructor or destructor, our caller will
203 pass us a pointer to our VTT. */
204 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
206 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
208 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
209 TREE_CHAIN (parm) = parms;
210 parms = parm;
212 /* ...and then to TYPE_ARG_TYPES. */
213 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
215 DECL_HAS_VTT_PARM_P (fn) = 1;
218 /* Then add the in-charge parm (before the VTT parm). */
219 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
220 TREE_CHAIN (parm) = parms;
221 parms = parm;
222 arg_types = hash_tree_chain (integer_type_node, arg_types);
224 /* Insert our new parameter(s) into the list. */
225 TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
227 /* And rebuild the function type. */
228 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
229 arg_types);
230 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
231 fntype = build_exception_variant (fntype,
232 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
233 TREE_TYPE (fn) = fntype;
235 /* Now we've got the in-charge parameter. */
236 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
239 /* Classes overload their constituent function names automatically.
240 When a function name is declared in a record structure,
241 its name is changed to it overloaded name. Since names for
242 constructors and destructors can conflict, we place a leading
243 '$' for destructors.
245 CNAME is the name of the class we are grokking for.
247 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
249 FLAGS contains bits saying what's special about today's
250 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
252 If FUNCTION is a destructor, then we must add the `auto-delete' field
253 as a second parameter. There is some hair associated with the fact
254 that we must "declare" this variable in the manner consistent with the
255 way the rest of the arguments were declared.
257 QUALS are the qualifiers for the this pointer. */
259 void
260 grokclassfn (tree ctype, tree function, enum overload_flags flags)
262 tree fn_name = DECL_NAME (function);
264 /* Even within an `extern "C"' block, members get C++ linkage. See
265 [dcl.link] for details. */
266 SET_DECL_LANGUAGE (function, lang_cplusplus);
268 if (fn_name == NULL_TREE)
270 error ("name missing for member function");
271 fn_name = get_identifier ("<anonymous>");
272 DECL_NAME (function) = fn_name;
275 DECL_CONTEXT (function) = ctype;
277 if (flags == DTOR_FLAG)
278 DECL_DESTRUCTOR_P (function) = 1;
280 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
281 maybe_retrofit_in_chrg (function);
284 /* Create an ARRAY_REF, checking for the user doing things backwards
285 along the way. */
287 tree
288 grok_array_decl (tree array_expr, tree index_exp)
290 tree type;
291 tree expr;
292 tree orig_array_expr = array_expr;
293 tree orig_index_exp = index_exp;
295 if (error_operand_p (array_expr) || error_operand_p (index_exp))
296 return error_mark_node;
298 if (processing_template_decl)
300 if (type_dependent_expression_p (array_expr)
301 || type_dependent_expression_p (index_exp))
302 return build_min_nt (ARRAY_REF, array_expr, index_exp,
303 NULL_TREE, NULL_TREE);
304 array_expr = build_non_dependent_expr (array_expr);
305 index_exp = build_non_dependent_expr (index_exp);
308 type = TREE_TYPE (array_expr);
309 gcc_assert (type);
310 type = non_reference (type);
312 /* If they have an `operator[]', use that. */
313 if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
314 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
315 array_expr, index_exp, NULL_TREE,
316 /*overloaded_p=*/NULL, tf_warning_or_error);
317 else
319 tree p1, p2, i1, i2;
321 /* Otherwise, create an ARRAY_REF for a pointer or array type.
322 It is a little-known fact that, if `a' is an array and `i' is
323 an int, you can write `i[a]', which means the same thing as
324 `a[i]'. */
325 if (TREE_CODE (type) == ARRAY_TYPE)
326 p1 = array_expr;
327 else
328 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
330 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
331 p2 = index_exp;
332 else
333 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
335 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
336 false);
337 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
338 false);
340 if ((p1 && i2) && (i1 && p2))
341 error ("ambiguous conversion for array subscript");
343 if (p1 && i2)
344 array_expr = p1, index_exp = i2;
345 else if (i1 && p2)
346 array_expr = p2, index_exp = i1;
347 else
349 error ("invalid types %<%T[%T]%> for array subscript",
350 type, TREE_TYPE (index_exp));
351 return error_mark_node;
354 if (array_expr == error_mark_node || index_exp == error_mark_node)
355 error ("ambiguous conversion for array subscript");
357 expr = build_array_ref (array_expr, index_exp);
359 if (processing_template_decl && expr != error_mark_node)
360 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
361 NULL_TREE, NULL_TREE);
362 return expr;
365 /* Given the cast expression EXP, checking out its validity. Either return
366 an error_mark_node if there was an unavoidable error, return a cast to
367 void for trying to delete a pointer w/ the value 0, or return the
368 call to delete. If DOING_VEC is true, we handle things differently
369 for doing an array delete.
370 Implements ARM $5.3.4. This is called from the parser. */
372 tree
373 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
375 tree t, type;
377 if (exp == error_mark_node)
378 return exp;
380 if (processing_template_decl)
382 t = build_min (DELETE_EXPR, void_type_node, exp, size);
383 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
384 DELETE_EXPR_USE_VEC (t) = doing_vec;
385 TREE_SIDE_EFFECTS (t) = 1;
386 return t;
389 /* An array can't have been allocated by new, so complain. */
390 if (TREE_CODE (exp) == VAR_DECL
391 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
392 warning (0, "deleting array %q#D", exp);
394 t = build_expr_type_conversion (WANT_POINTER, exp, true);
396 if (t == NULL_TREE || t == error_mark_node)
398 error ("type %q#T argument given to %<delete%>, expected pointer",
399 TREE_TYPE (exp));
400 return error_mark_node;
403 type = TREE_TYPE (t);
405 /* As of Valley Forge, you can delete a pointer to const. */
407 /* You can't delete functions. */
408 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
410 error ("cannot delete a function. Only pointer-to-objects are "
411 "valid arguments to %<delete%>");
412 return error_mark_node;
415 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
416 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
418 warning (0, "deleting %qT is undefined", type);
419 doing_vec = 0;
422 /* Deleting a pointer with the value zero is valid and has no effect. */
423 if (integer_zerop (t))
424 return build1 (NOP_EXPR, void_type_node, t);
426 if (doing_vec)
427 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
428 sfk_deleting_destructor,
429 use_global_delete);
430 else
431 return build_delete (type, t, sfk_deleting_destructor,
432 LOOKUP_NORMAL, use_global_delete);
435 /* Report an error if the indicated template declaration is not the
436 sort of thing that should be a member template. */
438 void
439 check_member_template (tree tmpl)
441 tree decl;
443 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
444 decl = DECL_TEMPLATE_RESULT (tmpl);
446 if (TREE_CODE (decl) == FUNCTION_DECL
447 || (TREE_CODE (decl) == TYPE_DECL
448 && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
450 /* The parser rejects template declarations in local classes. */
451 gcc_assert (!current_function_decl);
452 /* The parser rejects any use of virtual in a function template. */
453 gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
454 && DECL_VIRTUAL_P (decl)));
456 /* The debug-information generating code doesn't know what to do
457 with member templates. */
458 DECL_IGNORED_P (tmpl) = 1;
460 else
461 error ("template declaration of %q#D", decl);
464 /* Return true iff TYPE is a valid Java parameter or return type. */
466 static bool
467 acceptable_java_type (tree type)
469 if (type == error_mark_node)
470 return false;
472 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
473 return true;
474 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
476 type = TREE_TYPE (type);
477 if (TREE_CODE (type) == RECORD_TYPE)
479 tree args; int i;
480 if (! TYPE_FOR_JAVA (type))
481 return false;
482 if (! CLASSTYPE_TEMPLATE_INFO (type))
483 return true;
484 args = CLASSTYPE_TI_ARGS (type);
485 i = TREE_VEC_LENGTH (args);
486 while (--i >= 0)
488 type = TREE_VEC_ELT (args, i);
489 if (TREE_CODE (type) == POINTER_TYPE)
490 type = TREE_TYPE (type);
491 if (! TYPE_FOR_JAVA (type))
492 return false;
494 return true;
497 return false;
500 /* For a METHOD in a Java class CTYPE, return true if
501 the parameter and return types are valid Java types.
502 Otherwise, print appropriate error messages, and return false. */
504 bool
505 check_java_method (tree method)
507 bool jerr = false;
508 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
509 tree ret_type = TREE_TYPE (TREE_TYPE (method));
511 if (!acceptable_java_type (ret_type))
513 error ("Java method %qD has non-Java return type %qT",
514 method, ret_type);
515 jerr = true;
518 arg_types = TREE_CHAIN (arg_types);
519 if (DECL_HAS_IN_CHARGE_PARM_P (method))
520 arg_types = TREE_CHAIN (arg_types);
521 if (DECL_HAS_VTT_PARM_P (method))
522 arg_types = TREE_CHAIN (arg_types);
524 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
526 tree type = TREE_VALUE (arg_types);
527 if (!acceptable_java_type (type))
529 if (type != error_mark_node)
530 error ("Java method %qD has non-Java parameter type %qT",
531 method, type);
532 jerr = true;
535 return !jerr;
538 /* Sanity check: report error if this function FUNCTION is not
539 really a member of the class (CTYPE) it is supposed to belong to.
540 TEMPLATE_PARMS is used to specify the template parameters of a member
541 template passed as FUNCTION_DECL. If the member template is passed as a
542 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
543 from the declaration. If the function is not a function template, it
544 must be NULL.
545 It returns the original declaration for the function, NULL_TREE if
546 no declaration was found, error_mark_node if an error was emitted. */
548 tree
549 check_classfn (tree ctype, tree function, tree template_parms)
551 int ix;
552 bool is_template;
553 tree pushed_scope;
555 if (DECL_USE_TEMPLATE (function)
556 && !(TREE_CODE (function) == TEMPLATE_DECL
557 && DECL_TEMPLATE_SPECIALIZATION (function))
558 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
559 /* Since this is a specialization of a member template,
560 we're not going to find the declaration in the class.
561 For example, in:
563 struct S { template <typename T> void f(T); };
564 template <> void S::f(int);
566 we're not going to find `S::f(int)', but there's no
567 reason we should, either. We let our callers know we didn't
568 find the method, but we don't complain. */
569 return NULL_TREE;
571 /* Basic sanity check: for a template function, the template parameters
572 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
573 if (TREE_CODE (function) == TEMPLATE_DECL)
575 gcc_assert (!template_parms
576 || comp_template_parms (template_parms,
577 DECL_TEMPLATE_PARMS (function)));
578 template_parms = DECL_TEMPLATE_PARMS (function);
581 /* OK, is this a definition of a member template? */
582 is_template = (template_parms != NULL_TREE);
584 /* We must enter the scope here, because conversion operators are
585 named by target type, and type equivalence relies on typenames
586 resolving within the scope of CTYPE. */
587 pushed_scope = push_scope (ctype);
588 ix = class_method_index_for_fn (complete_type (ctype), function);
589 if (ix >= 0)
591 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
592 tree fndecls, fndecl = 0;
593 bool is_conv_op;
594 const char *format = NULL;
596 for (fndecls = VEC_index (tree, methods, ix);
597 fndecls; fndecls = OVL_NEXT (fndecls))
599 tree p1, p2;
601 fndecl = OVL_CURRENT (fndecls);
602 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
603 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
605 /* We cannot simply call decls_match because this doesn't
606 work for static member functions that are pretending to
607 be methods, and because the name may have been changed by
608 asm("new_name"). */
610 /* Get rid of the this parameter on functions that become
611 static. */
612 if (DECL_STATIC_FUNCTION_P (fndecl)
613 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
614 p1 = TREE_CHAIN (p1);
616 /* A member template definition only matches a member template
617 declaration. */
618 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
619 continue;
621 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
622 TREE_TYPE (TREE_TYPE (fndecl)))
623 && compparms (p1, p2)
624 && (!is_template
625 || comp_template_parms (template_parms,
626 DECL_TEMPLATE_PARMS (fndecl)))
627 && (DECL_TEMPLATE_SPECIALIZATION (function)
628 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
629 && (!DECL_TEMPLATE_SPECIALIZATION (function)
630 || (DECL_TI_TEMPLATE (function)
631 == DECL_TI_TEMPLATE (fndecl))))
632 break;
634 if (fndecls)
636 if (pushed_scope)
637 pop_scope (pushed_scope);
638 return OVL_CURRENT (fndecls);
641 error ("prototype for %q#D does not match any in class %qT",
642 function, ctype);
643 is_conv_op = DECL_CONV_FN_P (fndecl);
645 if (is_conv_op)
646 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
647 fndecls = VEC_index (tree, methods, ix);
648 while (fndecls)
650 fndecl = OVL_CURRENT (fndecls);
651 fndecls = OVL_NEXT (fndecls);
653 if (!fndecls && is_conv_op)
655 if (VEC_length (tree, methods) > (size_t) ++ix)
657 fndecls = VEC_index (tree, methods, ix);
658 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
660 fndecls = NULL_TREE;
661 is_conv_op = false;
664 else
665 is_conv_op = false;
667 if (format)
668 format = " %+#D";
669 else if (fndecls)
670 format = N_("candidates are: %+#D");
671 else
672 format = N_("candidate is: %+#D");
673 error (format, fndecl);
676 else if (!COMPLETE_TYPE_P (ctype))
677 cxx_incomplete_type_error (function, ctype);
678 else
679 error ("no %q#D member function declared in class %qT",
680 function, ctype);
682 if (pushed_scope)
683 pop_scope (pushed_scope);
684 return error_mark_node;
687 /* DECL is a function with vague linkage. Remember it so that at the
688 end of the translation unit we can decide whether or not to emit
689 it. */
691 void
692 note_vague_linkage_fn (tree decl)
694 if (!DECL_DEFERRED_FN (decl))
696 DECL_DEFERRED_FN (decl) = 1;
697 DECL_DEFER_OUTPUT (decl) = 1;
698 VEC_safe_push (tree, gc, deferred_fns, decl);
702 /* We have just processed the DECL, which is a static data member.
703 The other parameters are as for cp_finish_decl. */
705 void
706 finish_static_data_member_decl (tree decl,
707 tree init, bool init_const_expr_p,
708 tree asmspec_tree,
709 int flags)
711 DECL_CONTEXT (decl) = current_class_type;
713 /* We cannot call pushdecl here, because that would fill in the
714 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
715 the right thing, namely, to put this decl out straight away. */
717 if (! processing_template_decl)
718 VEC_safe_push (tree, gc, pending_statics, decl);
720 if (LOCAL_CLASS_P (current_class_type))
721 permerror ("local class %q#T shall not have static data member %q#D",
722 current_class_type, decl);
724 /* Static consts need not be initialized in the class definition. */
725 if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
727 static int explained = 0;
729 error ("initializer invalid for static member with constructor");
730 if (!explained)
732 error ("(an out of class initialization is required)");
733 explained = 1;
735 init = NULL_TREE;
737 /* Force the compiler to know when an uninitialized static const
738 member is being used. */
739 if (CP_TYPE_CONST_P (TREE_TYPE (decl)) && init == 0)
740 TREE_USED (decl) = 1;
741 DECL_INITIAL (decl) = init;
742 DECL_IN_AGGR_P (decl) = 1;
744 cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
747 /* DECLARATOR and DECLSPECS correspond to a class member. The other
748 parameters are as for cp_finish_decl. Return the DECL for the
749 class member declared. */
751 tree
752 grokfield (const cp_declarator *declarator,
753 cp_decl_specifier_seq *declspecs,
754 tree init, bool init_const_expr_p,
755 tree asmspec_tree,
756 tree attrlist)
758 tree value;
759 const char *asmspec = 0;
760 int flags = LOOKUP_ONLYCONVERTING;
762 if (init
763 && TREE_CODE (init) == TREE_LIST
764 && TREE_VALUE (init) == error_mark_node
765 && TREE_CHAIN (init) == NULL_TREE)
766 init = NULL_TREE;
768 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
769 if (! value || error_operand_p (value))
770 /* friend or constructor went bad. */
771 return error_mark_node;
773 if (TREE_CODE (value) == TYPE_DECL && init)
775 error ("typedef %qD is initialized (use __typeof__ instead)", value);
776 init = NULL_TREE;
779 /* Pass friendly classes back. */
780 if (value == void_type_node)
781 return value;
783 /* Pass friend decls back. */
784 if ((TREE_CODE (value) == FUNCTION_DECL
785 || TREE_CODE (value) == TEMPLATE_DECL)
786 && DECL_CONTEXT (value) != current_class_type)
787 return value;
789 if (DECL_NAME (value) != NULL_TREE
790 && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
791 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
792 error ("member %qD conflicts with virtual function table field name",
793 value);
795 /* Stash away type declarations. */
796 if (TREE_CODE (value) == TYPE_DECL)
798 DECL_NONLOCAL (value) = 1;
799 DECL_CONTEXT (value) = current_class_type;
801 if (processing_template_decl)
802 value = push_template_decl (value);
804 if (attrlist)
805 cplus_decl_attributes (&value, attrlist, 0);
807 return value;
810 if (DECL_IN_AGGR_P (value))
812 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
813 return void_type_node;
816 if (asmspec_tree && asmspec_tree != error_mark_node)
817 asmspec = TREE_STRING_POINTER (asmspec_tree);
819 if (init)
821 if (TREE_CODE (value) == FUNCTION_DECL)
823 /* Initializers for functions are rejected early in the parser.
824 If we get here, it must be a pure specifier for a method. */
825 if (init == ridpointers[(int)RID_DELETE])
827 DECL_DELETED_FN (value) = 1;
828 DECL_DECLARED_INLINE_P (value) = 1;
829 DECL_INITIAL (value) = error_mark_node;
831 else if (init == ridpointers[(int)RID_DEFAULT])
833 if (!defaultable_fn_p (value))
834 error ("%qD cannot be defaulted", value);
835 else
837 DECL_DEFAULTED_FN (value) = 1;
838 DECL_INITIALIZED_IN_CLASS_P (value) = 1;
839 DECL_DECLARED_INLINE_P (value) = 1;
840 DECL_INLINE (value) = 1;
843 else if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
845 gcc_assert (error_operand_p (init) || integer_zerop (init));
846 DECL_PURE_VIRTUAL_P (value) = 1;
848 else
850 gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
851 error ("initializer specified for static member function %qD",
852 value);
855 else if (pedantic && TREE_CODE (value) != VAR_DECL)
856 /* Already complained in grokdeclarator. */
857 init = NULL_TREE;
858 else if (!processing_template_decl)
860 if (TREE_CODE (init) == CONSTRUCTOR)
861 init = digest_init (TREE_TYPE (value), init);
862 else
863 init = integral_constant_value (init);
865 if (init != error_mark_node && !TREE_CONSTANT (init))
867 /* We can allow references to things that are effectively
868 static, since references are initialized with the
869 address. */
870 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
871 || (TREE_STATIC (init) == 0
872 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
874 error ("field initializer is not constant");
875 init = error_mark_node;
881 if (processing_template_decl
882 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
884 value = push_template_decl (value);
885 if (error_operand_p (value))
886 return error_mark_node;
889 if (attrlist)
890 cplus_decl_attributes (&value, attrlist, 0);
892 switch (TREE_CODE (value))
894 case VAR_DECL:
895 finish_static_data_member_decl (value, init, init_const_expr_p,
896 asmspec_tree, flags);
897 return value;
899 case FIELD_DECL:
900 if (asmspec)
901 error ("%<asm%> specifiers are not permitted on non-static data members");
902 if (DECL_INITIAL (value) == error_mark_node)
903 init = error_mark_node;
904 cp_finish_decl (value, init, /*init_const_expr_p=*/false,
905 NULL_TREE, flags);
906 DECL_INITIAL (value) = init;
907 DECL_IN_AGGR_P (value) = 1;
908 return value;
910 case FUNCTION_DECL:
911 if (asmspec)
912 set_user_assembler_name (value, asmspec);
914 cp_finish_decl (value,
915 /*init=*/NULL_TREE,
916 /*init_const_expr_p=*/false,
917 asmspec_tree, flags);
919 /* Pass friends back this way. */
920 if (DECL_FRIEND_P (value))
921 return void_type_node;
923 DECL_IN_AGGR_P (value) = 1;
924 return value;
926 default:
927 gcc_unreachable ();
929 return NULL_TREE;
932 /* Like `grokfield', but for bitfields.
933 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
935 tree
936 grokbitfield (const cp_declarator *declarator,
937 cp_decl_specifier_seq *declspecs, tree width,
938 tree attrlist)
940 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, &attrlist);
942 if (value == error_mark_node)
943 return NULL_TREE; /* friends went bad. */
945 /* Pass friendly classes back. */
946 if (TREE_CODE (value) == VOID_TYPE)
947 return void_type_node;
949 if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
950 && (POINTER_TYPE_P (value)
951 || !dependent_type_p (TREE_TYPE (value))))
953 error ("bit-field %qD with non-integral type", value);
954 return error_mark_node;
957 if (TREE_CODE (value) == TYPE_DECL)
959 error ("cannot declare %qD to be a bit-field type", value);
960 return NULL_TREE;
963 /* Usually, finish_struct_1 catches bitfields with invalid types.
964 But, in the case of bitfields with function type, we confuse
965 ourselves into thinking they are member functions, so we must
966 check here. */
967 if (TREE_CODE (value) == FUNCTION_DECL)
969 error ("cannot declare bit-field %qD with function type",
970 DECL_NAME (value));
971 return NULL_TREE;
974 if (DECL_IN_AGGR_P (value))
976 error ("%qD is already defined in the class %qT", value,
977 DECL_CONTEXT (value));
978 return void_type_node;
981 if (TREE_STATIC (value))
983 error ("static member %qD cannot be a bit-field", value);
984 return NULL_TREE;
986 finish_decl (value, NULL_TREE, NULL_TREE);
988 if (width != error_mark_node)
990 constant_expression_warning (width);
991 DECL_INITIAL (value) = width;
992 SET_DECL_C_BIT_FIELD (value);
995 DECL_IN_AGGR_P (value) = 1;
997 if (attrlist)
998 cplus_decl_attributes (&value, attrlist, /*flags=*/0);
1000 return value;
1004 /* Returns true iff ATTR is an attribute which needs to be applied at
1005 instantiation time rather than template definition time. */
1007 static bool
1008 is_late_template_attribute (tree attr, tree decl)
1010 tree name = TREE_PURPOSE (attr);
1011 tree args = TREE_VALUE (attr);
1012 const struct attribute_spec *spec = lookup_attribute_spec (name);
1013 tree arg;
1015 if (!spec)
1016 /* Unknown attribute. */
1017 return false;
1019 /* Attribute weak handling wants to write out assembly right away. */
1020 if (is_attribute_p ("weak", name))
1021 return true;
1023 /* If any of the arguments are dependent expressions, we can't evaluate
1024 the attribute until instantiation time. */
1025 for (arg = args; arg; arg = TREE_CHAIN (arg))
1027 tree t = TREE_VALUE (arg);
1029 /* If the first attribute argument is an identifier, only consider
1030 second and following arguments. Attributes like mode, format,
1031 cleanup and several target specific attributes aren't late
1032 just because they have an IDENTIFIER_NODE as first argument. */
1033 if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1034 continue;
1036 if (value_dependent_expression_p (t)
1037 || type_dependent_expression_p (t))
1038 return true;
1041 if (TREE_CODE (decl) == TYPE_DECL
1042 || TYPE_P (decl)
1043 || spec->type_required)
1045 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1047 /* We can't apply any attributes to a completely unknown type until
1048 instantiation time. */
1049 enum tree_code code = TREE_CODE (type);
1050 if (code == TEMPLATE_TYPE_PARM
1051 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1052 || code == TYPENAME_TYPE)
1053 return true;
1054 /* Also defer most attributes on dependent types. This is not
1055 necessary in all cases, but is the better default. */
1056 else if (dependent_type_p (type)
1057 /* But attribute visibility specifically works on
1058 templates. */
1059 && !is_attribute_p ("visibility", name))
1060 return true;
1061 else
1062 return false;
1064 else
1065 return false;
1068 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1069 applied at instantiation time and return them. If IS_DEPENDENT is true,
1070 the declaration itself is dependent, so all attributes should be applied
1071 at instantiation time. */
1073 static tree
1074 splice_template_attributes (tree *attr_p, tree decl)
1076 tree *p = attr_p;
1077 tree late_attrs = NULL_TREE;
1078 tree *q = &late_attrs;
1080 if (!p)
1081 return NULL_TREE;
1083 for (; *p; )
1085 if (is_late_template_attribute (*p, decl))
1087 ATTR_IS_DEPENDENT (*p) = 1;
1088 *q = *p;
1089 *p = TREE_CHAIN (*p);
1090 q = &TREE_CHAIN (*q);
1091 *q = NULL_TREE;
1093 else
1094 p = &TREE_CHAIN (*p);
1097 return late_attrs;
1100 /* Remove any late attributes from the list in ATTR_P and attach them to
1101 DECL_P. */
1103 static void
1104 save_template_attributes (tree *attr_p, tree *decl_p)
1106 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1107 tree *q;
1108 tree old_attrs = NULL_TREE;
1110 if (!late_attrs)
1111 return;
1113 /* Give this type a name so we know to look it up again at instantiation
1114 time. */
1115 if (TREE_CODE (*decl_p) == TYPE_DECL
1116 && DECL_ORIGINAL_TYPE (*decl_p) == NULL_TREE)
1118 tree oldt = TREE_TYPE (*decl_p);
1119 tree newt = build_variant_type_copy (oldt);
1120 DECL_ORIGINAL_TYPE (*decl_p) = oldt;
1121 TREE_TYPE (*decl_p) = newt;
1122 TYPE_NAME (newt) = *decl_p;
1123 TREE_USED (newt) = TREE_USED (*decl_p);
1126 if (DECL_P (*decl_p))
1127 q = &DECL_ATTRIBUTES (*decl_p);
1128 else
1129 q = &TYPE_ATTRIBUTES (*decl_p);
1131 old_attrs = *q;
1133 /* Place the late attributes at the beginning of the attribute
1134 list. */
1135 TREE_CHAIN (tree_last (late_attrs)) = *q;
1136 *q = late_attrs;
1138 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1140 /* We've added new attributes directly to the main variant, so
1141 now we need to update all of the other variants to include
1142 these new attributes. */
1143 tree variant;
1144 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1145 variant = TYPE_NEXT_VARIANT (variant))
1147 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1148 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1153 /* Like reconstruct_complex_type, but handle also template trees. */
1155 tree
1156 cp_reconstruct_complex_type (tree type, tree bottom)
1158 tree inner, outer;
1160 if (TREE_CODE (type) == POINTER_TYPE)
1162 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1163 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1164 TYPE_REF_CAN_ALIAS_ALL (type));
1166 else if (TREE_CODE (type) == REFERENCE_TYPE)
1168 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1169 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1170 TYPE_REF_CAN_ALIAS_ALL (type));
1172 else if (TREE_CODE (type) == ARRAY_TYPE)
1174 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1175 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1176 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1177 element type qualification will be handled by the recursive
1178 cp_reconstruct_complex_type call and cp_build_qualified_type
1179 for ARRAY_TYPEs changes the element type. */
1180 return outer;
1182 else if (TREE_CODE (type) == FUNCTION_TYPE)
1184 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1185 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1187 else if (TREE_CODE (type) == METHOD_TYPE)
1189 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1190 /* The build_method_type_directly() routine prepends 'this' to argument list,
1191 so we must compensate by getting rid of it. */
1192 outer
1193 = build_method_type_directly
1194 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1195 inner,
1196 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1198 else if (TREE_CODE (type) == OFFSET_TYPE)
1200 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1201 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1203 else
1204 return bottom;
1206 return cp_build_qualified_type (outer, TYPE_QUALS (type));
1209 /* Like decl_attributes, but handle C++ complexity. */
1211 void
1212 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1214 if (*decl == NULL_TREE || *decl == void_type_node
1215 || *decl == error_mark_node
1216 || attributes == NULL_TREE)
1217 return;
1219 if (processing_template_decl)
1221 if (check_for_bare_parameter_packs (attributes))
1222 return;
1224 save_template_attributes (&attributes, decl);
1225 if (attributes == NULL_TREE)
1226 return;
1229 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1230 decl = &DECL_TEMPLATE_RESULT (*decl);
1232 decl_attributes (decl, attributes, flags);
1234 if (TREE_CODE (*decl) == TYPE_DECL)
1235 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1238 /* Walks through the namespace- or function-scope anonymous union
1239 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1240 Returns one of the fields for use in the mangled name. */
1242 static tree
1243 build_anon_union_vars (tree type, tree object)
1245 tree main_decl = NULL_TREE;
1246 tree field;
1248 /* Rather than write the code to handle the non-union case,
1249 just give an error. */
1250 if (TREE_CODE (type) != UNION_TYPE)
1251 error ("anonymous struct not inside named type");
1253 for (field = TYPE_FIELDS (type);
1254 field != NULL_TREE;
1255 field = TREE_CHAIN (field))
1257 tree decl;
1258 tree ref;
1260 if (DECL_ARTIFICIAL (field))
1261 continue;
1262 if (TREE_CODE (field) != FIELD_DECL)
1264 permerror ("%q+#D invalid; an anonymous union can only "
1265 "have non-static data members", field);
1266 continue;
1269 if (TREE_PRIVATE (field))
1270 permerror ("private member %q+#D in anonymous union", field);
1271 else if (TREE_PROTECTED (field))
1272 permerror ("protected member %q+#D in anonymous union", field);
1274 if (processing_template_decl)
1275 ref = build_min_nt (COMPONENT_REF, object,
1276 DECL_NAME (field), NULL_TREE);
1277 else
1278 ref = build_class_member_access_expr (object, field, NULL_TREE,
1279 false, tf_warning_or_error);
1281 if (DECL_NAME (field))
1283 tree base;
1285 decl = build_decl (VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1286 DECL_ANON_UNION_VAR_P (decl) = 1;
1288 base = get_base_address (object);
1289 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1290 TREE_STATIC (decl) = TREE_STATIC (base);
1291 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1293 SET_DECL_VALUE_EXPR (decl, ref);
1294 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1296 decl = pushdecl (decl);
1298 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1299 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1300 else
1301 decl = 0;
1303 if (main_decl == NULL_TREE)
1304 main_decl = decl;
1307 return main_decl;
1310 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1311 anonymous union, then all members must be laid out together. PUBLIC_P
1312 is nonzero if this union is not declared static. */
1314 void
1315 finish_anon_union (tree anon_union_decl)
1317 tree type;
1318 tree main_decl;
1319 bool public_p;
1321 if (anon_union_decl == error_mark_node)
1322 return;
1324 type = TREE_TYPE (anon_union_decl);
1325 public_p = TREE_PUBLIC (anon_union_decl);
1327 /* The VAR_DECL's context is the same as the TYPE's context. */
1328 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1330 if (TYPE_FIELDS (type) == NULL_TREE)
1331 return;
1333 if (public_p)
1335 error ("namespace-scope anonymous aggregates must be static");
1336 return;
1339 main_decl = build_anon_union_vars (type, anon_union_decl);
1340 if (main_decl == error_mark_node)
1341 return;
1342 if (main_decl == NULL_TREE)
1344 warning (0, "anonymous union with no members");
1345 return;
1348 if (!processing_template_decl)
1350 /* Use main_decl to set the mangled name. */
1351 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1352 mangle_decl (anon_union_decl);
1353 DECL_NAME (anon_union_decl) = NULL_TREE;
1356 pushdecl (anon_union_decl);
1357 if (building_stmt_tree ()
1358 && at_function_scope_p ())
1359 add_decl_expr (anon_union_decl);
1360 else if (!processing_template_decl)
1361 rest_of_decl_compilation (anon_union_decl,
1362 toplevel_bindings_p (), at_eof);
1365 /* Auxiliary functions to make type signatures for
1366 `operator new' and `operator delete' correspond to
1367 what compiler will be expecting. */
1369 tree
1370 coerce_new_type (tree type)
1372 int e = 0;
1373 tree args = TYPE_ARG_TYPES (type);
1375 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1377 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1379 e = 1;
1380 error ("%<operator new%> must return type %qT", ptr_type_node);
1383 if (args && args != void_list_node)
1385 if (TREE_PURPOSE (args))
1387 /* [basic.stc.dynamic.allocation]
1389 The first parameter shall not have an associated default
1390 argument. */
1391 error ("the first parameter of %<operator new%> cannot "
1392 "have a default argument");
1393 /* Throw away the default argument. */
1394 TREE_PURPOSE (args) = NULL_TREE;
1397 if (!same_type_p (TREE_VALUE (args), size_type_node))
1399 e = 2;
1400 args = TREE_CHAIN (args);
1403 else
1404 e = 2;
1406 if (e == 2)
1407 permerror ("%<operator new%> takes type %<size_t%> (%qT) "
1408 "as first parameter", size_type_node);
1410 switch (e)
1412 case 2:
1413 args = tree_cons (NULL_TREE, size_type_node, args);
1414 /* Fall through. */
1415 case 1:
1416 type = build_exception_variant
1417 (build_function_type (ptr_type_node, args),
1418 TYPE_RAISES_EXCEPTIONS (type));
1419 /* Fall through. */
1420 default:;
1422 return type;
1425 tree
1426 coerce_delete_type (tree type)
1428 int e = 0;
1429 tree args = TYPE_ARG_TYPES (type);
1431 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1433 if (!same_type_p (TREE_TYPE (type), void_type_node))
1435 e = 1;
1436 error ("%<operator delete%> must return type %qT", void_type_node);
1439 if (!args || args == void_list_node
1440 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1442 e = 2;
1443 if (args && args != void_list_node)
1444 args = TREE_CHAIN (args);
1445 error ("%<operator delete%> takes type %qT as first parameter",
1446 ptr_type_node);
1448 switch (e)
1450 case 2:
1451 args = tree_cons (NULL_TREE, ptr_type_node, args);
1452 /* Fall through. */
1453 case 1:
1454 type = build_exception_variant
1455 (build_function_type (void_type_node, args),
1456 TYPE_RAISES_EXCEPTIONS (type));
1457 /* Fall through. */
1458 default:;
1461 return type;
1464 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1465 and mark them as needed. */
1467 static void
1468 mark_vtable_entries (tree decl)
1470 tree fnaddr;
1471 unsigned HOST_WIDE_INT idx;
1473 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1474 idx, fnaddr)
1476 tree fn;
1478 STRIP_NOPS (fnaddr);
1480 if (TREE_CODE (fnaddr) != ADDR_EXPR
1481 && TREE_CODE (fnaddr) != FDESC_EXPR)
1482 /* This entry is an offset: a virtual base class offset, a
1483 virtual call offset, an RTTI offset, etc. */
1484 continue;
1486 fn = TREE_OPERAND (fnaddr, 0);
1487 TREE_ADDRESSABLE (fn) = 1;
1488 /* When we don't have vcall offsets, we output thunks whenever
1489 we output the vtables that contain them. With vcall offsets,
1490 we know all the thunks we'll need when we emit a virtual
1491 function, so we emit the thunks there instead. */
1492 if (DECL_THUNK_P (fn))
1493 use_thunk (fn, /*emit_p=*/0);
1494 mark_used (fn);
1498 /* Set DECL up to have the closest approximation of "initialized common"
1499 linkage available. */
1501 void
1502 comdat_linkage (tree decl)
1504 if (flag_weak)
1505 make_decl_one_only (decl);
1506 else if (TREE_CODE (decl) == FUNCTION_DECL
1507 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1508 /* We can just emit function and compiler-generated variables
1509 statically; having multiple copies is (for the most part) only
1510 a waste of space.
1512 There are two correctness issues, however: the address of a
1513 template instantiation with external linkage should be the
1514 same, independent of what translation unit asks for the
1515 address, and this will not hold when we emit multiple copies of
1516 the function. However, there's little else we can do.
1518 Also, by default, the typeinfo implementation assumes that
1519 there will be only one copy of the string used as the name for
1520 each type. Therefore, if weak symbols are unavailable, the
1521 run-time library should perform a more conservative check; it
1522 should perform a string comparison, rather than an address
1523 comparison. */
1524 TREE_PUBLIC (decl) = 0;
1525 else
1527 /* Static data member template instantiations, however, cannot
1528 have multiple copies. */
1529 if (DECL_INITIAL (decl) == 0
1530 || DECL_INITIAL (decl) == error_mark_node)
1531 DECL_COMMON (decl) = 1;
1532 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1534 DECL_COMMON (decl) = 1;
1535 DECL_INITIAL (decl) = error_mark_node;
1537 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1539 /* We can't do anything useful; leave vars for explicit
1540 instantiation. */
1541 DECL_EXTERNAL (decl) = 1;
1542 DECL_NOT_REALLY_EXTERN (decl) = 0;
1546 if (DECL_LANG_SPECIFIC (decl))
1547 DECL_COMDAT (decl) = 1;
1550 /* For win32 we also want to put explicit instantiations in
1551 linkonce sections, so that they will be merged with implicit
1552 instantiations; otherwise we get duplicate symbol errors.
1553 For Darwin we do not want explicit instantiations to be
1554 linkonce. */
1556 void
1557 maybe_make_one_only (tree decl)
1559 /* We used to say that this was not necessary on targets that support weak
1560 symbols, because the implicit instantiations will defer to the explicit
1561 one. However, that's not actually the case in SVR4; a strong definition
1562 after a weak one is an error. Also, not making explicit
1563 instantiations one_only means that we can end up with two copies of
1564 some template instantiations. */
1565 if (! flag_weak)
1566 return;
1568 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1569 we can get away with not emitting them if they aren't used. We need
1570 to for variables so that cp_finish_decl will update their linkage,
1571 because their DECL_INITIAL may not have been set properly yet. */
1573 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1574 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1575 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1577 make_decl_one_only (decl);
1579 if (TREE_CODE (decl) == VAR_DECL)
1581 DECL_COMDAT (decl) = 1;
1582 /* Mark it needed so we don't forget to emit it. */
1583 mark_decl_referenced (decl);
1588 /* Determine whether or not we want to specifically import or export CTYPE,
1589 using various heuristics. */
1591 static void
1592 import_export_class (tree ctype)
1594 /* -1 for imported, 1 for exported. */
1595 int import_export = 0;
1597 /* It only makes sense to call this function at EOF. The reason is
1598 that this function looks at whether or not the first non-inline
1599 non-abstract virtual member function has been defined in this
1600 translation unit. But, we can't possibly know that until we've
1601 seen the entire translation unit. */
1602 gcc_assert (at_eof);
1604 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1605 return;
1607 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1608 we will have CLASSTYPE_INTERFACE_ONLY set but not
1609 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1610 heuristic because someone will supply a #pragma implementation
1611 elsewhere, and deducing it here would produce a conflict. */
1612 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1613 return;
1615 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1616 import_export = -1;
1617 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1618 import_export = 1;
1619 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1620 && !flag_implicit_templates)
1621 /* For a template class, without -fimplicit-templates, check the
1622 repository. If the virtual table is assigned to this
1623 translation unit, then export the class; otherwise, import
1624 it. */
1625 import_export = repo_export_class_p (ctype) ? 1 : -1;
1626 else if (TYPE_POLYMORPHIC_P (ctype))
1628 /* The ABI specifies that the virtual table and associated
1629 information are emitted with the key method, if any. */
1630 tree method = CLASSTYPE_KEY_METHOD (ctype);
1631 /* If weak symbol support is not available, then we must be
1632 careful not to emit the vtable when the key function is
1633 inline. An inline function can be defined in multiple
1634 translation units. If we were to emit the vtable in each
1635 translation unit containing a definition, we would get
1636 multiple definition errors at link-time. */
1637 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1638 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1641 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1642 a definition anywhere else. */
1643 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1644 import_export = 0;
1646 /* Allow back ends the chance to overrule the decision. */
1647 if (targetm.cxx.import_export_class)
1648 import_export = targetm.cxx.import_export_class (ctype, import_export);
1650 if (import_export)
1652 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1653 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1657 /* Return true if VAR has already been provided to the back end; in that
1658 case VAR should not be modified further by the front end. */
1659 static bool
1660 var_finalized_p (tree var)
1662 return varpool_node (var)->finalized;
1665 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1666 must be emitted in this translation unit. Mark it as such. */
1668 void
1669 mark_needed (tree decl)
1671 /* It's possible that we no longer need to set
1672 TREE_SYMBOL_REFERENCED here directly, but doing so is
1673 harmless. */
1674 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1675 mark_decl_referenced (decl);
1678 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1679 returns true if a definition of this entity should be provided in
1680 this object file. Callers use this function to determine whether
1681 or not to let the back end know that a definition of DECL is
1682 available in this translation unit. */
1684 bool
1685 decl_needed_p (tree decl)
1687 gcc_assert (TREE_CODE (decl) == VAR_DECL
1688 || TREE_CODE (decl) == FUNCTION_DECL);
1689 /* This function should only be called at the end of the translation
1690 unit. We cannot be sure of whether or not something will be
1691 COMDAT until that point. */
1692 gcc_assert (at_eof);
1694 /* All entities with external linkage that are not COMDAT should be
1695 emitted; they may be referred to from other object files. */
1696 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1697 return true;
1698 /* If this entity was used, let the back end see it; it will decide
1699 whether or not to emit it into the object file. */
1700 if (TREE_USED (decl)
1701 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1702 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1703 return true;
1704 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1705 reference to DECL might cause it to be emitted later. */
1706 return false;
1709 /* If necessary, write out the vtables for the dynamic class CTYPE.
1710 Returns true if any vtables were emitted. */
1712 static bool
1713 maybe_emit_vtables (tree ctype)
1715 tree vtbl;
1716 tree primary_vtbl;
1717 int needed = 0;
1719 /* If the vtables for this class have already been emitted there is
1720 nothing more to do. */
1721 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1722 if (var_finalized_p (primary_vtbl))
1723 return false;
1724 /* Ignore dummy vtables made by get_vtable_decl. */
1725 if (TREE_TYPE (primary_vtbl) == void_type_node)
1726 return false;
1728 /* On some targets, we cannot determine the key method until the end
1729 of the translation unit -- which is when this function is
1730 called. */
1731 if (!targetm.cxx.key_method_may_be_inline ())
1732 determine_key_method (ctype);
1734 /* See if any of the vtables are needed. */
1735 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1737 import_export_decl (vtbl);
1738 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1739 needed = 1;
1741 if (!needed)
1743 /* If the references to this class' vtables are optimized away,
1744 still emit the appropriate debugging information. See
1745 dfs_debug_mark. */
1746 if (DECL_COMDAT (primary_vtbl)
1747 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1748 note_debug_info_needed (ctype);
1749 return false;
1752 /* The ABI requires that we emit all of the vtables if we emit any
1753 of them. */
1754 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1756 /* Mark entities references from the virtual table as used. */
1757 mark_vtable_entries (vtbl);
1759 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1761 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl));
1763 /* It had better be all done at compile-time. */
1764 gcc_assert (!expr);
1767 /* Write it out. */
1768 DECL_EXTERNAL (vtbl) = 0;
1769 rest_of_decl_compilation (vtbl, 1, 1);
1771 /* Because we're only doing syntax-checking, we'll never end up
1772 actually marking the variable as written. */
1773 if (flag_syntax_only)
1774 TREE_ASM_WRITTEN (vtbl) = 1;
1777 /* Since we're writing out the vtable here, also write the debug
1778 info. */
1779 note_debug_info_needed (ctype);
1781 return true;
1784 /* A special return value from type_visibility meaning internal
1785 linkage. */
1787 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1789 /* walk_tree helper function for type_visibility. */
1791 static tree
1792 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1794 int *vis_p = (int *)data;
1795 if (! TYPE_P (*tp))
1797 *walk_subtrees = 0;
1799 else if (CLASS_TYPE_P (*tp))
1801 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1803 *vis_p = VISIBILITY_ANON;
1804 return *tp;
1806 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1807 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1809 return NULL;
1812 /* Returns the visibility of TYPE, which is the minimum visibility of its
1813 component types. */
1815 static int
1816 type_visibility (tree type)
1818 int vis = VISIBILITY_DEFAULT;
1819 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1820 return vis;
1823 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1824 specified (or if VISIBILITY is static). */
1826 static bool
1827 constrain_visibility (tree decl, int visibility)
1829 if (visibility == VISIBILITY_ANON)
1831 /* extern "C" declarations aren't affected by the anonymous
1832 namespace. */
1833 if (!DECL_EXTERN_C_P (decl))
1835 TREE_PUBLIC (decl) = 0;
1836 DECL_ONE_ONLY (decl) = 0;
1837 DECL_INTERFACE_KNOWN (decl) = 1;
1838 if (DECL_LANG_SPECIFIC (decl))
1839 DECL_NOT_REALLY_EXTERN (decl) = 1;
1842 else if (visibility > DECL_VISIBILITY (decl)
1843 && !DECL_VISIBILITY_SPECIFIED (decl))
1845 DECL_VISIBILITY (decl) = visibility;
1846 return true;
1848 return false;
1851 /* Constrain the visibility of DECL based on the visibility of its template
1852 arguments. */
1854 static void
1855 constrain_visibility_for_template (tree decl, tree targs)
1857 /* If this is a template instantiation, check the innermost
1858 template args for visibility constraints. The outer template
1859 args are covered by the class check. */
1860 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1861 int i;
1862 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1864 int vis = 0;
1866 tree arg = TREE_VEC_ELT (args, i-1);
1867 if (TYPE_P (arg))
1868 vis = type_visibility (arg);
1869 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1871 STRIP_NOPS (arg);
1872 if (TREE_CODE (arg) == ADDR_EXPR)
1873 arg = TREE_OPERAND (arg, 0);
1874 if (TREE_CODE (arg) == VAR_DECL
1875 || TREE_CODE (arg) == FUNCTION_DECL)
1877 if (! TREE_PUBLIC (arg))
1878 vis = VISIBILITY_ANON;
1879 else
1880 vis = DECL_VISIBILITY (arg);
1883 if (vis)
1884 constrain_visibility (decl, vis);
1888 /* Like c_determine_visibility, but with additional C++-specific
1889 behavior.
1891 Function-scope entities can rely on the function's visibility because
1892 it is set in start_preparsed_function.
1894 Class-scope entities cannot rely on the class's visibility until the end
1895 of the enclosing class definition.
1897 Note that because namespaces have multiple independent definitions,
1898 namespace visibility is handled elsewhere using the #pragma visibility
1899 machinery rather than by decorating the namespace declaration.
1901 The goal is for constraints from the type to give a diagnostic, and
1902 other constraints to be applied silently. */
1904 void
1905 determine_visibility (tree decl)
1907 tree class_type = NULL_TREE;
1908 bool use_template;
1910 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
1912 /* Only relevant for names with external linkage. */
1913 if (!TREE_PUBLIC (decl))
1914 return;
1916 /* Cloned constructors and destructors get the same visibility as
1917 the underlying function. That should be set up in
1918 maybe_clone_body. */
1919 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
1921 if (TREE_CODE (decl) == TYPE_DECL)
1923 if (CLASS_TYPE_P (TREE_TYPE (decl)))
1924 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
1925 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
1926 use_template = 1;
1927 else
1928 use_template = 0;
1930 else if (DECL_LANG_SPECIFIC (decl))
1931 use_template = DECL_USE_TEMPLATE (decl);
1932 else
1933 use_template = 0;
1935 /* If DECL is a member of a class, visibility specifiers on the
1936 class can influence the visibility of the DECL. */
1937 if (DECL_CLASS_SCOPE_P (decl))
1938 class_type = DECL_CONTEXT (decl);
1939 else
1941 /* Not a class member. */
1943 /* Virtual tables have DECL_CONTEXT set to their associated class,
1944 so they are automatically handled above. */
1945 gcc_assert (TREE_CODE (decl) != VAR_DECL
1946 || !DECL_VTABLE_OR_VTT_P (decl));
1948 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
1950 /* Local statics and classes get the visibility of their
1951 containing function by default, except that
1952 -fvisibility-inlines-hidden doesn't affect them. */
1953 tree fn = DECL_CONTEXT (decl);
1954 if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
1956 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
1957 DECL_VISIBILITY_SPECIFIED (decl) =
1958 DECL_VISIBILITY_SPECIFIED (fn);
1960 else
1961 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
1963 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
1964 but have no TEMPLATE_INFO, so don't try to check it. */
1965 use_template = 0;
1967 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
1968 && flag_visibility_ms_compat)
1970 /* Under -fvisibility-ms-compat, types are visible by default,
1971 even though their contents aren't. */
1972 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
1973 int underlying_vis = type_visibility (underlying_type);
1974 if (underlying_vis == VISIBILITY_ANON
1975 || CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type))
1976 constrain_visibility (decl, underlying_vis);
1977 else
1978 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
1980 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
1982 /* tinfo visibility is based on the type it's for. */
1983 constrain_visibility
1984 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
1986 /* Give the target a chance to override the visibility associated
1987 with DECL. */
1988 if (TREE_PUBLIC (decl)
1989 && !DECL_REALLY_EXTERN (decl)
1990 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
1991 && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
1992 targetm.cxx.determine_class_data_visibility (decl);
1994 else if (use_template)
1995 /* Template instantiations and specializations get visibility based
1996 on their template unless they override it with an attribute. */;
1997 else if (! DECL_VISIBILITY_SPECIFIED (decl))
1999 /* Set default visibility to whatever the user supplied with
2000 #pragma GCC visibility or a namespace visibility attribute. */
2001 DECL_VISIBILITY (decl) = default_visibility;
2002 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2006 if (use_template)
2008 /* If the specialization doesn't specify visibility, use the
2009 visibility from the template. */
2010 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2011 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2012 : DECL_TEMPLATE_INFO (decl));
2013 tree args = TI_ARGS (tinfo);
2015 if (args != error_mark_node)
2017 int depth = TMPL_ARGS_DEPTH (args);
2018 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2020 if (!DECL_VISIBILITY_SPECIFIED (decl))
2022 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2023 DECL_VISIBILITY_SPECIFIED (decl)
2024 = DECL_VISIBILITY_SPECIFIED (pattern);
2027 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
2028 if (args && depth > template_class_depth (class_type))
2029 /* Limit visibility based on its template arguments. */
2030 constrain_visibility_for_template (decl, args);
2034 if (class_type)
2035 determine_visibility_from_class (decl, class_type);
2037 if (decl_anon_ns_mem_p (decl))
2038 /* Names in an anonymous namespace get internal linkage.
2039 This might change once we implement export. */
2040 constrain_visibility (decl, VISIBILITY_ANON);
2041 else if (TREE_CODE (decl) != TYPE_DECL)
2043 /* Propagate anonymity from type to decl. */
2044 int tvis = type_visibility (TREE_TYPE (decl));
2045 if (tvis == VISIBILITY_ANON
2046 || ! DECL_VISIBILITY_SPECIFIED (decl))
2047 constrain_visibility (decl, tvis);
2051 /* By default, static data members and function members receive
2052 the visibility of their containing class. */
2054 static void
2055 determine_visibility_from_class (tree decl, tree class_type)
2057 if (DECL_VISIBILITY_SPECIFIED (decl))
2058 return;
2060 if (visibility_options.inlines_hidden
2061 /* Don't do this for inline templates; specializations might not be
2062 inline, and we don't want them to inherit the hidden
2063 visibility. We'll set it here for all inline instantiations. */
2064 && !processing_template_decl
2065 && TREE_CODE (decl) == FUNCTION_DECL
2066 && DECL_DECLARED_INLINE_P (decl)
2067 && (! DECL_LANG_SPECIFIC (decl)
2068 || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2069 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2070 else
2072 /* Default to the class visibility. */
2073 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2074 DECL_VISIBILITY_SPECIFIED (decl)
2075 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2078 /* Give the target a chance to override the visibility associated
2079 with DECL. */
2080 if (TREE_CODE (decl) == VAR_DECL
2081 && (DECL_TINFO_P (decl)
2082 || (DECL_VTABLE_OR_VTT_P (decl)
2083 /* Construction virtual tables are not exported because
2084 they cannot be referred to from other object files;
2085 their name is not standardized by the ABI. */
2086 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2087 && TREE_PUBLIC (decl)
2088 && !DECL_REALLY_EXTERN (decl)
2089 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2090 targetm.cxx.determine_class_data_visibility (decl);
2093 /* Constrain the visibility of a class TYPE based on the visibility of its
2094 field types. Warn if any fields require lesser visibility. */
2096 void
2097 constrain_class_visibility (tree type)
2099 tree binfo;
2100 tree t;
2101 int i;
2103 int vis = type_visibility (type);
2105 if (vis == VISIBILITY_ANON
2106 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2107 return;
2109 /* Don't warn about visibility if the class has explicit visibility. */
2110 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2111 vis = VISIBILITY_INTERNAL;
2113 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
2114 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2116 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2117 int subvis = type_visibility (ftype);
2119 if (subvis == VISIBILITY_ANON)
2121 if (!in_main_input_context ())
2122 warning (0, "\
2123 %qT has a field %qD whose type uses the anonymous namespace",
2124 type, t);
2126 else if (MAYBE_CLASS_TYPE_P (ftype)
2127 && vis < VISIBILITY_HIDDEN
2128 && subvis >= VISIBILITY_HIDDEN)
2129 warning (OPT_Wattributes, "\
2130 %qT declared with greater visibility than the type of its field %qD",
2131 type, t);
2134 binfo = TYPE_BINFO (type);
2135 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2137 int subvis = type_visibility (TREE_TYPE (t));
2139 if (subvis == VISIBILITY_ANON)
2141 if (!in_main_input_context())
2142 warning (0, "\
2143 %qT has a base %qT whose type uses the anonymous namespace",
2144 type, TREE_TYPE (t));
2146 else if (vis < VISIBILITY_HIDDEN
2147 && subvis >= VISIBILITY_HIDDEN)
2148 warning (OPT_Wattributes, "\
2149 %qT declared with greater visibility than its base %qT",
2150 type, TREE_TYPE (t));
2154 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2155 for DECL has not already been determined, do so now by setting
2156 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2157 function is called entities with vague linkage whose definitions
2158 are available must have TREE_PUBLIC set.
2160 If this function decides to place DECL in COMDAT, it will set
2161 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2162 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2163 callers defer that decision until it is clear that DECL is actually
2164 required. */
2166 void
2167 import_export_decl (tree decl)
2169 int emit_p;
2170 bool comdat_p;
2171 bool import_p;
2172 tree class_type = NULL_TREE;
2174 if (DECL_INTERFACE_KNOWN (decl))
2175 return;
2177 /* We cannot determine what linkage to give to an entity with vague
2178 linkage until the end of the file. For example, a virtual table
2179 for a class will be defined if and only if the key method is
2180 defined in this translation unit. As a further example, consider
2181 that when compiling a translation unit that uses PCH file with
2182 "-frepo" it would be incorrect to make decisions about what
2183 entities to emit when building the PCH; those decisions must be
2184 delayed until the repository information has been processed. */
2185 gcc_assert (at_eof);
2186 /* Object file linkage for explicit instantiations is handled in
2187 mark_decl_instantiated. For static variables in functions with
2188 vague linkage, maybe_commonize_var is used.
2190 Therefore, the only declarations that should be provided to this
2191 function are those with external linkage that are:
2193 * implicit instantiations of function templates
2195 * inline function
2197 * implicit instantiations of static data members of class
2198 templates
2200 * virtual tables
2202 * typeinfo objects
2204 Furthermore, all entities that reach this point must have a
2205 definition available in this translation unit.
2207 The following assertions check these conditions. */
2208 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2209 || TREE_CODE (decl) == VAR_DECL);
2210 /* Any code that creates entities with TREE_PUBLIC cleared should
2211 also set DECL_INTERFACE_KNOWN. */
2212 gcc_assert (TREE_PUBLIC (decl));
2213 if (TREE_CODE (decl) == FUNCTION_DECL)
2214 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2215 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2216 || DECL_DECLARED_INLINE_P (decl));
2217 else
2218 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2219 || DECL_VTABLE_OR_VTT_P (decl)
2220 || DECL_TINFO_P (decl));
2221 /* Check that a definition of DECL is available in this translation
2222 unit. */
2223 gcc_assert (!DECL_REALLY_EXTERN (decl));
2225 /* Assume that DECL will not have COMDAT linkage. */
2226 comdat_p = false;
2227 /* Assume that DECL will not be imported into this translation
2228 unit. */
2229 import_p = false;
2231 /* See if the repository tells us whether or not to emit DECL in
2232 this translation unit. */
2233 emit_p = repo_emit_p (decl);
2234 if (emit_p == 0)
2235 import_p = true;
2236 else if (emit_p == 1)
2238 /* The repository indicates that this entity should be defined
2239 here. Make sure the back end honors that request. */
2240 if (TREE_CODE (decl) == VAR_DECL)
2241 mark_needed (decl);
2242 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2243 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2245 tree clone;
2246 FOR_EACH_CLONE (clone, decl)
2247 mark_needed (clone);
2249 else
2250 mark_needed (decl);
2251 /* Output the definition as an ordinary strong definition. */
2252 DECL_EXTERNAL (decl) = 0;
2253 DECL_INTERFACE_KNOWN (decl) = 1;
2254 return;
2257 if (import_p)
2258 /* We have already decided what to do with this DECL; there is no
2259 need to check anything further. */
2261 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2263 class_type = DECL_CONTEXT (decl);
2264 import_export_class (class_type);
2265 if (TYPE_FOR_JAVA (class_type))
2266 import_p = true;
2267 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2268 && CLASSTYPE_INTERFACE_ONLY (class_type))
2269 import_p = true;
2270 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2271 && !CLASSTYPE_USE_TEMPLATE (class_type)
2272 && CLASSTYPE_KEY_METHOD (class_type)
2273 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2274 /* The ABI requires that all virtual tables be emitted with
2275 COMDAT linkage. However, on systems where COMDAT symbols
2276 don't show up in the table of contents for a static
2277 archive, or on systems without weak symbols (where we
2278 approximate COMDAT linkage by using internal linkage), the
2279 linker will report errors about undefined symbols because
2280 it will not see the virtual table definition. Therefore,
2281 in the case that we know that the virtual table will be
2282 emitted in only one translation unit, we make the virtual
2283 table an ordinary definition with external linkage. */
2284 DECL_EXTERNAL (decl) = 0;
2285 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2287 /* CLASS_TYPE is being exported from this translation unit,
2288 so DECL should be defined here. */
2289 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2290 /* If a class is declared in a header with the "extern
2291 template" extension, then it will not be instantiated,
2292 even in translation units that would normally require
2293 it. Often such classes are explicitly instantiated in
2294 one translation unit. Therefore, the explicit
2295 instantiation must be made visible to other translation
2296 units. */
2297 DECL_EXTERNAL (decl) = 0;
2298 else
2300 /* The generic C++ ABI says that class data is always
2301 COMDAT, even if there is a key function. Some
2302 variants (e.g., the ARM EABI) says that class data
2303 only has COMDAT linkage if the class data might be
2304 emitted in more than one translation unit. When the
2305 key method can be inline and is inline, we still have
2306 to arrange for comdat even though
2307 class_data_always_comdat is false. */
2308 if (!CLASSTYPE_KEY_METHOD (class_type)
2309 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2310 || targetm.cxx.class_data_always_comdat ())
2312 /* The ABI requires COMDAT linkage. Normally, we
2313 only emit COMDAT things when they are needed;
2314 make sure that we realize that this entity is
2315 indeed needed. */
2316 comdat_p = true;
2317 mark_needed (decl);
2321 else if (!flag_implicit_templates
2322 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2323 import_p = true;
2324 else
2325 comdat_p = true;
2327 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2329 tree type = TREE_TYPE (DECL_NAME (decl));
2330 if (CLASS_TYPE_P (type))
2332 class_type = type;
2333 import_export_class (type);
2334 if (CLASSTYPE_INTERFACE_KNOWN (type)
2335 && TYPE_POLYMORPHIC_P (type)
2336 && CLASSTYPE_INTERFACE_ONLY (type)
2337 /* If -fno-rtti was specified, then we cannot be sure
2338 that RTTI information will be emitted with the
2339 virtual table of the class, so we must emit it
2340 wherever it is used. */
2341 && flag_rtti)
2342 import_p = true;
2343 else
2345 if (CLASSTYPE_INTERFACE_KNOWN (type)
2346 && !CLASSTYPE_INTERFACE_ONLY (type))
2348 comdat_p = (targetm.cxx.class_data_always_comdat ()
2349 || (CLASSTYPE_KEY_METHOD (type)
2350 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2351 mark_needed (decl);
2352 if (!flag_weak)
2354 comdat_p = false;
2355 DECL_EXTERNAL (decl) = 0;
2358 else
2359 comdat_p = true;
2362 else
2363 comdat_p = true;
2365 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2366 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2368 /* DECL is an implicit instantiation of a function or static
2369 data member. */
2370 if ((flag_implicit_templates
2371 && !flag_use_repository)
2372 || (flag_implicit_inline_templates
2373 && TREE_CODE (decl) == FUNCTION_DECL
2374 && DECL_DECLARED_INLINE_P (decl)))
2375 comdat_p = true;
2376 else
2377 /* If we are not implicitly generating templates, then mark
2378 this entity as undefined in this translation unit. */
2379 import_p = true;
2381 else if (DECL_FUNCTION_MEMBER_P (decl))
2383 if (!DECL_DECLARED_INLINE_P (decl))
2385 tree ctype = DECL_CONTEXT (decl);
2386 import_export_class (ctype);
2387 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2389 DECL_NOT_REALLY_EXTERN (decl)
2390 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2391 || (DECL_DECLARED_INLINE_P (decl)
2392 && ! flag_implement_inlines
2393 && !DECL_VINDEX (decl)));
2395 if (!DECL_NOT_REALLY_EXTERN (decl))
2396 DECL_EXTERNAL (decl) = 1;
2398 /* Always make artificials weak. */
2399 if (DECL_ARTIFICIAL (decl) && flag_weak)
2400 comdat_p = true;
2401 else
2402 maybe_make_one_only (decl);
2405 else
2406 comdat_p = true;
2408 else
2409 comdat_p = true;
2411 if (import_p)
2413 /* If we are importing DECL into this translation unit, mark is
2414 an undefined here. */
2415 DECL_EXTERNAL (decl) = 1;
2416 DECL_NOT_REALLY_EXTERN (decl) = 0;
2418 else if (comdat_p)
2420 /* If we decided to put DECL in COMDAT, mark it accordingly at
2421 this point. */
2422 comdat_linkage (decl);
2425 DECL_INTERFACE_KNOWN (decl) = 1;
2428 /* Return an expression that performs the destruction of DECL, which
2429 must be a VAR_DECL whose type has a non-trivial destructor, or is
2430 an array whose (innermost) elements have a non-trivial destructor. */
2432 tree
2433 build_cleanup (tree decl)
2435 tree temp;
2436 tree type = TREE_TYPE (decl);
2438 /* This function should only be called for declarations that really
2439 require cleanups. */
2440 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2442 /* Treat all objects with destructors as used; the destructor may do
2443 something substantive. */
2444 mark_used (decl);
2446 if (TREE_CODE (type) == ARRAY_TYPE)
2447 temp = decl;
2448 else
2449 temp = build_address (decl);
2450 temp = build_delete (TREE_TYPE (temp), temp,
2451 sfk_complete_destructor,
2452 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2453 return temp;
2456 /* Returns the initialization guard variable for the variable DECL,
2457 which has static storage duration. */
2459 tree
2460 get_guard (tree decl)
2462 tree sname;
2463 tree guard;
2465 sname = mangle_guard_variable (decl);
2466 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2467 if (! guard)
2469 tree guard_type;
2471 /* We use a type that is big enough to contain a mutex as well
2472 as an integer counter. */
2473 guard_type = targetm.cxx.guard_type ();
2474 guard = build_decl (VAR_DECL, sname, guard_type);
2476 /* The guard should have the same linkage as what it guards. */
2477 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2478 TREE_STATIC (guard) = TREE_STATIC (decl);
2479 DECL_COMMON (guard) = DECL_COMMON (decl);
2480 DECL_ONE_ONLY (guard) = DECL_ONE_ONLY (decl);
2481 if (TREE_PUBLIC (decl))
2482 DECL_WEAK (guard) = DECL_WEAK (decl);
2483 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2484 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2486 DECL_ARTIFICIAL (guard) = 1;
2487 DECL_IGNORED_P (guard) = 1;
2488 TREE_USED (guard) = 1;
2489 pushdecl_top_level_and_finish (guard, NULL_TREE);
2491 return guard;
2494 /* Return those bits of the GUARD variable that should be set when the
2495 guarded entity is actually initialized. */
2497 static tree
2498 get_guard_bits (tree guard)
2500 if (!targetm.cxx.guard_mask_bit ())
2502 /* We only set the first byte of the guard, in order to leave room
2503 for a mutex in the high-order bits. */
2504 guard = build1 (ADDR_EXPR,
2505 build_pointer_type (TREE_TYPE (guard)),
2506 guard);
2507 guard = build1 (NOP_EXPR,
2508 build_pointer_type (char_type_node),
2509 guard);
2510 guard = build1 (INDIRECT_REF, char_type_node, guard);
2513 return guard;
2516 /* Return an expression which determines whether or not the GUARD
2517 variable has already been initialized. */
2519 tree
2520 get_guard_cond (tree guard)
2522 tree guard_value;
2524 /* Check to see if the GUARD is zero. */
2525 guard = get_guard_bits (guard);
2527 /* Mask off all but the low bit. */
2528 if (targetm.cxx.guard_mask_bit ())
2530 guard_value = integer_one_node;
2531 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2532 guard_value = convert (TREE_TYPE (guard), guard_value);
2533 guard = cp_build_binary_op (BIT_AND_EXPR, guard, guard_value,
2534 tf_warning_or_error);
2537 guard_value = integer_zero_node;
2538 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2539 guard_value = convert (TREE_TYPE (guard), guard_value);
2540 return cp_build_binary_op (EQ_EXPR, guard, guard_value,
2541 tf_warning_or_error);
2544 /* Return an expression which sets the GUARD variable, indicating that
2545 the variable being guarded has been initialized. */
2547 tree
2548 set_guard (tree guard)
2550 tree guard_init;
2552 /* Set the GUARD to one. */
2553 guard = get_guard_bits (guard);
2554 guard_init = integer_one_node;
2555 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2556 guard_init = convert (TREE_TYPE (guard), guard_init);
2557 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2558 tf_warning_or_error);
2561 /* Start the process of running a particular set of global constructors
2562 or destructors. Subroutine of do_[cd]tors. */
2564 static tree
2565 start_objects (int method_type, int initp)
2567 tree body;
2568 tree fndecl;
2569 char type[10];
2571 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2573 if (initp != DEFAULT_INIT_PRIORITY)
2575 char joiner;
2577 #ifdef JOINER
2578 joiner = JOINER;
2579 #else
2580 joiner = '_';
2581 #endif
2583 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2585 else
2586 sprintf (type, "%c", method_type);
2588 fndecl = build_lang_decl (FUNCTION_DECL,
2589 get_file_function_name (type),
2590 build_function_type (void_type_node,
2591 void_list_node));
2592 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2594 TREE_PUBLIC (current_function_decl) = 0;
2596 /* Mark as artificial because it's not explicitly in the user's
2597 source code. */
2598 DECL_ARTIFICIAL (current_function_decl) = 1;
2600 /* Mark this declaration as used to avoid spurious warnings. */
2601 TREE_USED (current_function_decl) = 1;
2603 /* Mark this function as a global constructor or destructor. */
2604 if (method_type == 'I')
2605 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2606 else
2607 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2608 DECL_LANG_SPECIFIC (current_function_decl)->decl_flags.u2sel = 1;
2610 body = begin_compound_stmt (BCS_FN_BODY);
2612 return body;
2615 /* Finish the process of running a particular set of global constructors
2616 or destructors. Subroutine of do_[cd]tors. */
2618 static void
2619 finish_objects (int method_type, int initp, tree body)
2621 tree fn;
2623 /* Finish up. */
2624 finish_compound_stmt (body);
2625 fn = finish_function (0);
2627 if (method_type == 'I')
2629 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2630 decl_init_priority_insert (fn, initp);
2632 else
2634 DECL_STATIC_DESTRUCTOR (fn) = 1;
2635 decl_fini_priority_insert (fn, initp);
2638 expand_or_defer_fn (fn);
2641 /* The names of the parameters to the function created to handle
2642 initializations and destructions for objects with static storage
2643 duration. */
2644 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2645 #define PRIORITY_IDENTIFIER "__priority"
2647 /* The name of the function we create to handle initializations and
2648 destructions for objects with static storage duration. */
2649 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2651 /* The declaration for the __INITIALIZE_P argument. */
2652 static GTY(()) tree initialize_p_decl;
2654 /* The declaration for the __PRIORITY argument. */
2655 static GTY(()) tree priority_decl;
2657 /* The declaration for the static storage duration function. */
2658 static GTY(()) tree ssdf_decl;
2660 /* All the static storage duration functions created in this
2661 translation unit. */
2662 static GTY(()) VEC(tree,gc) *ssdf_decls;
2664 /* A map from priority levels to information about that priority
2665 level. There may be many such levels, so efficient lookup is
2666 important. */
2667 static splay_tree priority_info_map;
2669 /* Begins the generation of the function that will handle all
2670 initialization and destruction of objects with static storage
2671 duration. The function generated takes two parameters of type
2672 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2673 nonzero, it performs initializations. Otherwise, it performs
2674 destructions. It only performs those initializations or
2675 destructions with the indicated __PRIORITY. The generated function
2676 returns no value.
2678 It is assumed that this function will only be called once per
2679 translation unit. */
2681 static tree
2682 start_static_storage_duration_function (unsigned count)
2684 tree parm_types;
2685 tree type;
2686 tree body;
2687 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2689 /* Create the identifier for this function. It will be of the form
2690 SSDF_IDENTIFIER_<number>. */
2691 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2693 /* Create the parameters. */
2694 parm_types = void_list_node;
2695 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2696 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2697 type = build_function_type (void_type_node, parm_types);
2699 /* Create the FUNCTION_DECL itself. */
2700 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2701 get_identifier (id),
2702 type);
2703 TREE_PUBLIC (ssdf_decl) = 0;
2704 DECL_ARTIFICIAL (ssdf_decl) = 1;
2705 DECL_INLINE (ssdf_decl) = 1;
2707 /* Put this function in the list of functions to be called from the
2708 static constructors and destructors. */
2709 if (!ssdf_decls)
2711 ssdf_decls = VEC_alloc (tree, gc, 32);
2713 /* Take this opportunity to initialize the map from priority
2714 numbers to information about that priority level. */
2715 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2716 /*delete_key_fn=*/0,
2717 /*delete_value_fn=*/
2718 (splay_tree_delete_value_fn) &free);
2720 /* We always need to generate functions for the
2721 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2722 priorities later, we'll be sure to find the
2723 DEFAULT_INIT_PRIORITY. */
2724 get_priority_info (DEFAULT_INIT_PRIORITY);
2727 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2729 /* Create the argument list. */
2730 initialize_p_decl = cp_build_parm_decl
2731 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2732 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2733 TREE_USED (initialize_p_decl) = 1;
2734 priority_decl = cp_build_parm_decl
2735 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2736 DECL_CONTEXT (priority_decl) = ssdf_decl;
2737 TREE_USED (priority_decl) = 1;
2739 TREE_CHAIN (initialize_p_decl) = priority_decl;
2740 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2742 /* Put the function in the global scope. */
2743 pushdecl (ssdf_decl);
2745 /* Start the function itself. This is equivalent to declaring the
2746 function as:
2748 static void __ssdf (int __initialize_p, init __priority_p);
2750 It is static because we only need to call this function from the
2751 various constructor and destructor functions for this module. */
2752 start_preparsed_function (ssdf_decl,
2753 /*attrs=*/NULL_TREE,
2754 SF_PRE_PARSED);
2756 /* Set up the scope of the outermost block in the function. */
2757 body = begin_compound_stmt (BCS_FN_BODY);
2759 return body;
2762 /* Finish the generation of the function which performs initialization
2763 and destruction of objects with static storage duration. After
2764 this point, no more such objects can be created. */
2766 static void
2767 finish_static_storage_duration_function (tree body)
2769 /* Close out the function. */
2770 finish_compound_stmt (body);
2771 expand_or_defer_fn (finish_function (0));
2774 /* Return the information about the indicated PRIORITY level. If no
2775 code to handle this level has yet been generated, generate the
2776 appropriate prologue. */
2778 static priority_info
2779 get_priority_info (int priority)
2781 priority_info pi;
2782 splay_tree_node n;
2784 n = splay_tree_lookup (priority_info_map,
2785 (splay_tree_key) priority);
2786 if (!n)
2788 /* Create a new priority information structure, and insert it
2789 into the map. */
2790 pi = XNEW (struct priority_info_s);
2791 pi->initializations_p = 0;
2792 pi->destructions_p = 0;
2793 splay_tree_insert (priority_info_map,
2794 (splay_tree_key) priority,
2795 (splay_tree_value) pi);
2797 else
2798 pi = (priority_info) n->value;
2800 return pi;
2803 /* The effective initialization priority of a DECL. */
2805 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2806 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2807 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2809 /* Whether a DECL needs a guard to protect it against multiple
2810 initialization. */
2812 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2813 || DECL_ONE_ONLY (decl) \
2814 || DECL_WEAK (decl)))
2816 /* Set up to handle the initialization or destruction of DECL. If
2817 INITP is nonzero, we are initializing the variable. Otherwise, we
2818 are destroying it. */
2820 static void
2821 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2823 tree guard_if_stmt = NULL_TREE;
2824 tree guard;
2826 /* If we are supposed to destruct and there's a trivial destructor,
2827 nothing has to be done. */
2828 if (!initp
2829 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2830 return;
2832 /* Trick the compiler into thinking we are at the file and line
2833 where DECL was declared so that error-messages make sense, and so
2834 that the debugger will show somewhat sensible file and line
2835 information. */
2836 input_location = DECL_SOURCE_LOCATION (decl);
2838 /* Because of:
2840 [class.access.spec]
2842 Access control for implicit calls to the constructors,
2843 the conversion functions, or the destructor called to
2844 create and destroy a static data member is performed as
2845 if these calls appeared in the scope of the member's
2846 class.
2848 we pretend we are in a static member function of the class of
2849 which the DECL is a member. */
2850 if (member_p (decl))
2852 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
2853 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
2856 /* Assume we don't need a guard. */
2857 guard = NULL_TREE;
2858 /* We need a guard if this is an object with external linkage that
2859 might be initialized in more than one place. (For example, a
2860 static data member of a template, when the data member requires
2861 construction.) */
2862 if (NEEDS_GUARD_P (decl))
2864 tree guard_cond;
2866 guard = get_guard (decl);
2868 /* When using __cxa_atexit, we just check the GUARD as we would
2869 for a local static. */
2870 if (flag_use_cxa_atexit)
2872 /* When using __cxa_atexit, we never try to destroy
2873 anything from a static destructor. */
2874 gcc_assert (initp);
2875 guard_cond = get_guard_cond (guard);
2877 /* If we don't have __cxa_atexit, then we will be running
2878 destructors from .fini sections, or their equivalents. So,
2879 we need to know how many times we've tried to initialize this
2880 object. We do initializations only if the GUARD is zero,
2881 i.e., if we are the first to initialize the variable. We do
2882 destructions only if the GUARD is one, i.e., if we are the
2883 last to destroy the variable. */
2884 else if (initp)
2885 guard_cond
2886 = cp_build_binary_op (EQ_EXPR,
2887 cp_build_unary_op (PREINCREMENT_EXPR,
2888 guard,
2889 /*noconvert=*/1,
2890 tf_warning_or_error),
2891 integer_one_node,
2892 tf_warning_or_error);
2893 else
2894 guard_cond
2895 = cp_build_binary_op (EQ_EXPR,
2896 cp_build_unary_op (PREDECREMENT_EXPR,
2897 guard,
2898 /*noconvert=*/1,
2899 tf_warning_or_error),
2900 integer_zero_node,
2901 tf_warning_or_error);
2903 guard_if_stmt = begin_if_stmt ();
2904 finish_if_stmt_cond (guard_cond, guard_if_stmt);
2908 /* If we're using __cxa_atexit, we have not already set the GUARD,
2909 so we must do so now. */
2910 if (guard && initp && flag_use_cxa_atexit)
2911 finish_expr_stmt (set_guard (guard));
2913 /* Perform the initialization or destruction. */
2914 if (initp)
2916 if (init)
2917 finish_expr_stmt (init);
2919 /* If we're using __cxa_atexit, register a function that calls the
2920 destructor for the object. */
2921 if (flag_use_cxa_atexit)
2922 finish_expr_stmt (register_dtor_fn (decl));
2924 else
2925 finish_expr_stmt (build_cleanup (decl));
2927 /* Finish the guard if-stmt, if necessary. */
2928 if (guard)
2930 finish_then_clause (guard_if_stmt);
2931 finish_if_stmt (guard_if_stmt);
2934 /* Now that we're done with DECL we don't need to pretend to be a
2935 member of its class any longer. */
2936 DECL_CONTEXT (current_function_decl) = NULL_TREE;
2937 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
2940 /* Generate code to do the initialization or destruction of the decls in VARS,
2941 a TREE_LIST of VAR_DECL with static storage duration.
2942 Whether initialization or destruction is performed is specified by INITP. */
2944 static void
2945 do_static_initialization_or_destruction (tree vars, bool initp)
2947 tree node, init_if_stmt, cond;
2949 /* Build the outer if-stmt to check for initialization or destruction. */
2950 init_if_stmt = begin_if_stmt ();
2951 cond = initp ? integer_one_node : integer_zero_node;
2952 cond = cp_build_binary_op (EQ_EXPR,
2953 initialize_p_decl,
2954 cond,
2955 tf_warning_or_error);
2956 finish_if_stmt_cond (cond, init_if_stmt);
2958 node = vars;
2959 do {
2960 tree decl = TREE_VALUE (node);
2961 tree priority_if_stmt;
2962 int priority;
2963 priority_info pi;
2965 /* If we don't need a destructor, there's nothing to do. Avoid
2966 creating a possibly empty if-stmt. */
2967 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2969 node = TREE_CHAIN (node);
2970 continue;
2973 /* Remember that we had an initialization or finalization at this
2974 priority. */
2975 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
2976 pi = get_priority_info (priority);
2977 if (initp)
2978 pi->initializations_p = 1;
2979 else
2980 pi->destructions_p = 1;
2982 /* Conditionalize this initialization on being in the right priority
2983 and being initializing/finalizing appropriately. */
2984 priority_if_stmt = begin_if_stmt ();
2985 cond = cp_build_binary_op (EQ_EXPR,
2986 priority_decl,
2987 build_int_cst (NULL_TREE, priority),
2988 tf_warning_or_error);
2989 finish_if_stmt_cond (cond, priority_if_stmt);
2991 /* Process initializers with same priority. */
2992 for (; node
2993 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
2994 node = TREE_CHAIN (node))
2995 /* Do one initialization or destruction. */
2996 one_static_initialization_or_destruction (TREE_VALUE (node),
2997 TREE_PURPOSE (node), initp);
2999 /* Finish up the priority if-stmt body. */
3000 finish_then_clause (priority_if_stmt);
3001 finish_if_stmt (priority_if_stmt);
3003 } while (node);
3005 /* Finish up the init/destruct if-stmt body. */
3006 finish_then_clause (init_if_stmt);
3007 finish_if_stmt (init_if_stmt);
3010 /* VARS is a list of variables with static storage duration which may
3011 need initialization and/or finalization. Remove those variables
3012 that don't really need to be initialized or finalized, and return
3013 the resulting list. The order in which the variables appear in
3014 VARS is in reverse order of the order in which they should actually
3015 be initialized. The list we return is in the unreversed order;
3016 i.e., the first variable should be initialized first. */
3018 static tree
3019 prune_vars_needing_no_initialization (tree *vars)
3021 tree *var = vars;
3022 tree result = NULL_TREE;
3024 while (*var)
3026 tree t = *var;
3027 tree decl = TREE_VALUE (t);
3028 tree init = TREE_PURPOSE (t);
3030 /* Deal gracefully with error. */
3031 if (decl == error_mark_node)
3033 var = &TREE_CHAIN (t);
3034 continue;
3037 /* The only things that can be initialized are variables. */
3038 gcc_assert (TREE_CODE (decl) == VAR_DECL);
3040 /* If this object is not defined, we don't need to do anything
3041 here. */
3042 if (DECL_EXTERNAL (decl))
3044 var = &TREE_CHAIN (t);
3045 continue;
3048 /* Also, if the initializer already contains errors, we can bail
3049 out now. */
3050 if (init && TREE_CODE (init) == TREE_LIST
3051 && value_member (error_mark_node, init))
3053 var = &TREE_CHAIN (t);
3054 continue;
3057 /* This variable is going to need initialization and/or
3058 finalization, so we add it to the list. */
3059 *var = TREE_CHAIN (t);
3060 TREE_CHAIN (t) = result;
3061 result = t;
3064 return result;
3067 /* Make sure we have told the back end about all the variables in
3068 VARS. */
3070 static void
3071 write_out_vars (tree vars)
3073 tree v;
3075 for (v = vars; v; v = TREE_CHAIN (v))
3077 tree var = TREE_VALUE (v);
3078 if (!var_finalized_p (var))
3080 import_export_decl (var);
3081 rest_of_decl_compilation (var, 1, 1);
3086 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3087 (otherwise) that will initialize all global objects with static
3088 storage duration having the indicated PRIORITY. */
3090 static void
3091 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3092 location_t *locus)
3094 char function_key;
3095 tree arguments;
3096 tree fndecl;
3097 tree body;
3098 size_t i;
3100 input_location = *locus;
3101 /* ??? */
3102 /* Was: locus->line++; */
3104 /* We use `I' to indicate initialization and `D' to indicate
3105 destruction. */
3106 function_key = constructor_p ? 'I' : 'D';
3108 /* We emit the function lazily, to avoid generating empty
3109 global constructors and destructors. */
3110 body = NULL_TREE;
3112 /* For Objective-C++, we may need to initialize metadata found in this module.
3113 This must be done _before_ any other static initializations. */
3114 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3115 && constructor_p && objc_static_init_needed_p ())
3117 body = start_objects (function_key, priority);
3118 objc_generate_static_init_call (NULL_TREE);
3121 /* Call the static storage duration function with appropriate
3122 arguments. */
3123 for (i = 0; VEC_iterate (tree, ssdf_decls, i, fndecl); ++i)
3125 /* Calls to pure or const functions will expand to nothing. */
3126 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3128 if (! body)
3129 body = start_objects (function_key, priority);
3131 arguments = tree_cons (NULL_TREE,
3132 build_int_cst (NULL_TREE, priority),
3133 NULL_TREE);
3134 arguments = tree_cons (NULL_TREE,
3135 build_int_cst (NULL_TREE, constructor_p),
3136 arguments);
3137 finish_expr_stmt (cp_build_function_call (fndecl, arguments,
3138 tf_warning_or_error));
3142 /* Close out the function. */
3143 if (body)
3144 finish_objects (function_key, priority, body);
3147 /* Generate constructor and destructor functions for the priority
3148 indicated by N. */
3150 static int
3151 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3153 location_t *locus = (location_t *) data;
3154 int priority = (int) n->key;
3155 priority_info pi = (priority_info) n->value;
3157 /* Generate the functions themselves, but only if they are really
3158 needed. */
3159 if (pi->initializations_p)
3160 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3161 if (pi->destructions_p)
3162 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3164 /* Keep iterating. */
3165 return 0;
3168 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
3169 decls referenced from front-end specific constructs; it will be called
3170 only for language-specific tree nodes.
3172 Here we must deal with member pointers. */
3174 tree
3175 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3177 tree t = *tp;
3179 switch (TREE_CODE (t))
3181 case PTRMEM_CST:
3182 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3183 cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3184 break;
3185 case BASELINK:
3186 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3187 cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3188 break;
3189 case VAR_DECL:
3190 if (DECL_VTABLE_OR_VTT_P (t))
3192 /* The ABI requires that all virtual tables be emitted
3193 whenever one of them is. */
3194 tree vtbl;
3195 for (vtbl = CLASSTYPE_VTABLES (DECL_CONTEXT (t));
3196 vtbl;
3197 vtbl = TREE_CHAIN (vtbl))
3198 mark_decl_referenced (vtbl);
3200 else if (DECL_CONTEXT (t)
3201 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3202 /* If we need a static variable in a function, then we
3203 need the containing function. */
3204 mark_decl_referenced (DECL_CONTEXT (t));
3205 break;
3206 default:
3207 break;
3210 return NULL;
3213 /* Java requires that we be able to reference a local address for a
3214 method, and not be confused by PLT entries. If hidden aliases are
3215 supported, emit one for each java function that we've emitted. */
3217 static void
3218 build_java_method_aliases (void)
3220 struct cgraph_node *node;
3222 #ifndef HAVE_GAS_HIDDEN
3223 return;
3224 #endif
3226 for (node = cgraph_nodes; node ; node = node->next)
3228 tree fndecl = node->decl;
3230 if (TREE_ASM_WRITTEN (fndecl)
3231 && DECL_CONTEXT (fndecl)
3232 && TYPE_P (DECL_CONTEXT (fndecl))
3233 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3234 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3236 /* Mangle the name in a predictable way; we need to reference
3237 this from a java compiled object file. */
3238 tree oid, nid, alias;
3239 const char *oname;
3240 char *nname;
3242 oid = DECL_ASSEMBLER_NAME (fndecl);
3243 oname = IDENTIFIER_POINTER (oid);
3244 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3245 nname = ACONCAT (("_ZGA", oname+2, NULL));
3246 nid = get_identifier (nname);
3248 alias = make_alias_for (fndecl, nid);
3249 TREE_PUBLIC (alias) = 1;
3250 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3252 assemble_alias (alias, oid);
3257 /* This routine is called at the end of compilation.
3258 Its job is to create all the code needed to initialize and
3259 destroy the global aggregates. We do the destruction
3260 first, since that way we only need to reverse the decls once. */
3262 void
3263 cp_write_global_declarations (void)
3265 tree vars;
3266 bool reconsider;
3267 size_t i;
3268 location_t locus;
3269 unsigned ssdf_count = 0;
3270 int retries = 0;
3271 tree decl;
3273 locus = input_location;
3274 at_eof = 1;
3276 /* Bad parse errors. Just forget about it. */
3277 if (! global_bindings_p () || current_class_type || decl_namespace_list)
3278 return;
3280 if (pch_file)
3281 c_common_write_pch ();
3283 /* FIXME - huh? was input_line -= 1;*/
3285 /* We now have to write out all the stuff we put off writing out.
3286 These include:
3288 o Template specializations that we have not yet instantiated,
3289 but which are needed.
3290 o Initialization and destruction for non-local objects with
3291 static storage duration. (Local objects with static storage
3292 duration are initialized when their scope is first entered,
3293 and are cleaned up via atexit.)
3294 o Virtual function tables.
3296 All of these may cause others to be needed. For example,
3297 instantiating one function may cause another to be needed, and
3298 generating the initializer for an object may cause templates to be
3299 instantiated, etc., etc. */
3301 timevar_push (TV_VARCONST);
3303 emit_support_tinfos ();
3307 tree t;
3308 tree decl;
3310 reconsider = false;
3312 /* If there are templates that we've put off instantiating, do
3313 them now. */
3314 instantiate_pending_templates (retries);
3315 ggc_collect ();
3317 /* Write out virtual tables as required. Note that writing out
3318 the virtual table for a template class may cause the
3319 instantiation of members of that class. If we write out
3320 vtables then we remove the class from our list so we don't
3321 have to look at it again. */
3323 while (keyed_classes != NULL_TREE
3324 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3326 reconsider = true;
3327 keyed_classes = TREE_CHAIN (keyed_classes);
3330 t = keyed_classes;
3331 if (t != NULL_TREE)
3333 tree next = TREE_CHAIN (t);
3335 while (next)
3337 if (maybe_emit_vtables (TREE_VALUE (next)))
3339 reconsider = true;
3340 TREE_CHAIN (t) = TREE_CHAIN (next);
3342 else
3343 t = next;
3345 next = TREE_CHAIN (t);
3349 /* Write out needed type info variables. We have to be careful
3350 looping through unemitted decls, because emit_tinfo_decl may
3351 cause other variables to be needed. New elements will be
3352 appended, and we remove from the vector those that actually
3353 get emitted. */
3354 for (i = VEC_length (tree, unemitted_tinfo_decls);
3355 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3356 if (emit_tinfo_decl (t))
3358 reconsider = true;
3359 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3362 /* The list of objects with static storage duration is built up
3363 in reverse order. We clear STATIC_AGGREGATES so that any new
3364 aggregates added during the initialization of these will be
3365 initialized in the correct order when we next come around the
3366 loop. */
3367 vars = prune_vars_needing_no_initialization (&static_aggregates);
3369 if (vars)
3371 /* We need to start a new initialization function each time
3372 through the loop. That's because we need to know which
3373 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3374 isn't computed until a function is finished, and written
3375 out. That's a deficiency in the back end. When this is
3376 fixed, these initialization functions could all become
3377 inline, with resulting performance improvements. */
3378 tree ssdf_body;
3380 /* Set the line and file, so that it is obviously not from
3381 the source file. */
3382 input_location = locus;
3383 ssdf_body = start_static_storage_duration_function (ssdf_count);
3385 /* Make sure the back end knows about all the variables. */
3386 write_out_vars (vars);
3388 /* First generate code to do all the initializations. */
3389 if (vars)
3390 do_static_initialization_or_destruction (vars, /*initp=*/true);
3392 /* Then, generate code to do all the destructions. Do these
3393 in reverse order so that the most recently constructed
3394 variable is the first destroyed. If we're using
3395 __cxa_atexit, then we don't need to do this; functions
3396 were registered at initialization time to destroy the
3397 local statics. */
3398 if (!flag_use_cxa_atexit && vars)
3400 vars = nreverse (vars);
3401 do_static_initialization_or_destruction (vars, /*initp=*/false);
3403 else
3404 vars = NULL_TREE;
3406 /* Finish up the static storage duration function for this
3407 round. */
3408 input_location = locus;
3409 finish_static_storage_duration_function (ssdf_body);
3411 /* All those initializations and finalizations might cause
3412 us to need more inline functions, more template
3413 instantiations, etc. */
3414 reconsider = true;
3415 ssdf_count++;
3416 /* ??? was: locus.line++; */
3419 /* Go through the set of inline functions whose bodies have not
3420 been emitted yet. If out-of-line copies of these functions
3421 are required, emit them. */
3422 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3424 /* Does it need synthesizing? */
3425 if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
3426 && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3428 /* Even though we're already at the top-level, we push
3429 there again. That way, when we pop back a few lines
3430 hence, all of our state is restored. Otherwise,
3431 finish_function doesn't clean things up, and we end
3432 up with CURRENT_FUNCTION_DECL set. */
3433 push_to_top_level ();
3434 /* The decl's location will mark where it was first
3435 needed. Save that so synthesize method can indicate
3436 where it was needed from, in case of error */
3437 input_location = DECL_SOURCE_LOCATION (decl);
3438 synthesize_method (decl);
3439 pop_from_top_level ();
3440 reconsider = true;
3443 if (!gimple_body (decl))
3444 continue;
3446 /* We lie to the back end, pretending that some functions
3447 are not defined when they really are. This keeps these
3448 functions from being put out unnecessarily. But, we must
3449 stop lying when the functions are referenced, or if they
3450 are not comdat since they need to be put out now. If
3451 DECL_INTERFACE_KNOWN, then we have already set
3452 DECL_EXTERNAL appropriately, so there's no need to check
3453 again, and we do not want to clear DECL_EXTERNAL if a
3454 previous call to import_export_decl set it.
3456 This is done in a separate for cycle, because if some
3457 deferred function is contained in another deferred
3458 function later in deferred_fns varray,
3459 rest_of_compilation would skip this function and we
3460 really cannot expand the same function twice. */
3461 import_export_decl (decl);
3462 if (DECL_NOT_REALLY_EXTERN (decl)
3463 && DECL_INITIAL (decl)
3464 && decl_needed_p (decl))
3465 DECL_EXTERNAL (decl) = 0;
3467 /* If we're going to need to write this function out, and
3468 there's already a body for it, create RTL for it now.
3469 (There might be no body if this is a method we haven't
3470 gotten around to synthesizing yet.) */
3471 if (!DECL_EXTERNAL (decl)
3472 && decl_needed_p (decl)
3473 && !TREE_ASM_WRITTEN (decl)
3474 && !cgraph_node (decl)->local.finalized)
3476 /* We will output the function; no longer consider it in this
3477 loop. */
3478 DECL_DEFER_OUTPUT (decl) = 0;
3479 /* Generate RTL for this function now that we know we
3480 need it. */
3481 expand_or_defer_fn (decl);
3482 /* If we're compiling -fsyntax-only pretend that this
3483 function has been written out so that we don't try to
3484 expand it again. */
3485 if (flag_syntax_only)
3486 TREE_ASM_WRITTEN (decl) = 1;
3487 reconsider = true;
3491 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3492 reconsider = true;
3494 /* Static data members are just like namespace-scope globals. */
3495 for (i = 0; VEC_iterate (tree, pending_statics, i, decl); ++i)
3497 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3498 /* Don't write it out if we haven't seen a definition. */
3499 || DECL_IN_AGGR_P (decl))
3500 continue;
3501 import_export_decl (decl);
3502 /* If this static data member is needed, provide it to the
3503 back end. */
3504 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3505 DECL_EXTERNAL (decl) = 0;
3507 if (VEC_length (tree, pending_statics) != 0
3508 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3509 VEC_length (tree, pending_statics)))
3510 reconsider = true;
3512 retries++;
3514 while (reconsider);
3516 /* All used inline functions must have a definition at this point. */
3517 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3519 if (/* Check online inline functions that were actually used. */
3520 TREE_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3521 /* If the definition actually was available here, then the
3522 fact that the function was not defined merely represents
3523 that for some reason (use of a template repository,
3524 #pragma interface, etc.) we decided not to emit the
3525 definition here. */
3526 && !DECL_INITIAL (decl)
3527 /* An explicit instantiation can be used to specify
3528 that the body is in another unit. It will have
3529 already verified there was a definition. */
3530 && !DECL_EXPLICIT_INSTANTIATION (decl))
3532 warning (0, "inline function %q+D used but never defined", decl);
3533 /* Avoid a duplicate warning from check_global_declaration_1. */
3534 TREE_NO_WARNING (decl) = 1;
3538 /* We give C linkage to static constructors and destructors. */
3539 push_lang_context (lang_name_c);
3541 /* Generate initialization and destruction functions for all
3542 priorities for which they are required. */
3543 if (priority_info_map)
3544 splay_tree_foreach (priority_info_map,
3545 generate_ctor_and_dtor_functions_for_priority,
3546 /*data=*/&locus);
3547 else if (c_dialect_objc () && objc_static_init_needed_p ())
3548 /* If this is obj-c++ and we need a static init, call
3549 generate_ctor_or_dtor_function. */
3550 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3551 DEFAULT_INIT_PRIORITY, &locus);
3553 /* We're done with the splay-tree now. */
3554 if (priority_info_map)
3555 splay_tree_delete (priority_info_map);
3557 /* Generate any missing aliases. */
3558 maybe_apply_pending_pragma_weaks ();
3560 /* We're done with static constructors, so we can go back to "C++"
3561 linkage now. */
3562 pop_lang_context ();
3564 cgraph_finalize_compilation_unit ();
3565 cgraph_optimize ();
3567 /* Now, issue warnings about static, but not defined, functions,
3568 etc., and emit debugging information. */
3569 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3570 if (VEC_length (tree, pending_statics) != 0)
3572 check_global_declarations (VEC_address (tree, pending_statics),
3573 VEC_length (tree, pending_statics));
3574 emit_debug_global_declarations (VEC_address (tree, pending_statics),
3575 VEC_length (tree, pending_statics));
3578 /* Generate hidden aliases for Java. */
3579 build_java_method_aliases ();
3581 finish_repo ();
3583 /* The entire file is now complete. If requested, dump everything
3584 to a file. */
3586 int flags;
3587 FILE *stream = dump_begin (TDI_tu, &flags);
3589 if (stream)
3591 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3592 dump_end (TDI_tu, stream);
3596 timevar_pop (TV_VARCONST);
3598 if (flag_detailed_statistics)
3600 dump_tree_statistics ();
3601 dump_time_statistics ();
3603 input_location = locus;
3605 #ifdef ENABLE_CHECKING
3606 validate_conversion_obstack ();
3607 #endif /* ENABLE_CHECKING */
3610 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3611 function to call in parse-tree form; it has not yet been
3612 semantically analyzed. ARGS are the arguments to the function.
3613 They have already been semantically analyzed. */
3615 tree
3616 build_offset_ref_call_from_tree (tree fn, tree args)
3618 tree orig_fn;
3619 tree orig_args;
3620 tree expr;
3621 tree object;
3623 orig_fn = fn;
3624 orig_args = args;
3625 object = TREE_OPERAND (fn, 0);
3627 if (processing_template_decl)
3629 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3630 || TREE_CODE (fn) == MEMBER_REF);
3631 if (type_dependent_expression_p (fn)
3632 || any_type_dependent_arguments_p (args))
3633 return build_nt_call_list (fn, args);
3635 /* Transform the arguments and add the implicit "this"
3636 parameter. That must be done before the FN is transformed
3637 because we depend on the form of FN. */
3638 args = build_non_dependent_args (args);
3639 object = build_non_dependent_expr (object);
3640 if (TREE_CODE (fn) == DOTSTAR_EXPR)
3641 object = cp_build_unary_op (ADDR_EXPR, object, 0, tf_warning_or_error);
3642 args = tree_cons (NULL_TREE, object, args);
3643 /* Now that the arguments are done, transform FN. */
3644 fn = build_non_dependent_expr (fn);
3647 /* A qualified name corresponding to a bound pointer-to-member is
3648 represented as an OFFSET_REF:
3650 struct B { void g(); };
3651 void (B::*p)();
3652 void B::g() { (this->*p)(); } */
3653 if (TREE_CODE (fn) == OFFSET_REF)
3655 tree object_addr = cp_build_unary_op (ADDR_EXPR, object, 0,
3656 tf_warning_or_error);
3657 fn = TREE_OPERAND (fn, 1);
3658 fn = get_member_function_from_ptrfunc (&object_addr, fn);
3659 args = tree_cons (NULL_TREE, object_addr, args);
3662 expr = cp_build_function_call (fn, args, tf_warning_or_error);
3663 if (processing_template_decl && expr != error_mark_node)
3664 return build_min_non_dep_call_list (expr, orig_fn, orig_args);
3665 return expr;
3669 void
3670 check_default_args (tree x)
3672 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
3673 bool saw_def = false;
3674 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
3675 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
3677 if (TREE_PURPOSE (arg))
3678 saw_def = true;
3679 else if (saw_def)
3681 error ("default argument missing for parameter %P of %q+#D", i, x);
3682 TREE_PURPOSE (arg) = error_mark_node;
3687 /* Return true if function DECL can be inlined. This is used to force
3688 instantiation of methods that might be interesting for inlining. */
3689 bool
3690 possibly_inlined_p (tree decl)
3692 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
3693 if (DECL_UNINLINABLE (decl))
3694 return false;
3695 if (!optimize)
3696 return DECL_DECLARED_INLINE_P (decl);
3697 /* When optimizing, we might inline everything when flatten
3698 attribute or heuristics inlining for size or autoinlining
3699 is used. */
3700 return true;
3703 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
3704 If DECL is a specialization or implicitly declared class member,
3705 generate the actual definition. */
3707 void
3708 mark_used (tree decl)
3710 HOST_WIDE_INT saved_processing_template_decl = 0;
3712 /* If DECL is a BASELINK for a single function, then treat it just
3713 like the DECL for the function. Otherwise, if the BASELINK is
3714 for an overloaded function, we don't know which function was
3715 actually used until after overload resolution. */
3716 if (TREE_CODE (decl) == BASELINK)
3718 decl = BASELINK_FUNCTIONS (decl);
3719 if (really_overloaded_fn (decl))
3720 return;
3721 decl = OVL_CURRENT (decl);
3724 TREE_USED (decl) = 1;
3725 if (DECL_CLONED_FUNCTION_P (decl))
3726 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
3727 /* If we don't need a value, then we don't need to synthesize DECL. */
3728 if (skip_evaluation)
3729 return;
3730 /* Normally, we can wait until instantiation-time to synthesize
3731 DECL. However, if DECL is a static data member initialized with
3732 a constant, we need the value right now because a reference to
3733 such a data member is not value-dependent. */
3734 if (TREE_CODE (decl) == VAR_DECL
3735 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
3736 && DECL_CLASS_SCOPE_P (decl))
3738 /* Don't try to instantiate members of dependent types. We
3739 cannot just use dependent_type_p here because this function
3740 may be called from fold_non_dependent_expr, and then we may
3741 see dependent types, even though processing_template_decl
3742 will not be set. */
3743 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl)))
3744 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl))))
3745 return;
3746 /* Pretend that we are not in a template, even if we are, so
3747 that the static data member initializer will be processed. */
3748 saved_processing_template_decl = processing_template_decl;
3749 processing_template_decl = 0;
3752 if (processing_template_decl)
3753 return;
3755 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
3756 && !TREE_ASM_WRITTEN (decl))
3757 /* Remember it, so we can check it was defined. */
3759 if (DECL_DEFERRED_FN (decl))
3760 return;
3762 /* Remember the current location for a function we will end up
3763 synthesizing. Then we can inform the user where it was
3764 required in the case of error. */
3765 if (DECL_ARTIFICIAL (decl) && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3766 && !DECL_THUNK_P (decl))
3767 DECL_SOURCE_LOCATION (decl) = input_location;
3769 note_vague_linkage_fn (decl);
3772 assemble_external (decl);
3774 /* Is it a synthesized method that needs to be synthesized? */
3775 if (TREE_CODE (decl) == FUNCTION_DECL
3776 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3777 && DECL_DEFAULTED_FN (decl)
3778 && !DECL_THUNK_P (decl)
3779 && ! DECL_INITIAL (decl)
3780 /* Kludge: don't synthesize for default args. Unfortunately this
3781 rules out initializers of namespace-scoped objects too, but
3782 it's sort-of ok if the implicit ctor or dtor decl keeps
3783 pointing to the class location. */
3784 && current_function_decl)
3786 synthesize_method (decl);
3787 /* If we've already synthesized the method we don't need to
3788 do the instantiation test below. */
3790 else if (TREE_CODE (decl) == FUNCTION_DECL
3791 && DECL_DELETED_FN (decl))
3793 error ("deleted function %q+D", decl);
3794 error ("used here");
3796 else if ((DECL_NON_THUNK_FUNCTION_P (decl) || TREE_CODE (decl) == VAR_DECL)
3797 && DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3798 && (!DECL_EXPLICIT_INSTANTIATION (decl)
3799 || (TREE_CODE (decl) == FUNCTION_DECL
3800 && possibly_inlined_p
3801 (DECL_TEMPLATE_RESULT (
3802 template_for_substitution (decl))))
3803 /* We need to instantiate static data members so that there
3804 initializers are available in integral constant
3805 expressions. */
3806 || (TREE_CODE (decl) == VAR_DECL
3807 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))))
3808 /* If this is a function or variable that is an instance of some
3809 template, we now know that we will need to actually do the
3810 instantiation. We check that DECL is not an explicit
3811 instantiation because that is not checked in instantiate_decl.
3813 We put off instantiating functions in order to improve compile
3814 times. Maintaining a stack of active functions is expensive,
3815 and the inliner knows to instantiate any functions it might
3816 need. Therefore, we always try to defer instantiation. */
3817 instantiate_decl (decl, /*defer_ok=*/true,
3818 /*expl_inst_class_mem_p=*/false);
3820 processing_template_decl = saved_processing_template_decl;
3823 #include "gt-cp-decl2.h"