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 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, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, 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 extern cpp_reader
*parse_in
;
54 /* This structure contains information about the initializations
55 and/or destructions required for a particular priority level. */
56 typedef struct priority_info_s
{
57 /* Nonzero if there have been any initializations at this priority
58 throughout the translation unit. */
59 int initializations_p
;
60 /* Nonzero if there have been any destructions at this priority
61 throughout the translation unit. */
65 static void mark_vtable_entries (tree
);
66 static void grok_function_init (tree
, tree
);
67 static bool maybe_emit_vtables (tree
);
68 static tree
build_anon_union_vars (tree
);
69 static bool acceptable_java_type (tree
);
70 static tree
start_objects (int, int);
71 static void finish_objects (int, int, tree
);
72 static tree
start_static_storage_duration_function (unsigned);
73 static void finish_static_storage_duration_function (tree
);
74 static priority_info
get_priority_info (int);
75 static void do_static_initialization (tree
, tree
);
76 static void do_static_destruction (tree
);
77 static tree
start_static_initialization_or_destruction (tree
, int);
78 static void finish_static_initialization_or_destruction (tree
);
79 static void generate_ctor_or_dtor_function (bool, int, location_t
*);
80 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node
,
82 static tree
prune_vars_needing_no_initialization (tree
*);
83 static void write_out_vars (tree
);
84 static void import_export_class (tree
);
85 static tree
get_guard_bits (tree
);
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(()) varray_type pending_statics
;
91 #define pending_statics_used \
92 (pending_statics ? pending_statics->elements_used : 0)
94 /* A list of functions which were declared inline, but which we
95 may need to emit outline anyway. */
96 static GTY(()) varray_type deferred_fns
;
97 #define deferred_fns_used \
98 (deferred_fns ? deferred_fns->elements_used : 0)
100 /* Flag used when debugging spew.c */
102 extern int spew_debug
;
104 /* Nonzero if we're done parsing and into end-of-file activities. */
108 /* Functions called along with real static constructors and destructors. */
114 /* Incorporate `const' and `volatile' qualifiers for member functions.
115 FUNCTION is a TYPE_DECL or a FUNCTION_DECL.
116 QUALS is a list of qualifiers. Returns any explicit
117 top-level qualifiers of the method's this pointer, anything other than
118 TYPE_UNQUALIFIED will be an extension. */
121 grok_method_quals (tree ctype
, tree function
, cp_cv_quals quals
)
123 tree fntype
= TREE_TYPE (function
);
124 tree raises
= TYPE_RAISES_EXCEPTIONS (fntype
);
125 int type_quals
= TYPE_UNQUALIFIED
;
126 int this_quals
= TYPE_UNQUALIFIED
;
128 type_quals
= quals
& ~TYPE_QUAL_RESTRICT
;
129 this_quals
= quals
& TYPE_QUAL_RESTRICT
;
131 ctype
= cp_build_qualified_type (ctype
, type_quals
);
132 fntype
= build_method_type_directly (ctype
, TREE_TYPE (fntype
),
133 (TREE_CODE (fntype
) == METHOD_TYPE
134 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype
))
135 : TYPE_ARG_TYPES (fntype
)));
137 fntype
= build_exception_variant (fntype
, raises
);
139 TREE_TYPE (function
) = fntype
;
143 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
147 cp_build_parm_decl (tree name
, tree type
)
149 tree parm
= build_decl (PARM_DECL
, name
, type
);
150 /* DECL_ARG_TYPE is only used by the back end and the back end never
152 if (!processing_template_decl
)
153 DECL_ARG_TYPE (parm
) = type_passed_as (type
);
157 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
161 build_artificial_parm (tree name
, tree type
)
163 tree parm
= cp_build_parm_decl (name
, type
);
164 DECL_ARTIFICIAL (parm
) = 1;
165 /* All our artificial parms are implicitly `const'; they cannot be
167 TREE_READONLY (parm
) = 1;
171 /* Constructors for types with virtual baseclasses need an "in-charge" flag
172 saying whether this constructor is responsible for initialization of
173 virtual baseclasses or not. All destructors also need this "in-charge"
174 flag, which additionally determines whether or not the destructor should
175 free the memory for the object.
177 This function adds the "in-charge" flag to member function FN if
178 appropriate. It is called from grokclassfn and tsubst.
179 FN must be either a constructor or destructor.
181 The in-charge flag follows the 'this' parameter, and is followed by the
182 VTT parm (if any), then the user-written parms. */
185 maybe_retrofit_in_chrg (tree fn
)
187 tree basetype
, arg_types
, parms
, parm
, fntype
;
189 /* If we've already add the in-charge parameter don't do it again. */
190 if (DECL_HAS_IN_CHARGE_PARM_P (fn
))
193 /* When processing templates we can't know, in general, whether or
194 not we're going to have virtual baseclasses. */
195 if (processing_template_decl
)
198 /* We don't need an in-charge parameter for constructors that don't
199 have virtual bases. */
200 if (DECL_CONSTRUCTOR_P (fn
)
201 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn
)))
204 arg_types
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
205 basetype
= TREE_TYPE (TREE_VALUE (arg_types
));
206 arg_types
= TREE_CHAIN (arg_types
);
208 parms
= TREE_CHAIN (DECL_ARGUMENTS (fn
));
210 /* If this is a subobject constructor or destructor, our caller will
211 pass us a pointer to our VTT. */
212 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn
)))
214 parm
= build_artificial_parm (vtt_parm_identifier
, vtt_parm_type
);
216 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
217 TREE_CHAIN (parm
) = parms
;
220 /* ...and then to TYPE_ARG_TYPES. */
221 arg_types
= hash_tree_chain (vtt_parm_type
, arg_types
);
223 DECL_HAS_VTT_PARM_P (fn
) = 1;
226 /* Then add the in-charge parm (before the VTT parm). */
227 parm
= build_artificial_parm (in_charge_identifier
, integer_type_node
);
228 TREE_CHAIN (parm
) = parms
;
230 arg_types
= hash_tree_chain (integer_type_node
, arg_types
);
232 /* Insert our new parameter(s) into the list. */
233 TREE_CHAIN (DECL_ARGUMENTS (fn
)) = parms
;
235 /* And rebuild the function type. */
236 fntype
= build_method_type_directly (basetype
, TREE_TYPE (TREE_TYPE (fn
)),
238 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn
)))
239 fntype
= build_exception_variant (fntype
,
240 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn
)));
241 TREE_TYPE (fn
) = fntype
;
243 /* Now we've got the in-charge parameter. */
244 DECL_HAS_IN_CHARGE_PARM_P (fn
) = 1;
247 /* Classes overload their constituent function names automatically.
248 When a function name is declared in a record structure,
249 its name is changed to it overloaded name. Since names for
250 constructors and destructors can conflict, we place a leading
253 CNAME is the name of the class we are grokking for.
255 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
257 FLAGS contains bits saying what's special about today's
258 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
260 If FUNCTION is a destructor, then we must add the `auto-delete' field
261 as a second parameter. There is some hair associated with the fact
262 that we must "declare" this variable in the manner consistent with the
263 way the rest of the arguments were declared.
265 QUALS are the qualifiers for the this pointer. */
268 grokclassfn (tree ctype
, tree function
, enum overload_flags flags
,
271 tree fn_name
= DECL_NAME (function
);
272 cp_cv_quals this_quals
= TYPE_UNQUALIFIED
;
274 /* Even within an `extern "C"' block, members get C++ linkage. See
275 [dcl.link] for details. */
276 SET_DECL_LANGUAGE (function
, lang_cplusplus
);
278 if (fn_name
== NULL_TREE
)
280 error ("name missing for member function");
281 fn_name
= get_identifier ("<anonymous>");
282 DECL_NAME (function
) = fn_name
;
286 this_quals
= grok_method_quals (ctype
, function
, quals
);
288 if (TREE_CODE (TREE_TYPE (function
)) == METHOD_TYPE
)
290 /* Must add the class instance variable up front. */
291 /* Right now we just make this a pointer. But later
292 we may wish to make it special. */
293 tree type
= TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (function
)));
297 /* The `this' parameter is implicitly `const'; it cannot be
299 this_quals
|= TYPE_QUAL_CONST
;
300 qual_type
= cp_build_qualified_type (type
, this_quals
);
301 parm
= build_artificial_parm (this_identifier
, qual_type
);
302 c_apply_type_quals_to_decl (this_quals
, parm
);
303 TREE_CHAIN (parm
) = DECL_ARGUMENTS (function
);
304 DECL_ARGUMENTS (function
) = parm
;
307 DECL_CONTEXT (function
) = ctype
;
309 if (flags
== DTOR_FLAG
)
310 DECL_DESTRUCTOR_P (function
) = 1;
312 if (flags
== DTOR_FLAG
|| DECL_CONSTRUCTOR_P (function
))
313 maybe_retrofit_in_chrg (function
);
316 /* Create an ARRAY_REF, checking for the user doing things backwards
320 grok_array_decl (tree array_expr
, tree index_exp
)
324 tree orig_array_expr
= array_expr
;
325 tree orig_index_exp
= index_exp
;
327 if (error_operand_p (array_expr
) || error_operand_p (index_exp
))
328 return error_mark_node
;
330 if (processing_template_decl
)
332 if (type_dependent_expression_p (array_expr
)
333 || type_dependent_expression_p (index_exp
))
334 return build_min_nt (ARRAY_REF
, array_expr
, index_exp
,
335 NULL_TREE
, NULL_TREE
);
336 array_expr
= build_non_dependent_expr (array_expr
);
337 index_exp
= build_non_dependent_expr (index_exp
);
340 type
= TREE_TYPE (array_expr
);
342 type
= non_reference (type
);
344 /* If they have an `operator[]', use that. */
345 if (IS_AGGR_TYPE (type
) || IS_AGGR_TYPE (TREE_TYPE (index_exp
)))
346 expr
= build_new_op (ARRAY_REF
, LOOKUP_NORMAL
,
347 array_expr
, index_exp
, NULL_TREE
,
348 /*overloaded_p=*/NULL
);
353 /* Otherwise, create an ARRAY_REF for a pointer or array type.
354 It is a little-known fact that, if `a' is an array and `i' is
355 an int, you can write `i[a]', which means the same thing as
357 if (TREE_CODE (type
) == ARRAY_TYPE
)
360 p1
= build_expr_type_conversion (WANT_POINTER
, array_expr
, false);
362 if (TREE_CODE (TREE_TYPE (index_exp
)) == ARRAY_TYPE
)
365 p2
= build_expr_type_conversion (WANT_POINTER
, index_exp
, false);
367 i1
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
, array_expr
,
369 i2
= build_expr_type_conversion (WANT_INT
| WANT_ENUM
, index_exp
,
372 if ((p1
&& i2
) && (i1
&& p2
))
373 error ("ambiguous conversion for array subscript");
376 array_expr
= p1
, index_exp
= i2
;
378 array_expr
= p2
, index_exp
= i1
;
381 error ("invalid types %<%T[%T]%> for array subscript",
382 type
, TREE_TYPE (index_exp
));
383 return error_mark_node
;
386 if (array_expr
== error_mark_node
|| index_exp
== error_mark_node
)
387 error ("ambiguous conversion for array subscript");
389 expr
= build_array_ref (array_expr
, index_exp
);
391 if (processing_template_decl
&& expr
!= error_mark_node
)
392 return build_min_non_dep (ARRAY_REF
, expr
, orig_array_expr
, orig_index_exp
,
393 NULL_TREE
, NULL_TREE
);
397 /* Given the cast expression EXP, checking out its validity. Either return
398 an error_mark_node if there was an unavoidable error, return a cast to
399 void for trying to delete a pointer w/ the value 0, or return the
400 call to delete. If DOING_VEC is true, we handle things differently
401 for doing an array delete.
402 Implements ARM $5.3.4. This is called from the parser. */
405 delete_sanity (tree exp
, tree size
, bool doing_vec
, int use_global_delete
)
409 if (exp
== error_mark_node
)
412 if (processing_template_decl
)
414 t
= build_min (DELETE_EXPR
, void_type_node
, exp
, size
);
415 DELETE_EXPR_USE_GLOBAL (t
) = use_global_delete
;
416 DELETE_EXPR_USE_VEC (t
) = doing_vec
;
417 TREE_SIDE_EFFECTS (t
) = 1;
421 exp
= convert_from_reference (exp
);
423 /* An array can't have been allocated by new, so complain. */
424 if (TREE_CODE (exp
) == VAR_DECL
425 && TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
426 warning ("deleting array %q#D", exp
);
428 t
= build_expr_type_conversion (WANT_POINTER
, exp
, true);
430 if (t
== NULL_TREE
|| t
== error_mark_node
)
432 error ("type %q#T argument given to %<delete%>, expected pointer",
434 return error_mark_node
;
437 type
= TREE_TYPE (t
);
439 /* As of Valley Forge, you can delete a pointer to const. */
441 /* You can't delete functions. */
442 if (TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
444 error ("cannot delete a function. Only pointer-to-objects are "
445 "valid arguments to %<delete%>");
446 return error_mark_node
;
449 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
450 if (TREE_CODE (TREE_TYPE (type
)) == VOID_TYPE
)
452 warning ("deleting %qT is undefined", type
);
456 /* Deleting a pointer with the value zero is valid and has no effect. */
457 if (integer_zerop (t
))
458 return build1 (NOP_EXPR
, void_type_node
, t
);
461 return build_vec_delete (t
, /*maxindex=*/NULL_TREE
,
462 sfk_deleting_destructor
,
465 return build_delete (type
, t
, sfk_deleting_destructor
,
466 LOOKUP_NORMAL
, use_global_delete
);
469 /* Report an error if the indicated template declaration is not the
470 sort of thing that should be a member template. */
473 check_member_template (tree tmpl
)
477 gcc_assert (TREE_CODE (tmpl
) == TEMPLATE_DECL
);
478 decl
= DECL_TEMPLATE_RESULT (tmpl
);
480 if (TREE_CODE (decl
) == FUNCTION_DECL
481 || (TREE_CODE (decl
) == TYPE_DECL
482 && IS_AGGR_TYPE (TREE_TYPE (decl
))))
484 if (current_function_decl
)
485 /* 14.5.2.2 [temp.mem]
487 A local class shall not have member templates. */
488 error ("invalid declaration of member template %q#D in local class",
491 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VIRTUAL_P (decl
))
493 /* 14.5.2.3 [temp.mem]
495 A member function template shall not be virtual. */
497 ("invalid use of %<virtual%> in template declaration of %q#D",
499 DECL_VIRTUAL_P (decl
) = 0;
502 /* The debug-information generating code doesn't know what to do
503 with member templates. */
504 DECL_IGNORED_P (tmpl
) = 1;
507 error ("template declaration of %q#D", decl
);
510 /* Return true iff TYPE is a valid Java parameter or return type. */
513 acceptable_java_type (tree type
)
515 if (TREE_CODE (type
) == VOID_TYPE
|| TYPE_FOR_JAVA (type
))
517 if (TREE_CODE (type
) == POINTER_TYPE
|| TREE_CODE (type
) == REFERENCE_TYPE
)
519 type
= TREE_TYPE (type
);
520 if (TREE_CODE (type
) == RECORD_TYPE
)
523 if (! TYPE_FOR_JAVA (type
))
525 if (! CLASSTYPE_TEMPLATE_INFO (type
))
527 args
= CLASSTYPE_TI_ARGS (type
);
528 i
= TREE_VEC_LENGTH (args
);
531 type
= TREE_VEC_ELT (args
, i
);
532 if (TREE_CODE (type
) == POINTER_TYPE
)
533 type
= TREE_TYPE (type
);
534 if (! TYPE_FOR_JAVA (type
))
543 /* For a METHOD in a Java class CTYPE, return true if
544 the parameter and return types are valid Java types.
545 Otherwise, print appropriate error messages, and return false. */
548 check_java_method (tree method
)
551 tree arg_types
= TYPE_ARG_TYPES (TREE_TYPE (method
));
552 tree ret_type
= TREE_TYPE (TREE_TYPE (method
));
554 if (!acceptable_java_type (ret_type
))
556 error ("Java method %qD has non-Java return type %qT",
561 arg_types
= TREE_CHAIN (arg_types
);
562 if (DECL_HAS_IN_CHARGE_PARM_P (method
))
563 arg_types
= TREE_CHAIN (arg_types
);
564 if (DECL_HAS_VTT_PARM_P (method
))
565 arg_types
= TREE_CHAIN (arg_types
);
567 for (; arg_types
!= NULL_TREE
; arg_types
= TREE_CHAIN (arg_types
))
569 tree type
= TREE_VALUE (arg_types
);
570 if (!acceptable_java_type (type
))
572 error ("Java method %qD has non-Java parameter type %qT",
580 /* Sanity check: report error if this function FUNCTION is not
581 really a member of the class (CTYPE) it is supposed to belong to.
582 TEMPLATE_PARMS is used to specify the template parameters of a member
583 template passed as FUNCTION_DECL. If the member template is passed as a
584 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
585 from the declaration. If the function is not a function template, it
587 It returns the original declaration for the function, or NULL_TREE
588 if no declaration was found (and an error was emitted). */
591 check_classfn (tree ctype
, tree function
, tree template_parms
)
596 if (DECL_USE_TEMPLATE (function
)
597 && !(TREE_CODE (function
) == TEMPLATE_DECL
598 && DECL_TEMPLATE_SPECIALIZATION (function
))
599 && is_member_template (DECL_TI_TEMPLATE (function
)))
600 /* Since this is a specialization of a member template,
601 we're not going to find the declaration in the class.
604 struct S { template <typename T> void f(T); };
605 template <> void S::f(int);
607 we're not going to find `S::f(int)', but there's no
608 reason we should, either. We let our callers know we didn't
609 find the method, but we don't complain. */
612 /* Basic sanity check: for a template function, the template parameters
613 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
614 if (TREE_CODE (function
) == TEMPLATE_DECL
)
616 gcc_assert (!template_parms
617 || comp_template_parms (template_parms
,
618 DECL_TEMPLATE_PARMS (function
)));
619 template_parms
= DECL_TEMPLATE_PARMS (function
);
622 /* OK, is this a definition of a member template? */
623 is_template
= (template_parms
!= NULL_TREE
);
625 ix
= lookup_fnfields_1 (complete_type (ctype
),
626 DECL_CONSTRUCTOR_P (function
) ? ctor_identifier
:
627 DECL_DESTRUCTOR_P (function
) ? dtor_identifier
:
628 DECL_NAME (function
));
632 VEC(tree
) *methods
= CLASSTYPE_METHOD_VEC (ctype
);
633 tree fndecls
, fndecl
= 0;
636 const char *format
= NULL
;
638 pop_p
= push_scope (ctype
);
639 for (fndecls
= VEC_index (tree
, methods
, ix
);
640 fndecls
; fndecls
= OVL_NEXT (fndecls
))
644 fndecl
= OVL_CURRENT (fndecls
);
645 p1
= TYPE_ARG_TYPES (TREE_TYPE (function
));
646 p2
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
648 /* We cannot simply call decls_match because this doesn't
649 work for static member functions that are pretending to
650 be methods, and because the name may have been changed by
653 /* Get rid of the this parameter on functions that become
655 if (DECL_STATIC_FUNCTION_P (fndecl
)
656 && TREE_CODE (TREE_TYPE (function
)) == METHOD_TYPE
)
657 p1
= TREE_CHAIN (p1
);
659 /* A member template definition only matches a member template
661 if (is_template
!= (TREE_CODE (fndecl
) == TEMPLATE_DECL
))
664 if (same_type_p (TREE_TYPE (TREE_TYPE (function
)),
665 TREE_TYPE (TREE_TYPE (fndecl
)))
666 && compparms (p1
, p2
)
668 || comp_template_parms (template_parms
,
669 DECL_TEMPLATE_PARMS (fndecl
)))
670 && (DECL_TEMPLATE_SPECIALIZATION (function
)
671 == DECL_TEMPLATE_SPECIALIZATION (fndecl
))
672 && (!DECL_TEMPLATE_SPECIALIZATION (function
)
673 || (DECL_TI_TEMPLATE (function
)
674 == DECL_TI_TEMPLATE (fndecl
))))
680 return OVL_CURRENT (fndecls
);
681 error ("prototype for `%#D' does not match any in class `%T'",
683 is_conv_op
= DECL_CONV_FN_P (fndecl
);
686 ix
= CLASSTYPE_FIRST_CONVERSION_SLOT
;
687 fndecls
= VEC_index (tree
, methods
, ix
);
690 fndecl
= OVL_CURRENT (fndecls
);
691 fndecls
= OVL_NEXT (fndecls
);
693 if (!fndecls
&& is_conv_op
)
695 if (VEC_length (tree
, methods
) > (size_t) ++ix
)
697 fndecls
= VEC_index (tree
, methods
, ix
);
698 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls
)))
710 format
= "candidates are: %#D";
712 format
= "candidate is: %#D";
713 cp_error_at (format
, fndecl
);
716 else if (!COMPLETE_TYPE_P (ctype
))
717 cxx_incomplete_type_error (function
, ctype
);
719 error ("no %q#D member function declared in class %qT",
722 /* If we did not find the method in the class, add it to avoid
723 spurious errors (unless the CTYPE is not yet defined, in which
724 case we'll only confuse ourselves when the function is declared
725 properly within the class. */
726 if (COMPLETE_TYPE_P (ctype
))
727 add_method (ctype
, function
);
731 /* DECL is a function with vague linkage. Remember it so that at the
732 end of the translation unit we can decide whether or not to emit
736 note_vague_linkage_fn (tree decl
)
738 if (!DECL_DEFERRED_FN (decl
))
740 DECL_DEFERRED_FN (decl
) = 1;
741 DECL_DEFER_OUTPUT (decl
) = 1;
743 VARRAY_TREE_INIT (deferred_fns
, 32, "deferred_fns");
744 VARRAY_PUSH_TREE (deferred_fns
, decl
);
748 /* Like note_vague_linkage_fn but for variables. */
751 note_vague_linkage_var (tree var
)
753 if (!pending_statics
)
754 VARRAY_TREE_INIT (pending_statics
, 32, "pending_statics");
755 VARRAY_PUSH_TREE (pending_statics
, var
);
758 /* We have just processed the DECL, which is a static data member.
759 Its initializer, if present, is INIT. The ASMSPEC_TREE, if
760 present, is the assembly-language name for the data member.
761 FLAGS is as for cp_finish_decl. */
764 finish_static_data_member_decl (tree decl
, tree init
, tree asmspec_tree
,
767 gcc_assert (TREE_PUBLIC (decl
));
769 DECL_CONTEXT (decl
) = current_class_type
;
771 /* We cannot call pushdecl here, because that would fill in the
772 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
773 the right thing, namely, to put this decl out straight away. */
774 /* current_class_type can be NULL_TREE in case of error. */
775 if (!asmspec_tree
&& current_class_type
)
776 DECL_INITIAL (decl
) = error_mark_node
;
778 if (! processing_template_decl
)
779 note_vague_linkage_var (decl
);
781 if (LOCAL_CLASS_P (current_class_type
))
782 pedwarn ("local class %q#T shall not have static data member %q#D",
783 current_class_type
, decl
);
785 /* Static consts need not be initialized in the class definition. */
786 if (init
!= NULL_TREE
&& TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
788 static int explained
= 0;
790 error ("initializer invalid for static member with constructor");
793 error ("(an out of class initialization is required)");
798 /* Force the compiler to know when an uninitialized static const
799 member is being used. */
800 if (CP_TYPE_CONST_P (TREE_TYPE (decl
)) && init
== 0)
801 TREE_USED (decl
) = 1;
802 DECL_INITIAL (decl
) = init
;
803 DECL_IN_AGGR_P (decl
) = 1;
805 cp_finish_decl (decl
, init
, asmspec_tree
, flags
);
808 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
809 of a structure component, returning a _DECL node.
810 QUALS is a list of type qualifiers for this decl (such as for declaring
811 const member functions).
813 This is done during the parsing of the struct declaration.
814 The _DECL nodes are chained together and the lot of them
815 are ultimately passed to `build_struct' to make the RECORD_TYPE node.
817 If class A defines that certain functions in class B are friends, then
818 the way I have set things up, it is B who is interested in permission
819 granted by A. However, it is in A's context that these declarations
820 are parsed. By returning a void_type_node, class A does not attempt
821 to incorporate the declarations of the friends within its structure.
823 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
824 CHANGES TO CODE IN `start_method'. */
827 grokfield (const cp_declarator
*declarator
,
828 cp_decl_specifier_seq
*declspecs
,
829 tree init
, tree asmspec_tree
,
833 const char *asmspec
= 0;
834 int flags
= LOOKUP_ONLYCONVERTING
;
836 if (!declspecs
->any_specifiers_p
837 && declarator
->kind
== cdk_id
838 && TREE_CODE (declarator
->u
.id
.name
) == SCOPE_REF
839 && (TREE_CODE (TREE_OPERAND (declarator
->u
.id
.name
, 1))
841 /* Access declaration */
842 return do_class_using_decl (declarator
->u
.id
.name
);
845 && TREE_CODE (init
) == TREE_LIST
846 && TREE_VALUE (init
) == error_mark_node
847 && TREE_CHAIN (init
) == NULL_TREE
)
850 value
= grokdeclarator (declarator
, declspecs
, FIELD
, init
!= 0, &attrlist
);
851 if (! value
|| error_operand_p (value
))
852 /* friend or constructor went bad. */
853 return error_mark_node
;
855 if (TREE_CODE (value
) == TYPE_DECL
&& init
)
857 error ("typedef %qD is initialized (use __typeof__ instead)", value
);
861 /* Pass friendly classes back. */
862 if (value
== void_type_node
)
865 /* Pass friend decls back. */
866 if ((TREE_CODE (value
) == FUNCTION_DECL
867 || TREE_CODE (value
) == TEMPLATE_DECL
)
868 && DECL_CONTEXT (value
) != current_class_type
)
871 if (DECL_NAME (value
) != NULL_TREE
872 && IDENTIFIER_POINTER (DECL_NAME (value
))[0] == '_'
873 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value
)), "_vptr"))
874 error ("member %qD conflicts with virtual function table field name",
877 /* Stash away type declarations. */
878 if (TREE_CODE (value
) == TYPE_DECL
)
880 DECL_NONLOCAL (value
) = 1;
881 DECL_CONTEXT (value
) = current_class_type
;
883 if (processing_template_decl
)
884 value
= push_template_decl (value
);
889 if (DECL_IN_AGGR_P (value
))
891 error ("%qD is already defined in %qT", value
, DECL_CONTEXT (value
));
892 return void_type_node
;
896 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
900 if (TREE_CODE (value
) == FUNCTION_DECL
)
902 grok_function_init (value
, init
);
905 else if (pedantic
&& TREE_CODE (value
) != VAR_DECL
)
906 /* Already complained in grokdeclarator. */
910 /* We allow initializers to become parameters to base
912 if (TREE_CODE (init
) == TREE_LIST
)
914 if (TREE_CHAIN (init
) == NULL_TREE
)
915 init
= TREE_VALUE (init
);
917 init
= digest_init (TREE_TYPE (value
), init
, (tree
*)0);
920 if (!processing_template_decl
)
922 if (TREE_CODE (init
) == CONST_DECL
)
923 init
= DECL_INITIAL (init
);
924 else if (TREE_READONLY_DECL_P (init
))
925 init
= decl_constant_value (init
);
926 else if (TREE_CODE (init
) == CONSTRUCTOR
)
927 init
= digest_init (TREE_TYPE (value
), init
, (tree
*)0);
928 if (init
!= error_mark_node
&& ! TREE_CONSTANT (init
))
930 /* We can allow references to things that are effectively
931 static, since references are initialized with the
933 if (TREE_CODE (TREE_TYPE (value
)) != REFERENCE_TYPE
934 || (TREE_STATIC (init
) == 0
935 && (!DECL_P (init
) || DECL_EXTERNAL (init
) == 0)))
937 error ("field initializer is not constant");
938 init
= error_mark_node
;
945 if (processing_template_decl
946 && (TREE_CODE (value
) == VAR_DECL
|| TREE_CODE (value
) == FUNCTION_DECL
))
948 value
= push_template_decl (value
);
949 if (error_operand_p (value
))
950 return error_mark_node
;
954 cplus_decl_attributes (&value
, attrlist
, 0);
956 switch (TREE_CODE (value
))
959 finish_static_data_member_decl (value
, init
, asmspec_tree
,
965 error ("`asm' specifiers are not permitted on non-static data members");
966 if (DECL_INITIAL (value
) == error_mark_node
)
967 init
= error_mark_node
;
968 cp_finish_decl (value
, init
, NULL_TREE
, flags
);
969 DECL_INITIAL (value
) = init
;
970 DECL_IN_AGGR_P (value
) = 1;
975 set_user_assembler_name (value
, asmspec
);
976 if (!DECL_FRIEND_P (value
))
977 grok_special_member_properties (value
);
979 cp_finish_decl (value
, init
, asmspec_tree
, flags
);
981 /* Pass friends back this way. */
982 if (DECL_FRIEND_P (value
))
983 return void_type_node
;
985 DECL_IN_AGGR_P (value
) = 1;
994 /* Like `grokfield', but for bitfields.
995 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
998 grokbitfield (const cp_declarator
*declarator
,
999 cp_decl_specifier_seq
*declspecs
, tree width
)
1001 tree value
= grokdeclarator (declarator
, declspecs
, BITFIELD
, 0, NULL
);
1003 if (! value
) return NULL_TREE
; /* friends went bad. */
1005 /* Pass friendly classes back. */
1006 if (TREE_CODE (value
) == VOID_TYPE
)
1007 return void_type_node
;
1009 if (TREE_CODE (value
) == TYPE_DECL
)
1011 error ("cannot declare %qD to be a bit-field type", value
);
1015 /* Usually, finish_struct_1 catches bitfields with invalid types.
1016 But, in the case of bitfields with function type, we confuse
1017 ourselves into thinking they are member functions, so we must
1019 if (TREE_CODE (value
) == FUNCTION_DECL
)
1021 error ("cannot declare bit-field %qD with function type",
1026 if (DECL_IN_AGGR_P (value
))
1028 error ("%qD is already defined in the class %qT", value
,
1029 DECL_CONTEXT (value
));
1030 return void_type_node
;
1033 if (TREE_STATIC (value
))
1035 error ("static member %qD cannot be a bit-field", value
);
1038 cp_finish_decl (value
, NULL_TREE
, NULL_TREE
, 0);
1040 if (width
!= error_mark_node
)
1042 constant_expression_warning (width
);
1043 DECL_INITIAL (value
) = width
;
1044 SET_DECL_C_BIT_FIELD (value
);
1047 DECL_IN_AGGR_P (value
) = 1;
1051 /* When a function is declared with an initializer,
1052 do the right thing. Currently, there are two possibilities:
1057 // initialization possibility #1.
1058 virtual void f () = 0;
1080 // initialization possibility #2
1087 grok_function_init (tree decl
, tree init
)
1089 /* An initializer for a function tells how this function should
1091 tree type
= TREE_TYPE (decl
);
1093 if (TREE_CODE (type
) == FUNCTION_TYPE
)
1094 error ("initializer specified for non-member function %qD", decl
);
1095 else if (integer_zerop (init
))
1096 DECL_PURE_VIRTUAL_P (decl
) = 1;
1098 error ("invalid initializer for virtual method %qD", decl
);
1102 cplus_decl_attributes (tree
*decl
, tree attributes
, int flags
)
1104 if (*decl
== NULL_TREE
|| *decl
== void_type_node
)
1107 if (TREE_CODE (*decl
) == TEMPLATE_DECL
)
1108 decl
= &DECL_TEMPLATE_RESULT (*decl
);
1110 decl_attributes (decl
, attributes
, flags
);
1112 if (TREE_CODE (*decl
) == TYPE_DECL
)
1113 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl
), TREE_TYPE (*decl
));
1116 /* Walks through the namespace- or function-scope anonymous union OBJECT,
1117 building appropriate ALIAS_DECLs. Returns one of the fields for use in
1118 the mangled name. */
1121 build_anon_union_vars (tree object
)
1123 tree type
= TREE_TYPE (object
);
1124 tree main_decl
= NULL_TREE
;
1127 /* Rather than write the code to handle the non-union case,
1128 just give an error. */
1129 if (TREE_CODE (type
) != UNION_TYPE
)
1130 error ("anonymous struct not inside named type");
1132 for (field
= TYPE_FIELDS (type
);
1134 field
= TREE_CHAIN (field
))
1139 if (DECL_ARTIFICIAL (field
))
1141 if (TREE_CODE (field
) != FIELD_DECL
)
1143 cp_pedwarn_at ("%q#D invalid; an anonymous union can only "
1144 "have non-static data members",
1149 if (TREE_PRIVATE (field
))
1150 cp_pedwarn_at ("private member %q#D in anonymous union", field
);
1151 else if (TREE_PROTECTED (field
))
1152 cp_pedwarn_at ("protected member %q#D in anonymous union", field
);
1154 if (processing_template_decl
)
1155 ref
= build_min_nt (COMPONENT_REF
, object
,
1156 DECL_NAME (field
), NULL_TREE
);
1158 ref
= build_class_member_access_expr (object
, field
, NULL_TREE
,
1161 if (DECL_NAME (field
))
1163 decl
= build_decl (ALIAS_DECL
, DECL_NAME (field
), TREE_TYPE (field
));
1164 DECL_INITIAL (decl
) = ref
;
1165 TREE_PUBLIC (decl
) = 0;
1166 TREE_STATIC (decl
) = 0;
1167 DECL_EXTERNAL (decl
) = 1;
1168 decl
= pushdecl (decl
);
1170 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field
)))
1171 decl
= build_anon_union_vars (ref
);
1175 if (main_decl
== NULL_TREE
)
1182 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1183 anonymous union, then all members must be laid out together. PUBLIC_P
1184 is nonzero if this union is not declared static. */
1187 finish_anon_union (tree anon_union_decl
)
1189 tree type
= TREE_TYPE (anon_union_decl
);
1191 bool public_p
= TREE_PUBLIC (anon_union_decl
);
1193 /* The VAR_DECL's context is the same as the TYPE's context. */
1194 DECL_CONTEXT (anon_union_decl
) = DECL_CONTEXT (TYPE_NAME (type
));
1196 if (TYPE_FIELDS (type
) == NULL_TREE
)
1201 error ("namespace-scope anonymous aggregates must be static");
1205 main_decl
= build_anon_union_vars (anon_union_decl
);
1206 if (main_decl
== NULL_TREE
)
1208 warning ("anonymous union with no members");
1212 if (!processing_template_decl
)
1214 /* Use main_decl to set the mangled name. */
1215 DECL_NAME (anon_union_decl
) = DECL_NAME (main_decl
);
1216 mangle_decl (anon_union_decl
);
1217 DECL_NAME (anon_union_decl
) = NULL_TREE
;
1220 pushdecl (anon_union_decl
);
1221 if (building_stmt_tree ()
1222 && at_function_scope_p ())
1223 add_decl_expr (anon_union_decl
);
1224 else if (!processing_template_decl
)
1225 rest_of_decl_compilation (anon_union_decl
,
1226 toplevel_bindings_p (), at_eof
);
1229 /* Auxiliary functions to make type signatures for
1230 `operator new' and `operator delete' correspond to
1231 what compiler will be expecting. */
1234 coerce_new_type (tree type
)
1237 tree args
= TYPE_ARG_TYPES (type
);
1239 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
1241 if (!same_type_p (TREE_TYPE (type
), ptr_type_node
))
1244 error ("%<operator new%> must return type %qT", ptr_type_node
);
1247 if (!args
|| args
== void_list_node
1248 || !same_type_p (TREE_VALUE (args
), size_type_node
))
1251 if (args
&& args
!= void_list_node
)
1252 args
= TREE_CHAIN (args
);
1253 pedwarn ("%<operator new%> takes type %<size_t%> (%qT) "
1254 "as first parameter", size_type_node
);
1259 args
= tree_cons (NULL_TREE
, size_type_node
, args
);
1262 type
= build_exception_variant
1263 (build_function_type (ptr_type_node
, args
),
1264 TYPE_RAISES_EXCEPTIONS (type
));
1272 coerce_delete_type (tree type
)
1275 tree args
= TYPE_ARG_TYPES (type
);
1277 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
1279 if (!same_type_p (TREE_TYPE (type
), void_type_node
))
1282 error ("%<operator delete%> must return type %qT", void_type_node
);
1285 if (!args
|| args
== void_list_node
1286 || !same_type_p (TREE_VALUE (args
), ptr_type_node
))
1289 if (args
&& args
!= void_list_node
)
1290 args
= TREE_CHAIN (args
);
1291 error ("%<operator delete%> takes type %qT as first parameter",
1297 args
= tree_cons (NULL_TREE
, ptr_type_node
, args
);
1300 type
= build_exception_variant
1301 (build_function_type (void_type_node
, args
),
1302 TYPE_RAISES_EXCEPTIONS (type
));
1311 mark_vtable_entries (tree decl
)
1313 tree entries
= CONSTRUCTOR_ELTS (DECL_INITIAL (decl
));
1315 for (; entries
; entries
= TREE_CHAIN (entries
))
1317 tree fnaddr
= TREE_VALUE (entries
);
1320 STRIP_NOPS (fnaddr
);
1322 if (TREE_CODE (fnaddr
) != ADDR_EXPR
1323 && TREE_CODE (fnaddr
) != FDESC_EXPR
)
1324 /* This entry is an offset: a virtual base class offset, a
1325 virtual call offset, an RTTI offset, etc. */
1328 fn
= TREE_OPERAND (fnaddr
, 0);
1329 TREE_ADDRESSABLE (fn
) = 1;
1330 /* When we don't have vcall offsets, we output thunks whenever
1331 we output the vtables that contain them. With vcall offsets,
1332 we know all the thunks we'll need when we emit a virtual
1333 function, so we emit the thunks there instead. */
1334 if (DECL_THUNK_P (fn
))
1335 use_thunk (fn
, /*emit_p=*/0);
1340 /* Set DECL up to have the closest approximation of "initialized common"
1341 linkage available. */
1344 comdat_linkage (tree decl
)
1347 make_decl_one_only (decl
);
1348 else if (TREE_CODE (decl
) == FUNCTION_DECL
1349 || (TREE_CODE (decl
) == VAR_DECL
&& DECL_ARTIFICIAL (decl
)))
1350 /* We can just emit function and compiler-generated variables
1351 statically; having multiple copies is (for the most part) only
1354 There are two correctness issues, however: the address of a
1355 template instantiation with external linkage should be the
1356 same, independent of what translation unit asks for the
1357 address, and this will not hold when we emit multiple copies of
1358 the function. However, there's little else we can do.
1360 Also, by default, the typeinfo implementation assumes that
1361 there will be only one copy of the string used as the name for
1362 each type. Therefore, if weak symbols are unavailable, the
1363 run-time library should perform a more conservative check; it
1364 should perform a string comparison, rather than an address
1366 TREE_PUBLIC (decl
) = 0;
1369 /* Static data member template instantiations, however, cannot
1370 have multiple copies. */
1371 if (DECL_INITIAL (decl
) == 0
1372 || DECL_INITIAL (decl
) == error_mark_node
)
1373 DECL_COMMON (decl
) = 1;
1374 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl
)))
1376 DECL_COMMON (decl
) = 1;
1377 DECL_INITIAL (decl
) = error_mark_node
;
1379 else if (!DECL_EXPLICIT_INSTANTIATION (decl
))
1381 /* We can't do anything useful; leave vars for explicit
1383 DECL_EXTERNAL (decl
) = 1;
1384 DECL_NOT_REALLY_EXTERN (decl
) = 0;
1388 if (DECL_LANG_SPECIFIC (decl
))
1389 DECL_COMDAT (decl
) = 1;
1392 /* For win32 we also want to put explicit instantiations in
1393 linkonce sections, so that they will be merged with implicit
1394 instantiations; otherwise we get duplicate symbol errors.
1395 For Darwin we do not want explicit instantiations to be
1399 maybe_make_one_only (tree decl
)
1401 /* We used to say that this was not necessary on targets that support weak
1402 symbols, because the implicit instantiations will defer to the explicit
1403 one. However, that's not actually the case in SVR4; a strong definition
1404 after a weak one is an error. Also, not making explicit
1405 instantiations one_only means that we can end up with two copies of
1406 some template instantiations. */
1410 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1411 we can get away with not emitting them if they aren't used. We need
1412 to for variables so that cp_finish_decl will update their linkage,
1413 because their DECL_INITIAL may not have been set properly yet. */
1415 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1416 || (! DECL_EXPLICIT_INSTANTIATION (decl
)
1417 && ! DECL_TEMPLATE_SPECIALIZATION (decl
)))
1419 make_decl_one_only (decl
);
1421 if (TREE_CODE (decl
) == VAR_DECL
)
1423 DECL_COMDAT (decl
) = 1;
1424 /* Mark it needed so we don't forget to emit it. */
1425 mark_decl_referenced (decl
);
1430 /* Determine whether or not we want to specifically import or export CTYPE,
1431 using various heuristics. */
1434 import_export_class (tree ctype
)
1436 /* -1 for imported, 1 for exported. */
1437 int import_export
= 0;
1439 /* It only makes sense to call this function at EOF. The reason is
1440 that this function looks at whether or not the first non-inline
1441 non-abstract virtual member function has been defined in this
1442 translation unit. But, we can't possibly know that until we've
1443 seen the entire translation unit. */
1444 gcc_assert (at_eof
);
1446 if (CLASSTYPE_INTERFACE_KNOWN (ctype
))
1449 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1450 we will have CLASSTYPE_INTERFACE_ONLY set but not
1451 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1452 heuristic because someone will supply a #pragma implementation
1453 elsewhere, and deducing it here would produce a conflict. */
1454 if (CLASSTYPE_INTERFACE_ONLY (ctype
))
1457 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype
)))
1459 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype
)))
1461 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype
)
1462 && !flag_implicit_templates
)
1463 /* For a template class, without -fimplicit-templates, check the
1464 repository. If the virtual table is assigned to this
1465 translation unit, then export the class; otherwise, import
1467 import_export
= repo_export_class_p (ctype
) ? 1 : -1;
1468 else if (TYPE_POLYMORPHIC_P (ctype
))
1470 /* The ABI specifies that the virtual table and associated
1471 information are emitted with the key method, if any. */
1472 tree method
= CLASSTYPE_KEY_METHOD (ctype
);
1473 /* If weak symbol support is not available, then we must be
1474 careful not to emit the vtable when the key function is
1475 inline. An inline function can be defined in multiple
1476 translation units. If we were to emit the vtable in each
1477 translation unit containing a definition, we would get
1478 multiple definition errors at link-time. */
1479 if (method
&& (flag_weak
|| ! DECL_DECLARED_INLINE_P (method
)))
1480 import_export
= (DECL_REALLY_EXTERN (method
) ? -1 : 1);
1483 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1484 a definition anywhere else. */
1485 if (MULTIPLE_SYMBOL_SPACES
&& import_export
== -1)
1488 /* Allow backends the chance to overrule the decision. */
1489 if (targetm
.cxx
.import_export_class
)
1490 import_export
= targetm
.cxx
.import_export_class (ctype
, import_export
);
1494 SET_CLASSTYPE_INTERFACE_KNOWN (ctype
);
1495 CLASSTYPE_INTERFACE_ONLY (ctype
) = (import_export
< 0);
1499 /* Return true if VAR has already been provided to the back end; in that
1500 case VAR should not be modified further by the front end. */
1502 var_finalized_p (tree var
)
1504 return cgraph_varpool_node (var
)->finalized
;
1507 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1508 must be emitted in this translation unit. Mark it as such. */
1511 mark_needed (tree decl
)
1513 /* It's possible that we no longer need to set
1514 TREE_SYMBOL_REFERENCED here directly, but doing so is
1516 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)) = 1;
1517 mark_decl_referenced (decl
);
1520 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1521 returns true if a definition of this entity should be provided in
1522 this object file. Callers use this function to determine whether
1523 or not to let the back end know that a definition of DECL is
1524 available in this translation unit. */
1527 decl_needed_p (tree decl
)
1529 gcc_assert (TREE_CODE (decl
) == VAR_DECL
1530 || TREE_CODE (decl
) == FUNCTION_DECL
);
1531 /* This function should only be called at the end of the translation
1532 unit. We cannot be sure of whether or not something will be
1533 COMDAT until that point. */
1534 gcc_assert (at_eof
);
1536 /* All entities with external linkage that are not COMDAT should be
1537 emitted; they may be referred to from other object files. */
1538 if (TREE_PUBLIC (decl
) && !DECL_COMDAT (decl
))
1540 /* If this entity was used, let the back-end see it; it will decide
1541 whether or not to emit it into the object file. */
1542 if (TREE_USED (decl
)
1543 || (DECL_ASSEMBLER_NAME_SET_P (decl
)
1544 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))))
1546 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1547 reference to DECL might cause it to be emitted later. */
1551 /* If necessary, write out the vtables for the dynamic class CTYPE.
1552 Returns true if any vtables were emitted. */
1555 maybe_emit_vtables (tree ctype
)
1561 /* If the vtables for this class have already been emitted there is
1562 nothing more to do. */
1563 primary_vtbl
= CLASSTYPE_VTABLES (ctype
);
1564 if (var_finalized_p (primary_vtbl
))
1566 /* Ignore dummy vtables made by get_vtable_decl. */
1567 if (TREE_TYPE (primary_vtbl
) == void_type_node
)
1570 /* On some targets, we cannot determine the key method until the end
1571 of the translation unit -- which is when this function is
1573 if (!targetm
.cxx
.key_method_may_be_inline ())
1574 determine_key_method (ctype
);
1576 /* See if any of the vtables are needed. */
1577 for (vtbl
= CLASSTYPE_VTABLES (ctype
); vtbl
; vtbl
= TREE_CHAIN (vtbl
))
1579 import_export_decl (vtbl
);
1580 if (DECL_NOT_REALLY_EXTERN (vtbl
) && decl_needed_p (vtbl
))
1585 /* If the references to this class' vtables are optimized away,
1586 still emit the appropriate debugging information. See
1588 if (DECL_COMDAT (primary_vtbl
)
1589 && CLASSTYPE_DEBUG_REQUESTED (ctype
))
1590 note_debug_info_needed (ctype
);
1594 /* The ABI requires that we emit all of the vtables if we emit any
1596 for (vtbl
= CLASSTYPE_VTABLES (ctype
); vtbl
; vtbl
= TREE_CHAIN (vtbl
))
1598 /* Mark entities references from the virtual table as used. */
1599 mark_vtable_entries (vtbl
);
1601 if (TREE_TYPE (DECL_INITIAL (vtbl
)) == 0)
1603 tree expr
= store_init_value (vtbl
, DECL_INITIAL (vtbl
));
1605 /* It had better be all done at compile-time. */
1610 DECL_EXTERNAL (vtbl
) = 0;
1611 rest_of_decl_compilation (vtbl
, 1, 1);
1613 /* Because we're only doing syntax-checking, we'll never end up
1614 actually marking the variable as written. */
1615 if (flag_syntax_only
)
1616 TREE_ASM_WRITTEN (vtbl
) = 1;
1619 /* Since we're writing out the vtable here, also write the debug
1621 note_debug_info_needed (ctype
);
1626 /* Like c_determine_visibility, but with additional C++-specific
1630 determine_visibility (tree decl
)
1634 /* Cloned constructors and destructors get the same visibility as
1635 the underlying function. That should be set up in
1636 maybe_clone_body. */
1637 gcc_assert (!DECL_CLONED_FUNCTION_P (decl
));
1639 /* Give the common code a chance to make a determination. */
1640 if (c_determine_visibility (decl
))
1643 /* If DECL is a member of a class, visibility specifiers on the
1644 class can influence the visibility of the DECL. */
1645 if (DECL_CLASS_SCOPE_P (decl
))
1646 class_type
= DECL_CONTEXT (decl
);
1647 else if (TREE_CODE (decl
) == VAR_DECL
1648 && DECL_TINFO_P (decl
)
1649 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl
))))
1650 class_type
= TREE_TYPE (DECL_NAME (decl
));
1653 /* Virtual tables have DECL_CONTEXT set to their associated class,
1654 so they are automatically handled above. */
1655 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1656 || !DECL_VTABLE_OR_VTT_P (decl
));
1657 /* Entities not associated with any class just get the
1658 visibility specified by their attributes. */
1662 /* By default, static data members and function members receive
1663 the visibility of their containing class. */
1666 if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
1667 && lookup_attribute ("dllexport", TYPE_ATTRIBUTES (class_type
)))
1669 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
1670 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1672 else if (TREE_CODE (decl
) == FUNCTION_DECL
1673 && DECL_DECLARED_INLINE_P (decl
)
1674 && visibility_options
.inlines_hidden
)
1676 DECL_VISIBILITY (decl
) = VISIBILITY_HIDDEN
;
1677 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1679 else if (CLASSTYPE_VISIBILITY_SPECIFIED (class_type
))
1681 DECL_VISIBILITY (decl
) = CLASSTYPE_VISIBILITY (class_type
);
1682 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
1684 /* If no explicit visibility information has been provided for
1685 this class, some targets require that class data be
1687 else if (TREE_CODE (decl
) == VAR_DECL
1688 && targetm
.cxx
.export_class_data ()
1689 && (DECL_TINFO_P (decl
)
1690 || (DECL_VTABLE_OR_VTT_P (decl
)
1691 /* Construction virtual tables are not emitted
1692 because they cannot be referred to from other
1693 object files; their name is not standardized by
1695 && !DECL_CONSTRUCTION_VTABLE_P (decl
))))
1696 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
1699 DECL_VISIBILITY (decl
) = CLASSTYPE_VISIBILITY (class_type
);
1700 DECL_VISIBILITY_SPECIFIED (decl
) = 0;
1705 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
1706 for DECL has not already been determined, do so now by setting
1707 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
1708 function is called entities with vague linkage whose definitions
1709 are available must have TREE_PUBLIC set.
1711 If this function decides to place DECL in COMDAT, it will set
1712 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
1713 the caller to decide whether or not to clear DECL_EXTERNAL. Some
1714 callers defer that decision until it is clear that DECL is actually
1718 import_export_decl (tree decl
)
1724 if (DECL_INTERFACE_KNOWN (decl
))
1727 /* We cannot determine what linkage to give to an entity with vague
1728 linkage until the end of the file. For example, a virtual table
1729 for a class will be defined if and only if the key method is
1730 defined in this translation unit. As a further example, consider
1731 that when compiling a translation unit that uses PCH file with
1732 "-frepo" it would be incorrect to make decisions about what
1733 entities to emit when building the PCH; those decisions must be
1734 delayed until the repository information has been processed. */
1735 gcc_assert (at_eof
);
1736 /* Object file linkage for explicit instantiations is handled in
1737 mark_decl_instantiated. For static variables in functions with
1738 vague linkage, maybe_commonize_var is used.
1740 Therefore, the only declarations that should be provided to this
1741 function are those with external linkage that:
1743 * implicit instantiations of function templates
1747 * implicit instantiations of static data members of class
1754 Furthermore, all entities that reach this point must have a
1755 definition available in this translation unit.
1757 The following assertions check these conditions. */
1758 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1759 || TREE_CODE (decl
) == VAR_DECL
);
1760 /* Any code that creates entities with TREE_PUBLIC cleared should
1761 also set DECL_INTERFACE_KNOWN. */
1762 gcc_assert (TREE_PUBLIC (decl
));
1763 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1764 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl
)
1765 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl
)
1766 || DECL_DECLARED_INLINE_P (decl
));
1768 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl
)
1769 || DECL_VTABLE_OR_VTT_P (decl
)
1770 || DECL_TINFO_P (decl
));
1771 /* Check that a definition of DECL is available in this translation
1773 gcc_assert (!DECL_REALLY_EXTERN (decl
));
1775 /* Assume that DECL will not have COMDAT linkage. */
1777 /* Assume that DECL will not be imported into this translation
1781 /* See if the repository tells us whether or not to emit DECL in
1782 this translation unit. */
1783 emit_p
= repo_emit_p (decl
);
1786 else if (emit_p
== 1)
1788 /* The repository indicates that this entity should be defined
1789 here. Make sure the back end honors that request. */
1790 if (TREE_CODE (decl
) == VAR_DECL
)
1792 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl
)
1793 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl
))
1796 FOR_EACH_CLONE (clone
, decl
)
1797 mark_needed (clone
);
1801 /* Output the definition as an ordinary strong definition. */
1802 DECL_EXTERNAL (decl
) = 0;
1803 DECL_INTERFACE_KNOWN (decl
) = 1;
1808 /* We have already decided what to do with this DECL; there is no
1809 need to check anything further. */
1811 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_VTABLE_OR_VTT_P (decl
))
1813 tree type
= DECL_CONTEXT (decl
);
1814 import_export_class (type
);
1815 if (TYPE_FOR_JAVA (type
))
1817 else if (CLASSTYPE_INTERFACE_KNOWN (type
)
1818 && CLASSTYPE_INTERFACE_ONLY (type
))
1820 else if (TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1821 && !CLASSTYPE_USE_TEMPLATE (type
)
1822 && CLASSTYPE_KEY_METHOD (type
)
1823 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type
)))
1824 /* The ABI requires that all virtual tables be emitted with
1825 COMDAT linkage. However, on systems where COMDAT symbols
1826 don't show up in the table of contents for a static
1827 archive, the linker will report errors about undefined
1828 symbols because it will not see the virtual table
1829 definition. Therefore, in the case that we know that the
1830 virtual table will be emitted in only one translation
1831 unit, we make the virtual table an ordinary definition
1832 with external linkage. */
1833 DECL_EXTERNAL (decl
) = 0;
1834 else if (CLASSTYPE_INTERFACE_KNOWN (type
))
1836 /* TYPE is being exported from this translation unit, so DECL
1837 should be defined here. The ABI requires COMDAT
1838 linkage. Normally, we only emit COMDAT things when they
1839 are needed; make sure that we realize that this entity is
1844 else if (!flag_implicit_templates
1845 && CLASSTYPE_IMPLICIT_INSTANTIATION (type
))
1850 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_TINFO_P (decl
))
1852 tree type
= TREE_TYPE (DECL_NAME (decl
));
1853 if (CLASS_TYPE_P (type
))
1855 import_export_class (type
);
1856 if (CLASSTYPE_INTERFACE_KNOWN (type
)
1857 && TYPE_POLYMORPHIC_P (type
)
1858 && CLASSTYPE_INTERFACE_ONLY (type
)
1859 /* If -fno-rtti was specified, then we cannot be sure
1860 that RTTI information will be emitted with the
1861 virtual table of the class, so we must emit it
1862 wherever it is used. */
1868 if (CLASSTYPE_INTERFACE_KNOWN (type
)
1869 && !CLASSTYPE_INTERFACE_ONLY (type
))
1876 else if (DECL_TEMPLATE_INSTANTIATION (decl
)
1877 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl
))
1879 /* DECL is an implicit instantiation of a function or static
1881 if (flag_implicit_templates
1882 || (flag_implicit_inline_templates
1883 && TREE_CODE (decl
) == FUNCTION_DECL
1884 && DECL_DECLARED_INLINE_P (decl
)))
1887 /* If we are not implicitly generating templates, then mark
1888 this entity as undefined in this translation unit. */
1891 else if (DECL_FUNCTION_MEMBER_P (decl
))
1893 if (!DECL_DECLARED_INLINE_P (decl
))
1895 tree ctype
= DECL_CONTEXT (decl
);
1896 import_export_class (ctype
);
1897 if (CLASSTYPE_INTERFACE_KNOWN (ctype
))
1899 DECL_NOT_REALLY_EXTERN (decl
)
1900 = ! (CLASSTYPE_INTERFACE_ONLY (ctype
)
1901 || (DECL_DECLARED_INLINE_P (decl
)
1902 && ! flag_implement_inlines
1903 && !DECL_VINDEX (decl
)));
1905 if (!DECL_NOT_REALLY_EXTERN (decl
))
1906 DECL_EXTERNAL (decl
) = 1;
1908 /* Always make artificials weak. */
1909 if (DECL_ARTIFICIAL (decl
) && flag_weak
)
1912 maybe_make_one_only (decl
);
1923 /* If we are importing DECL into this translation unit, mark is
1924 an undefined here. */
1925 DECL_EXTERNAL (decl
) = 1;
1926 DECL_NOT_REALLY_EXTERN (decl
) = 0;
1930 /* If we decided to put DECL in COMDAT, mark it accordingly at
1932 comdat_linkage (decl
);
1935 DECL_INTERFACE_KNOWN (decl
) = 1;
1938 /* Return an expression that performs the destruction of DECL, which
1939 must be a VAR_DECL whose type has a non-trivial destructor, or is
1940 an array whose (innermost) elements have a non-trivial destructor. */
1943 build_cleanup (tree decl
)
1946 tree type
= TREE_TYPE (decl
);
1948 /* This function should only be called for declarations that really
1949 require cleanups. */
1950 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type
));
1952 /* Treat all objects with destructors as used; the destructor may do
1953 something substantive. */
1956 if (TREE_CODE (type
) == ARRAY_TYPE
)
1960 cxx_mark_addressable (decl
);
1961 temp
= build1 (ADDR_EXPR
, build_pointer_type (type
), decl
);
1963 temp
= build_delete (TREE_TYPE (temp
), temp
,
1964 sfk_complete_destructor
,
1965 LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
|LOOKUP_DESTRUCTOR
, 0);
1969 /* Returns the initialization guard variable for the variable DECL,
1970 which has static storage duration. */
1973 get_guard (tree decl
)
1978 sname
= mangle_guard_variable (decl
);
1979 guard
= IDENTIFIER_GLOBAL_VALUE (sname
);
1984 /* We use a type that is big enough to contain a mutex as well
1985 as an integer counter. */
1986 guard_type
= targetm
.cxx
.guard_type ();
1987 guard
= build_decl (VAR_DECL
, sname
, guard_type
);
1989 /* The guard should have the same linkage as what it guards. */
1990 TREE_PUBLIC (guard
) = TREE_PUBLIC (decl
);
1991 TREE_STATIC (guard
) = TREE_STATIC (decl
);
1992 DECL_COMMON (guard
) = DECL_COMMON (decl
);
1993 DECL_ONE_ONLY (guard
) = DECL_ONE_ONLY (decl
);
1994 if (TREE_PUBLIC (decl
))
1995 DECL_WEAK (guard
) = DECL_WEAK (decl
);
1997 DECL_ARTIFICIAL (guard
) = 1;
1998 TREE_USED (guard
) = 1;
1999 pushdecl_top_level_and_finish (guard
, NULL_TREE
);
2004 /* Return those bits of the GUARD variable that should be set when the
2005 guarded entity is actually initialized. */
2008 get_guard_bits (tree guard
)
2010 if (!targetm
.cxx
.guard_mask_bit ())
2012 /* We only set the first byte of the guard, in order to leave room
2013 for a mutex in the high-order bits. */
2014 guard
= build1 (ADDR_EXPR
,
2015 build_pointer_type (TREE_TYPE (guard
)),
2017 guard
= build1 (NOP_EXPR
,
2018 build_pointer_type (char_type_node
),
2020 guard
= build1 (INDIRECT_REF
, char_type_node
, guard
);
2026 /* Return an expression which determines whether or not the GUARD
2027 variable has already been initialized. */
2030 get_guard_cond (tree guard
)
2034 /* Check to see if the GUARD is zero. */
2035 guard
= get_guard_bits (guard
);
2037 /* Mask off all but the low bit. */
2038 if (targetm
.cxx
.guard_mask_bit ())
2040 guard_value
= integer_one_node
;
2041 if (!same_type_p (TREE_TYPE (guard_value
), TREE_TYPE (guard
)))
2042 guard_value
= convert (TREE_TYPE (guard
), guard_value
);
2043 guard
= cp_build_binary_op (BIT_AND_EXPR
, guard
, guard_value
);
2046 guard_value
= integer_zero_node
;
2047 if (!same_type_p (TREE_TYPE (guard_value
), TREE_TYPE (guard
)))
2048 guard_value
= convert (TREE_TYPE (guard
), guard_value
);
2049 return cp_build_binary_op (EQ_EXPR
, guard
, guard_value
);
2052 /* Return an expression which sets the GUARD variable, indicating that
2053 the variable being guarded has been initialized. */
2056 set_guard (tree guard
)
2060 /* Set the GUARD to one. */
2061 guard
= get_guard_bits (guard
);
2062 guard_init
= integer_one_node
;
2063 if (!same_type_p (TREE_TYPE (guard_init
), TREE_TYPE (guard
)))
2064 guard_init
= convert (TREE_TYPE (guard
), guard_init
);
2065 return build_modify_expr (guard
, NOP_EXPR
, guard_init
);
2068 /* Start the process of running a particular set of global constructors
2069 or destructors. Subroutine of do_[cd]tors. */
2072 start_objects (int method_type
, int initp
)
2078 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2080 if (initp
!= DEFAULT_INIT_PRIORITY
)
2090 sprintf (type
, "%c%c%.5u", method_type
, joiner
, initp
);
2093 sprintf (type
, "%c", method_type
);
2095 fndecl
= build_lang_decl (FUNCTION_DECL
,
2096 get_file_function_name_long (type
),
2097 build_function_type (void_type_node
,
2099 start_preparsed_function (fndecl
, /*attrs=*/NULL_TREE
, SF_PRE_PARSED
);
2101 /* It can be a static function as long as collect2 does not have
2102 to scan the object file to find its ctor/dtor routine. */
2103 TREE_PUBLIC (current_function_decl
) = ! targetm
.have_ctors_dtors
;
2105 /* Mark this declaration as used to avoid spurious warnings. */
2106 TREE_USED (current_function_decl
) = 1;
2108 /* Mark this function as a global constructor or destructor. */
2109 if (method_type
== 'I')
2110 DECL_GLOBAL_CTOR_P (current_function_decl
) = 1;
2112 DECL_GLOBAL_DTOR_P (current_function_decl
) = 1;
2113 DECL_LANG_SPECIFIC (current_function_decl
)->decl_flags
.u2sel
= 1;
2115 body
= begin_compound_stmt (BCS_FN_BODY
);
2117 /* We cannot allow these functions to be elided, even if they do not
2118 have external linkage. And, there's no point in deferring
2119 compilation of thes functions; they're all going to have to be
2121 DECL_INLINE (current_function_decl
) = 0;
2122 DECL_UNINLINABLE (current_function_decl
) = 1;
2127 /* Finish the process of running a particular set of global constructors
2128 or destructors. Subroutine of do_[cd]tors. */
2131 finish_objects (int method_type
, int initp
, tree body
)
2136 finish_compound_stmt (body
);
2137 fn
= finish_function (0);
2138 expand_or_defer_fn (fn
);
2140 /* When only doing semantic analysis, and no RTL generation, we
2141 can't call functions that directly emit assembly code; there is
2142 no assembly file in which to put the code. */
2143 if (flag_syntax_only
)
2146 if (targetm
.have_ctors_dtors
)
2148 rtx fnsym
= XEXP (DECL_RTL (fn
), 0);
2149 if (method_type
== 'I')
2150 (* targetm
.asm_out
.constructor
) (fnsym
, initp
);
2152 (* targetm
.asm_out
.destructor
) (fnsym
, initp
);
2156 /* The names of the parameters to the function created to handle
2157 initializations and destructions for objects with static storage
2159 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2160 #define PRIORITY_IDENTIFIER "__priority"
2162 /* The name of the function we create to handle initializations and
2163 destructions for objects with static storage duration. */
2164 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2166 /* The declaration for the __INITIALIZE_P argument. */
2167 static GTY(()) tree initialize_p_decl
;
2169 /* The declaration for the __PRIORITY argument. */
2170 static GTY(()) tree priority_decl
;
2172 /* The declaration for the static storage duration function. */
2173 static GTY(()) tree ssdf_decl
;
2175 /* All the static storage duration functions created in this
2176 translation unit. */
2177 static GTY(()) varray_type ssdf_decls
;
2179 /* A map from priority levels to information about that priority
2180 level. There may be many such levels, so efficient lookup is
2182 static splay_tree priority_info_map
;
2184 /* Begins the generation of the function that will handle all
2185 initialization and destruction of objects with static storage
2186 duration. The function generated takes two parameters of type
2187 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2188 nonzero, it performs initializations. Otherwise, it performs
2189 destructions. It only performs those initializations or
2190 destructions with the indicated __PRIORITY. The generated function
2193 It is assumed that this function will only be called once per
2194 translation unit. */
2197 start_static_storage_duration_function (unsigned count
)
2202 char id
[sizeof (SSDF_IDENTIFIER
) + 1 /* '\0' */ + 32];
2204 /* Create the identifier for this function. It will be of the form
2205 SSDF_IDENTIFIER_<number>. */
2206 sprintf (id
, "%s_%u", SSDF_IDENTIFIER
, count
);
2208 /* Create the parameters. */
2209 parm_types
= void_list_node
;
2210 parm_types
= tree_cons (NULL_TREE
, integer_type_node
, parm_types
);
2211 parm_types
= tree_cons (NULL_TREE
, integer_type_node
, parm_types
);
2212 type
= build_function_type (void_type_node
, parm_types
);
2214 /* Create the FUNCTION_DECL itself. */
2215 ssdf_decl
= build_lang_decl (FUNCTION_DECL
,
2216 get_identifier (id
),
2218 TREE_PUBLIC (ssdf_decl
) = 0;
2219 DECL_ARTIFICIAL (ssdf_decl
) = 1;
2221 /* Put this function in the list of functions to be called from the
2222 static constructors and destructors. */
2225 VARRAY_TREE_INIT (ssdf_decls
, 32, "ssdf_decls");
2227 /* Take this opportunity to initialize the map from priority
2228 numbers to information about that priority level. */
2229 priority_info_map
= splay_tree_new (splay_tree_compare_ints
,
2230 /*delete_key_fn=*/0,
2231 /*delete_value_fn=*/
2232 (splay_tree_delete_value_fn
) &free
);
2234 /* We always need to generate functions for the
2235 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2236 priorities later, we'll be sure to find the
2237 DEFAULT_INIT_PRIORITY. */
2238 get_priority_info (DEFAULT_INIT_PRIORITY
);
2241 VARRAY_PUSH_TREE (ssdf_decls
, ssdf_decl
);
2243 /* Create the argument list. */
2244 initialize_p_decl
= cp_build_parm_decl
2245 (get_identifier (INITIALIZE_P_IDENTIFIER
), integer_type_node
);
2246 DECL_CONTEXT (initialize_p_decl
) = ssdf_decl
;
2247 TREE_USED (initialize_p_decl
) = 1;
2248 priority_decl
= cp_build_parm_decl
2249 (get_identifier (PRIORITY_IDENTIFIER
), integer_type_node
);
2250 DECL_CONTEXT (priority_decl
) = ssdf_decl
;
2251 TREE_USED (priority_decl
) = 1;
2253 TREE_CHAIN (initialize_p_decl
) = priority_decl
;
2254 DECL_ARGUMENTS (ssdf_decl
) = initialize_p_decl
;
2256 /* Put the function in the global scope. */
2257 pushdecl (ssdf_decl
);
2259 /* Start the function itself. This is equivalent to declaring the
2262 static void __ssdf (int __initialize_p, init __priority_p);
2264 It is static because we only need to call this function from the
2265 various constructor and destructor functions for this module. */
2266 start_preparsed_function (ssdf_decl
,
2267 /*attrs=*/NULL_TREE
,
2270 /* Set up the scope of the outermost block in the function. */
2271 body
= begin_compound_stmt (BCS_FN_BODY
);
2273 /* This function must not be deferred because we are depending on
2274 its compilation to tell us what is TREE_SYMBOL_REFERENCED. */
2275 DECL_INLINE (ssdf_decl
) = 0;
2276 DECL_UNINLINABLE (ssdf_decl
) = 1;
2281 /* Finish the generation of the function which performs initialization
2282 and destruction of objects with static storage duration. After
2283 this point, no more such objects can be created. */
2286 finish_static_storage_duration_function (tree body
)
2288 /* Close out the function. */
2289 finish_compound_stmt (body
);
2290 expand_or_defer_fn (finish_function (0));
2293 /* Return the information about the indicated PRIORITY level. If no
2294 code to handle this level has yet been generated, generate the
2295 appropriate prologue. */
2297 static priority_info
2298 get_priority_info (int priority
)
2303 n
= splay_tree_lookup (priority_info_map
,
2304 (splay_tree_key
) priority
);
2307 /* Create a new priority information structure, and insert it
2309 pi
= xmalloc (sizeof (struct priority_info_s
));
2310 pi
->initializations_p
= 0;
2311 pi
->destructions_p
= 0;
2312 splay_tree_insert (priority_info_map
,
2313 (splay_tree_key
) priority
,
2314 (splay_tree_value
) pi
);
2317 pi
= (priority_info
) n
->value
;
2322 /* Set up to handle the initialization or destruction of DECL. If
2323 INITP is nonzero, we are initializing the variable. Otherwise, we
2324 are destroying it. */
2327 start_static_initialization_or_destruction (tree decl
, int initp
)
2329 tree guard_if_stmt
= NULL_TREE
;
2336 /* Figure out the priority for this declaration. */
2337 priority
= DECL_INIT_PRIORITY (decl
);
2339 priority
= DEFAULT_INIT_PRIORITY
;
2341 /* Remember that we had an initialization or finalization at this
2343 pi
= get_priority_info (priority
);
2345 pi
->initializations_p
= 1;
2347 pi
->destructions_p
= 1;
2349 /* Trick the compiler into thinking we are at the file and line
2350 where DECL was declared so that error-messages make sense, and so
2351 that the debugger will show somewhat sensible file and line
2353 input_location
= DECL_SOURCE_LOCATION (decl
);
2359 Access control for implicit calls to the constructors,
2360 the conversion functions, or the destructor called to
2361 create and destroy a static data member is performed as
2362 if these calls appeared in the scope of the member's
2365 we pretend we are in a static member function of the class of
2366 which the DECL is a member. */
2367 if (member_p (decl
))
2369 DECL_CONTEXT (current_function_decl
) = DECL_CONTEXT (decl
);
2370 DECL_STATIC_FUNCTION_P (current_function_decl
) = 1;
2373 /* Conditionalize this initialization on being in the right priority
2374 and being initializing/finalizing appropriately. */
2375 guard_if_stmt
= begin_if_stmt ();
2376 cond
= cp_build_binary_op (EQ_EXPR
,
2378 build_int_cst (NULL_TREE
, priority
));
2379 init_cond
= initp
? integer_one_node
: integer_zero_node
;
2380 init_cond
= cp_build_binary_op (EQ_EXPR
,
2383 cond
= cp_build_binary_op (TRUTH_ANDIF_EXPR
, cond
, init_cond
);
2385 /* Assume we don't need a guard. */
2387 /* We need a guard if this is an object with external linkage that
2388 might be initialized in more than one place. (For example, a
2389 static data member of a template, when the data member requires
2391 if (TREE_PUBLIC (decl
) && (DECL_COMMON (decl
)
2392 || DECL_ONE_ONLY (decl
)
2393 || DECL_WEAK (decl
)))
2397 guard
= get_guard (decl
);
2399 /* When using __cxa_atexit, we just check the GUARD as we would
2400 for a local static. */
2401 if (flag_use_cxa_atexit
)
2403 /* When using __cxa_atexit, we never try to destroy
2404 anything from a static destructor. */
2406 guard_cond
= get_guard_cond (guard
);
2408 /* If we don't have __cxa_atexit, then we will be running
2409 destructors from .fini sections, or their equivalents. So,
2410 we need to know how many times we've tried to initialize this
2411 object. We do initializations only if the GUARD is zero,
2412 i.e., if we are the first to initialize the variable. We do
2413 destructions only if the GUARD is one, i.e., if we are the
2414 last to destroy the variable. */
2417 = cp_build_binary_op (EQ_EXPR
,
2418 build_unary_op (PREINCREMENT_EXPR
,
2424 = cp_build_binary_op (EQ_EXPR
,
2425 build_unary_op (PREDECREMENT_EXPR
,
2430 cond
= cp_build_binary_op (TRUTH_ANDIF_EXPR
, cond
, guard_cond
);
2433 finish_if_stmt_cond (cond
, guard_if_stmt
);
2435 /* If we're using __cxa_atexit, we have not already set the GUARD,
2436 so we must do so now. */
2437 if (guard
&& initp
&& flag_use_cxa_atexit
)
2438 finish_expr_stmt (set_guard (guard
));
2440 return guard_if_stmt
;
2443 /* We've just finished generating code to do an initialization or
2444 finalization. GUARD_IF_STMT is the if-statement we used to guard
2445 the initialization. */
2448 finish_static_initialization_or_destruction (tree guard_if_stmt
)
2450 finish_then_clause (guard_if_stmt
);
2451 finish_if_stmt (guard_if_stmt
);
2453 /* Now that we're done with DECL we don't need to pretend to be a
2454 member of its class any longer. */
2455 DECL_CONTEXT (current_function_decl
) = NULL_TREE
;
2456 DECL_STATIC_FUNCTION_P (current_function_decl
) = 0;
2459 /* Generate code to do the initialization of DECL, a VAR_DECL with
2460 static storage duration. The initialization is INIT. */
2463 do_static_initialization (tree decl
, tree init
)
2467 /* Set up for the initialization. */
2469 = start_static_initialization_or_destruction (decl
,
2472 /* Perform the initialization. */
2474 finish_expr_stmt (init
);
2476 /* If we're using __cxa_atexit, register a a function that calls the
2477 destructor for the object. */
2478 if (flag_use_cxa_atexit
)
2479 finish_expr_stmt (register_dtor_fn (decl
));
2482 finish_static_initialization_or_destruction (guard_if_stmt
);
2485 /* Generate code to do the static destruction of DECL. If DECL may be
2486 initialized more than once in different object files, GUARD is the
2487 guard variable to check. PRIORITY is the priority for the
2491 do_static_destruction (tree decl
)
2495 /* If we're using __cxa_atexit, then destructors are registered
2496 immediately after objects are initialized. */
2497 gcc_assert (!flag_use_cxa_atexit
);
2499 /* If we don't need a destructor, there's nothing to do. */
2500 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl
)))
2503 /* Actually do the destruction. */
2504 guard_if_stmt
= start_static_initialization_or_destruction (decl
,
2506 finish_expr_stmt (build_cleanup (decl
));
2507 finish_static_initialization_or_destruction (guard_if_stmt
);
2510 /* VARS is a list of variables with static storage duration which may
2511 need initialization and/or finalization. Remove those variables
2512 that don't really need to be initialized or finalized, and return
2513 the resulting list. The order in which the variables appear in
2514 VARS is in reverse order of the order in which they should actually
2515 be initialized. The list we return is in the unreversed order;
2516 i.e., the first variable should be initialized first. */
2519 prune_vars_needing_no_initialization (tree
*vars
)
2522 tree result
= NULL_TREE
;
2527 tree decl
= TREE_VALUE (t
);
2528 tree init
= TREE_PURPOSE (t
);
2530 /* Deal gracefully with error. */
2531 if (decl
== error_mark_node
)
2533 var
= &TREE_CHAIN (t
);
2537 /* The only things that can be initialized are variables. */
2538 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
2540 /* If this object is not defined, we don't need to do anything
2542 if (DECL_EXTERNAL (decl
))
2544 var
= &TREE_CHAIN (t
);
2548 /* Also, if the initializer already contains errors, we can bail
2550 if (init
&& TREE_CODE (init
) == TREE_LIST
2551 && value_member (error_mark_node
, init
))
2553 var
= &TREE_CHAIN (t
);
2557 /* This variable is going to need initialization and/or
2558 finalization, so we add it to the list. */
2559 *var
= TREE_CHAIN (t
);
2560 TREE_CHAIN (t
) = result
;
2567 /* Make sure we have told the back end about all the variables in
2571 write_out_vars (tree vars
)
2575 for (v
= vars
; v
; v
= TREE_CHAIN (v
))
2577 tree var
= TREE_VALUE (v
);
2578 if (!var_finalized_p (var
))
2580 import_export_decl (var
);
2581 rest_of_decl_compilation (var
, 1, 1);
2586 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
2587 (otherwise) that will initialize all gobal objects with static
2588 storage duration having the indicated PRIORITY. */
2591 generate_ctor_or_dtor_function (bool constructor_p
, int priority
,
2600 input_location
= *locus
;
2601 #ifdef USE_MAPPED_LOCATION
2607 /* We use `I' to indicate initialization and `D' to indicate
2609 function_key
= constructor_p
? 'I' : 'D';
2611 /* We emit the function lazily, to avoid generating empty
2612 global constructors and destructors. */
2615 /* Call the static storage duration function with appropriate
2618 for (i
= 0; i
< ssdf_decls
->elements_used
; ++i
)
2620 fndecl
= VARRAY_TREE (ssdf_decls
, i
);
2622 /* Calls to pure or const functions will expand to nothing. */
2623 if (! (flags_from_decl_or_type (fndecl
) & (ECF_CONST
| ECF_PURE
)))
2626 body
= start_objects (function_key
, priority
);
2628 arguments
= tree_cons (NULL_TREE
,
2629 build_int_cst (NULL_TREE
, priority
),
2631 arguments
= tree_cons (NULL_TREE
,
2632 build_int_cst (NULL_TREE
, constructor_p
),
2634 finish_expr_stmt (build_function_call (fndecl
, arguments
));
2638 /* If we're generating code for the DEFAULT_INIT_PRIORITY, throw in
2639 calls to any functions marked with attributes indicating that
2640 they should be called at initialization- or destruction-time. */
2641 if (priority
== DEFAULT_INIT_PRIORITY
)
2645 for (fns
= constructor_p
? static_ctors
: static_dtors
;
2647 fns
= TREE_CHAIN (fns
))
2649 fndecl
= TREE_VALUE (fns
);
2651 /* Calls to pure/const functions will expand to nothing. */
2652 if (! (flags_from_decl_or_type (fndecl
) & (ECF_CONST
| ECF_PURE
)))
2655 body
= start_objects (function_key
, priority
);
2656 finish_expr_stmt (build_function_call (fndecl
, NULL_TREE
));
2661 /* Close out the function. */
2663 finish_objects (function_key
, priority
, body
);
2666 /* Generate constructor and destructor functions for the priority
2670 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n
, void * data
)
2672 location_t
*locus
= data
;
2673 int priority
= (int) n
->key
;
2674 priority_info pi
= (priority_info
) n
->value
;
2676 /* Generate the functions themselves, but only if they are really
2678 if (pi
->initializations_p
2679 || (priority
== DEFAULT_INIT_PRIORITY
&& static_ctors
))
2680 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority
, locus
);
2681 if (pi
->destructions_p
2682 || (priority
== DEFAULT_INIT_PRIORITY
&& static_dtors
))
2683 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority
, locus
);
2685 /* Keep iterating. */
2689 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
2690 decls referenced from frontend specific constructs; it will be called
2691 only for language-specific tree nodes.
2693 Here we must deal with member pointers. */
2696 cxx_callgraph_analyze_expr (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
2697 tree from ATTRIBUTE_UNUSED
)
2701 switch (TREE_CODE (t
))
2704 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t
)))
2705 cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t
)));
2708 if (TREE_CODE (BASELINK_FUNCTIONS (t
)) == FUNCTION_DECL
)
2709 cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t
)));
2712 if (DECL_VTABLE_OR_VTT_P (t
))
2714 /* The ABI requires that all virtual tables be emitted
2715 whenever one of them is. */
2717 for (vtbl
= CLASSTYPE_VTABLES (DECL_CONTEXT (t
));
2719 vtbl
= TREE_CHAIN (vtbl
))
2720 mark_decl_referenced (vtbl
);
2722 else if (DECL_CONTEXT (t
)
2723 && TREE_CODE (DECL_CONTEXT (t
)) == FUNCTION_DECL
)
2724 /* If we need a static variable in a function, then we
2725 need the containing function. */
2726 mark_decl_referenced (DECL_CONTEXT (t
));
2735 /* This routine is called from the last rule in yyparse ().
2736 Its job is to create all the code needed to initialize and
2737 destroy the global aggregates. We do the destruction
2738 first, since that way we only need to reverse the decls once. */
2741 cp_finish_file (void)
2747 unsigned ssdf_count
= 0;
2750 locus
= input_location
;
2753 /* Bad parse errors. Just forget about it. */
2754 if (! global_bindings_p () || current_class_type
|| decl_namespace_list
)
2758 c_common_write_pch ();
2760 #ifdef USE_MAPPED_LOCATION
2763 /* Otherwise, GDB can get confused, because in only knows
2764 about source for LINENO-1 lines. */
2768 /* We now have to write out all the stuff we put off writing out.
2771 o Template specializations that we have not yet instantiated,
2772 but which are needed.
2773 o Initialization and destruction for non-local objects with
2774 static storage duration. (Local objects with static storage
2775 duration are initialized when their scope is first entered,
2776 and are cleaned up via atexit.)
2777 o Virtual function tables.
2779 All of these may cause others to be needed. For example,
2780 instantiating one function may cause another to be needed, and
2781 generating the initializer for an object may cause templates to be
2782 instantiated, etc., etc. */
2784 timevar_push (TV_VARCONST
);
2786 emit_support_tinfos ();
2794 /* If there are templates that we've put off instantiating, do
2796 instantiate_pending_templates (retries
);
2799 /* Write out virtual tables as required. Note that writing out
2800 the virtual table for a template class may cause the
2801 instantiation of members of that class. If we write out
2802 vtables then we remove the class from our list so we don't
2803 have to look at it again. */
2805 while (keyed_classes
!= NULL_TREE
2806 && maybe_emit_vtables (TREE_VALUE (keyed_classes
)))
2809 keyed_classes
= TREE_CHAIN (keyed_classes
);
2815 tree next
= TREE_CHAIN (t
);
2819 if (maybe_emit_vtables (TREE_VALUE (next
)))
2822 TREE_CHAIN (t
) = TREE_CHAIN (next
);
2827 next
= TREE_CHAIN (t
);
2831 /* Write out needed type info variables. We have to be careful
2832 looping through unemitted decls, because emit_tinfo_decl may
2833 cause other variables to be needed. New elements will be
2834 appended, and we remove from the vector those that actually
2836 for (i
= VEC_length (tree
, unemitted_tinfo_decls
);
2837 VEC_iterate (tree
, unemitted_tinfo_decls
, --i
, t
);)
2838 if (emit_tinfo_decl (t
))
2841 VEC_unordered_remove (tree
, unemitted_tinfo_decls
, i
);
2844 /* The list of objects with static storage duration is built up
2845 in reverse order. We clear STATIC_AGGREGATES so that any new
2846 aggregates added during the initialization of these will be
2847 initialized in the correct order when we next come around the
2849 vars
= prune_vars_needing_no_initialization (&static_aggregates
);
2855 /* We need to start a new initialization function each time
2856 through the loop. That's because we need to know which
2857 vtables have been referenced, and TREE_SYMBOL_REFERENCED
2858 isn't computed until a function is finished, and written
2859 out. That's a deficiency in the back-end. When this is
2860 fixed, these initialization functions could all become
2861 inline, with resulting performance improvements. */
2864 /* Set the line and file, so that it is obviously not from
2866 input_location
= locus
;
2867 ssdf_body
= start_static_storage_duration_function (ssdf_count
);
2869 /* Make sure the back end knows about all the variables. */
2870 write_out_vars (vars
);
2872 /* First generate code to do all the initializations. */
2873 for (v
= vars
; v
; v
= TREE_CHAIN (v
))
2874 do_static_initialization (TREE_VALUE (v
),
2877 /* Then, generate code to do all the destructions. Do these
2878 in reverse order so that the most recently constructed
2879 variable is the first destroyed. If we're using
2880 __cxa_atexit, then we don't need to do this; functions
2881 were registered at initialization time to destroy the
2883 if (!flag_use_cxa_atexit
)
2885 vars
= nreverse (vars
);
2886 for (v
= vars
; v
; v
= TREE_CHAIN (v
))
2887 do_static_destruction (TREE_VALUE (v
));
2892 /* Finish up the static storage duration function for this
2894 input_location
= locus
;
2895 finish_static_storage_duration_function (ssdf_body
);
2897 /* All those initializations and finalizations might cause
2898 us to need more inline functions, more template
2899 instantiations, etc. */
2902 #ifdef USE_MAPPED_LOCATION
2909 /* Go through the set of inline functions whose bodies have not
2910 been emitted yet. If out-of-line copies of these functions
2911 are required, emit them. */
2912 for (i
= 0; i
< deferred_fns_used
; ++i
)
2914 tree decl
= VARRAY_TREE (deferred_fns
, i
);
2916 /* Does it need synthesizing? */
2917 if (DECL_ARTIFICIAL (decl
) && ! DECL_INITIAL (decl
)
2918 && (! DECL_REALLY_EXTERN (decl
) || DECL_INLINE (decl
)))
2920 /* Even though we're already at the top-level, we push
2921 there again. That way, when we pop back a few lines
2922 hence, all of our state is restored. Otherwise,
2923 finish_function doesn't clean things up, and we end
2924 up with CURRENT_FUNCTION_DECL set. */
2925 push_to_top_level ();
2926 synthesize_method (decl
);
2927 pop_from_top_level ();
2931 if (!DECL_SAVED_TREE (decl
))
2934 import_export_decl (decl
);
2936 /* We lie to the back-end, pretending that some functions
2937 are not defined when they really are. This keeps these
2938 functions from being put out unnecessarily. But, we must
2939 stop lying when the functions are referenced, or if they
2940 are not comdat since they need to be put out now. This
2941 is done in a separate for cycle, because if some deferred
2942 function is contained in another deferred function later
2943 in deferred_fns varray, rest_of_compilation would skip
2944 this function and we really cannot expand the same
2946 if (DECL_NOT_REALLY_EXTERN (decl
)
2947 && DECL_INITIAL (decl
)
2948 && decl_needed_p (decl
))
2949 DECL_EXTERNAL (decl
) = 0;
2951 /* If we're going to need to write this function out, and
2952 there's already a body for it, create RTL for it now.
2953 (There might be no body if this is a method we haven't
2954 gotten around to synthesizing yet.) */
2955 if (!DECL_EXTERNAL (decl
)
2956 && decl_needed_p (decl
)
2957 && !TREE_ASM_WRITTEN (decl
)
2958 && !cgraph_node (decl
)->local
.finalized
)
2960 /* We will output the function; no longer consider it in this
2962 DECL_DEFER_OUTPUT (decl
) = 0;
2963 /* Generate RTL for this function now that we know we
2965 expand_or_defer_fn (decl
);
2966 /* If we're compiling -fsyntax-only pretend that this
2967 function has been written out so that we don't try to
2969 if (flag_syntax_only
)
2970 TREE_ASM_WRITTEN (decl
) = 1;
2975 if (walk_namespaces (wrapup_globals_for_namespace
, /*data=*/0))
2978 /* Static data members are just like namespace-scope globals. */
2979 for (i
= 0; i
< pending_statics_used
; ++i
)
2981 tree decl
= VARRAY_TREE (pending_statics
, i
);
2982 if (var_finalized_p (decl
) || DECL_REALLY_EXTERN (decl
))
2984 import_export_decl (decl
);
2985 /* If this static data member is needed, provide it to the
2987 if (DECL_NOT_REALLY_EXTERN (decl
) && decl_needed_p (decl
))
2988 DECL_EXTERNAL (decl
) = 0;
2991 && wrapup_global_declarations (&VARRAY_TREE (pending_statics
, 0),
2992 pending_statics_used
))
2995 /* Ask the back end to emit functions and variables that are
2996 enqueued. These emissions may result in marking more entities
2998 if (cgraph_assemble_pending_functions ())
3000 if (cgraph_varpool_assemble_pending_decls ())
3007 /* All used inline functions must have a definition at this point. */
3008 for (i
= 0; i
< deferred_fns_used
; ++i
)
3010 tree decl
= VARRAY_TREE (deferred_fns
, i
);
3012 if (/* Check online inline functions that were actually used. */
3013 TREE_USED (decl
) && DECL_DECLARED_INLINE_P (decl
)
3014 /* But not defined. */
3015 && DECL_REALLY_EXTERN (decl
)
3016 /* If we decided to emit this function in another
3017 translation unit, the fact that the definition was
3018 missing here likely indicates only that the repository
3019 decided to place the function elsewhere. With -Winline,
3020 we will still warn if we could not inline the
3022 && !flag_use_repository
3023 /* An explicit instantiation can be used to specify
3024 that the body is in another unit. It will have
3025 already verified there was a definition. */
3026 && !DECL_EXPLICIT_INSTANTIATION (decl
))
3028 cp_warning_at ("inline function `%D' used but never defined", decl
);
3029 /* This symbol is effectively an "extern" declaration now.
3030 This is not strictly necessary, but removes a duplicate
3032 TREE_PUBLIC (decl
) = 1;
3036 /* We give C linkage to static constructors and destructors. */
3037 push_lang_context (lang_name_c
);
3039 /* Generate initialization and destruction functions for all
3040 priorities for which they are required. */
3041 if (priority_info_map
)
3042 splay_tree_foreach (priority_info_map
,
3043 generate_ctor_and_dtor_functions_for_priority
,
3049 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3050 DEFAULT_INIT_PRIORITY
, &locus
);
3052 generate_ctor_or_dtor_function (/*constructor_p=*/false,
3053 DEFAULT_INIT_PRIORITY
, &locus
);
3056 /* We're done with the splay-tree now. */
3057 if (priority_info_map
)
3058 splay_tree_delete (priority_info_map
);
3060 /* We're done with static constructors, so we can go back to "C++"
3062 pop_lang_context ();
3064 cgraph_finalize_compilation_unit ();
3067 /* Emit mudflap static registration function. This must be done
3068 after all the user functions have been expanded. */
3070 mudflap_finish_file ();
3072 /* Now, issue warnings about static, but not defined, functions,
3073 etc., and emit debugging information. */
3074 walk_namespaces (wrapup_globals_for_namespace
, /*data=*/&reconsider
);
3075 if (pending_statics
)
3076 check_global_declarations (&VARRAY_TREE (pending_statics
, 0),
3077 pending_statics_used
);
3081 /* The entire file is now complete. If requested, dump everything
3085 FILE *stream
= dump_begin (TDI_tu
, &flags
);
3089 dump_node (global_namespace
, flags
& ~TDF_SLIM
, stream
);
3090 dump_end (TDI_tu
, stream
);
3094 timevar_pop (TV_VARCONST
);
3096 if (flag_detailed_statistics
)
3098 dump_tree_statistics ();
3099 dump_time_statistics ();
3101 input_location
= locus
;
3103 #ifdef ENABLE_CHECKING
3104 validate_conversion_obstack ();
3105 #endif /* ENABLE_CHECKING */
3108 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3109 function to call in parse-tree form; it has not yet been
3110 semantically analyzed. ARGS are the arguments to the function.
3111 They have already been semantically analyzed. */
3114 build_offset_ref_call_from_tree (tree fn
, tree args
)
3123 object
= TREE_OPERAND (fn
, 0);
3125 if (processing_template_decl
)
3127 gcc_assert (TREE_CODE (fn
) == DOTSTAR_EXPR
3128 || TREE_CODE (fn
) == MEMBER_REF
);
3129 if (type_dependent_expression_p (fn
)
3130 || any_type_dependent_arguments_p (args
))
3131 return build_min_nt (CALL_EXPR
, fn
, args
, NULL_TREE
);
3133 /* Transform the arguments and add the implicit "this"
3134 parameter. That must be done before the FN is transformed
3135 because we depend on the form of FN. */
3136 args
= build_non_dependent_args (args
);
3137 if (TREE_CODE (fn
) == DOTSTAR_EXPR
)
3138 object
= build_unary_op (ADDR_EXPR
, object
, 0);
3139 object
= build_non_dependent_expr (object
);
3140 args
= tree_cons (NULL_TREE
, object
, args
);
3141 /* Now that the arguments are done, transform FN. */
3142 fn
= build_non_dependent_expr (fn
);
3145 /* A qualified name corresponding to a bound pointer-to-member is
3146 represented as an OFFSET_REF:
3148 struct B { void g(); };
3150 void B::g() { (this->*p)(); } */
3151 if (TREE_CODE (fn
) == OFFSET_REF
)
3153 tree object_addr
= build_unary_op (ADDR_EXPR
, object
, 0);
3154 fn
= TREE_OPERAND (fn
, 1);
3155 fn
= get_member_function_from_ptrfunc (&object_addr
, fn
);
3156 args
= tree_cons (NULL_TREE
, object_addr
, args
);
3159 expr
= build_function_call (fn
, args
);
3160 if (processing_template_decl
&& expr
!= error_mark_node
)
3161 return build_min_non_dep (CALL_EXPR
, expr
, orig_fn
, orig_args
, NULL_TREE
);
3167 check_default_args (tree x
)
3169 tree arg
= TYPE_ARG_TYPES (TREE_TYPE (x
));
3170 bool saw_def
= false;
3171 int i
= 0 - (TREE_CODE (TREE_TYPE (x
)) == METHOD_TYPE
);
3172 for (; arg
&& arg
!= void_list_node
; arg
= TREE_CHAIN (arg
), ++i
)
3174 if (TREE_PURPOSE (arg
))
3178 cp_error_at ("default argument missing for parameter %P of %q+#D",
3186 mark_used (tree decl
)
3188 TREE_USED (decl
) = 1;
3189 if (processing_template_decl
|| skip_evaluation
)
3192 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (decl
)
3193 && !TREE_ASM_WRITTEN (decl
))
3194 /* Remember it, so we can check it was defined. */
3196 if (DECL_DEFERRED_FN (decl
))
3198 note_vague_linkage_fn (decl
);
3201 assemble_external (decl
);
3203 /* Is it a synthesized method that needs to be synthesized? */
3204 if (TREE_CODE (decl
) == FUNCTION_DECL
3205 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
)
3206 && DECL_ARTIFICIAL (decl
)
3207 && !DECL_THUNK_P (decl
)
3208 && ! DECL_INITIAL (decl
)
3209 /* Kludge: don't synthesize for default args. */
3210 && current_function_decl
)
3212 synthesize_method (decl
);
3213 /* If we've already synthesized the method we don't need to
3214 instantiate it, so we can return right away. */
3218 /* If this is a function or variable that is an instance of some
3219 template, we now know that we will need to actually do the
3220 instantiation. We check that DECL is not an explicit
3221 instantiation because that is not checked in instantiate_decl. */
3222 if ((DECL_NON_THUNK_FUNCTION_P (decl
) || TREE_CODE (decl
) == VAR_DECL
)
3223 && DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
)
3224 && (!DECL_EXPLICIT_INSTANTIATION (decl
)
3225 || (TREE_CODE (decl
) == FUNCTION_DECL
3226 && DECL_INLINE (DECL_TEMPLATE_RESULT
3227 (template_for_substitution (decl
))))))
3228 /* We put off instantiating functions in order to improve compile
3229 times. Maintaining a stack of active functions is expensive,
3230 and the inliner knows to instantiate any functions it might
3232 instantiate_decl (decl
, /*defer_ok=*/true, /*undefined_ok=*/0);
3235 #include "gt-cp-decl2.h"