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 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 2, or (at your option)
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 COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 /* Process declarations and symbol lookup for C++ front end.
25 Also constructs types; the standard scalar types at initialization,
26 and structure, union, array and enum types when they are declared. */
28 /* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
33 #include "coretypes.h"
48 #include "tree-mudflap.h"
50 #include "tree-inline.h"
52 #include "tree-dump.h"
55 extern cpp_reader
*parse_in
;
57 /* This structure contains information about the initializations
58 and/or destructions required for a particular priority level. */
59 typedef struct priority_info_s
{
60 /* Nonzero if there have been any initializations at this priority
61 throughout the translation unit. */
62 int initializations_p
;
63 /* Nonzero if there have been any destructions at this priority
64 throughout the translation unit. */
68 static void mark_vtable_entries (tree
);
69 static bool maybe_emit_vtables (tree
);
70 static bool acceptable_java_type (tree
);
71 static tree
start_objects (int, int);
72 static void finish_objects (int, int, tree
);
73 static tree
start_static_storage_duration_function (unsigned);
74 static void finish_static_storage_duration_function (tree
);
75 static priority_info
get_priority_info (int);
76 static void do_static_initialization_or_destruction (tree
, bool);
77 static void one_static_initialization_or_destruction (tree
, tree
, bool);
78 static void generate_ctor_or_dtor_function (bool, int, location_t
*);
79 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node
,
81 static tree
prune_vars_needing_no_initialization (tree
*);
82 static void write_out_vars (tree
);
83 static void import_export_class (tree
);
84 static tree
get_guard_bits (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. */
99 /* Functions called along with real static constructors and destructors. */
105 /* Incorporate `const' and `volatile' qualifiers for member functions.
106 FUNCTION is a TYPE_DECL or a FUNCTION_DECL.
107 QUALS is a list of qualifiers. Returns any explicit
108 top-level qualifiers of the method's this pointer, anything other than
109 TYPE_UNQUALIFIED will be an extension. */
112 grok_method_quals (tree ctype
, tree function
, cp_cv_quals quals
)
114 tree fntype
= TREE_TYPE (function
);
115 tree raises
= TYPE_RAISES_EXCEPTIONS (fntype
);
116 int type_quals
= TYPE_UNQUALIFIED
;
117 int this_quals
= TYPE_UNQUALIFIED
;
119 type_quals
= quals
& ~TYPE_QUAL_RESTRICT
;
120 this_quals
= quals
& TYPE_QUAL_RESTRICT
;
122 if (fntype
== error_mark_node
|| ctype
== error_mark_node
)
124 TREE_TYPE (function
) = error_mark_node
;
128 ctype
= cp_build_qualified_type (ctype
, type_quals
);
129 fntype
= build_method_type_directly (ctype
, TREE_TYPE (fntype
),
130 (TREE_CODE (fntype
) == METHOD_TYPE
131 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype
))
132 : TYPE_ARG_TYPES (fntype
)));
134 fntype
= build_exception_variant (fntype
, raises
);
136 TREE_TYPE (function
) = fntype
;
140 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
144 cp_build_parm_decl (tree name
, tree type
)
146 tree parm
= build_decl (PARM_DECL
, name
, type
);
147 /* DECL_ARG_TYPE is only used by the back end and the back end never
149 if (!processing_template_decl
)
150 DECL_ARG_TYPE (parm
) = type_passed_as (type
);
154 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
158 build_artificial_parm (tree name
, tree type
)
160 tree parm
= cp_build_parm_decl (name
, type
);
161 DECL_ARTIFICIAL (parm
) = 1;
162 /* All our artificial parms are implicitly `const'; they cannot be
164 TREE_READONLY (parm
) = 1;
168 /* Constructors for types with virtual baseclasses need an "in-charge" flag
169 saying whether this constructor is responsible for initialization of
170 virtual baseclasses or not. All destructors also need this "in-charge"
171 flag, which additionally determines whether or not the destructor should
172 free the memory for the object.
174 This function adds the "in-charge" flag to member function FN if
175 appropriate. It is called from grokclassfn and tsubst.
176 FN must be either a constructor or destructor.
178 The in-charge flag follows the 'this' parameter, and is followed by the
179 VTT parm (if any), then the user-written parms. */
182 maybe_retrofit_in_chrg (tree fn
)
184 tree basetype
, arg_types
, parms
, parm
, fntype
;
186 /* If we've already add the in-charge parameter don't do it again. */
187 if (DECL_HAS_IN_CHARGE_PARM_P (fn
))
190 /* When processing templates we can't know, in general, whether or
191 not we're going to have virtual baseclasses. */
192 if (processing_template_decl
)
195 /* We don't need an in-charge parameter for constructors that don't
196 have virtual bases. */
197 if (DECL_CONSTRUCTOR_P (fn
)
198 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn
)))
201 arg_types
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
202 basetype
= TREE_TYPE (TREE_VALUE (arg_types
));
203 arg_types
= TREE_CHAIN (arg_types
);
205 parms
= TREE_CHAIN (DECL_ARGUMENTS (fn
));
207 /* If this is a subobject constructor or destructor, our caller will
208 pass us a pointer to our VTT. */
209 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn
)))
211 parm
= build_artificial_parm (vtt_parm_identifier
, vtt_parm_type
);
213 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
214 TREE_CHAIN (parm
) = parms
;
217 /* ...and then to TYPE_ARG_TYPES. */
218 arg_types
= hash_tree_chain (vtt_parm_type
, arg_types
);
220 DECL_HAS_VTT_PARM_P (fn
) = 1;
223 /* Then add the in-charge parm (before the VTT parm). */
224 parm
= build_artificial_parm (in_charge_identifier
, integer_type_node
);
225 TREE_CHAIN (parm
) = parms
;
227 arg_types
= hash_tree_chain (integer_type_node
, arg_types
);
229 /* Insert our new parameter(s) into the list. */
230 TREE_CHAIN (DECL_ARGUMENTS (fn
)) = parms
;
232 /* And rebuild the function type. */
233 fntype
= build_method_type_directly (basetype
, TREE_TYPE (TREE_TYPE (fn
)),
235 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn
)))
236 fntype
= build_exception_variant (fntype
,
237 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn
)));
238 TREE_TYPE (fn
) = fntype
;
240 /* Now we've got the in-charge parameter. */
241 DECL_HAS_IN_CHARGE_PARM_P (fn
) = 1;
244 /* Classes overload their constituent function names automatically.
245 When a function name is declared in a record structure,
246 its name is changed to it overloaded name. Since names for
247 constructors and destructors can conflict, we place a leading
250 CNAME is the name of the class we are grokking for.
252 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
254 FLAGS contains bits saying what's special about today's
255 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
257 If FUNCTION is a destructor, then we must add the `auto-delete' field
258 as a second parameter. There is some hair associated with the fact
259 that we must "declare" this variable in the manner consistent with the
260 way the rest of the arguments were declared.
262 QUALS are the qualifiers for the this pointer. */
265 grokclassfn (tree ctype
, tree function
, enum overload_flags flags
,
268 tree fn_name
= DECL_NAME (function
);
269 cp_cv_quals this_quals
= TYPE_UNQUALIFIED
;
271 /* Even within an `extern "C"' block, members get C++ linkage. See
272 [dcl.link] for details. */
273 SET_DECL_LANGUAGE (function
, lang_cplusplus
);
275 if (fn_name
== NULL_TREE
)
277 error ("name missing for member function");
278 fn_name
= get_identifier ("<anonymous>");
279 DECL_NAME (function
) = fn_name
;
283 this_quals
= grok_method_quals (ctype
, function
, quals
);
285 if (TREE_CODE (TREE_TYPE (function
)) == METHOD_TYPE
)
287 /* Must add the class instance variable up front. */
288 /* Right now we just make this a pointer. But later
289 we may wish to make it special. */
290 tree type
= TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (function
)));
294 /* The `this' parameter is implicitly `const'; it cannot be
296 this_quals
|= TYPE_QUAL_CONST
;
297 qual_type
= cp_build_qualified_type (type
, this_quals
);
298 parm
= build_artificial_parm (this_identifier
, qual_type
);
299 cp_apply_type_quals_to_decl (this_quals
, parm
);
300 TREE_CHAIN (parm
) = DECL_ARGUMENTS (function
);
301 DECL_ARGUMENTS (function
) = parm
;
304 DECL_CONTEXT (function
) = ctype
;
306 if (flags
== DTOR_FLAG
)
307 DECL_DESTRUCTOR_P (function
) = 1;
309 if (flags
== DTOR_FLAG
|| DECL_CONSTRUCTOR_P (function
))
310 maybe_retrofit_in_chrg (function
);
313 /* Create an ARRAY_REF, checking for the user doing things backwards
317 grok_array_decl (tree array_expr
, tree index_exp
)
321 tree orig_array_expr
= array_expr
;
322 tree orig_index_exp
= index_exp
;
324 if (error_operand_p (array_expr
) || error_operand_p (index_exp
))
325 return error_mark_node
;
327 if (processing_template_decl
)
329 if (type_dependent_expression_p (array_expr
)
330 || type_dependent_expression_p (index_exp
))
331 return build_min_nt (ARRAY_REF
, array_expr
, index_exp
,
332 NULL_TREE
, NULL_TREE
);
333 array_expr
= build_non_dependent_expr (array_expr
);
334 index_exp
= build_non_dependent_expr (index_exp
);
337 type
= TREE_TYPE (array_expr
);
339 type
= non_reference (type
);
341 /* If they have an `operator[]', use that. */
342 if (IS_AGGR_TYPE (type
) || IS_AGGR_TYPE (TREE_TYPE (index_exp
)))
343 expr
= build_new_op (ARRAY_REF
, LOOKUP_NORMAL
,
344 array_expr
, index_exp
, NULL_TREE
,
345 /*overloaded_p=*/NULL
);
350 /* Otherwise, create an ARRAY_REF for a pointer or array type.
351 It is a little-known fact that, if `a' is an array and `i' is
352 an int, you can write `i[a]', which means the same thing as
354 if (TREE_CODE (type
) == ARRAY_TYPE
)
357 p1
= build_expr_type_conversion (WANT_POINTER
, array_expr
, false);
359 if (TREE_CODE (TREE_TYPE (index_exp
)) == ARRAY_TYPE
)
362 p2
= build_expr_type_conversion (WANT_POINTER
, index_exp
, false);
364 i1
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
, array_expr
,
366 i2
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
, index_exp
,
369 if ((p1
&& i2
) && (i1
&& p2
))
370 error ("ambiguous conversion for array subscript");
373 array_expr
= p1
, index_exp
= i2
;
375 array_expr
= p2
, index_exp
= i1
;
378 error ("invalid types %<%T[%T]%> for array subscript",
379 type
, TREE_TYPE (index_exp
));
380 return error_mark_node
;
383 if (array_expr
== error_mark_node
|| index_exp
== error_mark_node
)
384 error ("ambiguous conversion for array subscript");
386 expr
= build_array_ref (array_expr
, index_exp
);
388 if (processing_template_decl
&& expr
!= error_mark_node
)
389 return build_min_non_dep (ARRAY_REF
, expr
, orig_array_expr
, orig_index_exp
,
390 NULL_TREE
, NULL_TREE
);
394 /* Given the cast expression EXP, checking out its validity. Either return
395 an error_mark_node if there was an unavoidable error, return a cast to
396 void for trying to delete a pointer w/ the value 0, or return the
397 call to delete. If DOING_VEC is true, we handle things differently
398 for doing an array delete.
399 Implements ARM $5.3.4. This is called from the parser. */
402 delete_sanity (tree exp
, tree size
, bool doing_vec
, int use_global_delete
)
406 if (exp
== error_mark_node
)
409 if (processing_template_decl
)
411 t
= build_min (DELETE_EXPR
, void_type_node
, exp
, size
);
412 DELETE_EXPR_USE_GLOBAL (t
) = use_global_delete
;
413 DELETE_EXPR_USE_VEC (t
) = doing_vec
;
414 TREE_SIDE_EFFECTS (t
) = 1;
418 /* An array can't have been allocated by new, so complain. */
419 if (TREE_CODE (exp
) == VAR_DECL
420 && TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
421 warning (0, "deleting array %q#D", exp
);
423 t
= build_expr_type_conversion (WANT_POINTER
, exp
, true);
425 if (t
== NULL_TREE
|| t
== error_mark_node
)
427 error ("type %q#T argument given to %<delete%>, expected pointer",
429 return error_mark_node
;
432 type
= TREE_TYPE (t
);
434 /* As of Valley Forge, you can delete a pointer to const. */
436 /* You can't delete functions. */
437 if (TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
439 error ("cannot delete a function. Only pointer-to-objects are "
440 "valid arguments to %<delete%>");
441 return error_mark_node
;
444 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
445 if (TREE_CODE (TREE_TYPE (type
)) == VOID_TYPE
)
447 warning (0, "deleting %qT is undefined", type
);
451 /* Deleting a pointer with the value zero is valid and has no effect. */
452 if (integer_zerop (t
))
453 return build1 (NOP_EXPR
, void_type_node
, t
);
456 return build_vec_delete (t
, /*maxindex=*/NULL_TREE
,
457 sfk_deleting_destructor
,
460 return build_delete (type
, t
, sfk_deleting_destructor
,
461 LOOKUP_NORMAL
, use_global_delete
);
464 /* Report an error if the indicated template declaration is not the
465 sort of thing that should be a member template. */
468 check_member_template (tree tmpl
)
472 gcc_assert (TREE_CODE (tmpl
) == TEMPLATE_DECL
);
473 decl
= DECL_TEMPLATE_RESULT (tmpl
);
475 if (TREE_CODE (decl
) == FUNCTION_DECL
476 || (TREE_CODE (decl
) == TYPE_DECL
477 && IS_AGGR_TYPE (TREE_TYPE (decl
))))
479 /* The parser rejects template declarations in local classes. */
480 gcc_assert (!current_function_decl
);
481 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VIRTUAL_P (decl
))
483 /* 14.5.2.3 [temp.mem]
485 A member function template shall not be virtual. */
487 ("invalid use of %<virtual%> in template declaration of %q#D",
489 DECL_VIRTUAL_P (decl
) = 0;
492 /* The debug-information generating code doesn't know what to do
493 with member templates. */
494 DECL_IGNORED_P (tmpl
) = 1;
497 error ("template declaration of %q#D", decl
);
500 /* Return true iff TYPE is a valid Java parameter or return type. */
503 acceptable_java_type (tree type
)
505 if (TREE_CODE (type
) == VOID_TYPE
|| TYPE_FOR_JAVA (type
))
507 if (TREE_CODE (type
) == POINTER_TYPE
|| TREE_CODE (type
) == REFERENCE_TYPE
)
509 type
= TREE_TYPE (type
);
510 if (TREE_CODE (type
) == RECORD_TYPE
)
513 if (! TYPE_FOR_JAVA (type
))
515 if (! CLASSTYPE_TEMPLATE_INFO (type
))
517 args
= CLASSTYPE_TI_ARGS (type
);
518 i
= TREE_VEC_LENGTH (args
);
521 type
= TREE_VEC_ELT (args
, i
);
522 if (TREE_CODE (type
) == POINTER_TYPE
)
523 type
= TREE_TYPE (type
);
524 if (! TYPE_FOR_JAVA (type
))
533 /* For a METHOD in a Java class CTYPE, return true if
534 the parameter and return types are valid Java types.
535 Otherwise, print appropriate error messages, and return false. */
538 check_java_method (tree method
)
541 tree arg_types
= TYPE_ARG_TYPES (TREE_TYPE (method
));
542 tree ret_type
= TREE_TYPE (TREE_TYPE (method
));
544 if (!acceptable_java_type (ret_type
))
546 error ("Java method %qD has non-Java return type %qT",
551 arg_types
= TREE_CHAIN (arg_types
);
552 if (DECL_HAS_IN_CHARGE_PARM_P (method
))
553 arg_types
= TREE_CHAIN (arg_types
);
554 if (DECL_HAS_VTT_PARM_P (method
))
555 arg_types
= TREE_CHAIN (arg_types
);
557 for (; arg_types
!= NULL_TREE
; arg_types
= TREE_CHAIN (arg_types
))
559 tree type
= TREE_VALUE (arg_types
);
560 if (!acceptable_java_type (type
))
562 error ("Java method %qD has non-Java parameter type %qT",
570 /* Sanity check: report error if this function FUNCTION is not
571 really a member of the class (CTYPE) it is supposed to belong to.
572 TEMPLATE_PARMS is used to specify the template parameters of a member
573 template passed as FUNCTION_DECL. If the member template is passed as a
574 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
575 from the declaration. If the function is not a function template, it
577 It returns the original declaration for the function, or NULL_TREE
578 if no declaration was found (and an error was emitted). */
581 check_classfn (tree ctype
, tree function
, tree template_parms
)
587 if (DECL_USE_TEMPLATE (function
)
588 && !(TREE_CODE (function
) == TEMPLATE_DECL
589 && DECL_TEMPLATE_SPECIALIZATION (function
))
590 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function
)))
591 /* Since this is a specialization of a member template,
592 we're not going to find the declaration in the class.
595 struct S { template <typename T> void f(T); };
596 template <> void S::f(int);
598 we're not going to find `S::f(int)', but there's no
599 reason we should, either. We let our callers know we didn't
600 find the method, but we don't complain. */
603 /* Basic sanity check: for a template function, the template parameters
604 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
605 if (TREE_CODE (function
) == TEMPLATE_DECL
)
607 gcc_assert (!template_parms
608 || comp_template_parms (template_parms
,
609 DECL_TEMPLATE_PARMS (function
)));
610 template_parms
= DECL_TEMPLATE_PARMS (function
);
613 /* OK, is this a definition of a member template? */
614 is_template
= (template_parms
!= NULL_TREE
);
616 /* We must enter the scope here, because conversion operators are
617 named by target type, and type equivalence relies on typenames
618 resolving within the scope of CTYPE. */
619 pushed_scope
= push_scope (ctype
);
620 ix
= class_method_index_for_fn (complete_type (ctype
), function
);
623 VEC(tree
,gc
) *methods
= CLASSTYPE_METHOD_VEC (ctype
);
624 tree fndecls
, fndecl
= 0;
626 const char *format
= NULL
;
628 for (fndecls
= VEC_index (tree
, methods
, ix
);
629 fndecls
; fndecls
= OVL_NEXT (fndecls
))
633 fndecl
= OVL_CURRENT (fndecls
);
634 p1
= TYPE_ARG_TYPES (TREE_TYPE (function
));
635 p2
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
637 /* We cannot simply call decls_match because this doesn't
638 work for static member functions that are pretending to
639 be methods, and because the name may have been changed by
642 /* Get rid of the this parameter on functions that become
644 if (DECL_STATIC_FUNCTION_P (fndecl
)
645 && TREE_CODE (TREE_TYPE (function
)) == METHOD_TYPE
)
646 p1
= TREE_CHAIN (p1
);
648 /* A member template definition only matches a member template
650 if (is_template
!= (TREE_CODE (fndecl
) == TEMPLATE_DECL
))
653 if (same_type_p (TREE_TYPE (TREE_TYPE (function
)),
654 TREE_TYPE (TREE_TYPE (fndecl
)))
655 && compparms (p1
, p2
)
657 || comp_template_parms (template_parms
,
658 DECL_TEMPLATE_PARMS (fndecl
)))
659 && (DECL_TEMPLATE_SPECIALIZATION (function
)
660 == DECL_TEMPLATE_SPECIALIZATION (fndecl
))
661 && (!DECL_TEMPLATE_SPECIALIZATION (function
)
662 || (DECL_TI_TEMPLATE (function
)
663 == DECL_TI_TEMPLATE (fndecl
))))
669 pop_scope (pushed_scope
);
670 return OVL_CURRENT (fndecls
);
673 error ("prototype for %q#D does not match any in class %qT",
675 is_conv_op
= DECL_CONV_FN_P (fndecl
);
678 ix
= CLASSTYPE_FIRST_CONVERSION_SLOT
;
679 fndecls
= VEC_index (tree
, methods
, ix
);
682 fndecl
= OVL_CURRENT (fndecls
);
683 fndecls
= OVL_NEXT (fndecls
);
685 if (!fndecls
&& is_conv_op
)
687 if (VEC_length (tree
, methods
) > (size_t) ++ix
)
689 fndecls
= VEC_index (tree
, methods
, ix
);
690 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls
)))
702 format
= N_("candidates are: %+#D");
704 format
= N_("candidate is: %+#D");
705 error (format
, fndecl
);
708 else if (!COMPLETE_TYPE_P (ctype
))
709 cxx_incomplete_type_error (function
, ctype
);
712 error ("no %q#D member function declared in class %qT",
716 /* If we did not find the method in the class, add it to avoid
717 spurious errors (unless the CTYPE is not yet defined, in which
718 case we'll only confuse ourselves when the function is declared
719 properly within the class. */
720 if (COMPLETE_TYPE_P (ctype
))
721 add_method (ctype
, function
, NULL_TREE
);
724 pop_scope (pushed_scope
);
728 /* DECL is a function with vague linkage. Remember it so that at the
729 end of the translation unit we can decide whether or not to emit
733 note_vague_linkage_fn (tree decl
)
735 if (!DECL_DEFERRED_FN (decl
))
737 DECL_DEFERRED_FN (decl
) = 1;
738 DECL_DEFER_OUTPUT (decl
) = 1;
739 VEC_safe_push (tree
, gc
, deferred_fns
, decl
);
743 /* Like note_vague_linkage_fn but for variables. */
746 note_vague_linkage_var (tree var
)
748 VEC_safe_push (tree
, gc
, pending_statics
, var
);
751 /* We have just processed the DECL, which is a static data member.
752 The other parameters are as for cp_finish_decl. */
755 finish_static_data_member_decl (tree decl
,
756 tree init
, bool init_const_expr_p
,
760 gcc_assert (TREE_PUBLIC (decl
));
762 DECL_CONTEXT (decl
) = current_class_type
;
764 /* We cannot call pushdecl here, because that would fill in the
765 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
766 the right thing, namely, to put this decl out straight away. */
767 /* current_class_type can be NULL_TREE in case of error. */
768 if (!asmspec_tree
&& current_class_type
)
769 DECL_INITIAL (decl
) = error_mark_node
;
771 if (! processing_template_decl
)
772 note_vague_linkage_var (decl
);
774 if (LOCAL_CLASS_P (current_class_type
))
775 pedwarn ("local class %q#T shall not have static data member %q#D",
776 current_class_type
, decl
);
778 /* Static consts need not be initialized in the class definition. */
779 if (init
!= NULL_TREE
&& TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
781 static int explained
= 0;
783 error ("initializer invalid for static member with constructor");
786 error ("(an out of class initialization is required)");
791 /* Force the compiler to know when an uninitialized static const
792 member is being used. */
793 if (CP_TYPE_CONST_P (TREE_TYPE (decl
)) && init
== 0)
794 TREE_USED (decl
) = 1;
795 DECL_INITIAL (decl
) = init
;
796 DECL_IN_AGGR_P (decl
) = 1;
798 cp_finish_decl (decl
, init
, init_const_expr_p
, asmspec_tree
, flags
);
801 /* DECLARATOR and DECLSPECS correspond to a class member. The othe
802 parameters are as for cp_finish_decl. Return the DECL for the
803 class member declared. */
806 grokfield (const cp_declarator
*declarator
,
807 cp_decl_specifier_seq
*declspecs
,
808 tree init
, bool init_const_expr_p
,
813 const char *asmspec
= 0;
814 int flags
= LOOKUP_ONLYCONVERTING
;
817 && TREE_CODE (init
) == TREE_LIST
818 && TREE_VALUE (init
) == error_mark_node
819 && TREE_CHAIN (init
) == NULL_TREE
)
822 value
= grokdeclarator (declarator
, declspecs
, FIELD
, init
!= 0, &attrlist
);
823 if (! value
|| error_operand_p (value
))
824 /* friend or constructor went bad. */
825 return error_mark_node
;
827 if (TREE_CODE (value
) == TYPE_DECL
&& init
)
829 error ("typedef %qD is initialized (use __typeof__ instead)", value
);
833 /* Pass friendly classes back. */
834 if (value
== void_type_node
)
837 /* Pass friend decls back. */
838 if ((TREE_CODE (value
) == FUNCTION_DECL
839 || TREE_CODE (value
) == TEMPLATE_DECL
)
840 && DECL_CONTEXT (value
) != current_class_type
)
843 if (DECL_NAME (value
) != NULL_TREE
844 && IDENTIFIER_POINTER (DECL_NAME (value
))[0] == '_'
845 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value
)), "_vptr"))
846 error ("member %qD conflicts with virtual function table field name",
849 /* Stash away type declarations. */
850 if (TREE_CODE (value
) == TYPE_DECL
)
852 DECL_NONLOCAL (value
) = 1;
853 DECL_CONTEXT (value
) = current_class_type
;
855 if (processing_template_decl
)
856 value
= push_template_decl (value
);
860 /* Avoid storing attributes in template parameters:
861 tsubst is not ready to handle them. */
862 tree type
= TREE_TYPE (value
);
863 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
864 || TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
865 sorry ("applying attributes to template parameters is not implemented");
867 cplus_decl_attributes (&value
, attrlist
, 0);
873 if (DECL_IN_AGGR_P (value
))
875 error ("%qD is already defined in %qT", value
, DECL_CONTEXT (value
));
876 return void_type_node
;
879 if (asmspec_tree
&& asmspec_tree
!= error_mark_node
)
880 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
884 if (TREE_CODE (value
) == FUNCTION_DECL
)
886 /* Initializers for functions are rejected early in the parser.
887 If we get here, it must be a pure specifier for a method. */
888 if (TREE_CODE (TREE_TYPE (value
)) == METHOD_TYPE
)
890 gcc_assert (error_operand_p (init
) || integer_zerop (init
));
891 DECL_PURE_VIRTUAL_P (value
) = 1;
895 gcc_assert (TREE_CODE (TREE_TYPE (value
)) == FUNCTION_TYPE
);
896 error ("initializer specified for static member function %qD",
900 else if (pedantic
&& TREE_CODE (value
) != VAR_DECL
)
901 /* Already complained in grokdeclarator. */
903 else if (!processing_template_decl
)
905 if (TREE_CODE (init
) == CONSTRUCTOR
)
906 init
= digest_init (TREE_TYPE (value
), init
);
908 init
= integral_constant_value (init
);
910 if (init
!= error_mark_node
&& !TREE_CONSTANT (init
))
912 /* We can allow references to things that are effectively
913 static, since references are initialized with the
915 if (TREE_CODE (TREE_TYPE (value
)) != REFERENCE_TYPE
916 || (TREE_STATIC (init
) == 0
917 && (!DECL_P (init
) || DECL_EXTERNAL (init
) == 0)))
919 error ("field initializer is not constant");
920 init
= error_mark_node
;
926 if (processing_template_decl
927 && (TREE_CODE (value
) == VAR_DECL
|| TREE_CODE (value
) == FUNCTION_DECL
))
929 value
= push_template_decl (value
);
930 if (error_operand_p (value
))
931 return error_mark_node
;
935 cplus_decl_attributes (&value
, attrlist
, 0);
937 switch (TREE_CODE (value
))
940 finish_static_data_member_decl (value
, init
, init_const_expr_p
,
941 asmspec_tree
, flags
);
946 error ("%<asm%> specifiers are not permitted on non-static data members");
947 if (DECL_INITIAL (value
) == error_mark_node
)
948 init
= error_mark_node
;
949 cp_finish_decl (value
, init
, /*init_const_expr_p=*/false,
951 DECL_INITIAL (value
) = init
;
952 DECL_IN_AGGR_P (value
) = 1;
957 set_user_assembler_name (value
, asmspec
);
958 if (!DECL_FRIEND_P (value
))
959 grok_special_member_properties (value
);
961 cp_finish_decl (value
, init
, /*init_const_expr_p=*/false,
962 asmspec_tree
, flags
);
964 /* Pass friends back this way. */
965 if (DECL_FRIEND_P (value
))
966 return void_type_node
;
968 DECL_IN_AGGR_P (value
) = 1;
977 /* Like `grokfield', but for bitfields.
978 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
981 grokbitfield (const cp_declarator
*declarator
,
982 cp_decl_specifier_seq
*declspecs
, tree width
)
984 tree value
= grokdeclarator (declarator
, declspecs
, BITFIELD
, 0, NULL
);
986 if (! value
) return NULL_TREE
; /* friends went bad. */
988 /* Pass friendly classes back. */
989 if (TREE_CODE (value
) == VOID_TYPE
)
990 return void_type_node
;
992 if (TREE_CODE (value
) == TYPE_DECL
)
994 error ("cannot declare %qD to be a bit-field type", value
);
998 /* Usually, finish_struct_1 catches bitfields with invalid types.
999 But, in the case of bitfields with function type, we confuse
1000 ourselves into thinking they are member functions, so we must
1002 if (TREE_CODE (value
) == FUNCTION_DECL
)
1004 error ("cannot declare bit-field %qD with function type",
1009 if (DECL_IN_AGGR_P (value
))
1011 error ("%qD is already defined in the class %qT", value
,
1012 DECL_CONTEXT (value
));
1013 return void_type_node
;
1016 if (TREE_STATIC (value
))
1018 error ("static member %qD cannot be a bit-field", value
);
1021 finish_decl (value
, NULL_TREE
, NULL_TREE
);
1023 if (width
!= error_mark_node
)
1025 constant_expression_warning (width
);
1026 DECL_INITIAL (value
) = width
;
1027 SET_DECL_C_BIT_FIELD (value
);
1030 DECL_IN_AGGR_P (value
) = 1;
1036 cplus_decl_attributes (tree
*decl
, tree attributes
, int flags
)
1038 if (*decl
== NULL_TREE
|| *decl
== void_type_node
)
1041 if (TREE_CODE (*decl
) == TEMPLATE_DECL
)
1042 decl
= &DECL_TEMPLATE_RESULT (*decl
);
1044 decl_attributes (decl
, attributes
, flags
);
1046 if (TREE_CODE (*decl
) == TYPE_DECL
)
1047 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl
), TREE_TYPE (*decl
));
1050 /* Walks through the namespace- or function-scope anonymous union
1051 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1052 Returns one of the fields for use in the mangled name. */
1055 build_anon_union_vars (tree type
, tree object
)
1057 tree main_decl
= NULL_TREE
;
1060 /* Rather than write the code to handle the non-union case,
1061 just give an error. */
1062 if (TREE_CODE (type
) != UNION_TYPE
)
1063 error ("anonymous struct not inside named type");
1065 for (field
= TYPE_FIELDS (type
);
1067 field
= TREE_CHAIN (field
))
1072 if (DECL_ARTIFICIAL (field
))
1074 if (TREE_CODE (field
) != FIELD_DECL
)
1076 pedwarn ("%q+#D invalid; an anonymous union can only "
1077 "have non-static data members", field
);
1081 if (TREE_PRIVATE (field
))
1082 pedwarn ("private member %q+#D in anonymous union", field
);
1083 else if (TREE_PROTECTED (field
))
1084 pedwarn ("protected member %q+#D in anonymous union", field
);
1086 if (processing_template_decl
)
1087 ref
= build_min_nt (COMPONENT_REF
, object
,
1088 DECL_NAME (field
), NULL_TREE
);
1090 ref
= build_class_member_access_expr (object
, field
, NULL_TREE
,
1093 if (DECL_NAME (field
))
1097 decl
= build_decl (VAR_DECL
, DECL_NAME (field
), TREE_TYPE (field
));
1099 base
= get_base_address (object
);
1100 TREE_PUBLIC (decl
) = TREE_PUBLIC (base
);
1101 TREE_STATIC (decl
) = TREE_STATIC (base
);
1102 DECL_EXTERNAL (decl
) = DECL_EXTERNAL (base
);
1104 SET_DECL_VALUE_EXPR (decl
, ref
);
1105 DECL_HAS_VALUE_EXPR_P (decl
) = 1;
1107 decl
= pushdecl (decl
);
1109 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field
)))
1110 decl
= build_anon_union_vars (TREE_TYPE (field
), ref
);
1114 if (main_decl
== NULL_TREE
)
1121 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1122 anonymous union, then all members must be laid out together. PUBLIC_P
1123 is nonzero if this union is not declared static. */
1126 finish_anon_union (tree anon_union_decl
)
1132 if (anon_union_decl
== error_mark_node
)
1135 type
= TREE_TYPE (anon_union_decl
);
1136 public_p
= TREE_PUBLIC (anon_union_decl
);
1138 /* The VAR_DECL's context is the same as the TYPE's context. */
1139 DECL_CONTEXT (anon_union_decl
) = DECL_CONTEXT (TYPE_NAME (type
));
1141 if (TYPE_FIELDS (type
) == NULL_TREE
)
1146 error ("namespace-scope anonymous aggregates must be static");
1150 main_decl
= build_anon_union_vars (type
, anon_union_decl
);
1151 if (main_decl
== error_mark_node
)
1153 if (main_decl
== NULL_TREE
)
1155 warning (0, "anonymous union with no members");
1159 if (!processing_template_decl
)
1161 /* Use main_decl to set the mangled name. */
1162 DECL_NAME (anon_union_decl
) = DECL_NAME (main_decl
);
1163 mangle_decl (anon_union_decl
);
1164 DECL_NAME (anon_union_decl
) = NULL_TREE
;
1167 pushdecl (anon_union_decl
);
1168 if (building_stmt_tree ()
1169 && at_function_scope_p ())
1170 add_decl_expr (anon_union_decl
);
1171 else if (!processing_template_decl
)
1172 rest_of_decl_compilation (anon_union_decl
,
1173 toplevel_bindings_p (), at_eof
);
1176 /* Auxiliary functions to make type signatures for
1177 `operator new' and `operator delete' correspond to
1178 what compiler will be expecting. */
1181 coerce_new_type (tree type
)
1184 tree args
= TYPE_ARG_TYPES (type
);
1186 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
1188 if (!same_type_p (TREE_TYPE (type
), ptr_type_node
))
1191 error ("%<operator new%> must return type %qT", ptr_type_node
);
1194 if (!args
|| args
== void_list_node
1195 || !same_type_p (TREE_VALUE (args
), size_type_node
))
1198 if (args
&& args
!= void_list_node
)
1199 args
= TREE_CHAIN (args
);
1200 pedwarn ("%<operator new%> takes type %<size_t%> (%qT) "
1201 "as first parameter", size_type_node
);
1206 args
= tree_cons (NULL_TREE
, size_type_node
, args
);
1209 type
= build_exception_variant
1210 (build_function_type (ptr_type_node
, args
),
1211 TYPE_RAISES_EXCEPTIONS (type
));
1219 coerce_delete_type (tree type
)
1222 tree args
= TYPE_ARG_TYPES (type
);
1224 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
1226 if (!same_type_p (TREE_TYPE (type
), void_type_node
))
1229 error ("%<operator delete%> must return type %qT", void_type_node
);
1232 if (!args
|| args
== void_list_node
1233 || !same_type_p (TREE_VALUE (args
), ptr_type_node
))
1236 if (args
&& args
!= void_list_node
)
1237 args
= TREE_CHAIN (args
);
1238 error ("%<operator delete%> takes type %qT as first parameter",
1244 args
= tree_cons (NULL_TREE
, ptr_type_node
, args
);
1247 type
= build_exception_variant
1248 (build_function_type (void_type_node
, args
),
1249 TYPE_RAISES_EXCEPTIONS (type
));
1258 mark_vtable_entries (tree decl
)
1261 unsigned HOST_WIDE_INT idx
;
1263 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl
)),
1268 STRIP_NOPS (fnaddr
);
1270 if (TREE_CODE (fnaddr
) != ADDR_EXPR
1271 && TREE_CODE (fnaddr
) != FDESC_EXPR
)
1272 /* This entry is an offset: a virtual base class offset, a
1273 virtual call offset, an RTTI offset, etc. */
1276 fn
= TREE_OPERAND (fnaddr
, 0);
1277 TREE_ADDRESSABLE (fn
) = 1;
1278 /* When we don't have vcall offsets, we output thunks whenever
1279 we output the vtables that contain them. With vcall offsets,
1280 we know all the thunks we'll need when we emit a virtual
1281 function, so we emit the thunks there instead. */
1282 if (DECL_THUNK_P (fn
))
1283 use_thunk (fn
, /*emit_p=*/0);
1288 /* Set DECL up to have the closest approximation of "initialized common"
1289 linkage available. */
1292 comdat_linkage (tree decl
)
1295 make_decl_one_only (decl
);
1296 else if (TREE_CODE (decl
) == FUNCTION_DECL
1297 || (TREE_CODE (decl
) == VAR_DECL
&& DECL_ARTIFICIAL (decl
)))
1298 /* We can just emit function and compiler-generated variables
1299 statically; having multiple copies is (for the most part) only
1302 There are two correctness issues, however: the address of a
1303 template instantiation with external linkage should be the
1304 same, independent of what translation unit asks for the
1305 address, and this will not hold when we emit multiple copies of
1306 the function. However, there's little else we can do.
1308 Also, by default, the typeinfo implementation assumes that
1309 there will be only one copy of the string used as the name for
1310 each type. Therefore, if weak symbols are unavailable, the
1311 run-time library should perform a more conservative check; it
1312 should perform a string comparison, rather than an address
1314 TREE_PUBLIC (decl
) = 0;
1317 /* Static data member template instantiations, however, cannot
1318 have multiple copies. */
1319 if (DECL_INITIAL (decl
) == 0
1320 || DECL_INITIAL (decl
) == error_mark_node
)
1321 DECL_COMMON (decl
) = 1;
1322 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl
)))
1324 DECL_COMMON (decl
) = 1;
1325 DECL_INITIAL (decl
) = error_mark_node
;
1327 else if (!DECL_EXPLICIT_INSTANTIATION (decl
))
1329 /* We can't do anything useful; leave vars for explicit
1331 DECL_EXTERNAL (decl
) = 1;
1332 DECL_NOT_REALLY_EXTERN (decl
) = 0;
1336 if (DECL_LANG_SPECIFIC (decl
))
1337 DECL_COMDAT (decl
) = 1;
1340 /* For win32 we also want to put explicit instantiations in
1341 linkonce sections, so that they will be merged with implicit
1342 instantiations; otherwise we get duplicate symbol errors.
1343 For Darwin we do not want explicit instantiations to be
1347 maybe_make_one_only (tree decl
)
1349 /* We used to say that this was not necessary on targets that support weak
1350 symbols, because the implicit instantiations will defer to the explicit
1351 one. However, that's not actually the case in SVR4; a strong definition
1352 after a weak one is an error. Also, not making explicit
1353 instantiations one_only means that we can end up with two copies of
1354 some template instantiations. */
1358 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1359 we can get away with not emitting them if they aren't used. We need
1360 to for variables so that cp_finish_decl will update their linkage,
1361 because their DECL_INITIAL may not have been set properly yet. */
1363 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1364 || (! DECL_EXPLICIT_INSTANTIATION (decl
)
1365 && ! DECL_TEMPLATE_SPECIALIZATION (decl
)))
1367 make_decl_one_only (decl
);
1369 if (TREE_CODE (decl
) == VAR_DECL
)
1371 DECL_COMDAT (decl
) = 1;
1372 /* Mark it needed so we don't forget to emit it. */
1373 mark_decl_referenced (decl
);
1378 /* Determine whether or not we want to specifically import or export CTYPE,
1379 using various heuristics. */
1382 import_export_class (tree ctype
)
1384 /* -1 for imported, 1 for exported. */
1385 int import_export
= 0;
1387 /* It only makes sense to call this function at EOF. The reason is
1388 that this function looks at whether or not the first non-inline
1389 non-abstract virtual member function has been defined in this
1390 translation unit. But, we can't possibly know that until we've
1391 seen the entire translation unit. */
1392 gcc_assert (at_eof
);
1394 if (CLASSTYPE_INTERFACE_KNOWN (ctype
))
1397 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1398 we will have CLASSTYPE_INTERFACE_ONLY set but not
1399 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1400 heuristic because someone will supply a #pragma implementation
1401 elsewhere, and deducing it here would produce a conflict. */
1402 if (CLASSTYPE_INTERFACE_ONLY (ctype
))
1405 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype
)))
1407 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype
)))
1409 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype
)
1410 && !flag_implicit_templates
)
1411 /* For a template class, without -fimplicit-templates, check the
1412 repository. If the virtual table is assigned to this
1413 translation unit, then export the class; otherwise, import
1415 import_export
= repo_export_class_p (ctype
) ? 1 : -1;
1416 else if (TYPE_POLYMORPHIC_P (ctype
))
1418 /* The ABI specifies that the virtual table and associated
1419 information are emitted with the key method, if any. */
1420 tree method
= CLASSTYPE_KEY_METHOD (ctype
);
1421 /* If weak symbol support is not available, then we must be
1422 careful not to emit the vtable when the key function is
1423 inline. An inline function can be defined in multiple
1424 translation units. If we were to emit the vtable in each
1425 translation unit containing a definition, we would get
1426 multiple definition errors at link-time. */
1427 if (method
&& (flag_weak
|| ! DECL_DECLARED_INLINE_P (method
)))
1428 import_export
= (DECL_REALLY_EXTERN (method
) ? -1 : 1);
1431 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1432 a definition anywhere else. */
1433 if (MULTIPLE_SYMBOL_SPACES
&& import_export
== -1)
1436 /* Allow backends the chance to overrule the decision. */
1437 if (targetm
.cxx
.import_export_class
)
1438 import_export
= targetm
.cxx
.import_export_class (ctype
, import_export
);
1442 SET_CLASSTYPE_INTERFACE_KNOWN (ctype
);
1443 CLASSTYPE_INTERFACE_ONLY (ctype
) = (import_export
< 0);
1447 /* Return true if VAR has already been provided to the back end; in that
1448 case VAR should not be modified further by the front end. */
1450 var_finalized_p (tree var
)
1452 return cgraph_varpool_node (var
)->finalized
;
1455 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1456 must be emitted in this translation unit. Mark it as such. */
1459 mark_needed (tree decl
)
1461 /* It's possible that we no longer need to set
1462 TREE_SYMBOL_REFERENCED here directly, but doing so is
1464 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)) = 1;
1465 mark_decl_referenced (decl
);
1468 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1469 returns true if a definition of this entity should be provided in
1470 this object file. Callers use this function to determine whether
1471 or not to let the back end know that a definition of DECL is
1472 available in this translation unit. */
1475 decl_needed_p (tree decl
)
1477 gcc_assert (TREE_CODE (decl
) == VAR_DECL
1478 || TREE_CODE (decl
) == FUNCTION_DECL
);
1479 /* This function should only be called at the end of the translation
1480 unit. We cannot be sure of whether or not something will be
1481 COMDAT until that point. */
1482 gcc_assert (at_eof
);
1484 /* All entities with external linkage that are not COMDAT should be
1485 emitted; they may be referred to from other object files. */
1486 if (TREE_PUBLIC (decl
) && !DECL_COMDAT (decl
))
1488 /* If this entity was used, let the back-end see it; it will decide
1489 whether or not to emit it into the object file. */
1490 if (TREE_USED (decl
)
1491 || (DECL_ASSEMBLER_NAME_SET_P (decl
)
1492 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))))
1494 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1495 reference to DECL might cause it to be emitted later. */
1499 /* If necessary, write out the vtables for the dynamic class CTYPE.
1500 Returns true if any vtables were emitted. */
1503 maybe_emit_vtables (tree ctype
)
1509 /* If the vtables for this class have already been emitted there is
1510 nothing more to do. */
1511 primary_vtbl
= CLASSTYPE_VTABLES (ctype
);
1512 if (var_finalized_p (primary_vtbl
))
1514 /* Ignore dummy vtables made by get_vtable_decl. */
1515 if (TREE_TYPE (primary_vtbl
) == void_type_node
)
1518 /* On some targets, we cannot determine the key method until the end
1519 of the translation unit -- which is when this function is
1521 if (!targetm
.cxx
.key_method_may_be_inline ())
1522 determine_key_method (ctype
);
1524 /* See if any of the vtables are needed. */
1525 for (vtbl
= CLASSTYPE_VTABLES (ctype
); vtbl
; vtbl
= TREE_CHAIN (vtbl
))
1527 import_export_decl (vtbl
);
1528 if (DECL_NOT_REALLY_EXTERN (vtbl
) && decl_needed_p (vtbl
))
1533 /* If the references to this class' vtables are optimized away,
1534 still emit the appropriate debugging information. See
1536 if (DECL_COMDAT (primary_vtbl
)
1537 && CLASSTYPE_DEBUG_REQUESTED (ctype
))
1538 note_debug_info_needed (ctype
);
1542 /* The ABI requires that we emit all of the vtables if we emit any
1544 for (vtbl
= CLASSTYPE_VTABLES (ctype
); vtbl
; vtbl
= TREE_CHAIN (vtbl
))
1546 /* Mark entities references from the virtual table as used. */
1547 mark_vtable_entries (vtbl
);
1549 if (TREE_TYPE (DECL_INITIAL (vtbl
)) == 0)
1551 tree expr
= store_init_value (vtbl
, DECL_INITIAL (vtbl
));
1553 /* It had better be all done at compile-time. */
1558 DECL_EXTERNAL (vtbl
) = 0;
1559 rest_of_decl_compilation (vtbl
, 1, 1);
1561 /* Because we're only doing syntax-checking, we'll never end up
1562 actually marking the variable as written. */
1563 if (flag_syntax_only
)
1564 TREE_ASM_WRITTEN (vtbl
) = 1;
1567 /* Since we're writing out the vtable here, also write the debug
1569 note_debug_info_needed (ctype
);
1574 /* Like c_determine_visibility, but with additional C++-specific
1578 determine_visibility (tree decl
)
1582 /* Cloned constructors and destructors get the same visibility as
1583 the underlying function. That should be set up in
1584 maybe_clone_body. */
1585 gcc_assert (!DECL_CLONED_FUNCTION_P (decl
));
1587 /* Give the common code a chance to make a determination. */
1588 if (c_determine_visibility (decl
))
1591 /* If DECL is a member of a class, visibility specifiers on the
1592 class can influence the visibility of the DECL. */
1593 if (DECL_CLASS_SCOPE_P (decl
))
1594 class_type
= DECL_CONTEXT (decl
);
1595 else if (TREE_CODE (decl
) == VAR_DECL
1596 && DECL_TINFO_P (decl
)
1597 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl
))))
1598 class_type
= TREE_TYPE (DECL_NAME (decl
));
1601 /* Virtual tables have DECL_CONTEXT set to their associated class,
1602 so they are automatically handled above. */
1603 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1604 || !DECL_VTABLE_OR_VTT_P (decl
));
1605 /* Entities not associated with any class just get the
1606 visibility specified by their attributes. */
1610 /* By default, static data members and function members receive
1611 the visibility of their containing class. */
1614 if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
1615 && lookup_attribute ("dllexport", TYPE_ATTRIBUTES (class_type
)))
1617 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
1618 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1620 else if (TREE_CODE (decl
) == FUNCTION_DECL
1621 && DECL_DECLARED_INLINE_P (decl
)
1622 && visibility_options
.inlines_hidden
)
1624 /* Don't change it if it has been set explicitly by user. */
1625 if (!DECL_VISIBILITY_SPECIFIED (decl
))
1627 DECL_VISIBILITY (decl
) = VISIBILITY_HIDDEN
;
1628 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1631 else if (CLASSTYPE_VISIBILITY_SPECIFIED (class_type
))
1633 DECL_VISIBILITY (decl
) = CLASSTYPE_VISIBILITY (class_type
);
1634 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1636 else if (!DECL_VISIBILITY_SPECIFIED (decl
))
1638 DECL_VISIBILITY (decl
) = CLASSTYPE_VISIBILITY (class_type
);
1639 DECL_VISIBILITY_SPECIFIED (decl
) = 0;
1644 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
1645 for DECL has not already been determined, do so now by setting
1646 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
1647 function is called entities with vague linkage whose definitions
1648 are available must have TREE_PUBLIC set.
1650 If this function decides to place DECL in COMDAT, it will set
1651 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
1652 the caller to decide whether or not to clear DECL_EXTERNAL. Some
1653 callers defer that decision until it is clear that DECL is actually
1657 import_export_decl (tree decl
)
1662 tree class_type
= NULL_TREE
;
1664 if (DECL_INTERFACE_KNOWN (decl
))
1667 /* We cannot determine what linkage to give to an entity with vague
1668 linkage until the end of the file. For example, a virtual table
1669 for a class will be defined if and only if the key method is
1670 defined in this translation unit. As a further example, consider
1671 that when compiling a translation unit that uses PCH file with
1672 "-frepo" it would be incorrect to make decisions about what
1673 entities to emit when building the PCH; those decisions must be
1674 delayed until the repository information has been processed. */
1675 gcc_assert (at_eof
);
1676 /* Object file linkage for explicit instantiations is handled in
1677 mark_decl_instantiated. For static variables in functions with
1678 vague linkage, maybe_commonize_var is used.
1680 Therefore, the only declarations that should be provided to this
1681 function are those with external linkage that are:
1683 * implicit instantiations of function templates
1687 * implicit instantiations of static data members of class
1694 Furthermore, all entities that reach this point must have a
1695 definition available in this translation unit.
1697 The following assertions check these conditions. */
1698 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1699 || TREE_CODE (decl
) == VAR_DECL
);
1700 /* Any code that creates entities with TREE_PUBLIC cleared should
1701 also set DECL_INTERFACE_KNOWN. */
1702 gcc_assert (TREE_PUBLIC (decl
));
1703 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1704 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl
)
1705 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl
)
1706 || DECL_DECLARED_INLINE_P (decl
));
1708 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl
)
1709 || DECL_VTABLE_OR_VTT_P (decl
)
1710 || DECL_TINFO_P (decl
));
1711 /* Check that a definition of DECL is available in this translation
1713 gcc_assert (!DECL_REALLY_EXTERN (decl
));
1715 /* Assume that DECL will not have COMDAT linkage. */
1717 /* Assume that DECL will not be imported into this translation
1721 /* See if the repository tells us whether or not to emit DECL in
1722 this translation unit. */
1723 emit_p
= repo_emit_p (decl
);
1726 else if (emit_p
== 1)
1728 /* The repository indicates that this entity should be defined
1729 here. Make sure the back end honors that request. */
1730 if (TREE_CODE (decl
) == VAR_DECL
)
1732 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl
)
1733 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl
))
1736 FOR_EACH_CLONE (clone
, decl
)
1737 mark_needed (clone
);
1741 /* Output the definition as an ordinary strong definition. */
1742 DECL_EXTERNAL (decl
) = 0;
1743 DECL_INTERFACE_KNOWN (decl
) = 1;
1748 /* We have already decided what to do with this DECL; there is no
1749 need to check anything further. */
1751 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_VTABLE_OR_VTT_P (decl
))
1753 class_type
= DECL_CONTEXT (decl
);
1754 import_export_class (class_type
);
1755 if (TYPE_FOR_JAVA (class_type
))
1757 else if (CLASSTYPE_INTERFACE_KNOWN (class_type
)
1758 && CLASSTYPE_INTERFACE_ONLY (class_type
))
1760 else if ((!flag_weak
|| TARGET_WEAK_NOT_IN_ARCHIVE_TOC
)
1761 && !CLASSTYPE_USE_TEMPLATE (class_type
)
1762 && CLASSTYPE_KEY_METHOD (class_type
)
1763 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type
)))
1764 /* The ABI requires that all virtual tables be emitted with
1765 COMDAT linkage. However, on systems where COMDAT symbols
1766 don't show up in the table of contents for a static
1767 archive, or on systems without weak symbols (where we
1768 approximate COMDAT linkage by using internal linkage), the
1769 linker will report errors about undefined symbols because
1770 it will not see the virtual table definition. Therefore,
1771 in the case that we know that the virtual table will be
1772 emitted in only one translation unit, we make the virtual
1773 table an ordinary definition with external linkage. */
1774 DECL_EXTERNAL (decl
) = 0;
1775 else if (CLASSTYPE_INTERFACE_KNOWN (class_type
))
1777 /* CLASS_TYPE is being exported from this translation unit,
1778 so DECL should be defined here. */
1779 if (!flag_weak
&& CLASSTYPE_EXPLICIT_INSTANTIATION (class_type
))
1780 /* If a class is declared in a header with the "extern
1781 template" extension, then it will not be instantiated,
1782 even in translation units that would normally require
1783 it. Often such classes are explicitly instantiated in
1784 one translation unit. Therefore, the explicit
1785 instantiation must be made visible to other translation
1787 DECL_EXTERNAL (decl
) = 0;
1790 /* The generic C++ ABI says that class data is always
1791 COMDAT, even if there is a key function. Some
1792 variants (e.g., the ARM EABI) says that class data
1793 only has COMDAT linkage if the class data might
1794 be emitted in more than one translation unit. */
1795 if (!CLASSTYPE_KEY_METHOD (class_type
)
1796 || targetm
.cxx
.class_data_always_comdat ())
1798 /* The ABI requires COMDAT linkage. Normally, we
1799 only emit COMDAT things when they are needed;
1800 make sure that we realize that this entity is
1807 else if (!flag_implicit_templates
1808 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type
))
1813 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_TINFO_P (decl
))
1815 tree type
= TREE_TYPE (DECL_NAME (decl
));
1816 if (CLASS_TYPE_P (type
))
1819 import_export_class (type
);
1820 if (CLASSTYPE_INTERFACE_KNOWN (type
)
1821 && TYPE_POLYMORPHIC_P (type
)
1822 && CLASSTYPE_INTERFACE_ONLY (type
)
1823 /* If -fno-rtti was specified, then we cannot be sure
1824 that RTTI information will be emitted with the
1825 virtual table of the class, so we must emit it
1826 wherever it is used. */
1831 if (CLASSTYPE_INTERFACE_KNOWN (type
)
1832 && !CLASSTYPE_INTERFACE_ONLY (type
))
1834 comdat_p
= targetm
.cxx
.class_data_always_comdat ();
1839 DECL_EXTERNAL (decl
) = 0;
1849 else if (DECL_TEMPLATE_INSTANTIATION (decl
)
1850 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl
))
1852 /* DECL is an implicit instantiation of a function or static
1854 if (flag_implicit_templates
1855 || (flag_implicit_inline_templates
1856 && TREE_CODE (decl
) == FUNCTION_DECL
1857 && DECL_DECLARED_INLINE_P (decl
)))
1860 /* If we are not implicitly generating templates, then mark
1861 this entity as undefined in this translation unit. */
1864 else if (DECL_FUNCTION_MEMBER_P (decl
))
1866 if (!DECL_DECLARED_INLINE_P (decl
))
1868 tree ctype
= DECL_CONTEXT (decl
);
1869 import_export_class (ctype
);
1870 if (CLASSTYPE_INTERFACE_KNOWN (ctype
))
1872 DECL_NOT_REALLY_EXTERN (decl
)
1873 = ! (CLASSTYPE_INTERFACE_ONLY (ctype
)
1874 || (DECL_DECLARED_INLINE_P (decl
)
1875 && ! flag_implement_inlines
1876 && !DECL_VINDEX (decl
)));
1878 if (!DECL_NOT_REALLY_EXTERN (decl
))
1879 DECL_EXTERNAL (decl
) = 1;
1881 /* Always make artificials weak. */
1882 if (DECL_ARTIFICIAL (decl
) && flag_weak
)
1885 maybe_make_one_only (decl
);
1896 /* If we are importing DECL into this translation unit, mark is
1897 an undefined here. */
1898 DECL_EXTERNAL (decl
) = 1;
1899 DECL_NOT_REALLY_EXTERN (decl
) = 0;
1903 /* If we decided to put DECL in COMDAT, mark it accordingly at
1905 comdat_linkage (decl
);
1908 /* Give the target a chance to override the visibility of class
1909 data, like virtual tables. */
1910 if (TREE_CODE (decl
) == VAR_DECL
1911 && (DECL_TINFO_P (decl
)
1912 || (DECL_VTABLE_OR_VTT_P (decl
)
1913 /* Construction virtual tables are not exported because
1914 they cannot be referred to from other object files;
1915 their name is not standardized by the ABI. */
1916 && !DECL_CONSTRUCTION_VTABLE_P (decl
)))
1917 /* Visibility only applies to objects with external linkage. */
1918 && TREE_PUBLIC (decl
)
1919 /* Visibility is specified by the definition of the object, not
1921 && !DECL_REALLY_EXTERN (decl
)
1922 /* Respect any explicit specification of visibility for the
1923 class data itself. */
1924 && !DECL_VISIBILITY_SPECIFIED (decl
)
1925 /* If the visibility of the class has been explicitly specified,
1926 that visibility applies to class data as well. */
1927 && (!class_type
|| !CLASSTYPE_VISIBILITY_SPECIFIED (class_type
)))
1928 targetm
.cxx
.determine_class_data_visibility (decl
);
1930 DECL_INTERFACE_KNOWN (decl
) = 1;
1933 /* Return an expression that performs the destruction of DECL, which
1934 must be a VAR_DECL whose type has a non-trivial destructor, or is
1935 an array whose (innermost) elements have a non-trivial destructor. */
1938 build_cleanup (tree decl
)
1941 tree type
= TREE_TYPE (decl
);
1943 /* This function should only be called for declarations that really
1944 require cleanups. */
1945 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type
));
1947 /* Treat all objects with destructors as used; the destructor may do
1948 something substantive. */
1951 if (TREE_CODE (type
) == ARRAY_TYPE
)
1955 cxx_mark_addressable (decl
);
1956 temp
= build1 (ADDR_EXPR
, build_pointer_type (type
), decl
);
1958 temp
= build_delete (TREE_TYPE (temp
), temp
,
1959 sfk_complete_destructor
,
1960 LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
|LOOKUP_DESTRUCTOR
, 0);
1964 /* Returns the initialization guard variable for the variable DECL,
1965 which has static storage duration. */
1968 get_guard (tree decl
)
1973 sname
= mangle_guard_variable (decl
);
1974 guard
= IDENTIFIER_GLOBAL_VALUE (sname
);
1979 /* We use a type that is big enough to contain a mutex as well
1980 as an integer counter. */
1981 guard_type
= targetm
.cxx
.guard_type ();
1982 guard
= build_decl (VAR_DECL
, sname
, guard_type
);
1984 /* The guard should have the same linkage as what it guards. */
1985 TREE_PUBLIC (guard
) = TREE_PUBLIC (decl
);
1986 TREE_STATIC (guard
) = TREE_STATIC (decl
);
1987 DECL_COMMON (guard
) = DECL_COMMON (decl
);
1988 DECL_ONE_ONLY (guard
) = DECL_ONE_ONLY (decl
);
1989 if (TREE_PUBLIC (decl
))
1990 DECL_WEAK (guard
) = DECL_WEAK (decl
);
1992 DECL_ARTIFICIAL (guard
) = 1;
1993 DECL_IGNORED_P (guard
) = 1;
1994 TREE_USED (guard
) = 1;
1995 pushdecl_top_level_and_finish (guard
, NULL_TREE
);
2000 /* Return those bits of the GUARD variable that should be set when the
2001 guarded entity is actually initialized. */
2004 get_guard_bits (tree guard
)
2006 if (!targetm
.cxx
.guard_mask_bit ())
2008 /* We only set the first byte of the guard, in order to leave room
2009 for a mutex in the high-order bits. */
2010 guard
= build1 (ADDR_EXPR
,
2011 build_pointer_type (TREE_TYPE (guard
)),
2013 guard
= build1 (NOP_EXPR
,
2014 build_pointer_type (char_type_node
),
2016 guard
= build1 (INDIRECT_REF
, char_type_node
, guard
);
2022 /* Return an expression which determines whether or not the GUARD
2023 variable has already been initialized. */
2026 get_guard_cond (tree guard
)
2030 /* Check to see if the GUARD is zero. */
2031 guard
= get_guard_bits (guard
);
2033 /* Mask off all but the low bit. */
2034 if (targetm
.cxx
.guard_mask_bit ())
2036 guard_value
= integer_one_node
;
2037 if (!same_type_p (TREE_TYPE (guard_value
), TREE_TYPE (guard
)))
2038 guard_value
= convert (TREE_TYPE (guard
), guard_value
);
2039 guard
= cp_build_binary_op (BIT_AND_EXPR
, guard
, guard_value
);
2042 guard_value
= integer_zero_node
;
2043 if (!same_type_p (TREE_TYPE (guard_value
), TREE_TYPE (guard
)))
2044 guard_value
= convert (TREE_TYPE (guard
), guard_value
);
2045 return cp_build_binary_op (EQ_EXPR
, guard
, guard_value
);
2048 /* Return an expression which sets the GUARD variable, indicating that
2049 the variable being guarded has been initialized. */
2052 set_guard (tree guard
)
2056 /* Set the GUARD to one. */
2057 guard
= get_guard_bits (guard
);
2058 guard_init
= integer_one_node
;
2059 if (!same_type_p (TREE_TYPE (guard_init
), TREE_TYPE (guard
)))
2060 guard_init
= convert (TREE_TYPE (guard
), guard_init
);
2061 return build_modify_expr (guard
, NOP_EXPR
, guard_init
);
2064 /* Start the process of running a particular set of global constructors
2065 or destructors. Subroutine of do_[cd]tors. */
2068 start_objects (int method_type
, int initp
)
2074 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2076 if (initp
!= DEFAULT_INIT_PRIORITY
)
2086 sprintf (type
, "%c%c%.5u", method_type
, joiner
, initp
);
2089 sprintf (type
, "%c", method_type
);
2091 fndecl
= build_lang_decl (FUNCTION_DECL
,
2092 get_file_function_name_long (type
),
2093 build_function_type (void_type_node
,
2095 start_preparsed_function (fndecl
, /*attrs=*/NULL_TREE
, SF_PRE_PARSED
);
2097 /* It can be a static function as long as collect2 does not have
2098 to scan the object file to find its ctor/dtor routine. */
2099 TREE_PUBLIC (current_function_decl
) = ! targetm
.have_ctors_dtors
;
2101 /* Mark this declaration as used to avoid spurious warnings. */
2102 TREE_USED (current_function_decl
) = 1;
2104 /* Mark this function as a global constructor or destructor. */
2105 if (method_type
== 'I')
2106 DECL_GLOBAL_CTOR_P (current_function_decl
) = 1;
2108 DECL_GLOBAL_DTOR_P (current_function_decl
) = 1;
2109 DECL_LANG_SPECIFIC (current_function_decl
)->decl_flags
.u2sel
= 1;
2111 body
= begin_compound_stmt (BCS_FN_BODY
);
2113 /* We cannot allow these functions to be elided, even if they do not
2114 have external linkage. And, there's no point in deferring
2115 compilation of thes functions; they're all going to have to be
2117 DECL_INLINE (current_function_decl
) = 0;
2118 DECL_UNINLINABLE (current_function_decl
) = 1;
2123 /* Finish the process of running a particular set of global constructors
2124 or destructors. Subroutine of do_[cd]tors. */
2127 finish_objects (int method_type
, int initp
, tree body
)
2132 finish_compound_stmt (body
);
2133 fn
= finish_function (0);
2134 expand_or_defer_fn (fn
);
2136 /* When only doing semantic analysis, and no RTL generation, we
2137 can't call functions that directly emit assembly code; there is
2138 no assembly file in which to put the code. */
2139 if (flag_syntax_only
)
2142 if (targetm
.have_ctors_dtors
)
2144 rtx fnsym
= XEXP (DECL_RTL (fn
), 0);
2145 cgraph_mark_needed_node (cgraph_node (fn
));
2146 if (method_type
== 'I')
2147 (* targetm
.asm_out
.constructor
) (fnsym
, initp
);
2149 (* targetm
.asm_out
.destructor
) (fnsym
, initp
);
2153 /* The names of the parameters to the function created to handle
2154 initializations and destructions for objects with static storage
2156 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2157 #define PRIORITY_IDENTIFIER "__priority"
2159 /* The name of the function we create to handle initializations and
2160 destructions for objects with static storage duration. */
2161 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2163 /* The declaration for the __INITIALIZE_P argument. */
2164 static GTY(()) tree initialize_p_decl
;
2166 /* The declaration for the __PRIORITY argument. */
2167 static GTY(()) tree priority_decl
;
2169 /* The declaration for the static storage duration function. */
2170 static GTY(()) tree ssdf_decl
;
2172 /* All the static storage duration functions created in this
2173 translation unit. */
2174 static GTY(()) VEC(tree
,gc
) *ssdf_decls
;
2176 /* A map from priority levels to information about that priority
2177 level. There may be many such levels, so efficient lookup is
2179 static splay_tree priority_info_map
;
2181 /* Begins the generation of the function that will handle all
2182 initialization and destruction of objects with static storage
2183 duration. The function generated takes two parameters of type
2184 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2185 nonzero, it performs initializations. Otherwise, it performs
2186 destructions. It only performs those initializations or
2187 destructions with the indicated __PRIORITY. The generated function
2190 It is assumed that this function will only be called once per
2191 translation unit. */
2194 start_static_storage_duration_function (unsigned count
)
2199 char id
[sizeof (SSDF_IDENTIFIER
) + 1 /* '\0' */ + 32];
2201 /* Create the identifier for this function. It will be of the form
2202 SSDF_IDENTIFIER_<number>. */
2203 sprintf (id
, "%s_%u", SSDF_IDENTIFIER
, count
);
2205 /* Create the parameters. */
2206 parm_types
= void_list_node
;
2207 parm_types
= tree_cons (NULL_TREE
, integer_type_node
, parm_types
);
2208 parm_types
= tree_cons (NULL_TREE
, integer_type_node
, parm_types
);
2209 type
= build_function_type (void_type_node
, parm_types
);
2211 /* Create the FUNCTION_DECL itself. */
2212 ssdf_decl
= build_lang_decl (FUNCTION_DECL
,
2213 get_identifier (id
),
2215 TREE_PUBLIC (ssdf_decl
) = 0;
2216 DECL_ARTIFICIAL (ssdf_decl
) = 1;
2218 /* Put this function in the list of functions to be called from the
2219 static constructors and destructors. */
2222 ssdf_decls
= VEC_alloc (tree
, gc
, 32);
2224 /* Take this opportunity to initialize the map from priority
2225 numbers to information about that priority level. */
2226 priority_info_map
= splay_tree_new (splay_tree_compare_ints
,
2227 /*delete_key_fn=*/0,
2228 /*delete_value_fn=*/
2229 (splay_tree_delete_value_fn
) &free
);
2231 /* We always need to generate functions for the
2232 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2233 priorities later, we'll be sure to find the
2234 DEFAULT_INIT_PRIORITY. */
2235 get_priority_info (DEFAULT_INIT_PRIORITY
);
2238 VEC_safe_push (tree
, gc
, ssdf_decls
, ssdf_decl
);
2240 /* Create the argument list. */
2241 initialize_p_decl
= cp_build_parm_decl
2242 (get_identifier (INITIALIZE_P_IDENTIFIER
), integer_type_node
);
2243 DECL_CONTEXT (initialize_p_decl
) = ssdf_decl
;
2244 TREE_USED (initialize_p_decl
) = 1;
2245 priority_decl
= cp_build_parm_decl
2246 (get_identifier (PRIORITY_IDENTIFIER
), integer_type_node
);
2247 DECL_CONTEXT (priority_decl
) = ssdf_decl
;
2248 TREE_USED (priority_decl
) = 1;
2250 TREE_CHAIN (initialize_p_decl
) = priority_decl
;
2251 DECL_ARGUMENTS (ssdf_decl
) = initialize_p_decl
;
2253 /* Put the function in the global scope. */
2254 pushdecl (ssdf_decl
);
2256 /* Start the function itself. This is equivalent to declaring the
2259 static void __ssdf (int __initialize_p, init __priority_p);
2261 It is static because we only need to call this function from the
2262 various constructor and destructor functions for this module. */
2263 start_preparsed_function (ssdf_decl
,
2264 /*attrs=*/NULL_TREE
,
2267 /* Set up the scope of the outermost block in the function. */
2268 body
= begin_compound_stmt (BCS_FN_BODY
);
2270 /* This function must not be deferred because we are depending on
2271 its compilation to tell us what is TREE_SYMBOL_REFERENCED. */
2272 DECL_INLINE (ssdf_decl
) = 0;
2273 DECL_UNINLINABLE (ssdf_decl
) = 1;
2278 /* Finish the generation of the function which performs initialization
2279 and destruction of objects with static storage duration. After
2280 this point, no more such objects can be created. */
2283 finish_static_storage_duration_function (tree body
)
2285 /* Close out the function. */
2286 finish_compound_stmt (body
);
2287 expand_or_defer_fn (finish_function (0));
2290 /* Return the information about the indicated PRIORITY level. If no
2291 code to handle this level has yet been generated, generate the
2292 appropriate prologue. */
2294 static priority_info
2295 get_priority_info (int priority
)
2300 n
= splay_tree_lookup (priority_info_map
,
2301 (splay_tree_key
) priority
);
2304 /* Create a new priority information structure, and insert it
2306 pi
= xmalloc (sizeof (struct priority_info_s
));
2307 pi
->initializations_p
= 0;
2308 pi
->destructions_p
= 0;
2309 splay_tree_insert (priority_info_map
,
2310 (splay_tree_key
) priority
,
2311 (splay_tree_value
) pi
);
2314 pi
= (priority_info
) n
->value
;
2319 /* The effective initialization priority of a DECL. */
2321 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2322 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2323 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2325 /* Whether a DECL needs a guard to protect it against multiple
2328 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2329 || DECL_ONE_ONLY (decl) \
2330 || DECL_WEAK (decl)))
2332 /* Set up to handle the initialization or destruction of DECL. If
2333 INITP is nonzero, we are initializing the variable. Otherwise, we
2334 are destroying it. */
2337 one_static_initialization_or_destruction (tree decl
, tree init
, bool initp
)
2339 tree guard_if_stmt
= NULL_TREE
;
2342 /* If we are supposed to destruct and there's a trivial destructor,
2343 nothing has to be done. */
2345 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
2348 /* Trick the compiler into thinking we are at the file and line
2349 where DECL was declared so that error-messages make sense, and so
2350 that the debugger will show somewhat sensible file and line
2352 input_location
= DECL_SOURCE_LOCATION (decl
);
2358 Access control for implicit calls to the constructors,
2359 the conversion functions, or the destructor called to
2360 create and destroy a static data member is performed as
2361 if these calls appeared in the scope of the member's
2364 we pretend we are in a static member function of the class of
2365 which the DECL is a member. */
2366 if (member_p (decl
))
2368 DECL_CONTEXT (current_function_decl
) = DECL_CONTEXT (decl
);
2369 DECL_STATIC_FUNCTION_P (current_function_decl
) = 1;
2372 /* Assume we don't need a guard. */
2374 /* We need a guard if this is an object with external linkage that
2375 might be initialized in more than one place. (For example, a
2376 static data member of a template, when the data member requires
2378 if (NEEDS_GUARD_P (decl
))
2382 guard
= get_guard (decl
);
2384 /* When using __cxa_atexit, we just check the GUARD as we would
2385 for a local static. */
2386 if (flag_use_cxa_atexit
)
2388 /* When using __cxa_atexit, we never try to destroy
2389 anything from a static destructor. */
2391 guard_cond
= get_guard_cond (guard
);
2393 /* If we don't have __cxa_atexit, then we will be running
2394 destructors from .fini sections, or their equivalents. So,
2395 we need to know how many times we've tried to initialize this
2396 object. We do initializations only if the GUARD is zero,
2397 i.e., if we are the first to initialize the variable. We do
2398 destructions only if the GUARD is one, i.e., if we are the
2399 last to destroy the variable. */
2402 = cp_build_binary_op (EQ_EXPR
,
2403 build_unary_op (PREINCREMENT_EXPR
,
2409 = cp_build_binary_op (EQ_EXPR
,
2410 build_unary_op (PREDECREMENT_EXPR
,
2415 guard_if_stmt
= begin_if_stmt ();
2416 finish_if_stmt_cond (guard_cond
, guard_if_stmt
);
2420 /* If we're using __cxa_atexit, we have not already set the GUARD,
2421 so we must do so now. */
2422 if (guard
&& initp
&& flag_use_cxa_atexit
)
2423 finish_expr_stmt (set_guard (guard
));
2425 /* Perform the initialization or destruction. */
2429 finish_expr_stmt (init
);
2431 /* If we're using __cxa_atexit, register a function that calls the
2432 destructor for the object. */
2433 if (flag_use_cxa_atexit
)
2434 finish_expr_stmt (register_dtor_fn (decl
));
2437 finish_expr_stmt (build_cleanup (decl
));
2439 /* Finish the guard if-stmt, if necessary. */
2442 finish_then_clause (guard_if_stmt
);
2443 finish_if_stmt (guard_if_stmt
);
2446 /* Now that we're done with DECL we don't need to pretend to be a
2447 member of its class any longer. */
2448 DECL_CONTEXT (current_function_decl
) = NULL_TREE
;
2449 DECL_STATIC_FUNCTION_P (current_function_decl
) = 0;
2452 /* Generate code to do the initialization or destruction of the decls in VARS,
2453 a TREE_LIST of VAR_DECL with static storage duration.
2454 Whether initialization or destruction is performed is specified by INITP. */
2457 do_static_initialization_or_destruction (tree vars
, bool initp
)
2459 tree node
, init_if_stmt
, cond
;
2461 /* Build the outer if-stmt to check for initialization or destruction. */
2462 init_if_stmt
= begin_if_stmt ();
2463 cond
= initp
? integer_one_node
: integer_zero_node
;
2464 cond
= cp_build_binary_op (EQ_EXPR
,
2467 finish_if_stmt_cond (cond
, init_if_stmt
);
2471 tree decl
= TREE_VALUE (node
);
2472 tree priority_if_stmt
;
2476 /* If we don't need a destructor, there's nothing to do. Avoid
2477 creating a possibly empty if-stmt. */
2478 if (!initp
&& TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
2480 node
= TREE_CHAIN (node
);
2484 /* Remember that we had an initialization or finalization at this
2486 priority
= DECL_EFFECTIVE_INIT_PRIORITY (decl
);
2487 pi
= get_priority_info (priority
);
2489 pi
->initializations_p
= 1;
2491 pi
->destructions_p
= 1;
2493 /* Conditionalize this initialization on being in the right priority
2494 and being initializing/finalizing appropriately. */
2495 priority_if_stmt
= begin_if_stmt ();
2496 cond
= cp_build_binary_op (EQ_EXPR
,
2498 build_int_cst (NULL_TREE
, priority
));
2499 finish_if_stmt_cond (cond
, priority_if_stmt
);
2501 /* Process initializers with same priority. */
2503 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node
)) == priority
;
2504 node
= TREE_CHAIN (node
))
2505 /* Do one initialization or destruction. */
2506 one_static_initialization_or_destruction (TREE_VALUE (node
),
2507 TREE_PURPOSE (node
), initp
);
2509 /* Finish up the priority if-stmt body. */
2510 finish_then_clause (priority_if_stmt
);
2511 finish_if_stmt (priority_if_stmt
);
2515 /* Finish up the init/destruct if-stmt body. */
2516 finish_then_clause (init_if_stmt
);
2517 finish_if_stmt (init_if_stmt
);
2520 /* VARS is a list of variables with static storage duration which may
2521 need initialization and/or finalization. Remove those variables
2522 that don't really need to be initialized or finalized, and return
2523 the resulting list. The order in which the variables appear in
2524 VARS is in reverse order of the order in which they should actually
2525 be initialized. The list we return is in the unreversed order;
2526 i.e., the first variable should be initialized first. */
2529 prune_vars_needing_no_initialization (tree
*vars
)
2532 tree result
= NULL_TREE
;
2537 tree decl
= TREE_VALUE (t
);
2538 tree init
= TREE_PURPOSE (t
);
2540 /* Deal gracefully with error. */
2541 if (decl
== error_mark_node
)
2543 var
= &TREE_CHAIN (t
);
2547 /* The only things that can be initialized are variables. */
2548 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
2550 /* If this object is not defined, we don't need to do anything
2552 if (DECL_EXTERNAL (decl
))
2554 var
= &TREE_CHAIN (t
);
2558 /* Also, if the initializer already contains errors, we can bail
2560 if (init
&& TREE_CODE (init
) == TREE_LIST
2561 && value_member (error_mark_node
, init
))
2563 var
= &TREE_CHAIN (t
);
2567 /* This variable is going to need initialization and/or
2568 finalization, so we add it to the list. */
2569 *var
= TREE_CHAIN (t
);
2570 TREE_CHAIN (t
) = result
;
2577 /* Make sure we have told the back end about all the variables in
2581 write_out_vars (tree vars
)
2585 for (v
= vars
; v
; v
= TREE_CHAIN (v
))
2587 tree var
= TREE_VALUE (v
);
2588 if (!var_finalized_p (var
))
2590 import_export_decl (var
);
2591 rest_of_decl_compilation (var
, 1, 1);
2596 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
2597 (otherwise) that will initialize all gobal objects with static
2598 storage duration having the indicated PRIORITY. */
2601 generate_ctor_or_dtor_function (bool constructor_p
, int priority
,
2610 input_location
= *locus
;
2611 #ifdef USE_MAPPED_LOCATION
2617 /* We use `I' to indicate initialization and `D' to indicate
2619 function_key
= constructor_p
? 'I' : 'D';
2621 /* We emit the function lazily, to avoid generating empty
2622 global constructors and destructors. */
2625 /* For Objective-C++, we may need to initialize metadata found in this module.
2626 This must be done _before_ any other static initializations. */
2627 if (c_dialect_objc () && (priority
== DEFAULT_INIT_PRIORITY
)
2628 && constructor_p
&& objc_static_init_needed_p ())
2630 body
= start_objects (function_key
, priority
);
2631 static_ctors
= objc_generate_static_init_call (static_ctors
);
2634 /* Call the static storage duration function with appropriate
2636 for (i
= 0; VEC_iterate (tree
, ssdf_decls
, i
, fndecl
); ++i
)
2638 /* Calls to pure or const functions will expand to nothing. */
2639 if (! (flags_from_decl_or_type (fndecl
) & (ECF_CONST
| ECF_PURE
)))
2642 body
= start_objects (function_key
, priority
);
2644 arguments
= tree_cons (NULL_TREE
,
2645 build_int_cst (NULL_TREE
, priority
),
2647 arguments
= tree_cons (NULL_TREE
,
2648 build_int_cst (NULL_TREE
, constructor_p
),
2650 finish_expr_stmt (build_function_call (fndecl
, arguments
));
2654 /* If we're generating code for the DEFAULT_INIT_PRIORITY, throw in
2655 calls to any functions marked with attributes indicating that
2656 they should be called at initialization- or destruction-time. */
2657 if (priority
== DEFAULT_INIT_PRIORITY
)
2661 for (fns
= constructor_p
? static_ctors
: static_dtors
;
2663 fns
= TREE_CHAIN (fns
))
2665 fndecl
= TREE_VALUE (fns
);
2667 /* Calls to pure/const functions will expand to nothing. */
2668 if (! (flags_from_decl_or_type (fndecl
) & (ECF_CONST
| ECF_PURE
)))
2671 body
= start_objects (function_key
, priority
);
2672 finish_expr_stmt (build_function_call (fndecl
, NULL_TREE
));
2677 /* Close out the function. */
2679 finish_objects (function_key
, priority
, body
);
2682 /* Generate constructor and destructor functions for the priority
2686 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n
, void * data
)
2688 location_t
*locus
= data
;
2689 int priority
= (int) n
->key
;
2690 priority_info pi
= (priority_info
) n
->value
;
2692 /* Generate the functions themselves, but only if they are really
2694 if (pi
->initializations_p
2695 || (priority
== DEFAULT_INIT_PRIORITY
&& static_ctors
))
2696 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority
, locus
);
2697 if (pi
->destructions_p
2698 || (priority
== DEFAULT_INIT_PRIORITY
&& static_dtors
))
2699 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority
, locus
);
2701 /* Keep iterating. */
2705 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
2706 decls referenced from frontend specific constructs; it will be called
2707 only for language-specific tree nodes.
2709 Here we must deal with member pointers. */
2712 cxx_callgraph_analyze_expr (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
2713 tree from ATTRIBUTE_UNUSED
)
2717 switch (TREE_CODE (t
))
2720 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t
)))
2721 cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t
)));
2724 if (TREE_CODE (BASELINK_FUNCTIONS (t
)) == FUNCTION_DECL
)
2725 cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t
)));
2728 if (DECL_VTABLE_OR_VTT_P (t
))
2730 /* The ABI requires that all virtual tables be emitted
2731 whenever one of them is. */
2733 for (vtbl
= CLASSTYPE_VTABLES (DECL_CONTEXT (t
));
2735 vtbl
= TREE_CHAIN (vtbl
))
2736 mark_decl_referenced (vtbl
);
2738 else if (DECL_CONTEXT (t
)
2739 && TREE_CODE (DECL_CONTEXT (t
)) == FUNCTION_DECL
)
2740 /* If we need a static variable in a function, then we
2741 need the containing function. */
2742 mark_decl_referenced (DECL_CONTEXT (t
));
2751 /* Java requires that we be able to reference a local address for a
2752 method, and not be confused by PLT entries. If hidden aliases are
2753 supported, emit one for each java function that we've emitted. */
2756 build_java_method_aliases (void)
2758 struct cgraph_node
*node
;
2760 #ifndef HAVE_GAS_HIDDEN
2764 for (node
= cgraph_nodes
; node
; node
= node
->next
)
2766 tree fndecl
= node
->decl
;
2768 if (TREE_ASM_WRITTEN (fndecl
)
2769 && DECL_CONTEXT (fndecl
)
2770 && TYPE_P (DECL_CONTEXT (fndecl
))
2771 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl
))
2772 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl
))
2774 /* Mangle the name in a predictable way; we need to reference
2775 this from a java compiled object file. */
2776 tree oid
, nid
, alias
;
2780 oid
= DECL_ASSEMBLER_NAME (fndecl
);
2781 oname
= IDENTIFIER_POINTER (oid
);
2782 gcc_assert (oname
[0] == '_' && oname
[1] == 'Z');
2783 nname
= ACONCAT (("_ZGA", oname
+2, NULL
));
2784 nid
= get_identifier (nname
);
2786 alias
= make_alias_for (fndecl
, nid
);
2787 TREE_PUBLIC (alias
) = 1;
2788 DECL_VISIBILITY (alias
) = VISIBILITY_HIDDEN
;
2790 assemble_alias (alias
, oid
);
2795 /* This routine is called from the last rule in yyparse ().
2796 Its job is to create all the code needed to initialize and
2797 destroy the global aggregates. We do the destruction
2798 first, since that way we only need to reverse the decls once. */
2801 cp_finish_file (void)
2807 unsigned ssdf_count
= 0;
2811 locus
= input_location
;
2814 /* Bad parse errors. Just forget about it. */
2815 if (! global_bindings_p () || current_class_type
|| decl_namespace_list
)
2819 c_common_write_pch ();
2821 #ifdef USE_MAPPED_LOCATION
2824 /* Otherwise, GDB can get confused, because in only knows
2825 about source for LINENO-1 lines. */
2829 /* We now have to write out all the stuff we put off writing out.
2832 o Template specializations that we have not yet instantiated,
2833 but which are needed.
2834 o Initialization and destruction for non-local objects with
2835 static storage duration. (Local objects with static storage
2836 duration are initialized when their scope is first entered,
2837 and are cleaned up via atexit.)
2838 o Virtual function tables.
2840 All of these may cause others to be needed. For example,
2841 instantiating one function may cause another to be needed, and
2842 generating the initializer for an object may cause templates to be
2843 instantiated, etc., etc. */
2845 timevar_push (TV_VARCONST
);
2847 emit_support_tinfos ();
2856 /* If there are templates that we've put off instantiating, do
2858 instantiate_pending_templates (retries
);
2861 /* Write out virtual tables as required. Note that writing out
2862 the virtual table for a template class may cause the
2863 instantiation of members of that class. If we write out
2864 vtables then we remove the class from our list so we don't
2865 have to look at it again. */
2867 while (keyed_classes
!= NULL_TREE
2868 && maybe_emit_vtables (TREE_VALUE (keyed_classes
)))
2871 keyed_classes
= TREE_CHAIN (keyed_classes
);
2877 tree next
= TREE_CHAIN (t
);
2881 if (maybe_emit_vtables (TREE_VALUE (next
)))
2884 TREE_CHAIN (t
) = TREE_CHAIN (next
);
2889 next
= TREE_CHAIN (t
);
2893 /* Write out needed type info variables. We have to be careful
2894 looping through unemitted decls, because emit_tinfo_decl may
2895 cause other variables to be needed. New elements will be
2896 appended, and we remove from the vector those that actually
2898 for (i
= VEC_length (tree
, unemitted_tinfo_decls
);
2899 VEC_iterate (tree
, unemitted_tinfo_decls
, --i
, t
);)
2900 if (emit_tinfo_decl (t
))
2903 VEC_unordered_remove (tree
, unemitted_tinfo_decls
, i
);
2906 /* The list of objects with static storage duration is built up
2907 in reverse order. We clear STATIC_AGGREGATES so that any new
2908 aggregates added during the initialization of these will be
2909 initialized in the correct order when we next come around the
2911 vars
= prune_vars_needing_no_initialization (&static_aggregates
);
2915 /* We need to start a new initialization function each time
2916 through the loop. That's because we need to know which
2917 vtables have been referenced, and TREE_SYMBOL_REFERENCED
2918 isn't computed until a function is finished, and written
2919 out. That's a deficiency in the back-end. When this is
2920 fixed, these initialization functions could all become
2921 inline, with resulting performance improvements. */
2924 /* Set the line and file, so that it is obviously not from
2926 input_location
= locus
;
2927 ssdf_body
= start_static_storage_duration_function (ssdf_count
);
2929 /* Make sure the back end knows about all the variables. */
2930 write_out_vars (vars
);
2932 /* First generate code to do all the initializations. */
2934 do_static_initialization_or_destruction (vars
, /*initp=*/true);
2936 /* Then, generate code to do all the destructions. Do these
2937 in reverse order so that the most recently constructed
2938 variable is the first destroyed. If we're using
2939 __cxa_atexit, then we don't need to do this; functions
2940 were registered at initialization time to destroy the
2942 if (!flag_use_cxa_atexit
&& vars
)
2944 vars
= nreverse (vars
);
2945 do_static_initialization_or_destruction (vars
, /*initp=*/false);
2950 /* Finish up the static storage duration function for this
2952 input_location
= locus
;
2953 finish_static_storage_duration_function (ssdf_body
);
2955 /* All those initializations and finalizations might cause
2956 us to need more inline functions, more template
2957 instantiations, etc. */
2960 #ifdef USE_MAPPED_LOCATION
2967 /* Go through the set of inline functions whose bodies have not
2968 been emitted yet. If out-of-line copies of these functions
2969 are required, emit them. */
2970 for (i
= 0; VEC_iterate (tree
, deferred_fns
, i
, decl
); ++i
)
2972 /* Does it need synthesizing? */
2973 if (DECL_ARTIFICIAL (decl
) && ! DECL_INITIAL (decl
)
2974 && (! DECL_REALLY_EXTERN (decl
) || DECL_INLINE (decl
)))
2976 /* Even though we're already at the top-level, we push
2977 there again. That way, when we pop back a few lines
2978 hence, all of our state is restored. Otherwise,
2979 finish_function doesn't clean things up, and we end
2980 up with CURRENT_FUNCTION_DECL set. */
2981 push_to_top_level ();
2982 /* The decl's location will mark where it was first
2983 needed. Save that so synthesize method can indicate
2984 where it was needed from, in case of error */
2985 input_location
= DECL_SOURCE_LOCATION (decl
);
2986 synthesize_method (decl
);
2987 pop_from_top_level ();
2991 if (!DECL_SAVED_TREE (decl
))
2994 /* We lie to the back-end, pretending that some functions
2995 are not defined when they really are. This keeps these
2996 functions from being put out unnecessarily. But, we must
2997 stop lying when the functions are referenced, or if they
2998 are not comdat since they need to be put out now. If
2999 DECL_INTERFACE_KNOWN, then we have already set
3000 DECL_EXTERNAL appropriately, so there's no need to check
3001 again, and we do not want to clear DECL_EXTERNAL if a
3002 previous call to import_export_decl set it.
3004 This is done in a separate for cycle, because if some
3005 deferred function is contained in another deferred
3006 function later in deferred_fns varray,
3007 rest_of_compilation would skip this function and we
3008 really cannot expand the same function twice. */
3009 import_export_decl (decl
);
3010 if (DECL_NOT_REALLY_EXTERN (decl
)
3011 && DECL_INITIAL (decl
)
3012 && decl_needed_p (decl
))
3013 DECL_EXTERNAL (decl
) = 0;
3015 /* If we're going to need to write this function out, and
3016 there's already a body for it, create RTL for it now.
3017 (There might be no body if this is a method we haven't
3018 gotten around to synthesizing yet.) */
3019 if (!DECL_EXTERNAL (decl
)
3020 && decl_needed_p (decl
)
3021 && !TREE_ASM_WRITTEN (decl
)
3022 && !cgraph_node (decl
)->local
.finalized
)
3024 /* We will output the function; no longer consider it in this
3026 DECL_DEFER_OUTPUT (decl
) = 0;
3027 /* Generate RTL for this function now that we know we
3029 expand_or_defer_fn (decl
);
3030 /* If we're compiling -fsyntax-only pretend that this
3031 function has been written out so that we don't try to
3033 if (flag_syntax_only
)
3034 TREE_ASM_WRITTEN (decl
) = 1;
3039 if (walk_namespaces (wrapup_globals_for_namespace
, /*data=*/0))
3042 /* Static data members are just like namespace-scope globals. */
3043 for (i
= 0; VEC_iterate (tree
, pending_statics
, i
, decl
); ++i
)
3045 if (var_finalized_p (decl
) || DECL_REALLY_EXTERN (decl
))
3047 import_export_decl (decl
);
3048 /* If this static data member is needed, provide it to the
3050 if (DECL_NOT_REALLY_EXTERN (decl
) && decl_needed_p (decl
))
3051 DECL_EXTERNAL (decl
) = 0;
3053 if (VEC_length (tree
, pending_statics
) != 0
3054 && wrapup_global_declarations (VEC_address (tree
, pending_statics
),
3055 VEC_length (tree
, pending_statics
)))
3062 /* All used inline functions must have a definition at this point. */
3063 for (i
= 0; VEC_iterate (tree
, deferred_fns
, i
, decl
); ++i
)
3065 if (/* Check online inline functions that were actually used. */
3066 TREE_USED (decl
) && DECL_DECLARED_INLINE_P (decl
)
3067 /* If the definition actually was available here, then the
3068 fact that the function was not defined merely represents
3069 that for some reason (use of a template repository,
3070 #pragma interface, etc.) we decided not to emit the
3072 && !DECL_INITIAL (decl
)
3073 /* An explicit instantiation can be used to specify
3074 that the body is in another unit. It will have
3075 already verified there was a definition. */
3076 && !DECL_EXPLICIT_INSTANTIATION (decl
))
3078 warning (0, "inline function %q+D used but never defined", decl
);
3079 /* Avoid a duplicate warning from check_global_declaration_1. */
3080 TREE_NO_WARNING (decl
) = 1;
3084 /* We give C linkage to static constructors and destructors. */
3085 push_lang_context (lang_name_c
);
3087 /* Generate initialization and destruction functions for all
3088 priorities for which they are required. */
3089 if (priority_info_map
)
3090 splay_tree_foreach (priority_info_map
,
3091 generate_ctor_and_dtor_functions_for_priority
,
3095 /* If we have a ctor or this is obj-c++ and we need a static init,
3096 call generate_ctor_or_dtor_function. */
3097 if (static_ctors
|| (c_dialect_objc () && objc_static_init_needed_p ()))
3098 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3099 DEFAULT_INIT_PRIORITY
, &locus
);
3101 generate_ctor_or_dtor_function (/*constructor_p=*/false,
3102 DEFAULT_INIT_PRIORITY
, &locus
);
3105 /* We're done with the splay-tree now. */
3106 if (priority_info_map
)
3107 splay_tree_delete (priority_info_map
);
3109 /* Generate any missing aliases. */
3110 maybe_apply_pending_pragma_weaks ();
3112 /* We're done with static constructors, so we can go back to "C++"
3114 pop_lang_context ();
3116 cgraph_finalize_compilation_unit ();
3119 /* Now, issue warnings about static, but not defined, functions,
3120 etc., and emit debugging information. */
3121 walk_namespaces (wrapup_globals_for_namespace
, /*data=*/&reconsider
);
3122 if (VEC_length (tree
, pending_statics
) != 0)
3124 check_global_declarations (VEC_address (tree
, pending_statics
),
3125 VEC_length (tree
, pending_statics
));
3126 emit_debug_global_declarations (VEC_address (tree
, pending_statics
),
3127 VEC_length (tree
, pending_statics
));
3130 /* Generate hidden aliases for Java. */
3131 build_java_method_aliases ();
3135 /* The entire file is now complete. If requested, dump everything
3139 FILE *stream
= dump_begin (TDI_tu
, &flags
);
3143 dump_node (global_namespace
, flags
& ~TDF_SLIM
, stream
);
3144 dump_end (TDI_tu
, stream
);
3148 timevar_pop (TV_VARCONST
);
3150 if (flag_detailed_statistics
)
3152 dump_tree_statistics ();
3153 dump_time_statistics ();
3155 input_location
= locus
;
3157 #ifdef ENABLE_CHECKING
3158 validate_conversion_obstack ();
3159 #endif /* ENABLE_CHECKING */
3162 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3163 function to call in parse-tree form; it has not yet been
3164 semantically analyzed. ARGS are the arguments to the function.
3165 They have already been semantically analyzed. */
3168 build_offset_ref_call_from_tree (tree fn
, tree args
)
3177 object
= TREE_OPERAND (fn
, 0);
3179 if (processing_template_decl
)
3181 gcc_assert (TREE_CODE (fn
) == DOTSTAR_EXPR
3182 || TREE_CODE (fn
) == MEMBER_REF
);
3183 if (type_dependent_expression_p (fn
)
3184 || any_type_dependent_arguments_p (args
))
3185 return build_min_nt (CALL_EXPR
, fn
, args
, NULL_TREE
);
3187 /* Transform the arguments and add the implicit "this"
3188 parameter. That must be done before the FN is transformed
3189 because we depend on the form of FN. */
3190 args
= build_non_dependent_args (args
);
3191 if (TREE_CODE (fn
) == DOTSTAR_EXPR
)
3192 object
= build_unary_op (ADDR_EXPR
, object
, 0);
3193 object
= build_non_dependent_expr (object
);
3194 args
= tree_cons (NULL_TREE
, object
, args
);
3195 /* Now that the arguments are done, transform FN. */
3196 fn
= build_non_dependent_expr (fn
);
3199 /* A qualified name corresponding to a bound pointer-to-member is
3200 represented as an OFFSET_REF:
3202 struct B { void g(); };
3204 void B::g() { (this->*p)(); } */
3205 if (TREE_CODE (fn
) == OFFSET_REF
)
3207 tree object_addr
= build_unary_op (ADDR_EXPR
, object
, 0);
3208 fn
= TREE_OPERAND (fn
, 1);
3209 fn
= get_member_function_from_ptrfunc (&object_addr
, fn
);
3210 args
= tree_cons (NULL_TREE
, object_addr
, args
);
3213 expr
= build_function_call (fn
, args
);
3214 if (processing_template_decl
&& expr
!= error_mark_node
)
3215 return build_min_non_dep (CALL_EXPR
, expr
, orig_fn
, orig_args
, NULL_TREE
);
3221 check_default_args (tree x
)
3223 tree arg
= TYPE_ARG_TYPES (TREE_TYPE (x
));
3224 bool saw_def
= false;
3225 int i
= 0 - (TREE_CODE (TREE_TYPE (x
)) == METHOD_TYPE
);
3226 for (; arg
&& arg
!= void_list_node
; arg
= TREE_CHAIN (arg
), ++i
)
3228 if (TREE_PURPOSE (arg
))
3232 error ("default argument missing for parameter %P of %q+#D", i
, x
);
3233 TREE_PURPOSE (arg
) = error_mark_node
;
3238 /* Mark DECL (eithet a _DECL or a BASELINK) as "used" in the program.
3239 If DECL is a specialization or implicitly declared class member,
3240 generate the actual definition. */
3243 mark_used (tree decl
)
3245 HOST_WIDE_INT saved_processing_template_decl
= 0;
3247 /* If DECL is a BASELINK for a single function, then treat it just
3248 like the DECL for the function. Otherwise, if the BASELINK is
3249 for an overloaded function, we don't know which function was
3250 actually used until after overload resolution. */
3251 if (TREE_CODE (decl
) == BASELINK
)
3253 decl
= BASELINK_FUNCTIONS (decl
);
3254 if (really_overloaded_fn (decl
))
3256 decl
= OVL_CURRENT (decl
);
3259 TREE_USED (decl
) = 1;
3260 if (DECL_CLONED_FUNCTION_P (decl
))
3261 TREE_USED (DECL_CLONED_FUNCTION (decl
)) = 1;
3262 /* If we don't need a value, then we don't need to synthesize DECL. */
3263 if (skip_evaluation
)
3265 /* Normally, we can wait until instantiation-time to synthesize
3266 DECL. However, if DECL is a static data member initialized with
3267 a constant, we need the value right now because a reference to
3268 such a data member is not value-dependent. */
3269 if (TREE_CODE (decl
) == VAR_DECL
3270 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
)
3271 && DECL_CLASS_SCOPE_P (decl
))
3273 /* Don't try to instantiate members of dependent types. We
3274 cannot just use dependent_type_p here because this function
3275 may be called from fold_non_dependent_expr, and then we may
3276 see dependent types, even though processing_template_decl
3278 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl
)))
3279 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl
))))
3281 /* Pretend that we are not in a template, even if we are, so
3282 that the static data member initializer will be processed. */
3283 saved_processing_template_decl
= processing_template_decl
;
3284 processing_template_decl
= 0;
3287 if (processing_template_decl
)
3290 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (decl
)
3291 && !TREE_ASM_WRITTEN (decl
))
3292 /* Remember it, so we can check it was defined. */
3294 if (DECL_DEFERRED_FN (decl
))
3297 /* Remember the current location for a function we will end up
3298 synthesizing. Then we can inform the user where it was
3299 required in the case of error. */
3300 if (DECL_ARTIFICIAL (decl
) && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
)
3301 && !DECL_THUNK_P (decl
))
3302 DECL_SOURCE_LOCATION (decl
) = input_location
;
3304 note_vague_linkage_fn (decl
);
3307 assemble_external (decl
);
3309 /* Is it a synthesized method that needs to be synthesized? */
3310 if (TREE_CODE (decl
) == FUNCTION_DECL
3311 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
)
3312 && DECL_ARTIFICIAL (decl
)
3313 && !DECL_THUNK_P (decl
)
3314 && ! DECL_INITIAL (decl
)
3315 /* Kludge: don't synthesize for default args. Unfortunately this
3316 rules out initializers of namespace-scoped objects too, but
3317 it's sort-of ok if the implicit ctor or dtor decl keeps
3318 pointing to the class location. */
3319 && current_function_decl
)
3321 synthesize_method (decl
);
3322 /* If we've already synthesized the method we don't need to
3323 instantiate it, so we can return right away. */
3327 /* If this is a function or variable that is an instance of some
3328 template, we now know that we will need to actually do the
3329 instantiation. We check that DECL is not an explicit
3330 instantiation because that is not checked in instantiate_decl. */
3331 if ((DECL_NON_THUNK_FUNCTION_P (decl
) || TREE_CODE (decl
) == VAR_DECL
)
3332 && DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
)
3333 && (!DECL_EXPLICIT_INSTANTIATION (decl
)
3334 || (TREE_CODE (decl
) == FUNCTION_DECL
3335 && DECL_INLINE (DECL_TEMPLATE_RESULT
3336 (template_for_substitution (decl
))))
3337 /* We need to instantiate static data members so that there
3338 initializers are available in integral constant
3340 || (TREE_CODE (decl
) == VAR_DECL
3341 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
))))
3342 /* We put off instantiating functions in order to improve compile
3343 times. Maintaining a stack of active functions is expensive,
3344 and the inliner knows to instantiate any functions it might
3346 instantiate_decl (decl
, /*defer_ok=*/true,
3347 /*expl_inst_class_mem_p=*/false);
3349 processing_template_decl
= saved_processing_template_decl
;
3352 #include "gt-cp-decl2.h"