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
);
85 static void determine_visibility_from_class (tree
, tree
);
87 /* A list of static class variables. This is needed, because a
88 static class variable can be declared inside the class without
89 an initializer, and then initialized, statically, outside the class. */
90 static GTY(()) VEC(tree
,gc
) *pending_statics
;
92 /* A list of functions which were declared inline, but which we
93 may need to emit outline anyway. */
94 static GTY(()) VEC(tree
,gc
) *deferred_fns
;
96 /* Nonzero if we're done parsing and into end-of-file activities. */
100 /* Functions called along with real static constructors and destructors. */
107 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
108 FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
109 that apply to the function). */
112 build_memfn_type (tree fntype
, tree ctype
, cp_cv_quals quals
)
117 if (fntype
== error_mark_node
|| ctype
== error_mark_node
)
118 return error_mark_node
;
120 type_quals
= quals
& ~TYPE_QUAL_RESTRICT
;
121 ctype
= cp_build_qualified_type (ctype
, type_quals
);
122 fntype
= build_method_type_directly (ctype
, TREE_TYPE (fntype
),
123 (TREE_CODE (fntype
) == METHOD_TYPE
124 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype
))
125 : TYPE_ARG_TYPES (fntype
)));
126 raises
= TYPE_RAISES_EXCEPTIONS (fntype
);
128 fntype
= build_exception_variant (fntype
, raises
);
133 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
137 cp_build_parm_decl (tree name
, tree type
)
139 tree parm
= build_decl (PARM_DECL
, name
, type
);
140 /* DECL_ARG_TYPE is only used by the back end and the back end never
142 if (!processing_template_decl
)
143 DECL_ARG_TYPE (parm
) = type_passed_as (type
);
147 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
151 build_artificial_parm (tree name
, tree type
)
153 tree parm
= cp_build_parm_decl (name
, type
);
154 DECL_ARTIFICIAL (parm
) = 1;
155 /* All our artificial parms are implicitly `const'; they cannot be
157 TREE_READONLY (parm
) = 1;
161 /* Constructors for types with virtual baseclasses need an "in-charge" flag
162 saying whether this constructor is responsible for initialization of
163 virtual baseclasses or not. All destructors also need this "in-charge"
164 flag, which additionally determines whether or not the destructor should
165 free the memory for the object.
167 This function adds the "in-charge" flag to member function FN if
168 appropriate. It is called from grokclassfn and tsubst.
169 FN must be either a constructor or destructor.
171 The in-charge flag follows the 'this' parameter, and is followed by the
172 VTT parm (if any), then the user-written parms. */
175 maybe_retrofit_in_chrg (tree fn
)
177 tree basetype
, arg_types
, parms
, parm
, fntype
;
179 /* If we've already add the in-charge parameter don't do it again. */
180 if (DECL_HAS_IN_CHARGE_PARM_P (fn
))
183 /* When processing templates we can't know, in general, whether or
184 not we're going to have virtual baseclasses. */
185 if (processing_template_decl
)
188 /* We don't need an in-charge parameter for constructors that don't
189 have virtual bases. */
190 if (DECL_CONSTRUCTOR_P (fn
)
191 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn
)))
194 arg_types
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
195 basetype
= TREE_TYPE (TREE_VALUE (arg_types
));
196 arg_types
= TREE_CHAIN (arg_types
);
198 parms
= TREE_CHAIN (DECL_ARGUMENTS (fn
));
200 /* If this is a subobject constructor or destructor, our caller will
201 pass us a pointer to our VTT. */
202 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn
)))
204 parm
= build_artificial_parm (vtt_parm_identifier
, vtt_parm_type
);
206 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
207 TREE_CHAIN (parm
) = parms
;
210 /* ...and then to TYPE_ARG_TYPES. */
211 arg_types
= hash_tree_chain (vtt_parm_type
, arg_types
);
213 DECL_HAS_VTT_PARM_P (fn
) = 1;
216 /* Then add the in-charge parm (before the VTT parm). */
217 parm
= build_artificial_parm (in_charge_identifier
, integer_type_node
);
218 TREE_CHAIN (parm
) = parms
;
220 arg_types
= hash_tree_chain (integer_type_node
, arg_types
);
222 /* Insert our new parameter(s) into the list. */
223 TREE_CHAIN (DECL_ARGUMENTS (fn
)) = parms
;
225 /* And rebuild the function type. */
226 fntype
= build_method_type_directly (basetype
, TREE_TYPE (TREE_TYPE (fn
)),
228 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn
)))
229 fntype
= build_exception_variant (fntype
,
230 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn
)));
231 TREE_TYPE (fn
) = fntype
;
233 /* Now we've got the in-charge parameter. */
234 DECL_HAS_IN_CHARGE_PARM_P (fn
) = 1;
237 /* Classes overload their constituent function names automatically.
238 When a function name is declared in a record structure,
239 its name is changed to it overloaded name. Since names for
240 constructors and destructors can conflict, we place a leading
243 CNAME is the name of the class we are grokking for.
245 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
247 FLAGS contains bits saying what's special about today's
248 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
250 If FUNCTION is a destructor, then we must add the `auto-delete' field
251 as a second parameter. There is some hair associated with the fact
252 that we must "declare" this variable in the manner consistent with the
253 way the rest of the arguments were declared.
255 QUALS are the qualifiers for the this pointer. */
258 grokclassfn (tree ctype
, tree function
, enum overload_flags flags
)
260 tree fn_name
= DECL_NAME (function
);
262 /* Even within an `extern "C"' block, members get C++ linkage. See
263 [dcl.link] for details. */
264 SET_DECL_LANGUAGE (function
, lang_cplusplus
);
266 if (fn_name
== NULL_TREE
)
268 error ("name missing for member function");
269 fn_name
= get_identifier ("<anonymous>");
270 DECL_NAME (function
) = fn_name
;
273 DECL_CONTEXT (function
) = ctype
;
275 if (flags
== DTOR_FLAG
)
276 DECL_DESTRUCTOR_P (function
) = 1;
278 if (flags
== DTOR_FLAG
|| DECL_CONSTRUCTOR_P (function
))
279 maybe_retrofit_in_chrg (function
);
282 /* Create an ARRAY_REF, checking for the user doing things backwards
286 grok_array_decl (tree array_expr
, tree index_exp
)
290 tree orig_array_expr
= array_expr
;
291 tree orig_index_exp
= index_exp
;
293 if (error_operand_p (array_expr
) || error_operand_p (index_exp
))
294 return error_mark_node
;
296 if (processing_template_decl
)
298 if (type_dependent_expression_p (array_expr
)
299 || type_dependent_expression_p (index_exp
))
300 return build_min_nt (ARRAY_REF
, array_expr
, index_exp
,
301 NULL_TREE
, NULL_TREE
);
302 array_expr
= build_non_dependent_expr (array_expr
);
303 index_exp
= build_non_dependent_expr (index_exp
);
306 type
= TREE_TYPE (array_expr
);
308 type
= non_reference (type
);
310 /* If they have an `operator[]', use that. */
311 if (IS_AGGR_TYPE (type
) || IS_AGGR_TYPE (TREE_TYPE (index_exp
)))
312 expr
= build_new_op (ARRAY_REF
, LOOKUP_NORMAL
,
313 array_expr
, index_exp
, NULL_TREE
,
314 /*overloaded_p=*/NULL
);
319 /* Otherwise, create an ARRAY_REF for a pointer or array type.
320 It is a little-known fact that, if `a' is an array and `i' is
321 an int, you can write `i[a]', which means the same thing as
323 if (TREE_CODE (type
) == ARRAY_TYPE
)
326 p1
= build_expr_type_conversion (WANT_POINTER
, array_expr
, false);
328 if (TREE_CODE (TREE_TYPE (index_exp
)) == ARRAY_TYPE
)
331 p2
= build_expr_type_conversion (WANT_POINTER
, index_exp
, false);
333 i1
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
, array_expr
,
335 i2
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
, index_exp
,
338 if ((p1
&& i2
) && (i1
&& p2
))
339 error ("ambiguous conversion for array subscript");
342 array_expr
= p1
, index_exp
= i2
;
344 array_expr
= p2
, index_exp
= i1
;
347 error ("invalid types %<%T[%T]%> for array subscript",
348 type
, TREE_TYPE (index_exp
));
349 return error_mark_node
;
352 if (array_expr
== error_mark_node
|| index_exp
== error_mark_node
)
353 error ("ambiguous conversion for array subscript");
355 expr
= build_array_ref (array_expr
, index_exp
);
357 if (processing_template_decl
&& expr
!= error_mark_node
)
358 return build_min_non_dep (ARRAY_REF
, expr
, orig_array_expr
, orig_index_exp
,
359 NULL_TREE
, NULL_TREE
);
363 /* Given the cast expression EXP, checking out its validity. Either return
364 an error_mark_node if there was an unavoidable error, return a cast to
365 void for trying to delete a pointer w/ the value 0, or return the
366 call to delete. If DOING_VEC is true, we handle things differently
367 for doing an array delete.
368 Implements ARM $5.3.4. This is called from the parser. */
371 delete_sanity (tree exp
, tree size
, bool doing_vec
, int use_global_delete
)
375 if (exp
== error_mark_node
)
378 if (processing_template_decl
)
380 t
= build_min (DELETE_EXPR
, void_type_node
, exp
, size
);
381 DELETE_EXPR_USE_GLOBAL (t
) = use_global_delete
;
382 DELETE_EXPR_USE_VEC (t
) = doing_vec
;
383 TREE_SIDE_EFFECTS (t
) = 1;
387 /* An array can't have been allocated by new, so complain. */
388 if (TREE_CODE (exp
) == VAR_DECL
389 && TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
390 warning (0, "deleting array %q#D", exp
);
392 t
= build_expr_type_conversion (WANT_POINTER
, exp
, true);
394 if (t
== NULL_TREE
|| t
== error_mark_node
)
396 error ("type %q#T argument given to %<delete%>, expected pointer",
398 return error_mark_node
;
401 type
= TREE_TYPE (t
);
403 /* As of Valley Forge, you can delete a pointer to const. */
405 /* You can't delete functions. */
406 if (TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
408 error ("cannot delete a function. Only pointer-to-objects are "
409 "valid arguments to %<delete%>");
410 return error_mark_node
;
413 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
414 if (TREE_CODE (TREE_TYPE (type
)) == VOID_TYPE
)
416 warning (0, "deleting %qT is undefined", type
);
420 /* Deleting a pointer with the value zero is valid and has no effect. */
421 if (integer_zerop (t
))
422 return build1 (NOP_EXPR
, void_type_node
, t
);
425 return build_vec_delete (t
, /*maxindex=*/NULL_TREE
,
426 sfk_deleting_destructor
,
429 return build_delete (type
, t
, sfk_deleting_destructor
,
430 LOOKUP_NORMAL
, use_global_delete
);
433 /* Report an error if the indicated template declaration is not the
434 sort of thing that should be a member template. */
437 check_member_template (tree tmpl
)
441 gcc_assert (TREE_CODE (tmpl
) == TEMPLATE_DECL
);
442 decl
= DECL_TEMPLATE_RESULT (tmpl
);
444 if (TREE_CODE (decl
) == FUNCTION_DECL
445 || (TREE_CODE (decl
) == TYPE_DECL
446 && IS_AGGR_TYPE (TREE_TYPE (decl
))))
448 /* The parser rejects template declarations in local classes. */
449 gcc_assert (!current_function_decl
);
450 /* The parser rejects any use of virtual in a function template. */
451 gcc_assert (!(TREE_CODE (decl
) == FUNCTION_DECL
452 && DECL_VIRTUAL_P (decl
)));
454 /* The debug-information generating code doesn't know what to do
455 with member templates. */
456 DECL_IGNORED_P (tmpl
) = 1;
459 error ("template declaration of %q#D", decl
);
462 /* Return true iff TYPE is a valid Java parameter or return type. */
465 acceptable_java_type (tree type
)
467 if (type
== error_mark_node
)
470 if (TREE_CODE (type
) == VOID_TYPE
|| TYPE_FOR_JAVA (type
))
472 if (TREE_CODE (type
) == POINTER_TYPE
|| TREE_CODE (type
) == REFERENCE_TYPE
)
474 type
= TREE_TYPE (type
);
475 if (TREE_CODE (type
) == RECORD_TYPE
)
478 if (! TYPE_FOR_JAVA (type
))
480 if (! CLASSTYPE_TEMPLATE_INFO (type
))
482 args
= CLASSTYPE_TI_ARGS (type
);
483 i
= TREE_VEC_LENGTH (args
);
486 type
= TREE_VEC_ELT (args
, i
);
487 if (TREE_CODE (type
) == POINTER_TYPE
)
488 type
= TREE_TYPE (type
);
489 if (! TYPE_FOR_JAVA (type
))
498 /* For a METHOD in a Java class CTYPE, return true if
499 the parameter and return types are valid Java types.
500 Otherwise, print appropriate error messages, and return false. */
503 check_java_method (tree method
)
506 tree arg_types
= TYPE_ARG_TYPES (TREE_TYPE (method
));
507 tree ret_type
= TREE_TYPE (TREE_TYPE (method
));
509 if (!acceptable_java_type (ret_type
))
511 error ("Java method %qD has non-Java return type %qT",
516 arg_types
= TREE_CHAIN (arg_types
);
517 if (DECL_HAS_IN_CHARGE_PARM_P (method
))
518 arg_types
= TREE_CHAIN (arg_types
);
519 if (DECL_HAS_VTT_PARM_P (method
))
520 arg_types
= TREE_CHAIN (arg_types
);
522 for (; arg_types
!= NULL_TREE
; arg_types
= TREE_CHAIN (arg_types
))
524 tree type
= TREE_VALUE (arg_types
);
525 if (!acceptable_java_type (type
))
527 if (type
!= error_mark_node
)
528 error ("Java method %qD has non-Java parameter type %qT",
536 /* Sanity check: report error if this function FUNCTION is not
537 really a member of the class (CTYPE) it is supposed to belong to.
538 TEMPLATE_PARMS is used to specify the template parameters of a member
539 template passed as FUNCTION_DECL. If the member template is passed as a
540 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
541 from the declaration. If the function is not a function template, it
543 It returns the original declaration for the function, or NULL_TREE
544 if no declaration was found (and an error was emitted). */
547 check_classfn (tree ctype
, tree function
, tree template_parms
)
553 if (DECL_USE_TEMPLATE (function
)
554 && !(TREE_CODE (function
) == TEMPLATE_DECL
555 && DECL_TEMPLATE_SPECIALIZATION (function
))
556 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function
)))
557 /* Since this is a specialization of a member template,
558 we're not going to find the declaration in the class.
561 struct S { template <typename T> void f(T); };
562 template <> void S::f(int);
564 we're not going to find `S::f(int)', but there's no
565 reason we should, either. We let our callers know we didn't
566 find the method, but we don't complain. */
569 /* Basic sanity check: for a template function, the template parameters
570 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
571 if (TREE_CODE (function
) == TEMPLATE_DECL
)
573 gcc_assert (!template_parms
574 || comp_template_parms (template_parms
,
575 DECL_TEMPLATE_PARMS (function
)));
576 template_parms
= DECL_TEMPLATE_PARMS (function
);
579 /* OK, is this a definition of a member template? */
580 is_template
= (template_parms
!= NULL_TREE
);
582 /* We must enter the scope here, because conversion operators are
583 named by target type, and type equivalence relies on typenames
584 resolving within the scope of CTYPE. */
585 pushed_scope
= push_scope (ctype
);
586 ix
= class_method_index_for_fn (complete_type (ctype
), function
);
589 VEC(tree
,gc
) *methods
= CLASSTYPE_METHOD_VEC (ctype
);
590 tree fndecls
, fndecl
= 0;
592 const char *format
= NULL
;
594 for (fndecls
= VEC_index (tree
, methods
, ix
);
595 fndecls
; fndecls
= OVL_NEXT (fndecls
))
599 fndecl
= OVL_CURRENT (fndecls
);
600 p1
= TYPE_ARG_TYPES (TREE_TYPE (function
));
601 p2
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
603 /* We cannot simply call decls_match because this doesn't
604 work for static member functions that are pretending to
605 be methods, and because the name may have been changed by
608 /* Get rid of the this parameter on functions that become
610 if (DECL_STATIC_FUNCTION_P (fndecl
)
611 && TREE_CODE (TREE_TYPE (function
)) == METHOD_TYPE
)
612 p1
= TREE_CHAIN (p1
);
614 /* A member template definition only matches a member template
616 if (is_template
!= (TREE_CODE (fndecl
) == TEMPLATE_DECL
))
619 if (same_type_p (TREE_TYPE (TREE_TYPE (function
)),
620 TREE_TYPE (TREE_TYPE (fndecl
)))
621 && compparms (p1
, p2
)
623 || comp_template_parms (template_parms
,
624 DECL_TEMPLATE_PARMS (fndecl
)))
625 && (DECL_TEMPLATE_SPECIALIZATION (function
)
626 == DECL_TEMPLATE_SPECIALIZATION (fndecl
))
627 && (!DECL_TEMPLATE_SPECIALIZATION (function
)
628 || (DECL_TI_TEMPLATE (function
)
629 == DECL_TI_TEMPLATE (fndecl
))))
635 pop_scope (pushed_scope
);
636 return OVL_CURRENT (fndecls
);
639 error ("prototype for %q#D does not match any in class %qT",
641 is_conv_op
= DECL_CONV_FN_P (fndecl
);
644 ix
= CLASSTYPE_FIRST_CONVERSION_SLOT
;
645 fndecls
= VEC_index (tree
, methods
, ix
);
648 fndecl
= OVL_CURRENT (fndecls
);
649 fndecls
= OVL_NEXT (fndecls
);
651 if (!fndecls
&& is_conv_op
)
653 if (VEC_length (tree
, methods
) > (size_t) ++ix
)
655 fndecls
= VEC_index (tree
, methods
, ix
);
656 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls
)))
668 format
= N_("candidates are: %+#D");
670 format
= N_("candidate is: %+#D");
671 error (format
, fndecl
);
674 else if (!COMPLETE_TYPE_P (ctype
))
675 cxx_incomplete_type_error (function
, ctype
);
677 error ("no %q#D member function declared in class %qT",
680 /* If we did not find the method in the class, add it to avoid
681 spurious errors (unless the CTYPE is not yet defined, in which
682 case we'll only confuse ourselves when the function is declared
683 properly within the class. */
684 if (COMPLETE_TYPE_P (ctype
))
685 add_method (ctype
, function
, NULL_TREE
);
688 pop_scope (pushed_scope
);
692 /* DECL is a function with vague linkage. Remember it so that at the
693 end of the translation unit we can decide whether or not to emit
697 note_vague_linkage_fn (tree decl
)
699 if (!DECL_DEFERRED_FN (decl
))
701 DECL_DEFERRED_FN (decl
) = 1;
702 DECL_DEFER_OUTPUT (decl
) = 1;
703 VEC_safe_push (tree
, gc
, deferred_fns
, decl
);
707 /* We have just processed the DECL, which is a static data member.
708 The other parameters are as for cp_finish_decl. */
711 finish_static_data_member_decl (tree decl
,
712 tree init
, bool init_const_expr_p
,
716 DECL_CONTEXT (decl
) = current_class_type
;
718 /* We cannot call pushdecl here, because that would fill in the
719 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
720 the right thing, namely, to put this decl out straight away. */
722 if (! processing_template_decl
)
723 VEC_safe_push (tree
, gc
, pending_statics
, decl
);
725 if (LOCAL_CLASS_P (current_class_type
))
726 pedwarn ("local class %q#T shall not have static data member %q#D",
727 current_class_type
, decl
);
729 /* Static consts need not be initialized in the class definition. */
730 if (init
!= NULL_TREE
&& TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
732 static int explained
= 0;
734 error ("initializer invalid for static member with constructor");
737 error ("(an out of class initialization is required)");
742 /* Force the compiler to know when an uninitialized static const
743 member is being used. */
744 if (CP_TYPE_CONST_P (TREE_TYPE (decl
)) && init
== 0)
745 TREE_USED (decl
) = 1;
746 DECL_INITIAL (decl
) = init
;
747 DECL_IN_AGGR_P (decl
) = 1;
749 cp_finish_decl (decl
, init
, init_const_expr_p
, asmspec_tree
, flags
);
752 /* DECLARATOR and DECLSPECS correspond to a class member. The other
753 parameters are as for cp_finish_decl. Return the DECL for the
754 class member declared. */
757 grokfield (const cp_declarator
*declarator
,
758 cp_decl_specifier_seq
*declspecs
,
759 tree init
, bool init_const_expr_p
,
764 const char *asmspec
= 0;
765 int flags
= LOOKUP_ONLYCONVERTING
;
768 && TREE_CODE (init
) == TREE_LIST
769 && TREE_VALUE (init
) == error_mark_node
770 && TREE_CHAIN (init
) == NULL_TREE
)
773 value
= grokdeclarator (declarator
, declspecs
, FIELD
, init
!= 0, &attrlist
);
774 if (! value
|| error_operand_p (value
))
775 /* friend or constructor went bad. */
776 return error_mark_node
;
778 if (TREE_CODE (value
) == TYPE_DECL
&& init
)
780 error ("typedef %qD is initialized (use __typeof__ instead)", value
);
784 /* Pass friendly classes back. */
785 if (value
== void_type_node
)
788 /* Pass friend decls back. */
789 if ((TREE_CODE (value
) == FUNCTION_DECL
790 || TREE_CODE (value
) == TEMPLATE_DECL
)
791 && DECL_CONTEXT (value
) != current_class_type
)
794 if (DECL_NAME (value
) != NULL_TREE
795 && IDENTIFIER_POINTER (DECL_NAME (value
))[0] == '_'
796 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value
)), "_vptr"))
797 error ("member %qD conflicts with virtual function table field name",
800 /* Stash away type declarations. */
801 if (TREE_CODE (value
) == TYPE_DECL
)
803 DECL_NONLOCAL (value
) = 1;
804 DECL_CONTEXT (value
) = current_class_type
;
806 if (processing_template_decl
)
807 value
= push_template_decl (value
);
811 /* Avoid storing attributes in template parameters:
812 tsubst is not ready to handle them. */
813 tree type
= TREE_TYPE (value
);
814 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
815 || TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
816 sorry ("applying attributes to template parameters is not implemented");
818 cplus_decl_attributes (&value
, attrlist
, 0);
824 if (DECL_IN_AGGR_P (value
))
826 error ("%qD is already defined in %qT", value
, DECL_CONTEXT (value
));
827 return void_type_node
;
830 if (asmspec_tree
&& asmspec_tree
!= error_mark_node
)
831 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
835 if (TREE_CODE (value
) == FUNCTION_DECL
)
837 /* Initializers for functions are rejected early in the parser.
838 If we get here, it must be a pure specifier for a method. */
839 if (TREE_CODE (TREE_TYPE (value
)) == METHOD_TYPE
)
841 gcc_assert (error_operand_p (init
) || integer_zerop (init
));
842 DECL_PURE_VIRTUAL_P (value
) = 1;
846 gcc_assert (TREE_CODE (TREE_TYPE (value
)) == FUNCTION_TYPE
);
847 error ("initializer specified for static member function %qD",
851 else if (pedantic
&& TREE_CODE (value
) != VAR_DECL
)
852 /* Already complained in grokdeclarator. */
854 else if (!processing_template_decl
)
856 if (TREE_CODE (init
) == CONSTRUCTOR
)
857 init
= digest_init (TREE_TYPE (value
), init
);
859 init
= integral_constant_value (init
);
861 if (init
!= error_mark_node
&& !TREE_CONSTANT (init
))
863 /* We can allow references to things that are effectively
864 static, since references are initialized with the
866 if (TREE_CODE (TREE_TYPE (value
)) != REFERENCE_TYPE
867 || (TREE_STATIC (init
) == 0
868 && (!DECL_P (init
) || DECL_EXTERNAL (init
) == 0)))
870 error ("field initializer is not constant");
871 init
= error_mark_node
;
877 if (processing_template_decl
878 && (TREE_CODE (value
) == VAR_DECL
|| TREE_CODE (value
) == FUNCTION_DECL
))
880 value
= push_template_decl (value
);
881 if (error_operand_p (value
))
882 return error_mark_node
;
886 cplus_decl_attributes (&value
, attrlist
, 0);
888 switch (TREE_CODE (value
))
891 finish_static_data_member_decl (value
, init
, init_const_expr_p
,
892 asmspec_tree
, flags
);
897 error ("%<asm%> specifiers are not permitted on non-static data members");
898 if (DECL_INITIAL (value
) == error_mark_node
)
899 init
= error_mark_node
;
900 cp_finish_decl (value
, init
, /*init_const_expr_p=*/false,
902 DECL_INITIAL (value
) = init
;
903 DECL_IN_AGGR_P (value
) = 1;
908 set_user_assembler_name (value
, asmspec
);
910 cp_finish_decl (value
,
912 /*init_const_expr_p=*/false,
913 asmspec_tree
, flags
);
915 /* Pass friends back this way. */
916 if (DECL_FRIEND_P (value
))
917 return void_type_node
;
919 DECL_IN_AGGR_P (value
) = 1;
928 /* Like `grokfield', but for bitfields.
929 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
932 grokbitfield (const cp_declarator
*declarator
,
933 cp_decl_specifier_seq
*declspecs
, tree width
)
935 tree value
= grokdeclarator (declarator
, declspecs
, BITFIELD
, 0, NULL
);
937 if (value
== error_mark_node
)
938 return NULL_TREE
; /* friends went bad. */
940 /* Pass friendly classes back. */
941 if (TREE_CODE (value
) == VOID_TYPE
)
942 return void_type_node
;
944 if (!INTEGRAL_TYPE_P (TREE_TYPE (value
))
945 && (POINTER_TYPE_P (value
)
946 || !dependent_type_p (TREE_TYPE (value
))))
948 error ("bit-field %qD with non-integral type", value
);
949 return error_mark_node
;
952 if (TREE_CODE (value
) == TYPE_DECL
)
954 error ("cannot declare %qD to be a bit-field type", value
);
958 /* Usually, finish_struct_1 catches bitfields with invalid types.
959 But, in the case of bitfields with function type, we confuse
960 ourselves into thinking they are member functions, so we must
962 if (TREE_CODE (value
) == FUNCTION_DECL
)
964 error ("cannot declare bit-field %qD with function type",
969 if (DECL_IN_AGGR_P (value
))
971 error ("%qD is already defined in the class %qT", value
,
972 DECL_CONTEXT (value
));
973 return void_type_node
;
976 if (TREE_STATIC (value
))
978 error ("static member %qD cannot be a bit-field", value
);
981 finish_decl (value
, NULL_TREE
, NULL_TREE
);
983 if (width
!= error_mark_node
)
985 constant_expression_warning (width
);
986 DECL_INITIAL (value
) = width
;
987 SET_DECL_C_BIT_FIELD (value
);
990 DECL_IN_AGGR_P (value
) = 1;
996 cplus_decl_attributes (tree
*decl
, tree attributes
, int flags
)
998 if (*decl
== NULL_TREE
|| *decl
== void_type_node
999 || *decl
== error_mark_node
)
1002 if (TREE_CODE (*decl
) == TEMPLATE_DECL
)
1003 decl
= &DECL_TEMPLATE_RESULT (*decl
);
1005 decl_attributes (decl
, attributes
, flags
);
1007 if (TREE_CODE (*decl
) == TYPE_DECL
)
1008 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl
), TREE_TYPE (*decl
));
1011 /* Walks through the namespace- or function-scope anonymous union
1012 OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1013 Returns one of the fields for use in the mangled name. */
1016 build_anon_union_vars (tree type
, tree object
)
1018 tree main_decl
= NULL_TREE
;
1021 /* Rather than write the code to handle the non-union case,
1022 just give an error. */
1023 if (TREE_CODE (type
) != UNION_TYPE
)
1024 error ("anonymous struct not inside named type");
1026 for (field
= TYPE_FIELDS (type
);
1028 field
= TREE_CHAIN (field
))
1033 if (DECL_ARTIFICIAL (field
))
1035 if (TREE_CODE (field
) != FIELD_DECL
)
1037 pedwarn ("%q+#D invalid; an anonymous union can only "
1038 "have non-static data members", field
);
1042 if (TREE_PRIVATE (field
))
1043 pedwarn ("private member %q+#D in anonymous union", field
);
1044 else if (TREE_PROTECTED (field
))
1045 pedwarn ("protected member %q+#D in anonymous union", field
);
1047 if (processing_template_decl
)
1048 ref
= build_min_nt (COMPONENT_REF
, object
,
1049 DECL_NAME (field
), NULL_TREE
);
1051 ref
= build_class_member_access_expr (object
, field
, NULL_TREE
,
1054 if (DECL_NAME (field
))
1058 decl
= build_decl (VAR_DECL
, DECL_NAME (field
), TREE_TYPE (field
));
1060 base
= get_base_address (object
);
1061 TREE_PUBLIC (decl
) = TREE_PUBLIC (base
);
1062 TREE_STATIC (decl
) = TREE_STATIC (base
);
1063 DECL_EXTERNAL (decl
) = DECL_EXTERNAL (base
);
1065 SET_DECL_VALUE_EXPR (decl
, ref
);
1066 DECL_HAS_VALUE_EXPR_P (decl
) = 1;
1068 decl
= pushdecl (decl
);
1070 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field
)))
1071 decl
= build_anon_union_vars (TREE_TYPE (field
), ref
);
1075 if (main_decl
== NULL_TREE
)
1082 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1083 anonymous union, then all members must be laid out together. PUBLIC_P
1084 is nonzero if this union is not declared static. */
1087 finish_anon_union (tree anon_union_decl
)
1093 if (anon_union_decl
== error_mark_node
)
1096 type
= TREE_TYPE (anon_union_decl
);
1097 public_p
= TREE_PUBLIC (anon_union_decl
);
1099 /* The VAR_DECL's context is the same as the TYPE's context. */
1100 DECL_CONTEXT (anon_union_decl
) = DECL_CONTEXT (TYPE_NAME (type
));
1102 if (TYPE_FIELDS (type
) == NULL_TREE
)
1107 error ("namespace-scope anonymous aggregates must be static");
1111 main_decl
= build_anon_union_vars (type
, anon_union_decl
);
1112 if (main_decl
== error_mark_node
)
1114 if (main_decl
== NULL_TREE
)
1116 warning (0, "anonymous union with no members");
1120 if (!processing_template_decl
)
1122 /* Use main_decl to set the mangled name. */
1123 DECL_NAME (anon_union_decl
) = DECL_NAME (main_decl
);
1124 mangle_decl (anon_union_decl
);
1125 DECL_NAME (anon_union_decl
) = NULL_TREE
;
1128 pushdecl (anon_union_decl
);
1129 if (building_stmt_tree ()
1130 && at_function_scope_p ())
1131 add_decl_expr (anon_union_decl
);
1132 else if (!processing_template_decl
)
1133 rest_of_decl_compilation (anon_union_decl
,
1134 toplevel_bindings_p (), at_eof
);
1137 /* Auxiliary functions to make type signatures for
1138 `operator new' and `operator delete' correspond to
1139 what compiler will be expecting. */
1142 coerce_new_type (tree type
)
1145 tree args
= TYPE_ARG_TYPES (type
);
1147 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
1149 if (!same_type_p (TREE_TYPE (type
), ptr_type_node
))
1152 error ("%<operator new%> must return type %qT", ptr_type_node
);
1155 if (!args
|| args
== void_list_node
1156 || !same_type_p (TREE_VALUE (args
), size_type_node
))
1159 if (args
&& args
!= void_list_node
)
1160 args
= TREE_CHAIN (args
);
1161 pedwarn ("%<operator new%> takes type %<size_t%> (%qT) "
1162 "as first parameter", size_type_node
);
1167 args
= tree_cons (NULL_TREE
, size_type_node
, args
);
1170 type
= build_exception_variant
1171 (build_function_type (ptr_type_node
, args
),
1172 TYPE_RAISES_EXCEPTIONS (type
));
1180 coerce_delete_type (tree type
)
1183 tree args
= TYPE_ARG_TYPES (type
);
1185 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
1187 if (!same_type_p (TREE_TYPE (type
), void_type_node
))
1190 error ("%<operator delete%> must return type %qT", void_type_node
);
1193 if (!args
|| args
== void_list_node
1194 || !same_type_p (TREE_VALUE (args
), ptr_type_node
))
1197 if (args
&& args
!= void_list_node
)
1198 args
= TREE_CHAIN (args
);
1199 error ("%<operator delete%> takes type %qT as first parameter",
1205 args
= tree_cons (NULL_TREE
, ptr_type_node
, args
);
1208 type
= build_exception_variant
1209 (build_function_type (void_type_node
, args
),
1210 TYPE_RAISES_EXCEPTIONS (type
));
1219 mark_vtable_entries (tree decl
)
1222 unsigned HOST_WIDE_INT idx
;
1224 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl
)),
1229 STRIP_NOPS (fnaddr
);
1231 if (TREE_CODE (fnaddr
) != ADDR_EXPR
1232 && TREE_CODE (fnaddr
) != FDESC_EXPR
)
1233 /* This entry is an offset: a virtual base class offset, a
1234 virtual call offset, an RTTI offset, etc. */
1237 fn
= TREE_OPERAND (fnaddr
, 0);
1238 TREE_ADDRESSABLE (fn
) = 1;
1239 /* When we don't have vcall offsets, we output thunks whenever
1240 we output the vtables that contain them. With vcall offsets,
1241 we know all the thunks we'll need when we emit a virtual
1242 function, so we emit the thunks there instead. */
1243 if (DECL_THUNK_P (fn
))
1244 use_thunk (fn
, /*emit_p=*/0);
1249 /* Set DECL up to have the closest approximation of "initialized common"
1250 linkage available. */
1253 comdat_linkage (tree decl
)
1256 make_decl_one_only (decl
);
1257 else if (TREE_CODE (decl
) == FUNCTION_DECL
1258 || (TREE_CODE (decl
) == VAR_DECL
&& DECL_ARTIFICIAL (decl
)))
1259 /* We can just emit function and compiler-generated variables
1260 statically; having multiple copies is (for the most part) only
1263 There are two correctness issues, however: the address of a
1264 template instantiation with external linkage should be the
1265 same, independent of what translation unit asks for the
1266 address, and this will not hold when we emit multiple copies of
1267 the function. However, there's little else we can do.
1269 Also, by default, the typeinfo implementation assumes that
1270 there will be only one copy of the string used as the name for
1271 each type. Therefore, if weak symbols are unavailable, the
1272 run-time library should perform a more conservative check; it
1273 should perform a string comparison, rather than an address
1275 TREE_PUBLIC (decl
) = 0;
1278 /* Static data member template instantiations, however, cannot
1279 have multiple copies. */
1280 if (DECL_INITIAL (decl
) == 0
1281 || DECL_INITIAL (decl
) == error_mark_node
)
1282 DECL_COMMON (decl
) = 1;
1283 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl
)))
1285 DECL_COMMON (decl
) = 1;
1286 DECL_INITIAL (decl
) = error_mark_node
;
1288 else if (!DECL_EXPLICIT_INSTANTIATION (decl
))
1290 /* We can't do anything useful; leave vars for explicit
1292 DECL_EXTERNAL (decl
) = 1;
1293 DECL_NOT_REALLY_EXTERN (decl
) = 0;
1297 if (DECL_LANG_SPECIFIC (decl
))
1298 DECL_COMDAT (decl
) = 1;
1301 /* For win32 we also want to put explicit instantiations in
1302 linkonce sections, so that they will be merged with implicit
1303 instantiations; otherwise we get duplicate symbol errors.
1304 For Darwin we do not want explicit instantiations to be
1308 maybe_make_one_only (tree decl
)
1310 /* We used to say that this was not necessary on targets that support weak
1311 symbols, because the implicit instantiations will defer to the explicit
1312 one. However, that's not actually the case in SVR4; a strong definition
1313 after a weak one is an error. Also, not making explicit
1314 instantiations one_only means that we can end up with two copies of
1315 some template instantiations. */
1319 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1320 we can get away with not emitting them if they aren't used. We need
1321 to for variables so that cp_finish_decl will update their linkage,
1322 because their DECL_INITIAL may not have been set properly yet. */
1324 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1325 || (! DECL_EXPLICIT_INSTANTIATION (decl
)
1326 && ! DECL_TEMPLATE_SPECIALIZATION (decl
)))
1328 make_decl_one_only (decl
);
1330 if (TREE_CODE (decl
) == VAR_DECL
)
1332 DECL_COMDAT (decl
) = 1;
1333 /* Mark it needed so we don't forget to emit it. */
1334 mark_decl_referenced (decl
);
1339 /* Determine whether or not we want to specifically import or export CTYPE,
1340 using various heuristics. */
1343 import_export_class (tree ctype
)
1345 /* -1 for imported, 1 for exported. */
1346 int import_export
= 0;
1348 /* It only makes sense to call this function at EOF. The reason is
1349 that this function looks at whether or not the first non-inline
1350 non-abstract virtual member function has been defined in this
1351 translation unit. But, we can't possibly know that until we've
1352 seen the entire translation unit. */
1353 gcc_assert (at_eof
);
1355 if (CLASSTYPE_INTERFACE_KNOWN (ctype
))
1358 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1359 we will have CLASSTYPE_INTERFACE_ONLY set but not
1360 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1361 heuristic because someone will supply a #pragma implementation
1362 elsewhere, and deducing it here would produce a conflict. */
1363 if (CLASSTYPE_INTERFACE_ONLY (ctype
))
1366 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype
)))
1368 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype
)))
1370 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype
)
1371 && !flag_implicit_templates
)
1372 /* For a template class, without -fimplicit-templates, check the
1373 repository. If the virtual table is assigned to this
1374 translation unit, then export the class; otherwise, import
1376 import_export
= repo_export_class_p (ctype
) ? 1 : -1;
1377 else if (TYPE_POLYMORPHIC_P (ctype
))
1379 /* The ABI specifies that the virtual table and associated
1380 information are emitted with the key method, if any. */
1381 tree method
= CLASSTYPE_KEY_METHOD (ctype
);
1382 /* If weak symbol support is not available, then we must be
1383 careful not to emit the vtable when the key function is
1384 inline. An inline function can be defined in multiple
1385 translation units. If we were to emit the vtable in each
1386 translation unit containing a definition, we would get
1387 multiple definition errors at link-time. */
1388 if (method
&& (flag_weak
|| ! DECL_DECLARED_INLINE_P (method
)))
1389 import_export
= (DECL_REALLY_EXTERN (method
) ? -1 : 1);
1392 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1393 a definition anywhere else. */
1394 if (MULTIPLE_SYMBOL_SPACES
&& import_export
== -1)
1397 /* Allow back ends the chance to overrule the decision. */
1398 if (targetm
.cxx
.import_export_class
)
1399 import_export
= targetm
.cxx
.import_export_class (ctype
, import_export
);
1403 SET_CLASSTYPE_INTERFACE_KNOWN (ctype
);
1404 CLASSTYPE_INTERFACE_ONLY (ctype
) = (import_export
< 0);
1408 /* Return true if VAR has already been provided to the back end; in that
1409 case VAR should not be modified further by the front end. */
1411 var_finalized_p (tree var
)
1413 return varpool_node (var
)->finalized
;
1416 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1417 must be emitted in this translation unit. Mark it as such. */
1420 mark_needed (tree decl
)
1422 /* It's possible that we no longer need to set
1423 TREE_SYMBOL_REFERENCED here directly, but doing so is
1425 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)) = 1;
1426 mark_decl_referenced (decl
);
1429 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1430 returns true if a definition of this entity should be provided in
1431 this object file. Callers use this function to determine whether
1432 or not to let the back end know that a definition of DECL is
1433 available in this translation unit. */
1436 decl_needed_p (tree decl
)
1438 gcc_assert (TREE_CODE (decl
) == VAR_DECL
1439 || TREE_CODE (decl
) == FUNCTION_DECL
);
1440 /* This function should only be called at the end of the translation
1441 unit. We cannot be sure of whether or not something will be
1442 COMDAT until that point. */
1443 gcc_assert (at_eof
);
1445 /* All entities with external linkage that are not COMDAT should be
1446 emitted; they may be referred to from other object files. */
1447 if (TREE_PUBLIC (decl
) && !DECL_COMDAT (decl
))
1449 /* If this entity was used, let the back end see it; it will decide
1450 whether or not to emit it into the object file. */
1451 if (TREE_USED (decl
)
1452 || (DECL_ASSEMBLER_NAME_SET_P (decl
)
1453 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))))
1455 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1456 reference to DECL might cause it to be emitted later. */
1460 /* If necessary, write out the vtables for the dynamic class CTYPE.
1461 Returns true if any vtables were emitted. */
1464 maybe_emit_vtables (tree ctype
)
1470 /* If the vtables for this class have already been emitted there is
1471 nothing more to do. */
1472 primary_vtbl
= CLASSTYPE_VTABLES (ctype
);
1473 if (var_finalized_p (primary_vtbl
))
1475 /* Ignore dummy vtables made by get_vtable_decl. */
1476 if (TREE_TYPE (primary_vtbl
) == void_type_node
)
1479 /* On some targets, we cannot determine the key method until the end
1480 of the translation unit -- which is when this function is
1482 if (!targetm
.cxx
.key_method_may_be_inline ())
1483 determine_key_method (ctype
);
1485 /* See if any of the vtables are needed. */
1486 for (vtbl
= CLASSTYPE_VTABLES (ctype
); vtbl
; vtbl
= TREE_CHAIN (vtbl
))
1488 import_export_decl (vtbl
);
1489 if (DECL_NOT_REALLY_EXTERN (vtbl
) && decl_needed_p (vtbl
))
1494 /* If the references to this class' vtables are optimized away,
1495 still emit the appropriate debugging information. See
1497 if (DECL_COMDAT (primary_vtbl
)
1498 && CLASSTYPE_DEBUG_REQUESTED (ctype
))
1499 note_debug_info_needed (ctype
);
1503 /* The ABI requires that we emit all of the vtables if we emit any
1505 for (vtbl
= CLASSTYPE_VTABLES (ctype
); vtbl
; vtbl
= TREE_CHAIN (vtbl
))
1507 /* Mark entities references from the virtual table as used. */
1508 mark_vtable_entries (vtbl
);
1510 if (TREE_TYPE (DECL_INITIAL (vtbl
)) == 0)
1512 tree expr
= store_init_value (vtbl
, DECL_INITIAL (vtbl
));
1514 /* It had better be all done at compile-time. */
1519 DECL_EXTERNAL (vtbl
) = 0;
1520 rest_of_decl_compilation (vtbl
, 1, 1);
1522 /* Because we're only doing syntax-checking, we'll never end up
1523 actually marking the variable as written. */
1524 if (flag_syntax_only
)
1525 TREE_ASM_WRITTEN (vtbl
) = 1;
1528 /* Since we're writing out the vtable here, also write the debug
1530 note_debug_info_needed (ctype
);
1535 /* A special return value from type_visibility meaning internal
1538 enum { VISIBILITY_ANON
= VISIBILITY_INTERNAL
+1 };
1540 /* walk_tree helper function for type_visibility. */
1543 min_vis_r (tree
*tp
, int *walk_subtrees
, void *data
)
1545 int *vis_p
= (int *)data
;
1550 else if (CLASS_TYPE_P (*tp
))
1552 if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp
)))
1554 *vis_p
= VISIBILITY_ANON
;
1557 else if (CLASSTYPE_VISIBILITY (*tp
) > *vis_p
)
1558 *vis_p
= CLASSTYPE_VISIBILITY (*tp
);
1563 /* Returns the visibility of TYPE, which is the minimum visibility of its
1567 type_visibility (tree type
)
1569 int vis
= VISIBILITY_DEFAULT
;
1570 walk_tree_without_duplicates (&type
, min_vis_r
, &vis
);
1574 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1575 specified (or if VISIBILITY is static). */
1578 constrain_visibility (tree decl
, int visibility
)
1580 if (visibility
== VISIBILITY_ANON
)
1582 /* extern "C" declarations aren't affected by the anonymous
1584 if (!DECL_EXTERN_C_P (decl
))
1586 TREE_PUBLIC (decl
) = 0;
1587 DECL_INTERFACE_KNOWN (decl
) = 1;
1588 if (DECL_LANG_SPECIFIC (decl
))
1589 DECL_NOT_REALLY_EXTERN (decl
) = 1;
1592 else if (visibility
> DECL_VISIBILITY (decl
)
1593 && !DECL_VISIBILITY_SPECIFIED (decl
))
1595 DECL_VISIBILITY (decl
) = visibility
;
1601 /* Constrain the visibility of DECL based on the visibility of its template
1605 constrain_visibility_for_template (tree decl
, tree targs
)
1607 /* If this is a template instantiation, check the innermost
1608 template args for visibility constraints. The outer template
1609 args are covered by the class check. */
1610 tree args
= INNERMOST_TEMPLATE_ARGS (targs
);
1612 for (i
= TREE_VEC_LENGTH (args
); i
> 0; --i
)
1616 tree arg
= TREE_VEC_ELT (args
, i
-1);
1618 vis
= type_visibility (arg
);
1619 else if (TREE_TYPE (arg
) && POINTER_TYPE_P (TREE_TYPE (arg
)))
1622 if (TREE_CODE (arg
) == ADDR_EXPR
)
1623 arg
= TREE_OPERAND (arg
, 0);
1624 if (TREE_CODE (arg
) == VAR_DECL
1625 || TREE_CODE (arg
) == FUNCTION_DECL
)
1627 if (! TREE_PUBLIC (arg
))
1628 vis
= VISIBILITY_ANON
;
1630 vis
= DECL_VISIBILITY (arg
);
1634 constrain_visibility (decl
, vis
);
1638 /* Like c_determine_visibility, but with additional C++-specific
1641 Function-scope entities can rely on the function's visibility because
1642 it is set in start_preparsed_function.
1644 Class-scope entities cannot rely on the class's visibility until the end
1645 of the enclosing class definition.
1647 Note that because namespaces have multiple independent definitions,
1648 namespace visibility is handled elsewhere using the #pragma visibility
1649 machinery rather than by decorating the namespace declaration.
1651 The goal is for constraints from the type to give a diagnostic, and
1652 other constraints to be applied silently. */
1655 determine_visibility (tree decl
)
1657 tree class_type
= NULL_TREE
;
1660 /* Remember that all decls get VISIBILITY_DEFAULT when built. */
1662 /* Only relevant for names with external linkage. */
1663 if (!TREE_PUBLIC (decl
))
1666 /* Cloned constructors and destructors get the same visibility as
1667 the underlying function. That should be set up in
1668 maybe_clone_body. */
1669 gcc_assert (!DECL_CLONED_FUNCTION_P (decl
));
1671 if (TREE_CODE (decl
) == TYPE_DECL
)
1673 if (CLASS_TYPE_P (TREE_TYPE (decl
)))
1674 use_template
= CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl
));
1675 else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl
)))
1680 else if (DECL_LANG_SPECIFIC (decl
))
1681 use_template
= DECL_USE_TEMPLATE (decl
);
1685 /* Anything that is exported must have default visibility. */
1686 if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
1687 && lookup_attribute ("dllexport",
1688 TREE_CODE (decl
) == TYPE_DECL
1689 ? TYPE_ATTRIBUTES (TREE_TYPE (decl
))
1690 : DECL_ATTRIBUTES (decl
)))
1692 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
1693 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1696 /* If DECL is a member of a class, visibility specifiers on the
1697 class can influence the visibility of the DECL. */
1698 if (DECL_CLASS_SCOPE_P (decl
))
1699 class_type
= DECL_CONTEXT (decl
);
1700 else if (TREE_CODE (decl
) == VAR_DECL
1701 && DECL_TINFO_P (decl
)
1702 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl
))))
1703 class_type
= TREE_TYPE (DECL_NAME (decl
));
1706 /* Not a class member. */
1708 /* Virtual tables have DECL_CONTEXT set to their associated class,
1709 so they are automatically handled above. */
1710 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1711 || !DECL_VTABLE_OR_VTT_P (decl
));
1713 if (DECL_FUNCTION_SCOPE_P (decl
) && ! DECL_VISIBILITY_SPECIFIED (decl
))
1715 /* Local statics and classes get the visibility of their
1716 containing function by default, except that
1717 -fvisibility-inlines-hidden doesn't affect them. */
1718 tree fn
= DECL_CONTEXT (decl
);
1719 if (DECL_VISIBILITY_SPECIFIED (fn
) || ! DECL_CLASS_SCOPE_P (fn
))
1721 DECL_VISIBILITY (decl
) = DECL_VISIBILITY (fn
);
1722 DECL_VISIBILITY_SPECIFIED (decl
) =
1723 DECL_VISIBILITY_SPECIFIED (fn
);
1726 determine_visibility_from_class (decl
, DECL_CONTEXT (fn
));
1728 /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
1729 but have no TEMPLATE_INFO, so don't try to check it. */
1732 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_TINFO_P (decl
))
1734 /* tinfo visibility is based on the type it's for. */
1735 constrain_visibility
1736 (decl
, type_visibility (TREE_TYPE (DECL_NAME (decl
))));
1738 else if (use_template
)
1739 /* Template instantiations and specializations get visibility based
1740 on their template unless they override it with an attribute. */;
1741 else if (! DECL_VISIBILITY_SPECIFIED (decl
))
1743 /* Set default visibility to whatever the user supplied with
1744 #pragma GCC visibility or a namespace visibility attribute. */
1745 DECL_VISIBILITY (decl
) = default_visibility
;
1746 DECL_VISIBILITY_SPECIFIED (decl
) = visibility_options
.inpragma
;
1752 /* If the specialization doesn't specify visibility, use the
1753 visibility from the template. */
1754 tree tinfo
= (TREE_CODE (decl
) == TYPE_DECL
1755 ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl
))
1756 : DECL_TEMPLATE_INFO (decl
));
1757 tree args
= TI_ARGS (tinfo
);
1759 if (args
!= error_mark_node
)
1761 int depth
= TMPL_ARGS_DEPTH (args
);
1762 tree pattern
= DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo
));
1764 if (!DECL_VISIBILITY_SPECIFIED (decl
))
1766 DECL_VISIBILITY (decl
) = DECL_VISIBILITY (pattern
);
1767 DECL_VISIBILITY_SPECIFIED (decl
)
1768 = DECL_VISIBILITY_SPECIFIED (pattern
);
1771 /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
1772 if (args
&& depth
> template_class_depth (class_type
))
1773 /* Limit visibility based on its template arguments. */
1774 constrain_visibility_for_template (decl
, args
);
1779 determine_visibility_from_class (decl
, class_type
);
1781 if (decl_anon_ns_mem_p (decl
))
1782 /* Names in an anonymous namespace get internal linkage.
1783 This might change once we implement export. */
1784 constrain_visibility (decl
, VISIBILITY_ANON
);
1785 else if (TREE_CODE (decl
) != TYPE_DECL
)
1787 /* Propagate anonymity from type to decl. */
1788 int tvis
= type_visibility (TREE_TYPE (decl
));
1789 if (tvis
== VISIBILITY_ANON
)
1790 constrain_visibility (decl
, tvis
);
1794 /* By default, static data members and function members receive
1795 the visibility of their containing class. */
1798 determine_visibility_from_class (tree decl
, tree class_type
)
1800 if (visibility_options
.inlines_hidden
1801 /* Don't do this for inline templates; specializations might not be
1802 inline, and we don't want them to inherit the hidden
1803 visibility. We'll set it here for all inline instantiations. */
1804 && !processing_template_decl
1805 && ! DECL_VISIBILITY_SPECIFIED (decl
)
1806 && TREE_CODE (decl
) == FUNCTION_DECL
1807 && DECL_DECLARED_INLINE_P (decl
)
1808 && (! DECL_LANG_SPECIFIC (decl
)
1809 || ! DECL_EXPLICIT_INSTANTIATION (decl
)))
1810 DECL_VISIBILITY (decl
) = VISIBILITY_HIDDEN
;
1811 else if (!DECL_VISIBILITY_SPECIFIED (decl
))
1813 /* Default to the class visibility. */
1814 DECL_VISIBILITY (decl
) = CLASSTYPE_VISIBILITY (class_type
);
1815 DECL_VISIBILITY_SPECIFIED (decl
)
1816 = CLASSTYPE_VISIBILITY_SPECIFIED (class_type
);
1819 /* Give the target a chance to override the visibility associated
1821 if (TREE_CODE (decl
) == VAR_DECL
1822 && (DECL_TINFO_P (decl
)
1823 || (DECL_VTABLE_OR_VTT_P (decl
)
1824 /* Construction virtual tables are not exported because
1825 they cannot be referred to from other object files;
1826 their name is not standardized by the ABI. */
1827 && !DECL_CONSTRUCTION_VTABLE_P (decl
)))
1828 && TREE_PUBLIC (decl
)
1829 && !DECL_REALLY_EXTERN (decl
)
1830 && !DECL_VISIBILITY_SPECIFIED (decl
)
1831 && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type
))
1832 targetm
.cxx
.determine_class_data_visibility (decl
);
1835 /* Constrain the visibility of a class TYPE based on the visibility of its
1836 field types. Warn if any fields require lesser visibility. */
1839 constrain_class_visibility (tree type
)
1845 int vis
= type_visibility (type
);
1847 if (vis
== VISIBILITY_ANON
1848 || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type
)))
1851 /* Don't warn about visibility if the class has explicit visibility. */
1852 if (CLASSTYPE_VISIBILITY_SPECIFIED (type
))
1853 vis
= VISIBILITY_INTERNAL
;
1855 for (t
= TYPE_FIELDS (type
); t
; t
= TREE_CHAIN (t
))
1856 if (TREE_CODE (t
) == FIELD_DECL
&& TREE_TYPE (t
) != error_mark_node
)
1858 tree ftype
= strip_array_types (TREE_TYPE (t
));
1859 int subvis
= type_visibility (ftype
);
1861 if (subvis
== VISIBILITY_ANON
)
1863 %qT has a field %qD whose type uses the anonymous namespace",
1865 else if (IS_AGGR_TYPE (ftype
)
1866 && vis
< VISIBILITY_HIDDEN
1867 && subvis
>= VISIBILITY_HIDDEN
)
1868 warning (OPT_Wattributes
, "\
1869 %qT declared with greater visibility than the type of its field %qD",
1873 binfo
= TYPE_BINFO (type
);
1874 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, t
); ++i
)
1876 int subvis
= type_visibility (TREE_TYPE (t
));
1878 if (subvis
== VISIBILITY_ANON
)
1880 %qT has a base %qT whose type uses the anonymous namespace",
1881 type
, TREE_TYPE (t
));
1882 else if (vis
< VISIBILITY_HIDDEN
1883 && subvis
>= VISIBILITY_HIDDEN
)
1884 warning (OPT_Wattributes
, "\
1885 %qT declared with greater visibility than its base %qT",
1886 type
, TREE_TYPE (t
));
1890 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
1891 for DECL has not already been determined, do so now by setting
1892 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
1893 function is called entities with vague linkage whose definitions
1894 are available must have TREE_PUBLIC set.
1896 If this function decides to place DECL in COMDAT, it will set
1897 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
1898 the caller to decide whether or not to clear DECL_EXTERNAL. Some
1899 callers defer that decision until it is clear that DECL is actually
1903 import_export_decl (tree decl
)
1908 tree class_type
= NULL_TREE
;
1910 if (DECL_INTERFACE_KNOWN (decl
))
1913 /* We cannot determine what linkage to give to an entity with vague
1914 linkage until the end of the file. For example, a virtual table
1915 for a class will be defined if and only if the key method is
1916 defined in this translation unit. As a further example, consider
1917 that when compiling a translation unit that uses PCH file with
1918 "-frepo" it would be incorrect to make decisions about what
1919 entities to emit when building the PCH; those decisions must be
1920 delayed until the repository information has been processed. */
1921 gcc_assert (at_eof
);
1922 /* Object file linkage for explicit instantiations is handled in
1923 mark_decl_instantiated. For static variables in functions with
1924 vague linkage, maybe_commonize_var is used.
1926 Therefore, the only declarations that should be provided to this
1927 function are those with external linkage that are:
1929 * implicit instantiations of function templates
1933 * implicit instantiations of static data members of class
1940 Furthermore, all entities that reach this point must have a
1941 definition available in this translation unit.
1943 The following assertions check these conditions. */
1944 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1945 || TREE_CODE (decl
) == VAR_DECL
);
1946 /* Any code that creates entities with TREE_PUBLIC cleared should
1947 also set DECL_INTERFACE_KNOWN. */
1948 gcc_assert (TREE_PUBLIC (decl
));
1949 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1950 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl
)
1951 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl
)
1952 || DECL_DECLARED_INLINE_P (decl
));
1954 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl
)
1955 || DECL_VTABLE_OR_VTT_P (decl
)
1956 || DECL_TINFO_P (decl
));
1957 /* Check that a definition of DECL is available in this translation
1959 gcc_assert (!DECL_REALLY_EXTERN (decl
));
1961 /* Assume that DECL will not have COMDAT linkage. */
1963 /* Assume that DECL will not be imported into this translation
1967 /* See if the repository tells us whether or not to emit DECL in
1968 this translation unit. */
1969 emit_p
= repo_emit_p (decl
);
1972 else if (emit_p
== 1)
1974 /* The repository indicates that this entity should be defined
1975 here. Make sure the back end honors that request. */
1976 if (TREE_CODE (decl
) == VAR_DECL
)
1978 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl
)
1979 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl
))
1982 FOR_EACH_CLONE (clone
, decl
)
1983 mark_needed (clone
);
1987 /* Output the definition as an ordinary strong definition. */
1988 DECL_EXTERNAL (decl
) = 0;
1989 DECL_INTERFACE_KNOWN (decl
) = 1;
1994 /* We have already decided what to do with this DECL; there is no
1995 need to check anything further. */
1997 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_VTABLE_OR_VTT_P (decl
))
1999 class_type
= DECL_CONTEXT (decl
);
2000 import_export_class (class_type
);
2001 if (TYPE_FOR_JAVA (class_type
))
2003 else if (CLASSTYPE_INTERFACE_KNOWN (class_type
)
2004 && CLASSTYPE_INTERFACE_ONLY (class_type
))
2006 else if ((!flag_weak
|| TARGET_WEAK_NOT_IN_ARCHIVE_TOC
)
2007 && !CLASSTYPE_USE_TEMPLATE (class_type
)
2008 && CLASSTYPE_KEY_METHOD (class_type
)
2009 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type
)))
2010 /* The ABI requires that all virtual tables be emitted with
2011 COMDAT linkage. However, on systems where COMDAT symbols
2012 don't show up in the table of contents for a static
2013 archive, or on systems without weak symbols (where we
2014 approximate COMDAT linkage by using internal linkage), the
2015 linker will report errors about undefined symbols because
2016 it will not see the virtual table definition. Therefore,
2017 in the case that we know that the virtual table will be
2018 emitted in only one translation unit, we make the virtual
2019 table an ordinary definition with external linkage. */
2020 DECL_EXTERNAL (decl
) = 0;
2021 else if (CLASSTYPE_INTERFACE_KNOWN (class_type
))
2023 /* CLASS_TYPE is being exported from this translation unit,
2024 so DECL should be defined here. */
2025 if (!flag_weak
&& CLASSTYPE_EXPLICIT_INSTANTIATION (class_type
))
2026 /* If a class is declared in a header with the "extern
2027 template" extension, then it will not be instantiated,
2028 even in translation units that would normally require
2029 it. Often such classes are explicitly instantiated in
2030 one translation unit. Therefore, the explicit
2031 instantiation must be made visible to other translation
2033 DECL_EXTERNAL (decl
) = 0;
2036 /* The generic C++ ABI says that class data is always
2037 COMDAT, even if there is a key function. Some
2038 variants (e.g., the ARM EABI) says that class data
2039 only has COMDAT linkage if the class data might be
2040 emitted in more than one translation unit. When the
2041 key method can be inline and is inline, we still have
2042 to arrange for comdat even though
2043 class_data_always_comdat is false. */
2044 if (!CLASSTYPE_KEY_METHOD (class_type
)
2045 || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type
))
2046 || targetm
.cxx
.class_data_always_comdat ())
2048 /* The ABI requires COMDAT linkage. Normally, we
2049 only emit COMDAT things when they are needed;
2050 make sure that we realize that this entity is
2057 else if (!flag_implicit_templates
2058 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type
))
2063 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_TINFO_P (decl
))
2065 tree type
= TREE_TYPE (DECL_NAME (decl
));
2066 if (CLASS_TYPE_P (type
))
2069 import_export_class (type
);
2070 if (CLASSTYPE_INTERFACE_KNOWN (type
)
2071 && TYPE_POLYMORPHIC_P (type
)
2072 && CLASSTYPE_INTERFACE_ONLY (type
)
2073 /* If -fno-rtti was specified, then we cannot be sure
2074 that RTTI information will be emitted with the
2075 virtual table of the class, so we must emit it
2076 wherever it is used. */
2081 if (CLASSTYPE_INTERFACE_KNOWN (type
)
2082 && !CLASSTYPE_INTERFACE_ONLY (type
))
2084 comdat_p
= (targetm
.cxx
.class_data_always_comdat ()
2085 || (CLASSTYPE_KEY_METHOD (type
)
2086 && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type
))));
2091 DECL_EXTERNAL (decl
) = 0;
2101 else if (DECL_TEMPLATE_INSTANTIATION (decl
)
2102 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl
))
2104 /* DECL is an implicit instantiation of a function or static
2106 if (flag_implicit_templates
2107 || (flag_implicit_inline_templates
2108 && TREE_CODE (decl
) == FUNCTION_DECL
2109 && DECL_DECLARED_INLINE_P (decl
)))
2112 /* If we are not implicitly generating templates, then mark
2113 this entity as undefined in this translation unit. */
2116 else if (DECL_FUNCTION_MEMBER_P (decl
))
2118 if (!DECL_DECLARED_INLINE_P (decl
))
2120 tree ctype
= DECL_CONTEXT (decl
);
2121 import_export_class (ctype
);
2122 if (CLASSTYPE_INTERFACE_KNOWN (ctype
))
2124 DECL_NOT_REALLY_EXTERN (decl
)
2125 = ! (CLASSTYPE_INTERFACE_ONLY (ctype
)
2126 || (DECL_DECLARED_INLINE_P (decl
)
2127 && ! flag_implement_inlines
2128 && !DECL_VINDEX (decl
)));
2130 if (!DECL_NOT_REALLY_EXTERN (decl
))
2131 DECL_EXTERNAL (decl
) = 1;
2133 /* Always make artificials weak. */
2134 if (DECL_ARTIFICIAL (decl
) && flag_weak
)
2137 maybe_make_one_only (decl
);
2148 /* If we are importing DECL into this translation unit, mark is
2149 an undefined here. */
2150 DECL_EXTERNAL (decl
) = 1;
2151 DECL_NOT_REALLY_EXTERN (decl
) = 0;
2155 /* If we decided to put DECL in COMDAT, mark it accordingly at
2157 comdat_linkage (decl
);
2160 DECL_INTERFACE_KNOWN (decl
) = 1;
2163 /* Return an expression that performs the destruction of DECL, which
2164 must be a VAR_DECL whose type has a non-trivial destructor, or is
2165 an array whose (innermost) elements have a non-trivial destructor. */
2168 build_cleanup (tree decl
)
2171 tree type
= TREE_TYPE (decl
);
2173 /* This function should only be called for declarations that really
2174 require cleanups. */
2175 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type
));
2177 /* Treat all objects with destructors as used; the destructor may do
2178 something substantive. */
2181 if (TREE_CODE (type
) == ARRAY_TYPE
)
2185 cxx_mark_addressable (decl
);
2186 temp
= build1 (ADDR_EXPR
, build_pointer_type (type
), decl
);
2188 temp
= build_delete (TREE_TYPE (temp
), temp
,
2189 sfk_complete_destructor
,
2190 LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
|LOOKUP_DESTRUCTOR
, 0);
2194 /* Returns the initialization guard variable for the variable DECL,
2195 which has static storage duration. */
2198 get_guard (tree decl
)
2203 sname
= mangle_guard_variable (decl
);
2204 guard
= IDENTIFIER_GLOBAL_VALUE (sname
);
2209 /* We use a type that is big enough to contain a mutex as well
2210 as an integer counter. */
2211 guard_type
= targetm
.cxx
.guard_type ();
2212 guard
= build_decl (VAR_DECL
, sname
, guard_type
);
2214 /* The guard should have the same linkage as what it guards. */
2215 TREE_PUBLIC (guard
) = TREE_PUBLIC (decl
);
2216 TREE_STATIC (guard
) = TREE_STATIC (decl
);
2217 DECL_COMMON (guard
) = DECL_COMMON (decl
);
2218 DECL_ONE_ONLY (guard
) = DECL_ONE_ONLY (decl
);
2219 if (TREE_PUBLIC (decl
))
2220 DECL_WEAK (guard
) = DECL_WEAK (decl
);
2222 DECL_ARTIFICIAL (guard
) = 1;
2223 DECL_IGNORED_P (guard
) = 1;
2224 TREE_USED (guard
) = 1;
2225 pushdecl_top_level_and_finish (guard
, NULL_TREE
);
2230 /* Return those bits of the GUARD variable that should be set when the
2231 guarded entity is actually initialized. */
2234 get_guard_bits (tree guard
)
2236 if (!targetm
.cxx
.guard_mask_bit ())
2238 /* We only set the first byte of the guard, in order to leave room
2239 for a mutex in the high-order bits. */
2240 guard
= build1 (ADDR_EXPR
,
2241 build_pointer_type (TREE_TYPE (guard
)),
2243 guard
= build1 (NOP_EXPR
,
2244 build_pointer_type (char_type_node
),
2246 guard
= build1 (INDIRECT_REF
, char_type_node
, guard
);
2252 /* Return an expression which determines whether or not the GUARD
2253 variable has already been initialized. */
2256 get_guard_cond (tree guard
)
2260 /* Check to see if the GUARD is zero. */
2261 guard
= get_guard_bits (guard
);
2263 /* Mask off all but the low bit. */
2264 if (targetm
.cxx
.guard_mask_bit ())
2266 guard_value
= integer_one_node
;
2267 if (!same_type_p (TREE_TYPE (guard_value
), TREE_TYPE (guard
)))
2268 guard_value
= convert (TREE_TYPE (guard
), guard_value
);
2269 guard
= cp_build_binary_op (BIT_AND_EXPR
, guard
, guard_value
);
2272 guard_value
= integer_zero_node
;
2273 if (!same_type_p (TREE_TYPE (guard_value
), TREE_TYPE (guard
)))
2274 guard_value
= convert (TREE_TYPE (guard
), guard_value
);
2275 return cp_build_binary_op (EQ_EXPR
, guard
, guard_value
);
2278 /* Return an expression which sets the GUARD variable, indicating that
2279 the variable being guarded has been initialized. */
2282 set_guard (tree guard
)
2286 /* Set the GUARD to one. */
2287 guard
= get_guard_bits (guard
);
2288 guard_init
= integer_one_node
;
2289 if (!same_type_p (TREE_TYPE (guard_init
), TREE_TYPE (guard
)))
2290 guard_init
= convert (TREE_TYPE (guard
), guard_init
);
2291 return build_modify_expr (guard
, NOP_EXPR
, guard_init
);
2294 /* Start the process of running a particular set of global constructors
2295 or destructors. Subroutine of do_[cd]tors. */
2298 start_objects (int method_type
, int initp
)
2304 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2306 if (initp
!= DEFAULT_INIT_PRIORITY
)
2316 sprintf (type
, "%c%c%.5u", method_type
, joiner
, initp
);
2319 sprintf (type
, "%c", method_type
);
2321 fndecl
= build_lang_decl (FUNCTION_DECL
,
2322 get_file_function_name (type
),
2323 build_function_type (void_type_node
,
2325 start_preparsed_function (fndecl
, /*attrs=*/NULL_TREE
, SF_PRE_PARSED
);
2327 /* It can be a static function as long as collect2 does not have
2328 to scan the object file to find its ctor/dtor routine. */
2329 TREE_PUBLIC (current_function_decl
) = ! targetm
.have_ctors_dtors
;
2331 /* Mark this declaration as used to avoid spurious warnings. */
2332 TREE_USED (current_function_decl
) = 1;
2334 /* Mark this function as a global constructor or destructor. */
2335 if (method_type
== 'I')
2336 DECL_GLOBAL_CTOR_P (current_function_decl
) = 1;
2338 DECL_GLOBAL_DTOR_P (current_function_decl
) = 1;
2339 DECL_LANG_SPECIFIC (current_function_decl
)->decl_flags
.u2sel
= 1;
2341 body
= begin_compound_stmt (BCS_FN_BODY
);
2346 /* Finish the process of running a particular set of global constructors
2347 or destructors. Subroutine of do_[cd]tors. */
2350 finish_objects (int method_type
, int initp
, tree body
)
2355 finish_compound_stmt (body
);
2356 fn
= finish_function (0);
2357 expand_or_defer_fn (fn
);
2359 /* When only doing semantic analysis, and no RTL generation, we
2360 can't call functions that directly emit assembly code; there is
2361 no assembly file in which to put the code. */
2362 if (flag_syntax_only
)
2365 if (targetm
.have_ctors_dtors
)
2367 rtx fnsym
= XEXP (DECL_RTL (fn
), 0);
2368 cgraph_mark_needed_node (cgraph_node (fn
));
2369 if (method_type
== 'I')
2370 (* targetm
.asm_out
.constructor
) (fnsym
, initp
);
2372 (* targetm
.asm_out
.destructor
) (fnsym
, initp
);
2376 /* The names of the parameters to the function created to handle
2377 initializations and destructions for objects with static storage
2379 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2380 #define PRIORITY_IDENTIFIER "__priority"
2382 /* The name of the function we create to handle initializations and
2383 destructions for objects with static storage duration. */
2384 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2386 /* The declaration for the __INITIALIZE_P argument. */
2387 static GTY(()) tree initialize_p_decl
;
2389 /* The declaration for the __PRIORITY argument. */
2390 static GTY(()) tree priority_decl
;
2392 /* The declaration for the static storage duration function. */
2393 static GTY(()) tree ssdf_decl
;
2395 /* All the static storage duration functions created in this
2396 translation unit. */
2397 static GTY(()) VEC(tree
,gc
) *ssdf_decls
;
2399 /* A map from priority levels to information about that priority
2400 level. There may be many such levels, so efficient lookup is
2402 static splay_tree priority_info_map
;
2404 /* Begins the generation of the function that will handle all
2405 initialization and destruction of objects with static storage
2406 duration. The function generated takes two parameters of type
2407 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2408 nonzero, it performs initializations. Otherwise, it performs
2409 destructions. It only performs those initializations or
2410 destructions with the indicated __PRIORITY. The generated function
2413 It is assumed that this function will only be called once per
2414 translation unit. */
2417 start_static_storage_duration_function (unsigned count
)
2422 char id
[sizeof (SSDF_IDENTIFIER
) + 1 /* '\0' */ + 32];
2424 /* Create the identifier for this function. It will be of the form
2425 SSDF_IDENTIFIER_<number>. */
2426 sprintf (id
, "%s_%u", SSDF_IDENTIFIER
, count
);
2428 /* Create the parameters. */
2429 parm_types
= void_list_node
;
2430 parm_types
= tree_cons (NULL_TREE
, integer_type_node
, parm_types
);
2431 parm_types
= tree_cons (NULL_TREE
, integer_type_node
, parm_types
);
2432 type
= build_function_type (void_type_node
, parm_types
);
2434 /* Create the FUNCTION_DECL itself. */
2435 ssdf_decl
= build_lang_decl (FUNCTION_DECL
,
2436 get_identifier (id
),
2438 TREE_PUBLIC (ssdf_decl
) = 0;
2439 DECL_ARTIFICIAL (ssdf_decl
) = 1;
2440 DECL_INLINE (ssdf_decl
) = 1;
2442 /* Put this function in the list of functions to be called from the
2443 static constructors and destructors. */
2446 ssdf_decls
= VEC_alloc (tree
, gc
, 32);
2448 /* Take this opportunity to initialize the map from priority
2449 numbers to information about that priority level. */
2450 priority_info_map
= splay_tree_new (splay_tree_compare_ints
,
2451 /*delete_key_fn=*/0,
2452 /*delete_value_fn=*/
2453 (splay_tree_delete_value_fn
) &free
);
2455 /* We always need to generate functions for the
2456 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2457 priorities later, we'll be sure to find the
2458 DEFAULT_INIT_PRIORITY. */
2459 get_priority_info (DEFAULT_INIT_PRIORITY
);
2462 VEC_safe_push (tree
, gc
, ssdf_decls
, ssdf_decl
);
2464 /* Create the argument list. */
2465 initialize_p_decl
= cp_build_parm_decl
2466 (get_identifier (INITIALIZE_P_IDENTIFIER
), integer_type_node
);
2467 DECL_CONTEXT (initialize_p_decl
) = ssdf_decl
;
2468 TREE_USED (initialize_p_decl
) = 1;
2469 priority_decl
= cp_build_parm_decl
2470 (get_identifier (PRIORITY_IDENTIFIER
), integer_type_node
);
2471 DECL_CONTEXT (priority_decl
) = ssdf_decl
;
2472 TREE_USED (priority_decl
) = 1;
2474 TREE_CHAIN (initialize_p_decl
) = priority_decl
;
2475 DECL_ARGUMENTS (ssdf_decl
) = initialize_p_decl
;
2477 /* Put the function in the global scope. */
2478 pushdecl (ssdf_decl
);
2480 /* Start the function itself. This is equivalent to declaring the
2483 static void __ssdf (int __initialize_p, init __priority_p);
2485 It is static because we only need to call this function from the
2486 various constructor and destructor functions for this module. */
2487 start_preparsed_function (ssdf_decl
,
2488 /*attrs=*/NULL_TREE
,
2491 /* Set up the scope of the outermost block in the function. */
2492 body
= begin_compound_stmt (BCS_FN_BODY
);
2497 /* Finish the generation of the function which performs initialization
2498 and destruction of objects with static storage duration. After
2499 this point, no more such objects can be created. */
2502 finish_static_storage_duration_function (tree body
)
2504 /* Close out the function. */
2505 finish_compound_stmt (body
);
2506 expand_or_defer_fn (finish_function (0));
2509 /* Return the information about the indicated PRIORITY level. If no
2510 code to handle this level has yet been generated, generate the
2511 appropriate prologue. */
2513 static priority_info
2514 get_priority_info (int priority
)
2519 n
= splay_tree_lookup (priority_info_map
,
2520 (splay_tree_key
) priority
);
2523 /* Create a new priority information structure, and insert it
2525 pi
= XNEW (struct priority_info_s
);
2526 pi
->initializations_p
= 0;
2527 pi
->destructions_p
= 0;
2528 splay_tree_insert (priority_info_map
,
2529 (splay_tree_key
) priority
,
2530 (splay_tree_value
) pi
);
2533 pi
= (priority_info
) n
->value
;
2538 /* The effective initialization priority of a DECL. */
2540 #define DECL_EFFECTIVE_INIT_PRIORITY(decl) \
2541 ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2542 ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2544 /* Whether a DECL needs a guard to protect it against multiple
2547 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl) \
2548 || DECL_ONE_ONLY (decl) \
2549 || DECL_WEAK (decl)))
2551 /* Set up to handle the initialization or destruction of DECL. If
2552 INITP is nonzero, we are initializing the variable. Otherwise, we
2553 are destroying it. */
2556 one_static_initialization_or_destruction (tree decl
, tree init
, bool initp
)
2558 tree guard_if_stmt
= NULL_TREE
;
2561 /* If we are supposed to destruct and there's a trivial destructor,
2562 nothing has to be done. */
2564 && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
2567 /* Trick the compiler into thinking we are at the file and line
2568 where DECL was declared so that error-messages make sense, and so
2569 that the debugger will show somewhat sensible file and line
2571 input_location
= DECL_SOURCE_LOCATION (decl
);
2577 Access control for implicit calls to the constructors,
2578 the conversion functions, or the destructor called to
2579 create and destroy a static data member is performed as
2580 if these calls appeared in the scope of the member's
2583 we pretend we are in a static member function of the class of
2584 which the DECL is a member. */
2585 if (member_p (decl
))
2587 DECL_CONTEXT (current_function_decl
) = DECL_CONTEXT (decl
);
2588 DECL_STATIC_FUNCTION_P (current_function_decl
) = 1;
2591 /* Assume we don't need a guard. */
2593 /* We need a guard if this is an object with external linkage that
2594 might be initialized in more than one place. (For example, a
2595 static data member of a template, when the data member requires
2597 if (NEEDS_GUARD_P (decl
))
2601 guard
= get_guard (decl
);
2603 /* When using __cxa_atexit, we just check the GUARD as we would
2604 for a local static. */
2605 if (flag_use_cxa_atexit
)
2607 /* When using __cxa_atexit, we never try to destroy
2608 anything from a static destructor. */
2610 guard_cond
= get_guard_cond (guard
);
2612 /* If we don't have __cxa_atexit, then we will be running
2613 destructors from .fini sections, or their equivalents. So,
2614 we need to know how many times we've tried to initialize this
2615 object. We do initializations only if the GUARD is zero,
2616 i.e., if we are the first to initialize the variable. We do
2617 destructions only if the GUARD is one, i.e., if we are the
2618 last to destroy the variable. */
2621 = cp_build_binary_op (EQ_EXPR
,
2622 build_unary_op (PREINCREMENT_EXPR
,
2628 = cp_build_binary_op (EQ_EXPR
,
2629 build_unary_op (PREDECREMENT_EXPR
,
2634 guard_if_stmt
= begin_if_stmt ();
2635 finish_if_stmt_cond (guard_cond
, guard_if_stmt
);
2639 /* If we're using __cxa_atexit, we have not already set the GUARD,
2640 so we must do so now. */
2641 if (guard
&& initp
&& flag_use_cxa_atexit
)
2642 finish_expr_stmt (set_guard (guard
));
2644 /* Perform the initialization or destruction. */
2648 finish_expr_stmt (init
);
2650 /* If we're using __cxa_atexit, register a function that calls the
2651 destructor for the object. */
2652 if (flag_use_cxa_atexit
)
2653 finish_expr_stmt (register_dtor_fn (decl
));
2656 finish_expr_stmt (build_cleanup (decl
));
2658 /* Finish the guard if-stmt, if necessary. */
2661 finish_then_clause (guard_if_stmt
);
2662 finish_if_stmt (guard_if_stmt
);
2665 /* Now that we're done with DECL we don't need to pretend to be a
2666 member of its class any longer. */
2667 DECL_CONTEXT (current_function_decl
) = NULL_TREE
;
2668 DECL_STATIC_FUNCTION_P (current_function_decl
) = 0;
2671 /* Generate code to do the initialization or destruction of the decls in VARS,
2672 a TREE_LIST of VAR_DECL with static storage duration.
2673 Whether initialization or destruction is performed is specified by INITP. */
2676 do_static_initialization_or_destruction (tree vars
, bool initp
)
2678 tree node
, init_if_stmt
, cond
;
2680 /* Build the outer if-stmt to check for initialization or destruction. */
2681 init_if_stmt
= begin_if_stmt ();
2682 cond
= initp
? integer_one_node
: integer_zero_node
;
2683 cond
= cp_build_binary_op (EQ_EXPR
,
2686 finish_if_stmt_cond (cond
, init_if_stmt
);
2690 tree decl
= TREE_VALUE (node
);
2691 tree priority_if_stmt
;
2695 /* If we don't need a destructor, there's nothing to do. Avoid
2696 creating a possibly empty if-stmt. */
2697 if (!initp
&& TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
2699 node
= TREE_CHAIN (node
);
2703 /* Remember that we had an initialization or finalization at this
2705 priority
= DECL_EFFECTIVE_INIT_PRIORITY (decl
);
2706 pi
= get_priority_info (priority
);
2708 pi
->initializations_p
= 1;
2710 pi
->destructions_p
= 1;
2712 /* Conditionalize this initialization on being in the right priority
2713 and being initializing/finalizing appropriately. */
2714 priority_if_stmt
= begin_if_stmt ();
2715 cond
= cp_build_binary_op (EQ_EXPR
,
2717 build_int_cst (NULL_TREE
, priority
));
2718 finish_if_stmt_cond (cond
, priority_if_stmt
);
2720 /* Process initializers with same priority. */
2722 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node
)) == priority
;
2723 node
= TREE_CHAIN (node
))
2724 /* Do one initialization or destruction. */
2725 one_static_initialization_or_destruction (TREE_VALUE (node
),
2726 TREE_PURPOSE (node
), initp
);
2728 /* Finish up the priority if-stmt body. */
2729 finish_then_clause (priority_if_stmt
);
2730 finish_if_stmt (priority_if_stmt
);
2734 /* Finish up the init/destruct if-stmt body. */
2735 finish_then_clause (init_if_stmt
);
2736 finish_if_stmt (init_if_stmt
);
2739 /* VARS is a list of variables with static storage duration which may
2740 need initialization and/or finalization. Remove those variables
2741 that don't really need to be initialized or finalized, and return
2742 the resulting list. The order in which the variables appear in
2743 VARS is in reverse order of the order in which they should actually
2744 be initialized. The list we return is in the unreversed order;
2745 i.e., the first variable should be initialized first. */
2748 prune_vars_needing_no_initialization (tree
*vars
)
2751 tree result
= NULL_TREE
;
2756 tree decl
= TREE_VALUE (t
);
2757 tree init
= TREE_PURPOSE (t
);
2759 /* Deal gracefully with error. */
2760 if (decl
== error_mark_node
)
2762 var
= &TREE_CHAIN (t
);
2766 /* The only things that can be initialized are variables. */
2767 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
2769 /* If this object is not defined, we don't need to do anything
2771 if (DECL_EXTERNAL (decl
))
2773 var
= &TREE_CHAIN (t
);
2777 /* Also, if the initializer already contains errors, we can bail
2779 if (init
&& TREE_CODE (init
) == TREE_LIST
2780 && value_member (error_mark_node
, init
))
2782 var
= &TREE_CHAIN (t
);
2786 /* This variable is going to need initialization and/or
2787 finalization, so we add it to the list. */
2788 *var
= TREE_CHAIN (t
);
2789 TREE_CHAIN (t
) = result
;
2796 /* Make sure we have told the back end about all the variables in
2800 write_out_vars (tree vars
)
2804 for (v
= vars
; v
; v
= TREE_CHAIN (v
))
2806 tree var
= TREE_VALUE (v
);
2807 if (!var_finalized_p (var
))
2809 import_export_decl (var
);
2810 rest_of_decl_compilation (var
, 1, 1);
2815 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
2816 (otherwise) that will initialize all global objects with static
2817 storage duration having the indicated PRIORITY. */
2820 generate_ctor_or_dtor_function (bool constructor_p
, int priority
,
2829 input_location
= *locus
;
2830 #ifdef USE_MAPPED_LOCATION
2836 /* We use `I' to indicate initialization and `D' to indicate
2838 function_key
= constructor_p
? 'I' : 'D';
2840 /* We emit the function lazily, to avoid generating empty
2841 global constructors and destructors. */
2844 /* For Objective-C++, we may need to initialize metadata found in this module.
2845 This must be done _before_ any other static initializations. */
2846 if (c_dialect_objc () && (priority
== DEFAULT_INIT_PRIORITY
)
2847 && constructor_p
&& objc_static_init_needed_p ())
2849 body
= start_objects (function_key
, priority
);
2850 static_ctors
= objc_generate_static_init_call (static_ctors
);
2853 /* Call the static storage duration function with appropriate
2855 for (i
= 0; VEC_iterate (tree
, ssdf_decls
, i
, fndecl
); ++i
)
2857 /* Calls to pure or const functions will expand to nothing. */
2858 if (! (flags_from_decl_or_type (fndecl
) & (ECF_CONST
| ECF_PURE
)))
2861 body
= start_objects (function_key
, priority
);
2863 arguments
= tree_cons (NULL_TREE
,
2864 build_int_cst (NULL_TREE
, priority
),
2866 arguments
= tree_cons (NULL_TREE
,
2867 build_int_cst (NULL_TREE
, constructor_p
),
2869 finish_expr_stmt (build_function_call (fndecl
, arguments
));
2873 /* If we're generating code for the DEFAULT_INIT_PRIORITY, throw in
2874 calls to any functions marked with attributes indicating that
2875 they should be called at initialization- or destruction-time. */
2876 if (priority
== DEFAULT_INIT_PRIORITY
)
2880 for (fns
= constructor_p
? static_ctors
: static_dtors
;
2882 fns
= TREE_CHAIN (fns
))
2884 fndecl
= TREE_VALUE (fns
);
2886 /* Calls to pure/const functions will expand to nothing. */
2887 if (! (flags_from_decl_or_type (fndecl
) & (ECF_CONST
| ECF_PURE
)))
2890 body
= start_objects (function_key
, priority
);
2891 finish_expr_stmt (build_function_call (fndecl
, NULL_TREE
));
2896 /* Close out the function. */
2898 finish_objects (function_key
, priority
, body
);
2901 /* Generate constructor and destructor functions for the priority
2905 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n
, void * data
)
2907 location_t
*locus
= (location_t
*) data
;
2908 int priority
= (int) n
->key
;
2909 priority_info pi
= (priority_info
) n
->value
;
2911 /* Generate the functions themselves, but only if they are really
2913 if (pi
->initializations_p
2914 || (priority
== DEFAULT_INIT_PRIORITY
&& static_ctors
))
2915 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority
, locus
);
2916 if (pi
->destructions_p
2917 || (priority
== DEFAULT_INIT_PRIORITY
&& static_dtors
))
2918 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority
, locus
);
2920 /* Keep iterating. */
2924 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
2925 decls referenced from front-end specific constructs; it will be called
2926 only for language-specific tree nodes.
2928 Here we must deal with member pointers. */
2931 cxx_callgraph_analyze_expr (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
2932 tree from ATTRIBUTE_UNUSED
)
2936 switch (TREE_CODE (t
))
2939 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t
)))
2940 cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t
)));
2943 if (TREE_CODE (BASELINK_FUNCTIONS (t
)) == FUNCTION_DECL
)
2944 cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t
)));
2947 if (DECL_VTABLE_OR_VTT_P (t
))
2949 /* The ABI requires that all virtual tables be emitted
2950 whenever one of them is. */
2952 for (vtbl
= CLASSTYPE_VTABLES (DECL_CONTEXT (t
));
2954 vtbl
= TREE_CHAIN (vtbl
))
2955 mark_decl_referenced (vtbl
);
2957 else if (DECL_CONTEXT (t
)
2958 && TREE_CODE (DECL_CONTEXT (t
)) == FUNCTION_DECL
)
2959 /* If we need a static variable in a function, then we
2960 need the containing function. */
2961 mark_decl_referenced (DECL_CONTEXT (t
));
2970 /* Java requires that we be able to reference a local address for a
2971 method, and not be confused by PLT entries. If hidden aliases are
2972 supported, emit one for each java function that we've emitted. */
2975 build_java_method_aliases (void)
2977 struct cgraph_node
*node
;
2979 #ifndef HAVE_GAS_HIDDEN
2983 for (node
= cgraph_nodes
; node
; node
= node
->next
)
2985 tree fndecl
= node
->decl
;
2987 if (TREE_ASM_WRITTEN (fndecl
)
2988 && DECL_CONTEXT (fndecl
)
2989 && TYPE_P (DECL_CONTEXT (fndecl
))
2990 && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl
))
2991 && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl
))
2993 /* Mangle the name in a predictable way; we need to reference
2994 this from a java compiled object file. */
2995 tree oid
, nid
, alias
;
2999 oid
= DECL_ASSEMBLER_NAME (fndecl
);
3000 oname
= IDENTIFIER_POINTER (oid
);
3001 gcc_assert (oname
[0] == '_' && oname
[1] == 'Z');
3002 nname
= ACONCAT (("_ZGA", oname
+2, NULL
));
3003 nid
= get_identifier (nname
);
3005 alias
= make_alias_for (fndecl
, nid
);
3006 TREE_PUBLIC (alias
) = 1;
3007 DECL_VISIBILITY (alias
) = VISIBILITY_HIDDEN
;
3009 assemble_alias (alias
, oid
);
3014 /* This routine is called at the end of compilation.
3015 Its job is to create all the code needed to initialize and
3016 destroy the global aggregates. We do the destruction
3017 first, since that way we only need to reverse the decls once. */
3020 cp_write_global_declarations (void)
3026 unsigned ssdf_count
= 0;
3030 locus
= input_location
;
3033 /* Bad parse errors. Just forget about it. */
3034 if (! global_bindings_p () || current_class_type
|| decl_namespace_list
)
3038 c_common_write_pch ();
3040 #ifdef USE_MAPPED_LOCATION
3043 /* Otherwise, GDB can get confused, because in only knows
3044 about source for LINENO-1 lines. */
3048 /* We now have to write out all the stuff we put off writing out.
3051 o Template specializations that we have not yet instantiated,
3052 but which are needed.
3053 o Initialization and destruction for non-local objects with
3054 static storage duration. (Local objects with static storage
3055 duration are initialized when their scope is first entered,
3056 and are cleaned up via atexit.)
3057 o Virtual function tables.
3059 All of these may cause others to be needed. For example,
3060 instantiating one function may cause another to be needed, and
3061 generating the initializer for an object may cause templates to be
3062 instantiated, etc., etc. */
3064 timevar_push (TV_VARCONST
);
3066 emit_support_tinfos ();
3075 /* If there are templates that we've put off instantiating, do
3077 instantiate_pending_templates (retries
);
3080 /* Write out virtual tables as required. Note that writing out
3081 the virtual table for a template class may cause the
3082 instantiation of members of that class. If we write out
3083 vtables then we remove the class from our list so we don't
3084 have to look at it again. */
3086 while (keyed_classes
!= NULL_TREE
3087 && maybe_emit_vtables (TREE_VALUE (keyed_classes
)))
3090 keyed_classes
= TREE_CHAIN (keyed_classes
);
3096 tree next
= TREE_CHAIN (t
);
3100 if (maybe_emit_vtables (TREE_VALUE (next
)))
3103 TREE_CHAIN (t
) = TREE_CHAIN (next
);
3108 next
= TREE_CHAIN (t
);
3112 /* Write out needed type info variables. We have to be careful
3113 looping through unemitted decls, because emit_tinfo_decl may
3114 cause other variables to be needed. New elements will be
3115 appended, and we remove from the vector those that actually
3117 for (i
= VEC_length (tree
, unemitted_tinfo_decls
);
3118 VEC_iterate (tree
, unemitted_tinfo_decls
, --i
, t
);)
3119 if (emit_tinfo_decl (t
))
3122 VEC_unordered_remove (tree
, unemitted_tinfo_decls
, i
);
3125 /* The list of objects with static storage duration is built up
3126 in reverse order. We clear STATIC_AGGREGATES so that any new
3127 aggregates added during the initialization of these will be
3128 initialized in the correct order when we next come around the
3130 vars
= prune_vars_needing_no_initialization (&static_aggregates
);
3134 /* We need to start a new initialization function each time
3135 through the loop. That's because we need to know which
3136 vtables have been referenced, and TREE_SYMBOL_REFERENCED
3137 isn't computed until a function is finished, and written
3138 out. That's a deficiency in the back end. When this is
3139 fixed, these initialization functions could all become
3140 inline, with resulting performance improvements. */
3143 /* Set the line and file, so that it is obviously not from
3145 input_location
= locus
;
3146 ssdf_body
= start_static_storage_duration_function (ssdf_count
);
3148 /* Make sure the back end knows about all the variables. */
3149 write_out_vars (vars
);
3151 /* First generate code to do all the initializations. */
3153 do_static_initialization_or_destruction (vars
, /*initp=*/true);
3155 /* Then, generate code to do all the destructions. Do these
3156 in reverse order so that the most recently constructed
3157 variable is the first destroyed. If we're using
3158 __cxa_atexit, then we don't need to do this; functions
3159 were registered at initialization time to destroy the
3161 if (!flag_use_cxa_atexit
&& vars
)
3163 vars
= nreverse (vars
);
3164 do_static_initialization_or_destruction (vars
, /*initp=*/false);
3169 /* Finish up the static storage duration function for this
3171 input_location
= locus
;
3172 finish_static_storage_duration_function (ssdf_body
);
3174 /* All those initializations and finalizations might cause
3175 us to need more inline functions, more template
3176 instantiations, etc. */
3179 #ifdef USE_MAPPED_LOCATION
3186 /* Go through the set of inline functions whose bodies have not
3187 been emitted yet. If out-of-line copies of these functions
3188 are required, emit them. */
3189 for (i
= 0; VEC_iterate (tree
, deferred_fns
, i
, decl
); ++i
)
3191 /* Does it need synthesizing? */
3192 if (DECL_ARTIFICIAL (decl
) && ! DECL_INITIAL (decl
)
3193 && (! DECL_REALLY_EXTERN (decl
) || DECL_INLINE (decl
)))
3195 /* Even though we're already at the top-level, we push
3196 there again. That way, when we pop back a few lines
3197 hence, all of our state is restored. Otherwise,
3198 finish_function doesn't clean things up, and we end
3199 up with CURRENT_FUNCTION_DECL set. */
3200 push_to_top_level ();
3201 /* The decl's location will mark where it was first
3202 needed. Save that so synthesize method can indicate
3203 where it was needed from, in case of error */
3204 input_location
= DECL_SOURCE_LOCATION (decl
);
3205 synthesize_method (decl
);
3206 pop_from_top_level ();
3210 if (!DECL_SAVED_TREE (decl
))
3213 /* We lie to the back end, pretending that some functions
3214 are not defined when they really are. This keeps these
3215 functions from being put out unnecessarily. But, we must
3216 stop lying when the functions are referenced, or if they
3217 are not comdat since they need to be put out now. If
3218 DECL_INTERFACE_KNOWN, then we have already set
3219 DECL_EXTERNAL appropriately, so there's no need to check
3220 again, and we do not want to clear DECL_EXTERNAL if a
3221 previous call to import_export_decl set it.
3223 This is done in a separate for cycle, because if some
3224 deferred function is contained in another deferred
3225 function later in deferred_fns varray,
3226 rest_of_compilation would skip this function and we
3227 really cannot expand the same function twice. */
3228 import_export_decl (decl
);
3229 if (DECL_NOT_REALLY_EXTERN (decl
)
3230 && DECL_INITIAL (decl
)
3231 && decl_needed_p (decl
))
3232 DECL_EXTERNAL (decl
) = 0;
3234 /* If we're going to need to write this function out, and
3235 there's already a body for it, create RTL for it now.
3236 (There might be no body if this is a method we haven't
3237 gotten around to synthesizing yet.) */
3238 if (!DECL_EXTERNAL (decl
)
3239 && decl_needed_p (decl
)
3240 && !TREE_ASM_WRITTEN (decl
)
3241 && !cgraph_node (decl
)->local
.finalized
)
3243 /* We will output the function; no longer consider it in this
3245 DECL_DEFER_OUTPUT (decl
) = 0;
3246 /* Generate RTL for this function now that we know we
3248 expand_or_defer_fn (decl
);
3249 /* If we're compiling -fsyntax-only pretend that this
3250 function has been written out so that we don't try to
3252 if (flag_syntax_only
)
3253 TREE_ASM_WRITTEN (decl
) = 1;
3258 if (walk_namespaces (wrapup_globals_for_namespace
, /*data=*/0))
3261 /* Static data members are just like namespace-scope globals. */
3262 for (i
= 0; VEC_iterate (tree
, pending_statics
, i
, decl
); ++i
)
3264 if (var_finalized_p (decl
) || DECL_REALLY_EXTERN (decl
))
3266 import_export_decl (decl
);
3267 /* If this static data member is needed, provide it to the
3269 if (DECL_NOT_REALLY_EXTERN (decl
) && decl_needed_p (decl
))
3270 DECL_EXTERNAL (decl
) = 0;
3272 if (VEC_length (tree
, pending_statics
) != 0
3273 && wrapup_global_declarations (VEC_address (tree
, pending_statics
),
3274 VEC_length (tree
, pending_statics
)))
3281 /* All used inline functions must have a definition at this point. */
3282 for (i
= 0; VEC_iterate (tree
, deferred_fns
, i
, decl
); ++i
)
3284 if (/* Check online inline functions that were actually used. */
3285 TREE_USED (decl
) && DECL_DECLARED_INLINE_P (decl
)
3286 /* If the definition actually was available here, then the
3287 fact that the function was not defined merely represents
3288 that for some reason (use of a template repository,
3289 #pragma interface, etc.) we decided not to emit the
3291 && !DECL_INITIAL (decl
)
3292 /* An explicit instantiation can be used to specify
3293 that the body is in another unit. It will have
3294 already verified there was a definition. */
3295 && !DECL_EXPLICIT_INSTANTIATION (decl
))
3297 warning (0, "inline function %q+D used but never defined", decl
);
3298 /* Avoid a duplicate warning from check_global_declaration_1. */
3299 TREE_NO_WARNING (decl
) = 1;
3303 /* We give C linkage to static constructors and destructors. */
3304 push_lang_context (lang_name_c
);
3306 /* Generate initialization and destruction functions for all
3307 priorities for which they are required. */
3308 if (priority_info_map
)
3309 splay_tree_foreach (priority_info_map
,
3310 generate_ctor_and_dtor_functions_for_priority
,
3314 /* If we have a ctor or this is obj-c++ and we need a static init,
3315 call generate_ctor_or_dtor_function. */
3316 if (static_ctors
|| (c_dialect_objc () && objc_static_init_needed_p ()))
3317 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3318 DEFAULT_INIT_PRIORITY
, &locus
);
3320 generate_ctor_or_dtor_function (/*constructor_p=*/false,
3321 DEFAULT_INIT_PRIORITY
, &locus
);
3324 /* We're done with the splay-tree now. */
3325 if (priority_info_map
)
3326 splay_tree_delete (priority_info_map
);
3328 /* Generate any missing aliases. */
3329 maybe_apply_pending_pragma_weaks ();
3331 /* We're done with static constructors, so we can go back to "C++"
3333 pop_lang_context ();
3335 cgraph_finalize_compilation_unit ();
3338 /* Now, issue warnings about static, but not defined, functions,
3339 etc., and emit debugging information. */
3340 walk_namespaces (wrapup_globals_for_namespace
, /*data=*/&reconsider
);
3341 if (VEC_length (tree
, pending_statics
) != 0)
3343 check_global_declarations (VEC_address (tree
, pending_statics
),
3344 VEC_length (tree
, pending_statics
));
3345 emit_debug_global_declarations (VEC_address (tree
, pending_statics
),
3346 VEC_length (tree
, pending_statics
));
3349 /* Generate hidden aliases for Java. */
3350 build_java_method_aliases ();
3354 /* The entire file is now complete. If requested, dump everything
3358 FILE *stream
= dump_begin (TDI_tu
, &flags
);
3362 dump_node (global_namespace
, flags
& ~TDF_SLIM
, stream
);
3363 dump_end (TDI_tu
, stream
);
3367 timevar_pop (TV_VARCONST
);
3369 if (flag_detailed_statistics
)
3371 dump_tree_statistics ();
3372 dump_time_statistics ();
3374 input_location
= locus
;
3376 #ifdef ENABLE_CHECKING
3377 validate_conversion_obstack ();
3378 #endif /* ENABLE_CHECKING */
3381 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3382 function to call in parse-tree form; it has not yet been
3383 semantically analyzed. ARGS are the arguments to the function.
3384 They have already been semantically analyzed. */
3387 build_offset_ref_call_from_tree (tree fn
, tree args
)
3396 object
= TREE_OPERAND (fn
, 0);
3398 if (processing_template_decl
)
3400 gcc_assert (TREE_CODE (fn
) == DOTSTAR_EXPR
3401 || TREE_CODE (fn
) == MEMBER_REF
);
3402 if (type_dependent_expression_p (fn
)
3403 || any_type_dependent_arguments_p (args
))
3404 return build_min_nt (CALL_EXPR
, fn
, args
, NULL_TREE
);
3406 /* Transform the arguments and add the implicit "this"
3407 parameter. That must be done before the FN is transformed
3408 because we depend on the form of FN. */
3409 args
= build_non_dependent_args (args
);
3410 if (TREE_CODE (fn
) == DOTSTAR_EXPR
)
3411 object
= build_unary_op (ADDR_EXPR
, object
, 0);
3412 object
= build_non_dependent_expr (object
);
3413 args
= tree_cons (NULL_TREE
, object
, args
);
3414 /* Now that the arguments are done, transform FN. */
3415 fn
= build_non_dependent_expr (fn
);
3418 /* A qualified name corresponding to a bound pointer-to-member is
3419 represented as an OFFSET_REF:
3421 struct B { void g(); };
3423 void B::g() { (this->*p)(); } */
3424 if (TREE_CODE (fn
) == OFFSET_REF
)
3426 tree object_addr
= build_unary_op (ADDR_EXPR
, object
, 0);
3427 fn
= TREE_OPERAND (fn
, 1);
3428 fn
= get_member_function_from_ptrfunc (&object_addr
, fn
);
3429 args
= tree_cons (NULL_TREE
, object_addr
, args
);
3432 expr
= build_function_call (fn
, args
);
3433 if (processing_template_decl
&& expr
!= error_mark_node
)
3434 return build_min_non_dep (CALL_EXPR
, expr
, orig_fn
, orig_args
, NULL_TREE
);
3440 check_default_args (tree x
)
3442 tree arg
= TYPE_ARG_TYPES (TREE_TYPE (x
));
3443 bool saw_def
= false;
3444 int i
= 0 - (TREE_CODE (TREE_TYPE (x
)) == METHOD_TYPE
);
3445 for (; arg
&& arg
!= void_list_node
; arg
= TREE_CHAIN (arg
), ++i
)
3447 if (TREE_PURPOSE (arg
))
3451 error ("default argument missing for parameter %P of %q+#D", i
, x
);
3452 TREE_PURPOSE (arg
) = error_mark_node
;
3457 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
3458 If DECL is a specialization or implicitly declared class member,
3459 generate the actual definition. */
3462 mark_used (tree decl
)
3464 HOST_WIDE_INT saved_processing_template_decl
= 0;
3466 /* If DECL is a BASELINK for a single function, then treat it just
3467 like the DECL for the function. Otherwise, if the BASELINK is
3468 for an overloaded function, we don't know which function was
3469 actually used until after overload resolution. */
3470 if (TREE_CODE (decl
) == BASELINK
)
3472 decl
= BASELINK_FUNCTIONS (decl
);
3473 if (really_overloaded_fn (decl
))
3475 decl
= OVL_CURRENT (decl
);
3478 TREE_USED (decl
) = 1;
3479 if (DECL_CLONED_FUNCTION_P (decl
))
3480 TREE_USED (DECL_CLONED_FUNCTION (decl
)) = 1;
3481 /* If we don't need a value, then we don't need to synthesize DECL. */
3482 if (skip_evaluation
)
3484 /* Normally, we can wait until instantiation-time to synthesize
3485 DECL. However, if DECL is a static data member initialized with
3486 a constant, we need the value right now because a reference to
3487 such a data member is not value-dependent. */
3488 if (TREE_CODE (decl
) == VAR_DECL
3489 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
)
3490 && DECL_CLASS_SCOPE_P (decl
))
3492 /* Don't try to instantiate members of dependent types. We
3493 cannot just use dependent_type_p here because this function
3494 may be called from fold_non_dependent_expr, and then we may
3495 see dependent types, even though processing_template_decl
3497 if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl
)))
3498 && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl
))))
3500 /* Pretend that we are not in a template, even if we are, so
3501 that the static data member initializer will be processed. */
3502 saved_processing_template_decl
= processing_template_decl
;
3503 processing_template_decl
= 0;
3506 if (processing_template_decl
)
3509 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (decl
)
3510 && !TREE_ASM_WRITTEN (decl
))
3511 /* Remember it, so we can check it was defined. */
3513 if (DECL_DEFERRED_FN (decl
))
3516 /* Remember the current location for a function we will end up
3517 synthesizing. Then we can inform the user where it was
3518 required in the case of error. */
3519 if (DECL_ARTIFICIAL (decl
) && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
)
3520 && !DECL_THUNK_P (decl
))
3521 DECL_SOURCE_LOCATION (decl
) = input_location
;
3523 note_vague_linkage_fn (decl
);
3526 assemble_external (decl
);
3528 /* Is it a synthesized method that needs to be synthesized? */
3529 if (TREE_CODE (decl
) == FUNCTION_DECL
3530 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
)
3531 && DECL_ARTIFICIAL (decl
)
3532 && !DECL_THUNK_P (decl
)
3533 && ! DECL_INITIAL (decl
)
3534 /* Kludge: don't synthesize for default args. Unfortunately this
3535 rules out initializers of namespace-scoped objects too, but
3536 it's sort-of ok if the implicit ctor or dtor decl keeps
3537 pointing to the class location. */
3538 && current_function_decl
)
3540 synthesize_method (decl
);
3541 /* If we've already synthesized the method we don't need to
3542 do the instantiation test below. */
3544 else if ((DECL_NON_THUNK_FUNCTION_P (decl
) || TREE_CODE (decl
) == VAR_DECL
)
3545 && DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
)
3546 && (!DECL_EXPLICIT_INSTANTIATION (decl
)
3547 || (TREE_CODE (decl
) == FUNCTION_DECL
3548 && DECL_INLINE (DECL_TEMPLATE_RESULT
3549 (template_for_substitution (decl
))))
3550 /* We need to instantiate static data members so that there
3551 initializers are available in integral constant
3553 || (TREE_CODE (decl
) == VAR_DECL
3554 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
))))
3555 /* If this is a function or variable that is an instance of some
3556 template, we now know that we will need to actually do the
3557 instantiation. We check that DECL is not an explicit
3558 instantiation because that is not checked in instantiate_decl.
3560 We put off instantiating functions in order to improve compile
3561 times. Maintaining a stack of active functions is expensive,
3562 and the inliner knows to instantiate any functions it might
3563 need. Therefore, we always try to defer instantiation. */
3564 instantiate_decl (decl
, /*defer_ok=*/true,
3565 /*expl_inst_class_mem_p=*/false);
3567 processing_template_decl
= saved_processing_template_decl
;
3570 #include "gt-cp-decl2.h"