2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / cp / decl2.c
blob41af32faec406109e8d1d0f0d2dbb8950790d396
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 Free Software Foundation, Inc.
4 Hacked by Michael Tiemann (tiemann@cygnus.com)
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* Process declarations and symbol lookup for C++ front end.
24 Also constructs types; the standard scalar types at initialization,
25 and structure, union, array and enum types when they are declared. */
27 /* ??? not all decl nodes are given the most useful possible
28 line numbers. For example, the CONST_DECLs for enum values. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "tree.h"
35 #include "rtl.h"
36 #include "expr.h"
37 #include "flags.h"
38 #include "cp-tree.h"
39 #include "decl.h"
40 #include "output.h"
41 #include "except.h"
42 #include "toplev.h"
43 #include "timevar.h"
44 #include "cpplib.h"
45 #include "target.h"
46 #include "c-common.h"
47 #include "tree-mudflap.h"
48 #include "cgraph.h"
49 #include "tree-inline.h"
50 #include "c-pragma.h"
51 #include "tree-dump.h"
52 #include "intl.h"
54 extern cpp_reader *parse_in;
56 /* This structure contains information about the initializations
57 and/or destructions required for a particular priority level. */
58 typedef struct priority_info_s {
59 /* Nonzero if there have been any initializations at this priority
60 throughout the translation unit. */
61 int initializations_p;
62 /* Nonzero if there have been any destructions at this priority
63 throughout the translation unit. */
64 int destructions_p;
65 } *priority_info;
67 static void mark_vtable_entries (tree);
68 static bool maybe_emit_vtables (tree);
69 static bool acceptable_java_type (tree);
70 static tree start_objects (int, int);
71 static void finish_objects (int, int, tree);
72 static tree start_static_storage_duration_function (unsigned);
73 static void finish_static_storage_duration_function (tree);
74 static priority_info get_priority_info (int);
75 static void do_static_initialization_or_destruction (tree, bool);
76 static void one_static_initialization_or_destruction (tree, tree, bool);
77 static void generate_ctor_or_dtor_function (bool, int, location_t *);
78 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node,
79 void *);
80 static tree prune_vars_needing_no_initialization (tree *);
81 static void write_out_vars (tree);
82 static void import_export_class (tree);
83 static tree get_guard_bits (tree);
84 static void determine_visibility_from_class (tree, tree);
86 /* A list of static class variables. This is needed, because a
87 static class variable can be declared inside the class without
88 an initializer, and then initialized, statically, outside the class. */
89 static GTY(()) VEC(tree,gc) *pending_statics;
91 /* A list of functions which were declared inline, but which we
92 may need to emit outline anyway. */
93 static GTY(()) VEC(tree,gc) *deferred_fns;
95 /* Nonzero if we're done parsing and into end-of-file activities. */
97 int at_eof;
101 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
102 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
103 that apply to the function). */
105 tree
106 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
108 tree raises;
109 int type_quals;
111 if (fntype == error_mark_node || ctype == error_mark_node)
112 return error_mark_node;
114 type_quals = quals & ~TYPE_QUAL_RESTRICT;
115 ctype = cp_build_qualified_type (ctype, type_quals);
116 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
117 (TREE_CODE (fntype) == METHOD_TYPE
118 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
119 : TYPE_ARG_TYPES (fntype)));
120 raises = TYPE_RAISES_EXCEPTIONS (fntype);
121 if (raises)
122 fntype = build_exception_variant (fntype, raises);
124 return fntype;
127 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
128 appropriately. */
130 tree
131 cp_build_parm_decl (tree name, tree type)
133 tree parm = build_decl (PARM_DECL, name, type);
134 /* DECL_ARG_TYPE is only used by the back end and the back end never
135 sees templates. */
136 if (!processing_template_decl)
137 DECL_ARG_TYPE (parm) = type_passed_as (type);
139 /* If the type is a pack expansion, then we have a function
140 parameter pack. */
141 if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
142 FUNCTION_PARAMETER_PACK_P (parm) = 1;
144 return parm;
147 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
148 indicated NAME. */
150 tree
151 build_artificial_parm (tree name, tree type)
153 tree parm = cp_build_parm_decl (name, type);
154 DECL_ARTIFICIAL (parm) = 1;
155 /* All our artificial parms are implicitly `const'; they cannot be
156 assigned to. */
157 TREE_READONLY (parm) = 1;
158 return parm;
161 /* Constructors for types with virtual baseclasses need an "in-charge" flag
162 saying whether this constructor is responsible for initialization of
163 virtual baseclasses or not. All destructors also need this "in-charge"
164 flag, which additionally determines whether or not the destructor should
165 free the memory for the object.
167 This function adds the "in-charge" flag to member function FN if
168 appropriate. It is called from grokclassfn and tsubst.
169 FN must be either a constructor or destructor.
171 The in-charge flag follows the 'this' parameter, and is followed by the
172 VTT parm (if any), then the user-written parms. */
174 void
175 maybe_retrofit_in_chrg (tree fn)
177 tree basetype, arg_types, parms, parm, fntype;
179 /* If we've already add the in-charge parameter don't do it again. */
180 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
181 return;
183 /* When processing templates we can't know, in general, whether or
184 not we're going to have virtual baseclasses. */
185 if (processing_template_decl)
186 return;
188 /* We don't need an in-charge parameter for constructors that don't
189 have virtual bases. */
190 if (DECL_CONSTRUCTOR_P (fn)
191 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
192 return;
194 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
195 basetype = TREE_TYPE (TREE_VALUE (arg_types));
196 arg_types = TREE_CHAIN (arg_types);
198 parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
200 /* If this is a subobject constructor or destructor, our caller will
201 pass us a pointer to our VTT. */
202 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
204 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
206 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
207 TREE_CHAIN (parm) = parms;
208 parms = parm;
210 /* ...and then to TYPE_ARG_TYPES. */
211 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
213 DECL_HAS_VTT_PARM_P (fn) = 1;
216 /* Then add the in-charge parm (before the VTT parm). */
217 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
218 TREE_CHAIN (parm) = parms;
219 parms = parm;
220 arg_types = hash_tree_chain (integer_type_node, arg_types);
222 /* Insert our new parameter(s) into the list. */
223 TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
225 /* And rebuild the function type. */
226 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
227 arg_types);
228 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
229 fntype = build_exception_variant (fntype,
230 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
231 TREE_TYPE (fn) = fntype;
233 /* Now we've got the in-charge parameter. */
234 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
237 /* Classes overload their constituent function names automatically.
238 When a function name is declared in a record structure,
239 its name is changed to it overloaded name. Since names for
240 constructors and destructors can conflict, we place a leading
241 '$' for destructors.
243 CNAME is the name of the class we are grokking for.
245 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
247 FLAGS contains bits saying what's special about today's
248 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
250 If FUNCTION is a destructor, then we must add the `auto-delete' field
251 as a second parameter. There is some hair associated with the fact
252 that we must "declare" this variable in the manner consistent with the
253 way the rest of the arguments were declared.
255 QUALS are the qualifiers for the this pointer. */
257 void
258 grokclassfn (tree ctype, tree function, enum overload_flags flags)
260 tree fn_name = DECL_NAME (function);
262 /* Even within an `extern "C"' block, members get C++ linkage. See
263 [dcl.link] for details. */
264 SET_DECL_LANGUAGE (function, lang_cplusplus);
266 if (fn_name == NULL_TREE)
268 error ("name missing for member function");
269 fn_name = get_identifier ("<anonymous>");
270 DECL_NAME (function) = fn_name;
273 DECL_CONTEXT (function) = ctype;
275 if (flags == DTOR_FLAG)
276 DECL_DESTRUCTOR_P (function) = 1;
278 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
279 maybe_retrofit_in_chrg (function);
282 /* Create an ARRAY_REF, checking for the user doing things backwards
283 along the way. */
285 tree
286 grok_array_decl (tree array_expr, tree index_exp)
288 tree type;
289 tree expr;
290 tree orig_array_expr = array_expr;
291 tree orig_index_exp = index_exp;
293 if (error_operand_p (array_expr) || error_operand_p (index_exp))
294 return error_mark_node;
296 if (processing_template_decl)
298 if (type_dependent_expression_p (array_expr)
299 || type_dependent_expression_p (index_exp))
300 return build_min_nt (ARRAY_REF, array_expr, index_exp,
301 NULL_TREE, NULL_TREE);
302 array_expr = build_non_dependent_expr (array_expr);
303 index_exp = build_non_dependent_expr (index_exp);
306 type = TREE_TYPE (array_expr);
307 gcc_assert (type);
308 type = non_reference (type);
310 /* If they have an `operator[]', use that. */
311 if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
312 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
313 array_expr, index_exp, NULL_TREE,
314 /*overloaded_p=*/NULL, tf_warning_or_error);
315 else
317 tree p1, p2, i1, i2;
319 /* Otherwise, create an ARRAY_REF for a pointer or array type.
320 It is a little-known fact that, if `a' is an array and `i' is
321 an int, you can write `i[a]', which means the same thing as
322 `a[i]'. */
323 if (TREE_CODE (type) == ARRAY_TYPE)
324 p1 = array_expr;
325 else
326 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
328 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
329 p2 = index_exp;
330 else
331 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
333 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
334 false);
335 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
336 false);
338 if ((p1 && i2) && (i1 && p2))
339 error ("ambiguous conversion for array subscript");
341 if (p1 && i2)
342 array_expr = p1, index_exp = i2;
343 else if (i1 && p2)
344 array_expr = p2, index_exp = i1;
345 else
347 error ("invalid types %<%T[%T]%> for array subscript",
348 type, TREE_TYPE (index_exp));
349 return error_mark_node;
352 if (array_expr == error_mark_node || index_exp == error_mark_node)
353 error ("ambiguous conversion for array subscript");
355 expr = build_array_ref (array_expr, index_exp);
357 if (processing_template_decl && expr != error_mark_node)
358 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
359 NULL_TREE, NULL_TREE);
360 return expr;
363 /* Given the cast expression EXP, checking out its validity. Either return
364 an error_mark_node if there was an unavoidable error, return a cast to
365 void for trying to delete a pointer w/ the value 0, or return the
366 call to delete. If DOING_VEC is true, we handle things differently
367 for doing an array delete.
368 Implements ARM $5.3.4. This is called from the parser. */
370 tree
371 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
373 tree t, type;
375 if (exp == error_mark_node)
376 return exp;
378 if (processing_template_decl)
380 t = build_min (DELETE_EXPR, void_type_node, exp, size);
381 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
382 DELETE_EXPR_USE_VEC (t) = doing_vec;
383 TREE_SIDE_EFFECTS (t) = 1;
384 return t;
387 /* An array can't have been allocated by new, so complain. */
388 if (TREE_CODE (exp) == VAR_DECL
389 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
390 warning (0, "deleting array %q#D", exp);
392 t = build_expr_type_conversion (WANT_POINTER, exp, true);
394 if (t == NULL_TREE || t == error_mark_node)
396 error ("type %q#T argument given to %<delete%>, expected pointer",
397 TREE_TYPE (exp));
398 return error_mark_node;
401 type = TREE_TYPE (t);
403 /* As of Valley Forge, you can delete a pointer to const. */
405 /* You can't delete functions. */
406 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
408 error ("cannot delete a function. Only pointer-to-objects are "
409 "valid arguments to %<delete%>");
410 return error_mark_node;
413 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
414 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
416 warning (0, "deleting %qT is undefined", type);
417 doing_vec = 0;
420 /* Deleting a pointer with the value zero is valid and has no effect. */
421 if (integer_zerop (t))
422 return build1 (NOP_EXPR, void_type_node, t);
424 if (doing_vec)
425 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
426 sfk_deleting_destructor,
427 use_global_delete);
428 else
429 return build_delete (type, t, sfk_deleting_destructor,
430 LOOKUP_NORMAL, use_global_delete);
433 /* Report an error if the indicated template declaration is not the
434 sort of thing that should be a member template. */
436 void
437 check_member_template (tree tmpl)
439 tree decl;
441 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
442 decl = DECL_TEMPLATE_RESULT (tmpl);
444 if (TREE_CODE (decl) == FUNCTION_DECL
445 || (TREE_CODE (decl) == TYPE_DECL
446 && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
448 /* The parser rejects template declarations in local classes. */
449 gcc_assert (!current_function_decl);
450 /* The parser rejects any use of virtual in a function template. */
451 gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
452 && DECL_VIRTUAL_P (decl)));
454 /* The debug-information generating code doesn't know what to do
455 with member templates. */
456 DECL_IGNORED_P (tmpl) = 1;
458 else
459 error ("template declaration of %q#D", decl);
462 /* Return true iff TYPE is a valid Java parameter or return type. */
464 static bool
465 acceptable_java_type (tree type)
467 if (type == error_mark_node)
468 return false;
470 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
471 return true;
472 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
474 type = TREE_TYPE (type);
475 if (TREE_CODE (type) == RECORD_TYPE)
477 tree args; int i;
478 if (! TYPE_FOR_JAVA (type))
479 return false;
480 if (! CLASSTYPE_TEMPLATE_INFO (type))
481 return true;
482 args = CLASSTYPE_TI_ARGS (type);
483 i = TREE_VEC_LENGTH (args);
484 while (--i >= 0)
486 type = TREE_VEC_ELT (args, i);
487 if (TREE_CODE (type) == POINTER_TYPE)
488 type = TREE_TYPE (type);
489 if (! TYPE_FOR_JAVA (type))
490 return false;
492 return true;
495 return false;
498 /* For a METHOD in a Java class CTYPE, return true if
499 the parameter and return types are valid Java types.
500 Otherwise, print appropriate error messages, and return false. */
502 bool
503 check_java_method (tree method)
505 bool jerr = false;
506 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
507 tree ret_type = TREE_TYPE (TREE_TYPE (method));
509 if (!acceptable_java_type (ret_type))
511 error ("Java method %qD has non-Java return type %qT",
512 method, ret_type);
513 jerr = true;
516 arg_types = TREE_CHAIN (arg_types);
517 if (DECL_HAS_IN_CHARGE_PARM_P (method))
518 arg_types = TREE_CHAIN (arg_types);
519 if (DECL_HAS_VTT_PARM_P (method))
520 arg_types = TREE_CHAIN (arg_types);
522 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
524 tree type = TREE_VALUE (arg_types);
525 if (!acceptable_java_type (type))
527 if (type != error_mark_node)
528 error ("Java method %qD has non-Java parameter type %qT",
529 method, type);
530 jerr = true;
533 return !jerr;
536 /* Sanity check: report error if this function FUNCTION is not
537 really a member of the class (CTYPE) it is supposed to belong to.
538 TEMPLATE_PARMS is used to specify the template parameters of a member
539 template passed as FUNCTION_DECL. If the member template is passed as a
540 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
541 from the declaration. If the function is not a function template, it
542 must be NULL.
543 It returns the original declaration for the function, NULL_TREE if
544 no declaration was found, error_mark_node if an error was emitted. */
546 tree
547 check_classfn (tree ctype, tree function, tree template_parms)
549 int ix;
550 bool is_template;
551 tree pushed_scope;
553 if (DECL_USE_TEMPLATE (function)
554 && !(TREE_CODE (function) == TEMPLATE_DECL
555 && DECL_TEMPLATE_SPECIALIZATION (function))
556 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
557 /* Since this is a specialization of a member template,
558 we're not going to find the declaration in the class.
559 For example, in:
561 struct S { template <typename T> void f(T); };
562 template <> void S::f(int);
564 we're not going to find `S::f(int)', but there's no
565 reason we should, either. We let our callers know we didn't
566 find the method, but we don't complain. */
567 return NULL_TREE;
569 /* Basic sanity check: for a template function, the template parameters
570 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
571 if (TREE_CODE (function) == TEMPLATE_DECL)
573 gcc_assert (!template_parms
574 || comp_template_parms (template_parms,
575 DECL_TEMPLATE_PARMS (function)));
576 template_parms = DECL_TEMPLATE_PARMS (function);
579 /* OK, is this a definition of a member template? */
580 is_template = (template_parms != NULL_TREE);
582 /* We must enter the scope here, because conversion operators are
583 named by target type, and type equivalence relies on typenames
584 resolving within the scope of CTYPE. */
585 pushed_scope = push_scope (ctype);
586 ix = class_method_index_for_fn (complete_type (ctype), function);
587 if (ix >= 0)
589 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
590 tree fndecls, fndecl = 0;
591 bool is_conv_op;
592 const char *format = NULL;
594 for (fndecls = VEC_index (tree, methods, ix);
595 fndecls; fndecls = OVL_NEXT (fndecls))
597 tree p1, p2;
599 fndecl = OVL_CURRENT (fndecls);
600 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
601 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
603 /* We cannot simply call decls_match because this doesn't
604 work for static member functions that are pretending to
605 be methods, and because the name may have been changed by
606 asm("new_name"). */
608 /* Get rid of the this parameter on functions that become
609 static. */
610 if (DECL_STATIC_FUNCTION_P (fndecl)
611 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
612 p1 = TREE_CHAIN (p1);
614 /* A member template definition only matches a member template
615 declaration. */
616 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
617 continue;
619 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
620 TREE_TYPE (TREE_TYPE (fndecl)))
621 && compparms (p1, p2)
622 && (!is_template
623 || comp_template_parms (template_parms,
624 DECL_TEMPLATE_PARMS (fndecl)))
625 && (DECL_TEMPLATE_SPECIALIZATION (function)
626 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
627 && (!DECL_TEMPLATE_SPECIALIZATION (function)
628 || (DECL_TI_TEMPLATE (function)
629 == DECL_TI_TEMPLATE (fndecl))))
630 break;
632 if (fndecls)
634 if (pushed_scope)
635 pop_scope (pushed_scope);
636 return OVL_CURRENT (fndecls);
639 error ("prototype for %q#D does not match any in class %qT",
640 function, ctype);
641 is_conv_op = DECL_CONV_FN_P (fndecl);
643 if (is_conv_op)
644 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
645 fndecls = VEC_index (tree, methods, ix);
646 while (fndecls)
648 fndecl = OVL_CURRENT (fndecls);
649 fndecls = OVL_NEXT (fndecls);
651 if (!fndecls && is_conv_op)
653 if (VEC_length (tree, methods) > (size_t) ++ix)
655 fndecls = VEC_index (tree, methods, ix);
656 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
658 fndecls = NULL_TREE;
659 is_conv_op = false;
662 else
663 is_conv_op = false;
665 if (format)
666 format = " %+#D";
667 else if (fndecls)
668 format = N_("candidates are: %+#D");
669 else
670 format = N_("candidate is: %+#D");
671 error (format, fndecl);
674 else if (!COMPLETE_TYPE_P (ctype))
675 cxx_incomplete_type_error (function, ctype);
676 else
677 error ("no %q#D member function declared in class %qT",
678 function, ctype);
680 if (pushed_scope)
681 pop_scope (pushed_scope);
682 return error_mark_node;
685 /* DECL is a function with vague linkage. Remember it so that at the
686 end of the translation unit we can decide whether or not to emit
687 it. */
689 void
690 note_vague_linkage_fn (tree decl)
692 if (!DECL_DEFERRED_FN (decl))
694 DECL_DEFERRED_FN (decl) = 1;
695 DECL_DEFER_OUTPUT (decl) = 1;
696 VEC_safe_push (tree, gc, deferred_fns, decl);
700 /* We have just processed the DECL, which is a static data member.
701 The other parameters are as for cp_finish_decl. */
703 void
704 finish_static_data_member_decl (tree decl,
705 tree init, bool init_const_expr_p,
706 tree asmspec_tree,
707 int flags)
709 DECL_CONTEXT (decl) = current_class_type;
711 /* We cannot call pushdecl here, because that would fill in the
712 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
713 the right thing, namely, to put this decl out straight away. */
715 if (! processing_template_decl)
716 VEC_safe_push (tree, gc, pending_statics, decl);
718 if (LOCAL_CLASS_P (current_class_type))
719 pedwarn ("local class %q#T shall not have static data member %q#D",
720 current_class_type, decl);
722 /* Static consts need not be initialized in the class definition. */
723 if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
725 static int explained = 0;
727 error ("initializer invalid for static member with constructor");
728 if (!explained)
730 error ("(an out of class initialization is required)");
731 explained = 1;
733 init = NULL_TREE;
735 /* Force the compiler to know when an uninitialized static const
736 member is being used. */
737 if (CP_TYPE_CONST_P (TREE_TYPE (decl)) && init == 0)
738 TREE_USED (decl) = 1;
739 DECL_INITIAL (decl) = init;
740 DECL_IN_AGGR_P (decl) = 1;
742 cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
745 /* DECLARATOR and DECLSPECS correspond to a class member. The other
746 parameters are as for cp_finish_decl. Return the DECL for the
747 class member declared. */
749 tree
750 grokfield (const cp_declarator *declarator,
751 cp_decl_specifier_seq *declspecs,
752 tree init, bool init_const_expr_p,
753 tree asmspec_tree,
754 tree attrlist)
756 tree value;
757 const char *asmspec = 0;
758 int flags = LOOKUP_ONLYCONVERTING;
760 if (init
761 && TREE_CODE (init) == TREE_LIST
762 && TREE_VALUE (init) == error_mark_node
763 && TREE_CHAIN (init) == NULL_TREE)
764 init = NULL_TREE;
766 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
767 if (! value || error_operand_p (value))
768 /* friend or constructor went bad. */
769 return error_mark_node;
771 if (TREE_CODE (value) == TYPE_DECL && init)
773 error ("typedef %qD is initialized (use __typeof__ instead)", value);
774 init = NULL_TREE;
777 /* Pass friendly classes back. */
778 if (value == void_type_node)
779 return value;
781 /* Pass friend decls back. */
782 if ((TREE_CODE (value) == FUNCTION_DECL
783 || TREE_CODE (value) == TEMPLATE_DECL)
784 && DECL_CONTEXT (value) != current_class_type)
785 return value;
787 if (DECL_NAME (value) != NULL_TREE
788 && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
789 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
790 error ("member %qD conflicts with virtual function table field name",
791 value);
793 /* Stash away type declarations. */
794 if (TREE_CODE (value) == TYPE_DECL)
796 DECL_NONLOCAL (value) = 1;
797 DECL_CONTEXT (value) = current_class_type;
799 if (processing_template_decl)
800 value = push_template_decl (value);
802 if (attrlist)
803 cplus_decl_attributes (&value, attrlist, 0);
805 return value;
808 if (DECL_IN_AGGR_P (value))
810 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
811 return void_type_node;
814 if (asmspec_tree && asmspec_tree != error_mark_node)
815 asmspec = TREE_STRING_POINTER (asmspec_tree);
817 if (init)
819 if (TREE_CODE (value) == FUNCTION_DECL)
821 /* Initializers for functions are rejected early in the parser.
822 If we get here, it must be a pure specifier for a method. */
823 if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
825 gcc_assert (error_operand_p (init) || integer_zerop (init));
826 DECL_PURE_VIRTUAL_P (value) = 1;
828 else
830 gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
831 error ("initializer specified for static member function %qD",
832 value);
835 else if (pedantic && TREE_CODE (value) != VAR_DECL)
836 /* Already complained in grokdeclarator. */
837 init = NULL_TREE;
838 else if (!processing_template_decl)
840 if (TREE_CODE (init) == CONSTRUCTOR)
841 init = digest_init (TREE_TYPE (value), init);
842 else
843 init = integral_constant_value (init);
845 if (init != error_mark_node && !TREE_CONSTANT (init))
847 /* We can allow references to things that are effectively
848 static, since references are initialized with the
849 address. */
850 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
851 || (TREE_STATIC (init) == 0
852 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
854 error ("field initializer is not constant");
855 init = error_mark_node;
861 if (processing_template_decl
862 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
864 value = push_template_decl (value);
865 if (error_operand_p (value))
866 return error_mark_node;
869 if (attrlist)
870 cplus_decl_attributes (&value, attrlist, 0);
872 switch (TREE_CODE (value))
874 case VAR_DECL:
875 finish_static_data_member_decl (value, init, init_const_expr_p,
876 asmspec_tree, flags);
877 return value;
879 case FIELD_DECL:
880 if (asmspec)
881 error ("%<asm%> specifiers are not permitted on non-static data members");
882 if (DECL_INITIAL (value) == error_mark_node)
883 init = error_mark_node;
884 cp_finish_decl (value, init, /*init_const_expr_p=*/false,
885 NULL_TREE, flags);
886 DECL_INITIAL (value) = init;
887 DECL_IN_AGGR_P (value) = 1;
888 return value;
890 case FUNCTION_DECL:
891 if (asmspec)
892 set_user_assembler_name (value, asmspec);
894 cp_finish_decl (value,
895 /*init=*/NULL_TREE,
896 /*init_const_expr_p=*/false,
897 asmspec_tree, flags);
899 /* Pass friends back this way. */
900 if (DECL_FRIEND_P (value))
901 return void_type_node;
903 DECL_IN_AGGR_P (value) = 1;
904 return value;
906 default:
907 gcc_unreachable ();
909 return NULL_TREE;
912 /* Like `grokfield', but for bitfields.
913 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
915 tree
916 grokbitfield (const cp_declarator *declarator,
917 cp_decl_specifier_seq *declspecs, tree width)
919 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, NULL);
921 if (value == error_mark_node)
922 return NULL_TREE; /* friends went bad. */
924 /* Pass friendly classes back. */
925 if (TREE_CODE (value) == VOID_TYPE)
926 return void_type_node;
928 if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
929 && (POINTER_TYPE_P (value)
930 || !dependent_type_p (TREE_TYPE (value))))
932 error ("bit-field %qD with non-integral type", value);
933 return error_mark_node;
936 if (TREE_CODE (value) == TYPE_DECL)
938 error ("cannot declare %qD to be a bit-field type", value);
939 return NULL_TREE;
942 /* Usually, finish_struct_1 catches bitfields with invalid types.
943 But, in the case of bitfields with function type, we confuse
944 ourselves into thinking they are member functions, so we must
945 check here. */
946 if (TREE_CODE (value) == FUNCTION_DECL)
948 error ("cannot declare bit-field %qD with function type",
949 DECL_NAME (value));
950 return NULL_TREE;
953 if (DECL_IN_AGGR_P (value))
955 error ("%qD is already defined in the class %qT", value,
956 DECL_CONTEXT (value));
957 return void_type_node;
960 if (TREE_STATIC (value))
962 error ("static member %qD cannot be a bit-field", value);
963 return NULL_TREE;
965 finish_decl (value, NULL_TREE, NULL_TREE);
967 if (width != error_mark_node)
969 constant_expression_warning (width);
970 DECL_INITIAL (value) = width;
971 SET_DECL_C_BIT_FIELD (value);
974 DECL_IN_AGGR_P (value) = 1;
975 return value;
979 /* Returns true iff ATTR is an attribute which needs to be applied at
980 instantiation time rather than template definition time. */
982 static bool
983 is_late_template_attribute (tree attr, tree decl)
985 tree name = TREE_PURPOSE (attr);
986 tree args = TREE_VALUE (attr);
987 const struct attribute_spec *spec = lookup_attribute_spec (name);
988 tree arg;
990 if (!spec)
991 /* Unknown attribute. */
992 return false;
994 /* Attribute weak handling wants to write out assembly right away. */
995 if (is_attribute_p ("weak", name))
996 return true;
998 /* If any of the arguments are dependent expressions, we can't evaluate
999 the attribute until instantiation time. */
1000 for (arg = args; arg; arg = TREE_CHAIN (arg))
1002 tree t = TREE_VALUE (arg);
1003 if (value_dependent_expression_p (t)
1004 || type_dependent_expression_p (t))
1005 return true;
1008 if (TREE_CODE (decl) == TYPE_DECL
1009 || TYPE_P (decl)
1010 || spec->type_required)
1012 tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1014 /* We can't apply any attributes to a completely unknown type until
1015 instantiation time. */
1016 enum tree_code code = TREE_CODE (type);
1017 if (code == TEMPLATE_TYPE_PARM
1018 || code == BOUND_TEMPLATE_TEMPLATE_PARM
1019 || code == TYPENAME_TYPE)
1020 return true;
1021 /* Also defer most attributes on dependent types. This is not
1022 necessary in all cases, but is the better default. */
1023 else if (dependent_type_p (type)
1024 /* But attribute visibility specifically works on
1025 templates. */
1026 && !is_attribute_p ("visibility", name))
1027 return true;
1028 else
1029 return false;
1031 else
1032 return false;
1035 /* ATTR_P is a list of attributes. Remove any attributes which need to be
1036 applied at instantiation time and return them. If IS_DEPENDENT is true,
1037 the declaration itself is dependent, so all attributes should be applied
1038 at instantiation time. */
1040 static tree
1041 splice_template_attributes (tree *attr_p, tree decl)
1043 tree *p = attr_p;
1044 tree late_attrs = NULL_TREE;
1045 tree *q = &late_attrs;
1047 if (!p)
1048 return NULL_TREE;
1050 for (; *p; )
1052 if (is_late_template_attribute (*p, decl))
1054 ATTR_IS_DEPENDENT (*p) = 1;
1055 *q = *p;
1056 *p = TREE_CHAIN (*p);
1057 q = &TREE_CHAIN (*q);
1058 *q = NULL_TREE;
1060 else
1061 p = &TREE_CHAIN (*p);
1064 return late_attrs;
1067 /* Remove any late attributes from the list in ATTR_P and attach them to
1068 DECL_P. */
1070 static void
1071 save_template_attributes (tree *attr_p, tree *decl_p)
1073 tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1074 tree *q;
1075 tree old_attrs = NULL_TREE;
1077 if (!late_attrs)
1078 return;
1080 /* Give this type a name so we know to look it up again at instantiation
1081 time. */
1082 if (TREE_CODE (*decl_p) == TYPE_DECL
1083 && DECL_ORIGINAL_TYPE (*decl_p) == NULL_TREE)
1085 tree oldt = TREE_TYPE (*decl_p);
1086 tree newt = build_variant_type_copy (oldt);
1087 DECL_ORIGINAL_TYPE (*decl_p) = oldt;
1088 TREE_TYPE (*decl_p) = newt;
1089 TYPE_NAME (newt) = *decl_p;
1090 TREE_USED (newt) = TREE_USED (*decl_p);
1093 if (DECL_P (*decl_p))
1094 q = &DECL_ATTRIBUTES (*decl_p);
1095 else
1096 q = &TYPE_ATTRIBUTES (*decl_p);
1098 old_attrs = *q;
1100 /* Place the late attributes at the beginning of the attribute
1101 list. */
1102 TREE_CHAIN (tree_last (late_attrs)) = *q;
1103 *q = late_attrs;
1105 if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1107 /* We've added new attributes directly to the main variant, so
1108 now we need to update all of the other variants to include
1109 these new attributes. */
1110 tree variant;
1111 for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1112 variant = TYPE_NEXT_VARIANT (variant))
1114 gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1115 TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1120 /* Like reconstruct_complex_type, but handle also template trees. */
1122 tree
1123 cp_reconstruct_complex_type (tree type, tree bottom)
1125 tree inner, outer;
1127 if (TREE_CODE (type) == POINTER_TYPE)
1129 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1130 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1131 TYPE_REF_CAN_ALIAS_ALL (type));
1133 else if (TREE_CODE (type) == REFERENCE_TYPE)
1135 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1136 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1137 TYPE_REF_CAN_ALIAS_ALL (type));
1139 else if (TREE_CODE (type) == ARRAY_TYPE)
1141 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1142 outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1143 /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1144 element type qualification will be handled by the recursive
1145 cp_reconstruct_complex_type call and cp_build_qualified_type
1146 for ARRAY_TYPEs changes the element type. */
1147 return outer;
1149 else if (TREE_CODE (type) == FUNCTION_TYPE)
1151 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1152 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1154 else if (TREE_CODE (type) == METHOD_TYPE)
1156 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1157 /* The build_method_type_directly() routine prepends 'this' to argument list,
1158 so we must compensate by getting rid of it. */
1159 outer
1160 = build_method_type_directly
1161 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1162 inner,
1163 TREE_CHAIN (TYPE_ARG_TYPES (type)));
1165 else if (TREE_CODE (type) == OFFSET_TYPE)
1167 inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1168 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1170 else
1171 return bottom;
1173 return cp_build_qualified_type (outer, TYPE_QUALS (type));
1176 /* Like decl_attributes, but handle C++ complexity. */
1178 void
1179 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1181 if (*decl == NULL_TREE || *decl == void_type_node
1182 || *decl == error_mark_node
1183 || attributes == NULL_TREE)
1184 return;
1186 if (processing_template_decl)
1188 if (check_for_bare_parameter_packs (attributes))
1189 return;
1191 save_template_attributes (&attributes, decl);
1192 if (attributes == NULL_TREE)
1193 return;
1196 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1197 decl = &DECL_TEMPLATE_RESULT (*decl);
1199 decl_attributes (decl, attributes, flags);
1201 if (TREE_CODE (*decl) == TYPE_DECL)
1202 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1205 /* Walks through the namespace- or function-scope anonymous union
1206 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1207 Returns one of the fields for use in the mangled name. */
1209 static tree
1210 build_anon_union_vars (tree type, tree object)
1212 tree main_decl = NULL_TREE;
1213 tree field;
1215 /* Rather than write the code to handle the non-union case,
1216 just give an error. */
1217 if (TREE_CODE (type) != UNION_TYPE)
1218 error ("anonymous struct not inside named type");
1220 for (field = TYPE_FIELDS (type);
1221 field != NULL_TREE;
1222 field = TREE_CHAIN (field))
1224 tree decl;
1225 tree ref;
1227 if (DECL_ARTIFICIAL (field))
1228 continue;
1229 if (TREE_CODE (field) != FIELD_DECL)
1231 pedwarn ("%q+#D invalid; an anonymous union can only "
1232 "have non-static data members", field);
1233 continue;
1236 if (TREE_PRIVATE (field))
1237 pedwarn ("private member %q+#D in anonymous union", field);
1238 else if (TREE_PROTECTED (field))
1239 pedwarn ("protected member %q+#D in anonymous union", field);
1241 if (processing_template_decl)
1242 ref = build_min_nt (COMPONENT_REF, object,
1243 DECL_NAME (field), NULL_TREE);
1244 else
1245 ref = build_class_member_access_expr (object, field, NULL_TREE,
1246 false, tf_warning_or_error);
1248 if (DECL_NAME (field))
1250 tree base;
1252 decl = build_decl (VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1253 DECL_ANON_UNION_VAR_P (decl) = 1;
1255 base = get_base_address (object);
1256 TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1257 TREE_STATIC (decl) = TREE_STATIC (base);
1258 DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1260 SET_DECL_VALUE_EXPR (decl, ref);
1261 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1263 decl = pushdecl (decl);
1265 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1266 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1267 else
1268 decl = 0;
1270 if (main_decl == NULL_TREE)
1271 main_decl = decl;
1274 return main_decl;
1277 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1278 anonymous union, then all members must be laid out together. PUBLIC_P
1279 is nonzero if this union is not declared static. */
1281 void
1282 finish_anon_union (tree anon_union_decl)
1284 tree type;
1285 tree main_decl;
1286 bool public_p;
1288 if (anon_union_decl == error_mark_node)
1289 return;
1291 type = TREE_TYPE (anon_union_decl);
1292 public_p = TREE_PUBLIC (anon_union_decl);
1294 /* The VAR_DECL's context is the same as the TYPE's context. */
1295 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1297 if (TYPE_FIELDS (type) == NULL_TREE)
1298 return;
1300 if (public_p)
1302 error ("namespace-scope anonymous aggregates must be static");
1303 return;
1306 main_decl = build_anon_union_vars (type, anon_union_decl);
1307 if (main_decl == error_mark_node)
1308 return;
1309 if (main_decl == NULL_TREE)
1311 warning (0, "anonymous union with no members");
1312 return;
1315 if (!processing_template_decl)
1317 /* Use main_decl to set the mangled name. */
1318 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1319 mangle_decl (anon_union_decl);
1320 DECL_NAME (anon_union_decl) = NULL_TREE;
1323 pushdecl (anon_union_decl);
1324 if (building_stmt_tree ()
1325 && at_function_scope_p ())
1326 add_decl_expr (anon_union_decl);
1327 else if (!processing_template_decl)
1328 rest_of_decl_compilation (anon_union_decl,
1329 toplevel_bindings_p (), at_eof);
1332 /* Auxiliary functions to make type signatures for
1333 `operator new' and `operator delete' correspond to
1334 what compiler will be expecting. */
1336 tree
1337 coerce_new_type (tree type)
1339 int e = 0;
1340 tree args = TYPE_ARG_TYPES (type);
1342 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1344 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1346 e = 1;
1347 error ("%<operator new%> must return type %qT", ptr_type_node);
1350 if (args && args != void_list_node)
1352 if (TREE_PURPOSE (args))
1354 /* [basic.stc.dynamic.allocation]
1356 The first parameter shall not have an associated default
1357 argument. */
1358 error ("the first parameter of %<operator new%> cannot "
1359 "have a default argument");
1360 /* Throw away the default argument. */
1361 TREE_PURPOSE (args) = NULL_TREE;
1364 if (!same_type_p (TREE_VALUE (args), size_type_node))
1366 e = 2;
1367 args = TREE_CHAIN (args);
1370 else
1371 e = 2;
1373 if (e == 2)
1374 pedwarn ("%<operator new%> takes type %<size_t%> (%qT) "
1375 "as first parameter", size_type_node);
1377 switch (e)
1379 case 2:
1380 args = tree_cons (NULL_TREE, size_type_node, args);
1381 /* Fall through. */
1382 case 1:
1383 type = build_exception_variant
1384 (build_function_type (ptr_type_node, args),
1385 TYPE_RAISES_EXCEPTIONS (type));
1386 /* Fall through. */
1387 default:;
1389 return type;
1392 tree
1393 coerce_delete_type (tree type)
1395 int e = 0;
1396 tree args = TYPE_ARG_TYPES (type);
1398 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1400 if (!same_type_p (TREE_TYPE (type), void_type_node))
1402 e = 1;
1403 error ("%<operator delete%> must return type %qT", void_type_node);
1406 if (!args || args == void_list_node
1407 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1409 e = 2;
1410 if (args && args != void_list_node)
1411 args = TREE_CHAIN (args);
1412 error ("%<operator delete%> takes type %qT as first parameter",
1413 ptr_type_node);
1415 switch (e)
1417 case 2:
1418 args = tree_cons (NULL_TREE, ptr_type_node, args);
1419 /* Fall through. */
1420 case 1:
1421 type = build_exception_variant
1422 (build_function_type (void_type_node, args),
1423 TYPE_RAISES_EXCEPTIONS (type));
1424 /* Fall through. */
1425 default:;
1428 return type;
1431 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1432 and mark them as needed. */
1434 static void
1435 mark_vtable_entries (tree decl)
1437 tree fnaddr;
1438 unsigned HOST_WIDE_INT idx;
1440 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1441 idx, fnaddr)
1443 tree fn;
1445 STRIP_NOPS (fnaddr);
1447 if (TREE_CODE (fnaddr) != ADDR_EXPR
1448 && TREE_CODE (fnaddr) != FDESC_EXPR)
1449 /* This entry is an offset: a virtual base class offset, a
1450 virtual call offset, an RTTI offset, etc. */
1451 continue;
1453 fn = TREE_OPERAND (fnaddr, 0);
1454 TREE_ADDRESSABLE (fn) = 1;
1455 /* When we don't have vcall offsets, we output thunks whenever
1456 we output the vtables that contain them. With vcall offsets,
1457 we know all the thunks we'll need when we emit a virtual
1458 function, so we emit the thunks there instead. */
1459 if (DECL_THUNK_P (fn))
1460 use_thunk (fn, /*emit_p=*/0);
1461 mark_used (fn);
1465 /* Set DECL up to have the closest approximation of "initialized common"
1466 linkage available. */
1468 void
1469 comdat_linkage (tree decl)
1471 if (flag_weak)
1472 make_decl_one_only (decl);
1473 else if (TREE_CODE (decl) == FUNCTION_DECL
1474 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1475 /* We can just emit function and compiler-generated variables
1476 statically; having multiple copies is (for the most part) only
1477 a waste of space.
1479 There are two correctness issues, however: the address of a
1480 template instantiation with external linkage should be the
1481 same, independent of what translation unit asks for the
1482 address, and this will not hold when we emit multiple copies of
1483 the function. However, there's little else we can do.
1485 Also, by default, the typeinfo implementation assumes that
1486 there will be only one copy of the string used as the name for
1487 each type. Therefore, if weak symbols are unavailable, the
1488 run-time library should perform a more conservative check; it
1489 should perform a string comparison, rather than an address
1490 comparison. */
1491 TREE_PUBLIC (decl) = 0;
1492 else
1494 /* Static data member template instantiations, however, cannot
1495 have multiple copies. */
1496 if (DECL_INITIAL (decl) == 0
1497 || DECL_INITIAL (decl) == error_mark_node)
1498 DECL_COMMON (decl) = 1;
1499 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1501 DECL_COMMON (decl) = 1;
1502 DECL_INITIAL (decl) = error_mark_node;
1504 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1506 /* We can't do anything useful; leave vars for explicit
1507 instantiation. */
1508 DECL_EXTERNAL (decl) = 1;
1509 DECL_NOT_REALLY_EXTERN (decl) = 0;
1513 if (DECL_LANG_SPECIFIC (decl))
1514 DECL_COMDAT (decl) = 1;
1517 /* For win32 we also want to put explicit instantiations in
1518 linkonce sections, so that they will be merged with implicit
1519 instantiations; otherwise we get duplicate symbol errors.
1520 For Darwin we do not want explicit instantiations to be
1521 linkonce. */
1523 void
1524 maybe_make_one_only (tree decl)
1526 /* We used to say that this was not necessary on targets that support weak
1527 symbols, because the implicit instantiations will defer to the explicit
1528 one. However, that's not actually the case in SVR4; a strong definition
1529 after a weak one is an error. Also, not making explicit
1530 instantiations one_only means that we can end up with two copies of
1531 some template instantiations. */
1532 if (! flag_weak)
1533 return;
1535 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1536 we can get away with not emitting them if they aren't used. We need
1537 to for variables so that cp_finish_decl will update their linkage,
1538 because their DECL_INITIAL may not have been set properly yet. */
1540 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1541 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1542 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1544 make_decl_one_only (decl);
1546 if (TREE_CODE (decl) == VAR_DECL)
1548 DECL_COMDAT (decl) = 1;
1549 /* Mark it needed so we don't forget to emit it. */
1550 mark_decl_referenced (decl);
1555 /* Determine whether or not we want to specifically import or export CTYPE,
1556 using various heuristics. */
1558 static void
1559 import_export_class (tree ctype)
1561 /* -1 for imported, 1 for exported. */
1562 int import_export = 0;
1564 /* It only makes sense to call this function at EOF. The reason is
1565 that this function looks at whether or not the first non-inline
1566 non-abstract virtual member function has been defined in this
1567 translation unit. But, we can't possibly know that until we've
1568 seen the entire translation unit. */
1569 gcc_assert (at_eof);
1571 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1572 return;
1574 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1575 we will have CLASSTYPE_INTERFACE_ONLY set but not
1576 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1577 heuristic because someone will supply a #pragma implementation
1578 elsewhere, and deducing it here would produce a conflict. */
1579 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1580 return;
1582 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1583 import_export = -1;
1584 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1585 import_export = 1;
1586 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1587 && !flag_implicit_templates)
1588 /* For a template class, without -fimplicit-templates, check the
1589 repository. If the virtual table is assigned to this
1590 translation unit, then export the class; otherwise, import
1591 it. */
1592 import_export = repo_export_class_p (ctype) ? 1 : -1;
1593 else if (TYPE_POLYMORPHIC_P (ctype))
1595 /* The ABI specifies that the virtual table and associated
1596 information are emitted with the key method, if any. */
1597 tree method = CLASSTYPE_KEY_METHOD (ctype);
1598 /* If weak symbol support is not available, then we must be
1599 careful not to emit the vtable when the key function is
1600 inline. An inline function can be defined in multiple
1601 translation units. If we were to emit the vtable in each
1602 translation unit containing a definition, we would get
1603 multiple definition errors at link-time. */
1604 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1605 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1608 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1609 a definition anywhere else. */
1610 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1611 import_export = 0;
1613 /* Allow back ends the chance to overrule the decision. */
1614 if (targetm.cxx.import_export_class)
1615 import_export = targetm.cxx.import_export_class (ctype, import_export);
1617 if (import_export)
1619 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1620 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1624 /* Return true if VAR has already been provided to the back end; in that
1625 case VAR should not be modified further by the front end. */
1626 static bool
1627 var_finalized_p (tree var)
1629 return varpool_node (var)->finalized;
1632 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1633 must be emitted in this translation unit. Mark it as such. */
1635 void
1636 mark_needed (tree decl)
1638 /* It's possible that we no longer need to set
1639 TREE_SYMBOL_REFERENCED here directly, but doing so is
1640 harmless. */
1641 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1642 mark_decl_referenced (decl);
1645 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1646 returns true if a definition of this entity should be provided in
1647 this object file. Callers use this function to determine whether
1648 or not to let the back end know that a definition of DECL is
1649 available in this translation unit. */
1651 bool
1652 decl_needed_p (tree decl)
1654 gcc_assert (TREE_CODE (decl) == VAR_DECL
1655 || TREE_CODE (decl) == FUNCTION_DECL);
1656 /* This function should only be called at the end of the translation
1657 unit. We cannot be sure of whether or not something will be
1658 COMDAT until that point. */
1659 gcc_assert (at_eof);
1661 /* All entities with external linkage that are not COMDAT should be
1662 emitted; they may be referred to from other object files. */
1663 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1664 return true;
1665 /* If this entity was used, let the back end see it; it will decide
1666 whether or not to emit it into the object file. */
1667 if (TREE_USED (decl)
1668 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1669 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1670 return true;
1671 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1672 reference to DECL might cause it to be emitted later. */
1673 return false;
1676 /* If necessary, write out the vtables for the dynamic class CTYPE.
1677 Returns true if any vtables were emitted. */
1679 static bool
1680 maybe_emit_vtables (tree ctype)
1682 tree vtbl;
1683 tree primary_vtbl;
1684 int needed = 0;
1686 /* If the vtables for this class have already been emitted there is
1687 nothing more to do. */
1688 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1689 if (var_finalized_p (primary_vtbl))
1690 return false;
1691 /* Ignore dummy vtables made by get_vtable_decl. */
1692 if (TREE_TYPE (primary_vtbl) == void_type_node)
1693 return false;
1695 /* On some targets, we cannot determine the key method until the end
1696 of the translation unit -- which is when this function is
1697 called. */
1698 if (!targetm.cxx.key_method_may_be_inline ())
1699 determine_key_method (ctype);
1701 /* See if any of the vtables are needed. */
1702 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1704 import_export_decl (vtbl);
1705 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1706 needed = 1;
1708 if (!needed)
1710 /* If the references to this class' vtables are optimized away,
1711 still emit the appropriate debugging information. See
1712 dfs_debug_mark. */
1713 if (DECL_COMDAT (primary_vtbl)
1714 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1715 note_debug_info_needed (ctype);
1716 return false;
1719 /* The ABI requires that we emit all of the vtables if we emit any
1720 of them. */
1721 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1723 /* Mark entities references from the virtual table as used. */
1724 mark_vtable_entries (vtbl);
1726 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1728 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl));
1730 /* It had better be all done at compile-time. */
1731 gcc_assert (!expr);
1734 /* Write it out. */
1735 DECL_EXTERNAL (vtbl) = 0;
1736 rest_of_decl_compilation (vtbl, 1, 1);
1738 /* Because we're only doing syntax-checking, we'll never end up
1739 actually marking the variable as written. */
1740 if (flag_syntax_only)
1741 TREE_ASM_WRITTEN (vtbl) = 1;
1744 /* Since we're writing out the vtable here, also write the debug
1745 info. */
1746 note_debug_info_needed (ctype);
1748 return true;
1751 /* A special return value from type_visibility meaning internal
1752 linkage. */
1754 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1756 /* walk_tree helper function for type_visibility. */
1758 static tree
1759 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1761 int *vis_p = (int *)data;
1762 if (! TYPE_P (*tp))
1764 *walk_subtrees = 0;
1766 else if (CLASS_TYPE_P (*tp))
1768 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1770 *vis_p = VISIBILITY_ANON;
1771 return *tp;
1773 else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1774 *vis_p = CLASSTYPE_VISIBILITY (*tp);
1776 return NULL;
1779 /* Returns the visibility of TYPE, which is the minimum visibility of its
1780 component types. */
1782 static int
1783 type_visibility (tree type)
1785 int vis = VISIBILITY_DEFAULT;
1786 cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1787 return vis;
1790 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1791 specified (or if VISIBILITY is static). */
1793 static bool
1794 constrain_visibility (tree decl, int visibility)
1796 if (visibility == VISIBILITY_ANON)
1798 /* extern "C" declarations aren't affected by the anonymous
1799 namespace. */
1800 if (!DECL_EXTERN_C_P (decl))
1802 TREE_PUBLIC (decl) = 0;
1803 DECL_ONE_ONLY (decl) = 0;
1804 DECL_INTERFACE_KNOWN (decl) = 1;
1805 if (DECL_LANG_SPECIFIC (decl))
1806 DECL_NOT_REALLY_EXTERN (decl) = 1;
1809 else if (visibility > DECL_VISIBILITY (decl)
1810 && !DECL_VISIBILITY_SPECIFIED (decl))
1812 DECL_VISIBILITY (decl) = visibility;
1813 return true;
1815 return false;
1818 /* Constrain the visibility of DECL based on the visibility of its template
1819 arguments. */
1821 static void
1822 constrain_visibility_for_template (tree decl, tree targs)
1824 /* If this is a template instantiation, check the innermost
1825 template args for visibility constraints. The outer template
1826 args are covered by the class check. */
1827 tree args = INNERMOST_TEMPLATE_ARGS (targs);
1828 int i;
1829 for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1831 int vis = 0;
1833 tree arg = TREE_VEC_ELT (args, i-1);
1834 if (TYPE_P (arg))
1835 vis = type_visibility (arg);
1836 else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1838 STRIP_NOPS (arg);
1839 if (TREE_CODE (arg) == ADDR_EXPR)
1840 arg = TREE_OPERAND (arg, 0);
1841 if (TREE_CODE (arg) == VAR_DECL
1842 || TREE_CODE (arg) == FUNCTION_DECL)
1844 if (! TREE_PUBLIC (arg))
1845 vis = VISIBILITY_ANON;
1846 else
1847 vis = DECL_VISIBILITY (arg);
1850 if (vis)
1851 constrain_visibility (decl, vis);
1855 /* Like c_determine_visibility, but with additional C++-specific
1856 behavior.
1858 Function-scope entities can rely on the function's visibility because
1859 it is set in start_preparsed_function.
1861 Class-scope entities cannot rely on the class's visibility until the end
1862 of the enclosing class definition.
1864 Note that because namespaces have multiple independent definitions,
1865 namespace visibility is handled elsewhere using the #pragma visibility
1866 machinery rather than by decorating the namespace declaration.
1868 The goal is for constraints from the type to give a diagnostic, and
1869 other constraints to be applied silently. */
1871 void
1872 determine_visibility (tree decl)
1874 tree class_type = NULL_TREE;
1875 bool use_template;
1877 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
1879 /* Only relevant for names with external linkage. */
1880 if (!TREE_PUBLIC (decl))
1881 return;
1883 /* Cloned constructors and destructors get the same visibility as
1884 the underlying function. That should be set up in
1885 maybe_clone_body. */
1886 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
1888 if (TREE_CODE (decl) == TYPE_DECL)
1890 if (CLASS_TYPE_P (TREE_TYPE (decl)))
1891 use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
1892 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
1893 use_template = 1;
1894 else
1895 use_template = 0;
1897 else if (DECL_LANG_SPECIFIC (decl))
1898 use_template = DECL_USE_TEMPLATE (decl);
1899 else
1900 use_template = 0;
1902 /* If DECL is a member of a class, visibility specifiers on the
1903 class can influence the visibility of the DECL. */
1904 if (DECL_CLASS_SCOPE_P (decl))
1905 class_type = DECL_CONTEXT (decl);
1906 else
1908 /* Not a class member. */
1910 /* Virtual tables have DECL_CONTEXT set to their associated class,
1911 so they are automatically handled above. */
1912 gcc_assert (TREE_CODE (decl) != VAR_DECL
1913 || !DECL_VTABLE_OR_VTT_P (decl));
1915 if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
1917 /* Local statics and classes get the visibility of their
1918 containing function by default, except that
1919 -fvisibility-inlines-hidden doesn't affect them. */
1920 tree fn = DECL_CONTEXT (decl);
1921 if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
1923 DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
1924 DECL_VISIBILITY_SPECIFIED (decl) =
1925 DECL_VISIBILITY_SPECIFIED (fn);
1927 else
1928 determine_visibility_from_class (decl, DECL_CONTEXT (fn));
1930 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
1931 but have no TEMPLATE_INFO, so don't try to check it. */
1932 use_template = 0;
1934 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
1935 && flag_visibility_ms_compat)
1937 /* Under -fvisibility-ms-compat, types are visible by default,
1938 even though their contents aren't. */
1939 tree underlying_type = TREE_TYPE (DECL_NAME (decl));
1940 int underlying_vis = type_visibility (underlying_type);
1941 if (underlying_vis == VISIBILITY_ANON
1942 || CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type))
1943 constrain_visibility (decl, underlying_vis);
1944 else
1945 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
1947 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
1949 /* tinfo visibility is based on the type it's for. */
1950 constrain_visibility
1951 (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
1953 else if (use_template)
1954 /* Template instantiations and specializations get visibility based
1955 on their template unless they override it with an attribute. */;
1956 else if (! DECL_VISIBILITY_SPECIFIED (decl))
1958 /* Set default visibility to whatever the user supplied with
1959 #pragma GCC visibility or a namespace visibility attribute. */
1960 DECL_VISIBILITY (decl) = default_visibility;
1961 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
1965 if (use_template)
1967 /* If the specialization doesn't specify visibility, use the
1968 visibility from the template. */
1969 tree tinfo = (TREE_CODE (decl) == TYPE_DECL
1970 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
1971 : DECL_TEMPLATE_INFO (decl));
1972 tree args = TI_ARGS (tinfo);
1974 if (args != error_mark_node)
1976 int depth = TMPL_ARGS_DEPTH (args);
1977 tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
1979 if (!DECL_VISIBILITY_SPECIFIED (decl))
1981 DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
1982 DECL_VISIBILITY_SPECIFIED (decl)
1983 = DECL_VISIBILITY_SPECIFIED (pattern);
1986 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
1987 if (args && depth > template_class_depth (class_type))
1988 /* Limit visibility based on its template arguments. */
1989 constrain_visibility_for_template (decl, args);
1993 if (class_type)
1994 determine_visibility_from_class (decl, class_type);
1996 if (decl_anon_ns_mem_p (decl))
1997 /* Names in an anonymous namespace get internal linkage.
1998 This might change once we implement export. */
1999 constrain_visibility (decl, VISIBILITY_ANON);
2000 else if (TREE_CODE (decl) != TYPE_DECL)
2002 /* Propagate anonymity from type to decl. */
2003 int tvis = type_visibility (TREE_TYPE (decl));
2004 if (tvis == VISIBILITY_ANON
2005 || ! DECL_VISIBILITY_SPECIFIED (decl))
2006 constrain_visibility (decl, tvis);
2010 /* By default, static data members and function members receive
2011 the visibility of their containing class. */
2013 static void
2014 determine_visibility_from_class (tree decl, tree class_type)
2016 if (DECL_VISIBILITY_SPECIFIED (decl))
2017 return;
2019 if (visibility_options.inlines_hidden
2020 /* Don't do this for inline templates; specializations might not be
2021 inline, and we don't want them to inherit the hidden
2022 visibility. We'll set it here for all inline instantiations. */
2023 && !processing_template_decl
2024 && TREE_CODE (decl) == FUNCTION_DECL
2025 && DECL_DECLARED_INLINE_P (decl)
2026 && (! DECL_LANG_SPECIFIC (decl)
2027 || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2028 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2029 else
2031 /* Default to the class visibility. */
2032 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2033 DECL_VISIBILITY_SPECIFIED (decl)
2034 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2037 /* Give the target a chance to override the visibility associated
2038 with DECL. */
2039 if (TREE_CODE (decl) == VAR_DECL
2040 && (DECL_TINFO_P (decl)
2041 || (DECL_VTABLE_OR_VTT_P (decl)
2042 /* Construction virtual tables are not exported because
2043 they cannot be referred to from other object files;
2044 their name is not standardized by the ABI. */
2045 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2046 && TREE_PUBLIC (decl)
2047 && !DECL_REALLY_EXTERN (decl)
2048 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2049 targetm.cxx.determine_class_data_visibility (decl);
2052 /* Constrain the visibility of a class TYPE based on the visibility of its
2053 field types. Warn if any fields require lesser visibility. */
2055 void
2056 constrain_class_visibility (tree type)
2058 tree binfo;
2059 tree t;
2060 int i;
2062 int vis = type_visibility (type);
2064 if (vis == VISIBILITY_ANON
2065 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2066 return;
2068 /* Don't warn about visibility if the class has explicit visibility. */
2069 if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2070 vis = VISIBILITY_INTERNAL;
2072 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
2073 if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2075 tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2076 int subvis = type_visibility (ftype);
2078 if (subvis == VISIBILITY_ANON)
2080 if (!in_main_input_context ())
2081 warning (0, "\
2082 %qT has a field %qD whose type uses the anonymous namespace",
2083 type, t);
2085 else if (MAYBE_CLASS_TYPE_P (ftype)
2086 && vis < VISIBILITY_HIDDEN
2087 && subvis >= VISIBILITY_HIDDEN)
2088 warning (OPT_Wattributes, "\
2089 %qT declared with greater visibility than the type of its field %qD",
2090 type, t);
2093 binfo = TYPE_BINFO (type);
2094 for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2096 int subvis = type_visibility (TREE_TYPE (t));
2098 if (subvis == VISIBILITY_ANON)
2100 if (!in_main_input_context())
2101 warning (0, "\
2102 %qT has a base %qT whose type uses the anonymous namespace",
2103 type, TREE_TYPE (t));
2105 else if (vis < VISIBILITY_HIDDEN
2106 && subvis >= VISIBILITY_HIDDEN)
2107 warning (OPT_Wattributes, "\
2108 %qT declared with greater visibility than its base %qT",
2109 type, TREE_TYPE (t));
2113 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
2114 for DECL has not already been determined, do so now by setting
2115 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
2116 function is called entities with vague linkage whose definitions
2117 are available must have TREE_PUBLIC set.
2119 If this function decides to place DECL in COMDAT, it will set
2120 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
2121 the caller to decide whether or not to clear DECL_EXTERNAL. Some
2122 callers defer that decision until it is clear that DECL is actually
2123 required. */
2125 void
2126 import_export_decl (tree decl)
2128 int emit_p;
2129 bool comdat_p;
2130 bool import_p;
2131 tree class_type = NULL_TREE;
2133 if (DECL_INTERFACE_KNOWN (decl))
2134 return;
2136 /* We cannot determine what linkage to give to an entity with vague
2137 linkage until the end of the file. For example, a virtual table
2138 for a class will be defined if and only if the key method is
2139 defined in this translation unit. As a further example, consider
2140 that when compiling a translation unit that uses PCH file with
2141 "-frepo" it would be incorrect to make decisions about what
2142 entities to emit when building the PCH; those decisions must be
2143 delayed until the repository information has been processed. */
2144 gcc_assert (at_eof);
2145 /* Object file linkage for explicit instantiations is handled in
2146 mark_decl_instantiated. For static variables in functions with
2147 vague linkage, maybe_commonize_var is used.
2149 Therefore, the only declarations that should be provided to this
2150 function are those with external linkage that are:
2152 * implicit instantiations of function templates
2154 * inline function
2156 * implicit instantiations of static data members of class
2157 templates
2159 * virtual tables
2161 * typeinfo objects
2163 Furthermore, all entities that reach this point must have a
2164 definition available in this translation unit.
2166 The following assertions check these conditions. */
2167 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2168 || TREE_CODE (decl) == VAR_DECL);
2169 /* Any code that creates entities with TREE_PUBLIC cleared should
2170 also set DECL_INTERFACE_KNOWN. */
2171 gcc_assert (TREE_PUBLIC (decl));
2172 if (TREE_CODE (decl) == FUNCTION_DECL)
2173 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2174 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2175 || DECL_DECLARED_INLINE_P (decl));
2176 else
2177 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2178 || DECL_VTABLE_OR_VTT_P (decl)
2179 || DECL_TINFO_P (decl));
2180 /* Check that a definition of DECL is available in this translation
2181 unit. */
2182 gcc_assert (!DECL_REALLY_EXTERN (decl));
2184 /* Assume that DECL will not have COMDAT linkage. */
2185 comdat_p = false;
2186 /* Assume that DECL will not be imported into this translation
2187 unit. */
2188 import_p = false;
2190 /* See if the repository tells us whether or not to emit DECL in
2191 this translation unit. */
2192 emit_p = repo_emit_p (decl);
2193 if (emit_p == 0)
2194 import_p = true;
2195 else if (emit_p == 1)
2197 /* The repository indicates that this entity should be defined
2198 here. Make sure the back end honors that request. */
2199 if (TREE_CODE (decl) == VAR_DECL)
2200 mark_needed (decl);
2201 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2202 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2204 tree clone;
2205 FOR_EACH_CLONE (clone, decl)
2206 mark_needed (clone);
2208 else
2209 mark_needed (decl);
2210 /* Output the definition as an ordinary strong definition. */
2211 DECL_EXTERNAL (decl) = 0;
2212 DECL_INTERFACE_KNOWN (decl) = 1;
2213 return;
2216 if (import_p)
2217 /* We have already decided what to do with this DECL; there is no
2218 need to check anything further. */
2220 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2222 class_type = DECL_CONTEXT (decl);
2223 import_export_class (class_type);
2224 if (TYPE_FOR_JAVA (class_type))
2225 import_p = true;
2226 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2227 && CLASSTYPE_INTERFACE_ONLY (class_type))
2228 import_p = true;
2229 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2230 && !CLASSTYPE_USE_TEMPLATE (class_type)
2231 && CLASSTYPE_KEY_METHOD (class_type)
2232 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2233 /* The ABI requires that all virtual tables be emitted with
2234 COMDAT linkage. However, on systems where COMDAT symbols
2235 don't show up in the table of contents for a static
2236 archive, or on systems without weak symbols (where we
2237 approximate COMDAT linkage by using internal linkage), the
2238 linker will report errors about undefined symbols because
2239 it will not see the virtual table definition. Therefore,
2240 in the case that we know that the virtual table will be
2241 emitted in only one translation unit, we make the virtual
2242 table an ordinary definition with external linkage. */
2243 DECL_EXTERNAL (decl) = 0;
2244 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2246 /* CLASS_TYPE is being exported from this translation unit,
2247 so DECL should be defined here. */
2248 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2249 /* If a class is declared in a header with the "extern
2250 template" extension, then it will not be instantiated,
2251 even in translation units that would normally require
2252 it. Often such classes are explicitly instantiated in
2253 one translation unit. Therefore, the explicit
2254 instantiation must be made visible to other translation
2255 units. */
2256 DECL_EXTERNAL (decl) = 0;
2257 else
2259 /* The generic C++ ABI says that class data is always
2260 COMDAT, even if there is a key function. Some
2261 variants (e.g., the ARM EABI) says that class data
2262 only has COMDAT linkage if the class data might be
2263 emitted in more than one translation unit. When the
2264 key method can be inline and is inline, we still have
2265 to arrange for comdat even though
2266 class_data_always_comdat is false. */
2267 if (!CLASSTYPE_KEY_METHOD (class_type)
2268 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2269 || targetm.cxx.class_data_always_comdat ())
2271 /* The ABI requires COMDAT linkage. Normally, we
2272 only emit COMDAT things when they are needed;
2273 make sure that we realize that this entity is
2274 indeed needed. */
2275 comdat_p = true;
2276 mark_needed (decl);
2280 else if (!flag_implicit_templates
2281 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2282 import_p = true;
2283 else
2284 comdat_p = true;
2286 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2288 tree type = TREE_TYPE (DECL_NAME (decl));
2289 if (CLASS_TYPE_P (type))
2291 class_type = type;
2292 import_export_class (type);
2293 if (CLASSTYPE_INTERFACE_KNOWN (type)
2294 && TYPE_POLYMORPHIC_P (type)
2295 && CLASSTYPE_INTERFACE_ONLY (type)
2296 /* If -fno-rtti was specified, then we cannot be sure
2297 that RTTI information will be emitted with the
2298 virtual table of the class, so we must emit it
2299 wherever it is used. */
2300 && flag_rtti)
2301 import_p = true;
2302 else
2304 if (CLASSTYPE_INTERFACE_KNOWN (type)
2305 && !CLASSTYPE_INTERFACE_ONLY (type))
2307 comdat_p = (targetm.cxx.class_data_always_comdat ()
2308 || (CLASSTYPE_KEY_METHOD (type)
2309 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2310 mark_needed (decl);
2311 if (!flag_weak)
2313 comdat_p = false;
2314 DECL_EXTERNAL (decl) = 0;
2317 else
2318 comdat_p = true;
2321 else
2322 comdat_p = true;
2324 else if (DECL_TEMPLATE_INSTANTIATION (decl)
2325 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2327 /* DECL is an implicit instantiation of a function or static
2328 data member. */
2329 if ((flag_implicit_templates
2330 && !flag_use_repository)
2331 || (flag_implicit_inline_templates
2332 && TREE_CODE (decl) == FUNCTION_DECL
2333 && DECL_DECLARED_INLINE_P (decl)))
2334 comdat_p = true;
2335 else
2336 /* If we are not implicitly generating templates, then mark
2337 this entity as undefined in this translation unit. */
2338 import_p = true;
2340 else if (DECL_FUNCTION_MEMBER_P (decl))
2342 if (!DECL_DECLARED_INLINE_P (decl))
2344 tree ctype = DECL_CONTEXT (decl);
2345 import_export_class (ctype);
2346 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2348 DECL_NOT_REALLY_EXTERN (decl)
2349 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2350 || (DECL_DECLARED_INLINE_P (decl)
2351 && ! flag_implement_inlines
2352 && !DECL_VINDEX (decl)));
2354 if (!DECL_NOT_REALLY_EXTERN (decl))
2355 DECL_EXTERNAL (decl) = 1;
2357 /* Always make artificials weak. */
2358 if (DECL_ARTIFICIAL (decl) && flag_weak)
2359 comdat_p = true;
2360 else
2361 maybe_make_one_only (decl);
2364 else
2365 comdat_p = true;
2367 else
2368 comdat_p = true;
2370 if (import_p)
2372 /* If we are importing DECL into this translation unit, mark is
2373 an undefined here. */
2374 DECL_EXTERNAL (decl) = 1;
2375 DECL_NOT_REALLY_EXTERN (decl) = 0;
2377 else if (comdat_p)
2379 /* If we decided to put DECL in COMDAT, mark it accordingly at
2380 this point. */
2381 comdat_linkage (decl);
2384 DECL_INTERFACE_KNOWN (decl) = 1;
2387 /* Return an expression that performs the destruction of DECL, which
2388 must be a VAR_DECL whose type has a non-trivial destructor, or is
2389 an array whose (innermost) elements have a non-trivial destructor. */
2391 tree
2392 build_cleanup (tree decl)
2394 tree temp;
2395 tree type = TREE_TYPE (decl);
2397 /* This function should only be called for declarations that really
2398 require cleanups. */
2399 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2401 /* Treat all objects with destructors as used; the destructor may do
2402 something substantive. */
2403 mark_used (decl);
2405 if (TREE_CODE (type) == ARRAY_TYPE)
2406 temp = decl;
2407 else
2408 temp = build_address (decl);
2409 temp = build_delete (TREE_TYPE (temp), temp,
2410 sfk_complete_destructor,
2411 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2412 return temp;
2415 /* Returns the initialization guard variable for the variable DECL,
2416 which has static storage duration. */
2418 tree
2419 get_guard (tree decl)
2421 tree sname;
2422 tree guard;
2424 sname = mangle_guard_variable (decl);
2425 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2426 if (! guard)
2428 tree guard_type;
2430 /* We use a type that is big enough to contain a mutex as well
2431 as an integer counter. */
2432 guard_type = targetm.cxx.guard_type ();
2433 guard = build_decl (VAR_DECL, sname, guard_type);
2435 /* The guard should have the same linkage as what it guards. */
2436 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2437 TREE_STATIC (guard) = TREE_STATIC (decl);
2438 DECL_COMMON (guard) = DECL_COMMON (decl);
2439 DECL_ONE_ONLY (guard) = DECL_ONE_ONLY (decl);
2440 if (TREE_PUBLIC (decl))
2441 DECL_WEAK (guard) = DECL_WEAK (decl);
2442 DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2443 DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2445 DECL_ARTIFICIAL (guard) = 1;
2446 DECL_IGNORED_P (guard) = 1;
2447 TREE_USED (guard) = 1;
2448 pushdecl_top_level_and_finish (guard, NULL_TREE);
2450 return guard;
2453 /* Return those bits of the GUARD variable that should be set when the
2454 guarded entity is actually initialized. */
2456 static tree
2457 get_guard_bits (tree guard)
2459 if (!targetm.cxx.guard_mask_bit ())
2461 /* We only set the first byte of the guard, in order to leave room
2462 for a mutex in the high-order bits. */
2463 guard = build1 (ADDR_EXPR,
2464 build_pointer_type (TREE_TYPE (guard)),
2465 guard);
2466 guard = build1 (NOP_EXPR,
2467 build_pointer_type (char_type_node),
2468 guard);
2469 guard = build1 (INDIRECT_REF, char_type_node, guard);
2472 return guard;
2475 /* Return an expression which determines whether or not the GUARD
2476 variable has already been initialized. */
2478 tree
2479 get_guard_cond (tree guard)
2481 tree guard_value;
2483 /* Check to see if the GUARD is zero. */
2484 guard = get_guard_bits (guard);
2486 /* Mask off all but the low bit. */
2487 if (targetm.cxx.guard_mask_bit ())
2489 guard_value = integer_one_node;
2490 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2491 guard_value = convert (TREE_TYPE (guard), guard_value);
2492 guard = cp_build_binary_op (BIT_AND_EXPR, guard, guard_value,
2493 tf_warning_or_error);
2496 guard_value = integer_zero_node;
2497 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2498 guard_value = convert (TREE_TYPE (guard), guard_value);
2499 return cp_build_binary_op (EQ_EXPR, guard, guard_value,
2500 tf_warning_or_error);
2503 /* Return an expression which sets the GUARD variable, indicating that
2504 the variable being guarded has been initialized. */
2506 tree
2507 set_guard (tree guard)
2509 tree guard_init;
2511 /* Set the GUARD to one. */
2512 guard = get_guard_bits (guard);
2513 guard_init = integer_one_node;
2514 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2515 guard_init = convert (TREE_TYPE (guard), guard_init);
2516 return cp_build_modify_expr (guard, NOP_EXPR, guard_init,
2517 tf_warning_or_error);
2520 /* Start the process of running a particular set of global constructors
2521 or destructors. Subroutine of do_[cd]tors. */
2523 static tree
2524 start_objects (int method_type, int initp)
2526 tree body;
2527 tree fndecl;
2528 char type[10];
2530 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2532 if (initp != DEFAULT_INIT_PRIORITY)
2534 char joiner;
2536 #ifdef JOINER
2537 joiner = JOINER;
2538 #else
2539 joiner = '_';
2540 #endif
2542 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2544 else
2545 sprintf (type, "%c", method_type);
2547 fndecl = build_lang_decl (FUNCTION_DECL,
2548 get_file_function_name (type),
2549 build_function_type (void_type_node,
2550 void_list_node));
2551 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2553 TREE_PUBLIC (current_function_decl) = 0;
2555 /* Mark as artificial because it's not explicitly in the user's
2556 source code. */
2557 DECL_ARTIFICIAL (current_function_decl) = 1;
2559 /* Mark this declaration as used to avoid spurious warnings. */
2560 TREE_USED (current_function_decl) = 1;
2562 /* Mark this function as a global constructor or destructor. */
2563 if (method_type == 'I')
2564 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2565 else
2566 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2567 DECL_LANG_SPECIFIC (current_function_decl)->decl_flags.u2sel = 1;
2569 body = begin_compound_stmt (BCS_FN_BODY);
2571 return body;
2574 /* Finish the process of running a particular set of global constructors
2575 or destructors. Subroutine of do_[cd]tors. */
2577 static void
2578 finish_objects (int method_type, int initp, tree body)
2580 tree fn;
2582 /* Finish up. */
2583 finish_compound_stmt (body);
2584 fn = finish_function (0);
2586 if (method_type == 'I')
2588 DECL_STATIC_CONSTRUCTOR (fn) = 1;
2589 decl_init_priority_insert (fn, initp);
2591 else
2593 DECL_STATIC_DESTRUCTOR (fn) = 1;
2594 decl_fini_priority_insert (fn, initp);
2597 expand_or_defer_fn (fn);
2600 /* The names of the parameters to the function created to handle
2601 initializations and destructions for objects with static storage
2602 duration. */
2603 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2604 #define PRIORITY_IDENTIFIER "__priority"
2606 /* The name of the function we create to handle initializations and
2607 destructions for objects with static storage duration. */
2608 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2610 /* The declaration for the __INITIALIZE_P argument. */
2611 static GTY(()) tree initialize_p_decl;
2613 /* The declaration for the __PRIORITY argument. */
2614 static GTY(()) tree priority_decl;
2616 /* The declaration for the static storage duration function. */
2617 static GTY(()) tree ssdf_decl;
2619 /* All the static storage duration functions created in this
2620 translation unit. */
2621 static GTY(()) VEC(tree,gc) *ssdf_decls;
2623 /* A map from priority levels to information about that priority
2624 level. There may be many such levels, so efficient lookup is
2625 important. */
2626 static splay_tree priority_info_map;
2628 /* Begins the generation of the function that will handle all
2629 initialization and destruction of objects with static storage
2630 duration. The function generated takes two parameters of type
2631 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2632 nonzero, it performs initializations. Otherwise, it performs
2633 destructions. It only performs those initializations or
2634 destructions with the indicated __PRIORITY. The generated function
2635 returns no value.
2637 It is assumed that this function will only be called once per
2638 translation unit. */
2640 static tree
2641 start_static_storage_duration_function (unsigned count)
2643 tree parm_types;
2644 tree type;
2645 tree body;
2646 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2648 /* Create the identifier for this function. It will be of the form
2649 SSDF_IDENTIFIER_<number>. */
2650 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2652 /* Create the parameters. */
2653 parm_types = void_list_node;
2654 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2655 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2656 type = build_function_type (void_type_node, parm_types);
2658 /* Create the FUNCTION_DECL itself. */
2659 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2660 get_identifier (id),
2661 type);
2662 TREE_PUBLIC (ssdf_decl) = 0;
2663 DECL_ARTIFICIAL (ssdf_decl) = 1;
2664 DECL_INLINE (ssdf_decl) = 1;
2666 /* Put this function in the list of functions to be called from the
2667 static constructors and destructors. */
2668 if (!ssdf_decls)
2670 ssdf_decls = VEC_alloc (tree, gc, 32);
2672 /* Take this opportunity to initialize the map from priority
2673 numbers to information about that priority level. */
2674 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2675 /*delete_key_fn=*/0,
2676 /*delete_value_fn=*/
2677 (splay_tree_delete_value_fn) &free);
2679 /* We always need to generate functions for the
2680 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2681 priorities later, we'll be sure to find the
2682 DEFAULT_INIT_PRIORITY. */
2683 get_priority_info (DEFAULT_INIT_PRIORITY);
2686 VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2688 /* Create the argument list. */
2689 initialize_p_decl = cp_build_parm_decl
2690 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2691 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2692 TREE_USED (initialize_p_decl) = 1;
2693 priority_decl = cp_build_parm_decl
2694 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2695 DECL_CONTEXT (priority_decl) = ssdf_decl;
2696 TREE_USED (priority_decl) = 1;
2698 TREE_CHAIN (initialize_p_decl) = priority_decl;
2699 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2701 /* Put the function in the global scope. */
2702 pushdecl (ssdf_decl);
2704 /* Start the function itself. This is equivalent to declaring the
2705 function as:
2707 static void __ssdf (int __initialize_p, init __priority_p);
2709 It is static because we only need to call this function from the
2710 various constructor and destructor functions for this module. */
2711 start_preparsed_function (ssdf_decl,
2712 /*attrs=*/NULL_TREE,
2713 SF_PRE_PARSED);
2715 /* Set up the scope of the outermost block in the function. */
2716 body = begin_compound_stmt (BCS_FN_BODY);
2718 return body;
2721 /* Finish the generation of the function which performs initialization
2722 and destruction of objects with static storage duration. After
2723 this point, no more such objects can be created. */
2725 static void
2726 finish_static_storage_duration_function (tree body)
2728 /* Close out the function. */
2729 finish_compound_stmt (body);
2730 expand_or_defer_fn (finish_function (0));
2733 /* Return the information about the indicated PRIORITY level. If no
2734 code to handle this level has yet been generated, generate the
2735 appropriate prologue. */
2737 static priority_info
2738 get_priority_info (int priority)
2740 priority_info pi;
2741 splay_tree_node n;
2743 n = splay_tree_lookup (priority_info_map,
2744 (splay_tree_key) priority);
2745 if (!n)
2747 /* Create a new priority information structure, and insert it
2748 into the map. */
2749 pi = XNEW (struct priority_info_s);
2750 pi->initializations_p = 0;
2751 pi->destructions_p = 0;
2752 splay_tree_insert (priority_info_map,
2753 (splay_tree_key) priority,
2754 (splay_tree_value) pi);
2756 else
2757 pi = (priority_info) n->value;
2759 return pi;
2762 /* The effective initialization priority of a DECL. */
2764 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2765 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2766 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2768 /* Whether a DECL needs a guard to protect it against multiple
2769 initialization. */
2771 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2772 || DECL_ONE_ONLY (decl) \
2773 || DECL_WEAK (decl)))
2775 /* Set up to handle the initialization or destruction of DECL. If
2776 INITP is nonzero, we are initializing the variable. Otherwise, we
2777 are destroying it. */
2779 static void
2780 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2782 tree guard_if_stmt = NULL_TREE;
2783 tree guard;
2785 /* If we are supposed to destruct and there's a trivial destructor,
2786 nothing has to be done. */
2787 if (!initp
2788 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2789 return;
2791 /* Trick the compiler into thinking we are at the file and line
2792 where DECL was declared so that error-messages make sense, and so
2793 that the debugger will show somewhat sensible file and line
2794 information. */
2795 input_location = DECL_SOURCE_LOCATION (decl);
2797 /* Because of:
2799 [class.access.spec]
2801 Access control for implicit calls to the constructors,
2802 the conversion functions, or the destructor called to
2803 create and destroy a static data member is performed as
2804 if these calls appeared in the scope of the member's
2805 class.
2807 we pretend we are in a static member function of the class of
2808 which the DECL is a member. */
2809 if (member_p (decl))
2811 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
2812 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
2815 /* Assume we don't need a guard. */
2816 guard = NULL_TREE;
2817 /* We need a guard if this is an object with external linkage that
2818 might be initialized in more than one place. (For example, a
2819 static data member of a template, when the data member requires
2820 construction.) */
2821 if (NEEDS_GUARD_P (decl))
2823 tree guard_cond;
2825 guard = get_guard (decl);
2827 /* When using __cxa_atexit, we just check the GUARD as we would
2828 for a local static. */
2829 if (flag_use_cxa_atexit)
2831 /* When using __cxa_atexit, we never try to destroy
2832 anything from a static destructor. */
2833 gcc_assert (initp);
2834 guard_cond = get_guard_cond (guard);
2836 /* If we don't have __cxa_atexit, then we will be running
2837 destructors from .fini sections, or their equivalents. So,
2838 we need to know how many times we've tried to initialize this
2839 object. We do initializations only if the GUARD is zero,
2840 i.e., if we are the first to initialize the variable. We do
2841 destructions only if the GUARD is one, i.e., if we are the
2842 last to destroy the variable. */
2843 else if (initp)
2844 guard_cond
2845 = cp_build_binary_op (EQ_EXPR,
2846 cp_build_unary_op (PREINCREMENT_EXPR,
2847 guard,
2848 /*noconvert=*/1,
2849 tf_warning_or_error),
2850 integer_one_node,
2851 tf_warning_or_error);
2852 else
2853 guard_cond
2854 = cp_build_binary_op (EQ_EXPR,
2855 cp_build_unary_op (PREDECREMENT_EXPR,
2856 guard,
2857 /*noconvert=*/1,
2858 tf_warning_or_error),
2859 integer_zero_node,
2860 tf_warning_or_error);
2862 guard_if_stmt = begin_if_stmt ();
2863 finish_if_stmt_cond (guard_cond, guard_if_stmt);
2867 /* If we're using __cxa_atexit, we have not already set the GUARD,
2868 so we must do so now. */
2869 if (guard && initp && flag_use_cxa_atexit)
2870 finish_expr_stmt (set_guard (guard));
2872 /* Perform the initialization or destruction. */
2873 if (initp)
2875 if (init)
2876 finish_expr_stmt (init);
2878 /* If we're using __cxa_atexit, register a function that calls the
2879 destructor for the object. */
2880 if (flag_use_cxa_atexit)
2881 finish_expr_stmt (register_dtor_fn (decl));
2883 else
2884 finish_expr_stmt (build_cleanup (decl));
2886 /* Finish the guard if-stmt, if necessary. */
2887 if (guard)
2889 finish_then_clause (guard_if_stmt);
2890 finish_if_stmt (guard_if_stmt);
2893 /* Now that we're done with DECL we don't need to pretend to be a
2894 member of its class any longer. */
2895 DECL_CONTEXT (current_function_decl) = NULL_TREE;
2896 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
2899 /* Generate code to do the initialization or destruction of the decls in VARS,
2900 a TREE_LIST of VAR_DECL with static storage duration.
2901 Whether initialization or destruction is performed is specified by INITP. */
2903 static void
2904 do_static_initialization_or_destruction (tree vars, bool initp)
2906 tree node, init_if_stmt, cond;
2908 /* Build the outer if-stmt to check for initialization or destruction. */
2909 init_if_stmt = begin_if_stmt ();
2910 cond = initp ? integer_one_node : integer_zero_node;
2911 cond = cp_build_binary_op (EQ_EXPR,
2912 initialize_p_decl,
2913 cond,
2914 tf_warning_or_error);
2915 finish_if_stmt_cond (cond, init_if_stmt);
2917 node = vars;
2918 do {
2919 tree decl = TREE_VALUE (node);
2920 tree priority_if_stmt;
2921 int priority;
2922 priority_info pi;
2924 /* If we don't need a destructor, there's nothing to do. Avoid
2925 creating a possibly empty if-stmt. */
2926 if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2928 node = TREE_CHAIN (node);
2929 continue;
2932 /* Remember that we had an initialization or finalization at this
2933 priority. */
2934 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
2935 pi = get_priority_info (priority);
2936 if (initp)
2937 pi->initializations_p = 1;
2938 else
2939 pi->destructions_p = 1;
2941 /* Conditionalize this initialization on being in the right priority
2942 and being initializing/finalizing appropriately. */
2943 priority_if_stmt = begin_if_stmt ();
2944 cond = cp_build_binary_op (EQ_EXPR,
2945 priority_decl,
2946 build_int_cst (NULL_TREE, priority),
2947 tf_warning_or_error);
2948 finish_if_stmt_cond (cond, priority_if_stmt);
2950 /* Process initializers with same priority. */
2951 for (; node
2952 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
2953 node = TREE_CHAIN (node))
2954 /* Do one initialization or destruction. */
2955 one_static_initialization_or_destruction (TREE_VALUE (node),
2956 TREE_PURPOSE (node), initp);
2958 /* Finish up the priority if-stmt body. */
2959 finish_then_clause (priority_if_stmt);
2960 finish_if_stmt (priority_if_stmt);
2962 } while (node);
2964 /* Finish up the init/destruct if-stmt body. */
2965 finish_then_clause (init_if_stmt);
2966 finish_if_stmt (init_if_stmt);
2969 /* VARS is a list of variables with static storage duration which may
2970 need initialization and/or finalization. Remove those variables
2971 that don't really need to be initialized or finalized, and return
2972 the resulting list. The order in which the variables appear in
2973 VARS is in reverse order of the order in which they should actually
2974 be initialized. The list we return is in the unreversed order;
2975 i.e., the first variable should be initialized first. */
2977 static tree
2978 prune_vars_needing_no_initialization (tree *vars)
2980 tree *var = vars;
2981 tree result = NULL_TREE;
2983 while (*var)
2985 tree t = *var;
2986 tree decl = TREE_VALUE (t);
2987 tree init = TREE_PURPOSE (t);
2989 /* Deal gracefully with error. */
2990 if (decl == error_mark_node)
2992 var = &TREE_CHAIN (t);
2993 continue;
2996 /* The only things that can be initialized are variables. */
2997 gcc_assert (TREE_CODE (decl) == VAR_DECL);
2999 /* If this object is not defined, we don't need to do anything
3000 here. */
3001 if (DECL_EXTERNAL (decl))
3003 var = &TREE_CHAIN (t);
3004 continue;
3007 /* Also, if the initializer already contains errors, we can bail
3008 out now. */
3009 if (init && TREE_CODE (init) == TREE_LIST
3010 && value_member (error_mark_node, init))
3012 var = &TREE_CHAIN (t);
3013 continue;
3016 /* This variable is going to need initialization and/or
3017 finalization, so we add it to the list. */
3018 *var = TREE_CHAIN (t);
3019 TREE_CHAIN (t) = result;
3020 result = t;
3023 return result;
3026 /* Make sure we have told the back end about all the variables in
3027 VARS. */
3029 static void
3030 write_out_vars (tree vars)
3032 tree v;
3034 for (v = vars; v; v = TREE_CHAIN (v))
3036 tree var = TREE_VALUE (v);
3037 if (!var_finalized_p (var))
3039 import_export_decl (var);
3040 rest_of_decl_compilation (var, 1, 1);
3045 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3046 (otherwise) that will initialize all global objects with static
3047 storage duration having the indicated PRIORITY. */
3049 static void
3050 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3051 location_t *locus)
3053 char function_key;
3054 tree arguments;
3055 tree fndecl;
3056 tree body;
3057 size_t i;
3059 input_location = *locus;
3060 /* ??? */
3061 /* Was: locus->line++; */
3063 /* We use `I' to indicate initialization and `D' to indicate
3064 destruction. */
3065 function_key = constructor_p ? 'I' : 'D';
3067 /* We emit the function lazily, to avoid generating empty
3068 global constructors and destructors. */
3069 body = NULL_TREE;
3071 /* For Objective-C++, we may need to initialize metadata found in this module.
3072 This must be done _before_ any other static initializations. */
3073 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3074 && constructor_p && objc_static_init_needed_p ())
3076 body = start_objects (function_key, priority);
3077 objc_generate_static_init_call (NULL_TREE);
3080 /* Call the static storage duration function with appropriate
3081 arguments. */
3082 for (i = 0; VEC_iterate (tree, ssdf_decls, i, fndecl); ++i)
3084 /* Calls to pure or const functions will expand to nothing. */
3085 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3087 if (! body)
3088 body = start_objects (function_key, priority);
3090 arguments = tree_cons (NULL_TREE,
3091 build_int_cst (NULL_TREE, priority),
3092 NULL_TREE);
3093 arguments = tree_cons (NULL_TREE,
3094 build_int_cst (NULL_TREE, constructor_p),
3095 arguments);
3096 finish_expr_stmt (cp_build_function_call (fndecl, arguments,
3097 tf_warning_or_error));
3101 /* Close out the function. */
3102 if (body)
3103 finish_objects (function_key, priority, body);
3106 /* Generate constructor and destructor functions for the priority
3107 indicated by N. */
3109 static int
3110 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3112 location_t *locus = (location_t *) data;
3113 int priority = (int) n->key;
3114 priority_info pi = (priority_info) n->value;
3116 /* Generate the functions themselves, but only if they are really
3117 needed. */
3118 if (pi->initializations_p)
3119 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3120 if (pi->destructions_p)
3121 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3123 /* Keep iterating. */
3124 return 0;
3127 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
3128 decls referenced from front-end specific constructs; it will be called
3129 only for language-specific tree nodes.
3131 Here we must deal with member pointers. */
3133 tree
3134 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3136 tree t = *tp;
3138 switch (TREE_CODE (t))
3140 case PTRMEM_CST:
3141 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3142 cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3143 break;
3144 case BASELINK:
3145 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3146 cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3147 break;
3148 case VAR_DECL:
3149 if (DECL_VTABLE_OR_VTT_P (t))
3151 /* The ABI requires that all virtual tables be emitted
3152 whenever one of them is. */
3153 tree vtbl;
3154 for (vtbl = CLASSTYPE_VTABLES (DECL_CONTEXT (t));
3155 vtbl;
3156 vtbl = TREE_CHAIN (vtbl))
3157 mark_decl_referenced (vtbl);
3159 else if (DECL_CONTEXT (t)
3160 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3161 /* If we need a static variable in a function, then we
3162 need the containing function. */
3163 mark_decl_referenced (DECL_CONTEXT (t));
3164 break;
3165 default:
3166 break;
3169 return NULL;
3172 /* Java requires that we be able to reference a local address for a
3173 method, and not be confused by PLT entries. If hidden aliases are
3174 supported, emit one for each java function that we've emitted. */
3176 static void
3177 build_java_method_aliases (void)
3179 struct cgraph_node *node;
3181 #ifndef HAVE_GAS_HIDDEN
3182 return;
3183 #endif
3185 for (node = cgraph_nodes; node ; node = node->next)
3187 tree fndecl = node->decl;
3189 if (TREE_ASM_WRITTEN (fndecl)
3190 && DECL_CONTEXT (fndecl)
3191 && TYPE_P (DECL_CONTEXT (fndecl))
3192 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3193 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3195 /* Mangle the name in a predictable way; we need to reference
3196 this from a java compiled object file. */
3197 tree oid, nid, alias;
3198 const char *oname;
3199 char *nname;
3201 oid = DECL_ASSEMBLER_NAME (fndecl);
3202 oname = IDENTIFIER_POINTER (oid);
3203 gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3204 nname = ACONCAT (("_ZGA", oname+2, NULL));
3205 nid = get_identifier (nname);
3207 alias = make_alias_for (fndecl, nid);
3208 TREE_PUBLIC (alias) = 1;
3209 DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3211 assemble_alias (alias, oid);
3216 /* This routine is called at the end of compilation.
3217 Its job is to create all the code needed to initialize and
3218 destroy the global aggregates. We do the destruction
3219 first, since that way we only need to reverse the decls once. */
3221 void
3222 cp_write_global_declarations (void)
3224 tree vars;
3225 bool reconsider;
3226 size_t i;
3227 location_t locus;
3228 unsigned ssdf_count = 0;
3229 int retries = 0;
3230 tree decl;
3232 locus = input_location;
3233 at_eof = 1;
3235 /* Bad parse errors. Just forget about it. */
3236 if (! global_bindings_p () || current_class_type || decl_namespace_list)
3237 return;
3239 if (pch_file)
3240 c_common_write_pch ();
3242 /* FIXME - huh? was input_line -= 1;*/
3244 /* We now have to write out all the stuff we put off writing out.
3245 These include:
3247 o Template specializations that we have not yet instantiated,
3248 but which are needed.
3249 o Initialization and destruction for non-local objects with
3250 static storage duration. (Local objects with static storage
3251 duration are initialized when their scope is first entered,
3252 and are cleaned up via atexit.)
3253 o Virtual function tables.
3255 All of these may cause others to be needed. For example,
3256 instantiating one function may cause another to be needed, and
3257 generating the initializer for an object may cause templates to be
3258 instantiated, etc., etc. */
3260 timevar_push (TV_VARCONST);
3262 emit_support_tinfos ();
3266 tree t;
3267 tree decl;
3269 reconsider = false;
3271 /* If there are templates that we've put off instantiating, do
3272 them now. */
3273 instantiate_pending_templates (retries);
3274 ggc_collect ();
3276 /* Write out virtual tables as required. Note that writing out
3277 the virtual table for a template class may cause the
3278 instantiation of members of that class. If we write out
3279 vtables then we remove the class from our list so we don't
3280 have to look at it again. */
3282 while (keyed_classes != NULL_TREE
3283 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3285 reconsider = true;
3286 keyed_classes = TREE_CHAIN (keyed_classes);
3289 t = keyed_classes;
3290 if (t != NULL_TREE)
3292 tree next = TREE_CHAIN (t);
3294 while (next)
3296 if (maybe_emit_vtables (TREE_VALUE (next)))
3298 reconsider = true;
3299 TREE_CHAIN (t) = TREE_CHAIN (next);
3301 else
3302 t = next;
3304 next = TREE_CHAIN (t);
3308 /* Write out needed type info variables. We have to be careful
3309 looping through unemitted decls, because emit_tinfo_decl may
3310 cause other variables to be needed. New elements will be
3311 appended, and we remove from the vector those that actually
3312 get emitted. */
3313 for (i = VEC_length (tree, unemitted_tinfo_decls);
3314 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3315 if (emit_tinfo_decl (t))
3317 reconsider = true;
3318 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3321 /* The list of objects with static storage duration is built up
3322 in reverse order. We clear STATIC_AGGREGATES so that any new
3323 aggregates added during the initialization of these will be
3324 initialized in the correct order when we next come around the
3325 loop. */
3326 vars = prune_vars_needing_no_initialization (&static_aggregates);
3328 if (vars)
3330 /* We need to start a new initialization function each time
3331 through the loop. That's because we need to know which
3332 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3333 isn't computed until a function is finished, and written
3334 out. That's a deficiency in the back end. When this is
3335 fixed, these initialization functions could all become
3336 inline, with resulting performance improvements. */
3337 tree ssdf_body;
3339 /* Set the line and file, so that it is obviously not from
3340 the source file. */
3341 input_location = locus;
3342 ssdf_body = start_static_storage_duration_function (ssdf_count);
3344 /* Make sure the back end knows about all the variables. */
3345 write_out_vars (vars);
3347 /* First generate code to do all the initializations. */
3348 if (vars)
3349 do_static_initialization_or_destruction (vars, /*initp=*/true);
3351 /* Then, generate code to do all the destructions. Do these
3352 in reverse order so that the most recently constructed
3353 variable is the first destroyed. If we're using
3354 __cxa_atexit, then we don't need to do this; functions
3355 were registered at initialization time to destroy the
3356 local statics. */
3357 if (!flag_use_cxa_atexit && vars)
3359 vars = nreverse (vars);
3360 do_static_initialization_or_destruction (vars, /*initp=*/false);
3362 else
3363 vars = NULL_TREE;
3365 /* Finish up the static storage duration function for this
3366 round. */
3367 input_location = locus;
3368 finish_static_storage_duration_function (ssdf_body);
3370 /* All those initializations and finalizations might cause
3371 us to need more inline functions, more template
3372 instantiations, etc. */
3373 reconsider = true;
3374 ssdf_count++;
3375 /* ??? was: locus.line++; */
3378 /* Go through the set of inline functions whose bodies have not
3379 been emitted yet. If out-of-line copies of these functions
3380 are required, emit them. */
3381 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3383 /* Does it need synthesizing? */
3384 if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
3385 && (! DECL_REALLY_EXTERN (decl) || DECL_INLINE (decl)))
3387 /* Even though we're already at the top-level, we push
3388 there again. That way, when we pop back a few lines
3389 hence, all of our state is restored. Otherwise,
3390 finish_function doesn't clean things up, and we end
3391 up with CURRENT_FUNCTION_DECL set. */
3392 push_to_top_level ();
3393 /* The decl's location will mark where it was first
3394 needed. Save that so synthesize method can indicate
3395 where it was needed from, in case of error */
3396 input_location = DECL_SOURCE_LOCATION (decl);
3397 synthesize_method (decl);
3398 pop_from_top_level ();
3399 reconsider = true;
3402 if (!DECL_SAVED_TREE (decl))
3403 continue;
3405 /* We lie to the back end, pretending that some functions
3406 are not defined when they really are. This keeps these
3407 functions from being put out unnecessarily. But, we must
3408 stop lying when the functions are referenced, or if they
3409 are not comdat since they need to be put out now. If
3410 DECL_INTERFACE_KNOWN, then we have already set
3411 DECL_EXTERNAL appropriately, so there's no need to check
3412 again, and we do not want to clear DECL_EXTERNAL if a
3413 previous call to import_export_decl set it.
3415 This is done in a separate for cycle, because if some
3416 deferred function is contained in another deferred
3417 function later in deferred_fns varray,
3418 rest_of_compilation would skip this function and we
3419 really cannot expand the same function twice. */
3420 import_export_decl (decl);
3421 if (DECL_NOT_REALLY_EXTERN (decl)
3422 && DECL_INITIAL (decl)
3423 && decl_needed_p (decl))
3424 DECL_EXTERNAL (decl) = 0;
3426 /* If we're going to need to write this function out, and
3427 there's already a body for it, create RTL for it now.
3428 (There might be no body if this is a method we haven't
3429 gotten around to synthesizing yet.) */
3430 if (!DECL_EXTERNAL (decl)
3431 && decl_needed_p (decl)
3432 && !TREE_ASM_WRITTEN (decl)
3433 && !cgraph_node (decl)->local.finalized)
3435 /* We will output the function; no longer consider it in this
3436 loop. */
3437 DECL_DEFER_OUTPUT (decl) = 0;
3438 /* Generate RTL for this function now that we know we
3439 need it. */
3440 expand_or_defer_fn (decl);
3441 /* If we're compiling -fsyntax-only pretend that this
3442 function has been written out so that we don't try to
3443 expand it again. */
3444 if (flag_syntax_only)
3445 TREE_ASM_WRITTEN (decl) = 1;
3446 reconsider = true;
3450 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3451 reconsider = true;
3453 /* Static data members are just like namespace-scope globals. */
3454 for (i = 0; VEC_iterate (tree, pending_statics, i, decl); ++i)
3456 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3457 /* Don't write it out if we haven't seen a definition. */
3458 || DECL_IN_AGGR_P (decl))
3459 continue;
3460 import_export_decl (decl);
3461 /* If this static data member is needed, provide it to the
3462 back end. */
3463 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3464 DECL_EXTERNAL (decl) = 0;
3466 if (VEC_length (tree, pending_statics) != 0
3467 && wrapup_global_declarations (VEC_address (tree, pending_statics),
3468 VEC_length (tree, pending_statics)))
3469 reconsider = true;
3471 retries++;
3473 while (reconsider);
3475 /* All used inline functions must have a definition at this point. */
3476 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3478 if (/* Check online inline functions that were actually used. */
3479 TREE_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3480 /* If the definition actually was available here, then the
3481 fact that the function was not defined merely represents
3482 that for some reason (use of a template repository,
3483 #pragma interface, etc.) we decided not to emit the
3484 definition here. */
3485 && !DECL_INITIAL (decl)
3486 /* An explicit instantiation can be used to specify
3487 that the body is in another unit. It will have
3488 already verified there was a definition. */
3489 && !DECL_EXPLICIT_INSTANTIATION (decl))
3491 warning (0, "inline function %q+D used but never defined", decl);
3492 /* Avoid a duplicate warning from check_global_declaration_1. */
3493 TREE_NO_WARNING (decl) = 1;
3497 /* We give C linkage to static constructors and destructors. */
3498 push_lang_context (lang_name_c);
3500 /* Generate initialization and destruction functions for all
3501 priorities for which they are required. */
3502 if (priority_info_map)
3503 splay_tree_foreach (priority_info_map,
3504 generate_ctor_and_dtor_functions_for_priority,
3505 /*data=*/&locus);
3506 else if (c_dialect_objc () && objc_static_init_needed_p ())
3507 /* If this is obj-c++ and we need a static init, call
3508 generate_ctor_or_dtor_function. */
3509 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3510 DEFAULT_INIT_PRIORITY, &locus);
3512 /* We're done with the splay-tree now. */
3513 if (priority_info_map)
3514 splay_tree_delete (priority_info_map);
3516 /* Generate any missing aliases. */
3517 maybe_apply_pending_pragma_weaks ();
3519 /* We're done with static constructors, so we can go back to "C++"
3520 linkage now. */
3521 pop_lang_context ();
3523 cgraph_finalize_compilation_unit ();
3524 cgraph_optimize ();
3526 /* Now, issue warnings about static, but not defined, functions,
3527 etc., and emit debugging information. */
3528 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3529 if (VEC_length (tree, pending_statics) != 0)
3531 check_global_declarations (VEC_address (tree, pending_statics),
3532 VEC_length (tree, pending_statics));
3533 emit_debug_global_declarations (VEC_address (tree, pending_statics),
3534 VEC_length (tree, pending_statics));
3537 /* Generate hidden aliases for Java. */
3538 build_java_method_aliases ();
3540 finish_repo ();
3542 /* The entire file is now complete. If requested, dump everything
3543 to a file. */
3545 int flags;
3546 FILE *stream = dump_begin (TDI_tu, &flags);
3548 if (stream)
3550 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3551 dump_end (TDI_tu, stream);
3555 timevar_pop (TV_VARCONST);
3557 if (flag_detailed_statistics)
3559 dump_tree_statistics ();
3560 dump_time_statistics ();
3562 input_location = locus;
3564 #ifdef ENABLE_CHECKING
3565 validate_conversion_obstack ();
3566 #endif /* ENABLE_CHECKING */
3569 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3570 function to call in parse-tree form; it has not yet been
3571 semantically analyzed. ARGS are the arguments to the function.
3572 They have already been semantically analyzed. */
3574 tree
3575 build_offset_ref_call_from_tree (tree fn, tree args)
3577 tree orig_fn;
3578 tree orig_args;
3579 tree expr;
3580 tree object;
3582 orig_fn = fn;
3583 orig_args = args;
3584 object = TREE_OPERAND (fn, 0);
3586 if (processing_template_decl)
3588 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3589 || TREE_CODE (fn) == MEMBER_REF);
3590 if (type_dependent_expression_p (fn)
3591 || any_type_dependent_arguments_p (args))
3592 return build_nt_call_list (fn, args);
3594 /* Transform the arguments and add the implicit "this"
3595 parameter. That must be done before the FN is transformed
3596 because we depend on the form of FN. */
3597 args = build_non_dependent_args (args);
3598 object = build_non_dependent_expr (object);
3599 if (TREE_CODE (fn) == DOTSTAR_EXPR)
3600 object = cp_build_unary_op (ADDR_EXPR, object, 0, tf_warning_or_error);
3601 args = tree_cons (NULL_TREE, object, args);
3602 /* Now that the arguments are done, transform FN. */
3603 fn = build_non_dependent_expr (fn);
3606 /* A qualified name corresponding to a bound pointer-to-member is
3607 represented as an OFFSET_REF:
3609 struct B { void g(); };
3610 void (B::*p)();
3611 void B::g() { (this->*p)(); } */
3612 if (TREE_CODE (fn) == OFFSET_REF)
3614 tree object_addr = cp_build_unary_op (ADDR_EXPR, object, 0,
3615 tf_warning_or_error);
3616 fn = TREE_OPERAND (fn, 1);
3617 fn = get_member_function_from_ptrfunc (&object_addr, fn);
3618 args = tree_cons (NULL_TREE, object_addr, args);
3621 expr = cp_build_function_call (fn, args, tf_warning_or_error);
3622 if (processing_template_decl && expr != error_mark_node)
3623 return build_min_non_dep_call_list (expr, orig_fn, orig_args);
3624 return expr;
3628 void
3629 check_default_args (tree x)
3631 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
3632 bool saw_def = false;
3633 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
3634 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
3636 if (TREE_PURPOSE (arg))
3637 saw_def = true;
3638 else if (saw_def)
3640 error ("default argument missing for parameter %P of %q+#D", i, x);
3641 TREE_PURPOSE (arg) = error_mark_node;
3646 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
3647 If DECL is a specialization or implicitly declared class member,
3648 generate the actual definition. */
3650 void
3651 mark_used (tree decl)
3653 HOST_WIDE_INT saved_processing_template_decl = 0;
3655 /* If DECL is a BASELINK for a single function, then treat it just
3656 like the DECL for the function. Otherwise, if the BASELINK is
3657 for an overloaded function, we don't know which function was
3658 actually used until after overload resolution. */
3659 if (TREE_CODE (decl) == BASELINK)
3661 decl = BASELINK_FUNCTIONS (decl);
3662 if (really_overloaded_fn (decl))
3663 return;
3664 decl = OVL_CURRENT (decl);
3667 TREE_USED (decl) = 1;
3668 if (DECL_CLONED_FUNCTION_P (decl))
3669 TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
3670 /* If we don't need a value, then we don't need to synthesize DECL. */
3671 if (skip_evaluation)
3672 return;
3673 /* Normally, we can wait until instantiation-time to synthesize
3674 DECL. However, if DECL is a static data member initialized with
3675 a constant, we need the value right now because a reference to
3676 such a data member is not value-dependent. */
3677 if (TREE_CODE (decl) == VAR_DECL
3678 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
3679 && DECL_CLASS_SCOPE_P (decl))
3681 /* Don't try to instantiate members of dependent types. We
3682 cannot just use dependent_type_p here because this function
3683 may be called from fold_non_dependent_expr, and then we may
3684 see dependent types, even though processing_template_decl
3685 will not be set. */
3686 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl)))
3687 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl))))
3688 return;
3689 /* Pretend that we are not in a template, even if we are, so
3690 that the static data member initializer will be processed. */
3691 saved_processing_template_decl = processing_template_decl;
3692 processing_template_decl = 0;
3695 if (processing_template_decl)
3696 return;
3698 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
3699 && !TREE_ASM_WRITTEN (decl))
3700 /* Remember it, so we can check it was defined. */
3702 if (DECL_DEFERRED_FN (decl))
3703 return;
3705 /* Remember the current location for a function we will end up
3706 synthesizing. Then we can inform the user where it was
3707 required in the case of error. */
3708 if (DECL_ARTIFICIAL (decl) && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3709 && !DECL_THUNK_P (decl))
3710 DECL_SOURCE_LOCATION (decl) = input_location;
3712 note_vague_linkage_fn (decl);
3715 assemble_external (decl);
3717 /* Is it a synthesized method that needs to be synthesized? */
3718 if (TREE_CODE (decl) == FUNCTION_DECL
3719 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3720 && DECL_ARTIFICIAL (decl)
3721 && !DECL_THUNK_P (decl)
3722 && ! DECL_INITIAL (decl)
3723 /* Kludge: don't synthesize for default args. Unfortunately this
3724 rules out initializers of namespace-scoped objects too, but
3725 it's sort-of ok if the implicit ctor or dtor decl keeps
3726 pointing to the class location. */
3727 && current_function_decl)
3729 synthesize_method (decl);
3730 /* If we've already synthesized the method we don't need to
3731 do the instantiation test below. */
3733 else if ((DECL_NON_THUNK_FUNCTION_P (decl) || TREE_CODE (decl) == VAR_DECL)
3734 && DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3735 && (!DECL_EXPLICIT_INSTANTIATION (decl)
3736 || (TREE_CODE (decl) == FUNCTION_DECL
3737 && DECL_INLINE (DECL_TEMPLATE_RESULT
3738 (template_for_substitution (decl))))
3739 /* We need to instantiate static data members so that there
3740 initializers are available in integral constant
3741 expressions. */
3742 || (TREE_CODE (decl) == VAR_DECL
3743 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))))
3744 /* If this is a function or variable that is an instance of some
3745 template, we now know that we will need to actually do the
3746 instantiation. We check that DECL is not an explicit
3747 instantiation because that is not checked in instantiate_decl.
3749 We put off instantiating functions in order to improve compile
3750 times. Maintaining a stack of active functions is expensive,
3751 and the inliner knows to instantiate any functions it might
3752 need. Therefore, we always try to defer instantiation. */
3753 instantiate_decl (decl, /*defer_ok=*/true,
3754 /*expl_inst_class_mem_p=*/false);
3756 processing_template_decl = saved_processing_template_decl;
3759 #include "gt-cp-decl2.h"