* decl2.c (spew_debug): Remove.
[official-gcc.git] / gcc / cp / decl2.c
blob77f40fc835defeae412e5a5d251e6d186e35e9c8
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)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file 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. */
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "tree.h"
36 #include "rtl.h"
37 #include "expr.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "decl.h"
41 #include "output.h"
42 #include "except.h"
43 #include "toplev.h"
44 #include "timevar.h"
45 #include "cpplib.h"
46 #include "target.h"
47 #include "c-common.h"
48 #include "tree-mudflap.h"
49 #include "cgraph.h"
50 #include "tree-inline.h"
51 #include "c-pragma.h"
53 extern cpp_reader *parse_in;
55 /* This structure contains information about the initializations
56 and/or destructions required for a particular priority level. */
57 typedef struct priority_info_s {
58 /* Nonzero if there have been any initializations at this priority
59 throughout the translation unit. */
60 int initializations_p;
61 /* Nonzero if there have been any destructions at this priority
62 throughout the translation unit. */
63 int destructions_p;
64 } *priority_info;
66 static void mark_vtable_entries (tree);
67 static bool maybe_emit_vtables (tree);
68 static bool acceptable_java_type (tree);
69 static tree start_objects (int, int);
70 static void finish_objects (int, int, tree);
71 static tree start_static_storage_duration_function (unsigned);
72 static void finish_static_storage_duration_function (tree);
73 static priority_info get_priority_info (int);
74 static void do_static_initialization (tree, tree);
75 static void do_static_destruction (tree);
76 static tree start_static_initialization_or_destruction (tree, int);
77 static void finish_static_initialization_or_destruction (tree);
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,
80 void *);
81 static tree prune_vars_needing_no_initialization (tree *);
82 static void write_out_vars (tree);
83 static void import_export_class (tree);
84 static tree get_guard_bits (tree);
86 /* A list of static class variables. This is needed, because a
87 static class variable can be declared inside the class without
88 an initializer, and then initialized, statically, outside the class. */
89 static GTY(()) varray_type pending_statics;
90 #define pending_statics_used \
91 (pending_statics ? pending_statics->elements_used : 0)
93 /* A list of functions which were declared inline, but which we
94 may need to emit outline anyway. */
95 static GTY(()) VEC(tree,gc) *deferred_fns;
97 /* Nonzero if we're done parsing and into end-of-file activities. */
99 int at_eof;
101 /* Functions called along with real static constructors and destructors. */
103 tree static_ctors;
104 tree static_dtors;
107 /* Incorporate `const' and `volatile' qualifiers for member functions.
108 FUNCTION is a TYPE_DECL or a FUNCTION_DECL.
109 QUALS is a list of qualifiers. Returns any explicit
110 top-level qualifiers of the method's this pointer, anything other than
111 TYPE_UNQUALIFIED will be an extension. */
114 grok_method_quals (tree ctype, tree function, cp_cv_quals quals)
116 tree fntype = TREE_TYPE (function);
117 tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
118 int type_quals = TYPE_UNQUALIFIED;
119 int this_quals = TYPE_UNQUALIFIED;
121 type_quals = quals & ~TYPE_QUAL_RESTRICT;
122 this_quals = quals & TYPE_QUAL_RESTRICT;
124 ctype = cp_build_qualified_type (ctype, type_quals);
125 fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
126 (TREE_CODE (fntype) == METHOD_TYPE
127 ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
128 : TYPE_ARG_TYPES (fntype)));
129 if (raises)
130 fntype = build_exception_variant (fntype, raises);
132 TREE_TYPE (function) = fntype;
133 return this_quals;
136 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
137 appropriately. */
139 tree
140 cp_build_parm_decl (tree name, tree type)
142 tree parm = build_decl (PARM_DECL, name, type);
143 /* DECL_ARG_TYPE is only used by the back end and the back end never
144 sees templates. */
145 if (!processing_template_decl)
146 DECL_ARG_TYPE (parm) = type_passed_as (type);
147 return parm;
150 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
151 indicated NAME. */
153 static tree
154 build_artificial_parm (tree name, tree type)
156 tree parm = cp_build_parm_decl (name, type);
157 DECL_ARTIFICIAL (parm) = 1;
158 /* All our artificial parms are implicitly `const'; they cannot be
159 assigned to. */
160 TREE_READONLY (parm) = 1;
161 return parm;
164 /* Constructors for types with virtual baseclasses need an "in-charge" flag
165 saying whether this constructor is responsible for initialization of
166 virtual baseclasses or not. All destructors also need this "in-charge"
167 flag, which additionally determines whether or not the destructor should
168 free the memory for the object.
170 This function adds the "in-charge" flag to member function FN if
171 appropriate. It is called from grokclassfn and tsubst.
172 FN must be either a constructor or destructor.
174 The in-charge flag follows the 'this' parameter, and is followed by the
175 VTT parm (if any), then the user-written parms. */
177 void
178 maybe_retrofit_in_chrg (tree fn)
180 tree basetype, arg_types, parms, parm, fntype;
182 /* If we've already add the in-charge parameter don't do it again. */
183 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
184 return;
186 /* When processing templates we can't know, in general, whether or
187 not we're going to have virtual baseclasses. */
188 if (processing_template_decl)
189 return;
191 /* We don't need an in-charge parameter for constructors that don't
192 have virtual bases. */
193 if (DECL_CONSTRUCTOR_P (fn)
194 && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
195 return;
197 arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
198 basetype = TREE_TYPE (TREE_VALUE (arg_types));
199 arg_types = TREE_CHAIN (arg_types);
201 parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
203 /* If this is a subobject constructor or destructor, our caller will
204 pass us a pointer to our VTT. */
205 if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
207 parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
209 /* First add it to DECL_ARGUMENTS between 'this' and the real args... */
210 TREE_CHAIN (parm) = parms;
211 parms = parm;
213 /* ...and then to TYPE_ARG_TYPES. */
214 arg_types = hash_tree_chain (vtt_parm_type, arg_types);
216 DECL_HAS_VTT_PARM_P (fn) = 1;
219 /* Then add the in-charge parm (before the VTT parm). */
220 parm = build_artificial_parm (in_charge_identifier, integer_type_node);
221 TREE_CHAIN (parm) = parms;
222 parms = parm;
223 arg_types = hash_tree_chain (integer_type_node, arg_types);
225 /* Insert our new parameter(s) into the list. */
226 TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
228 /* And rebuild the function type. */
229 fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
230 arg_types);
231 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
232 fntype = build_exception_variant (fntype,
233 TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
234 TREE_TYPE (fn) = fntype;
236 /* Now we've got the in-charge parameter. */
237 DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
240 /* Classes overload their constituent function names automatically.
241 When a function name is declared in a record structure,
242 its name is changed to it overloaded name. Since names for
243 constructors and destructors can conflict, we place a leading
244 '$' for destructors.
246 CNAME is the name of the class we are grokking for.
248 FUNCTION is a FUNCTION_DECL. It was created by `grokdeclarator'.
250 FLAGS contains bits saying what's special about today's
251 arguments. 1 == DESTRUCTOR. 2 == OPERATOR.
253 If FUNCTION is a destructor, then we must add the `auto-delete' field
254 as a second parameter. There is some hair associated with the fact
255 that we must "declare" this variable in the manner consistent with the
256 way the rest of the arguments were declared.
258 QUALS are the qualifiers for the this pointer. */
260 void
261 grokclassfn (tree ctype, tree function, enum overload_flags flags,
262 cp_cv_quals quals)
264 tree fn_name = DECL_NAME (function);
265 cp_cv_quals this_quals = TYPE_UNQUALIFIED;
267 /* Even within an `extern "C"' block, members get C++ linkage. See
268 [dcl.link] for details. */
269 SET_DECL_LANGUAGE (function, lang_cplusplus);
271 if (fn_name == NULL_TREE)
273 error ("name missing for member function");
274 fn_name = get_identifier ("<anonymous>");
275 DECL_NAME (function) = fn_name;
278 if (quals)
279 this_quals = grok_method_quals (ctype, function, quals);
281 if (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
283 /* Must add the class instance variable up front. */
284 /* Right now we just make this a pointer. But later
285 we may wish to make it special. */
286 tree type = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (function)));
287 tree qual_type;
288 tree parm;
290 /* The `this' parameter is implicitly `const'; it cannot be
291 assigned to. */
292 this_quals |= TYPE_QUAL_CONST;
293 qual_type = cp_build_qualified_type (type, this_quals);
294 parm = build_artificial_parm (this_identifier, qual_type);
295 cp_apply_type_quals_to_decl (this_quals, parm);
296 TREE_CHAIN (parm) = DECL_ARGUMENTS (function);
297 DECL_ARGUMENTS (function) = parm;
300 DECL_CONTEXT (function) = ctype;
302 if (flags == DTOR_FLAG)
303 DECL_DESTRUCTOR_P (function) = 1;
305 if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
306 maybe_retrofit_in_chrg (function);
309 /* Create an ARRAY_REF, checking for the user doing things backwards
310 along the way. */
312 tree
313 grok_array_decl (tree array_expr, tree index_exp)
315 tree type;
316 tree expr;
317 tree orig_array_expr = array_expr;
318 tree orig_index_exp = index_exp;
320 if (error_operand_p (array_expr) || error_operand_p (index_exp))
321 return error_mark_node;
323 if (processing_template_decl)
325 if (type_dependent_expression_p (array_expr)
326 || type_dependent_expression_p (index_exp))
327 return build_min_nt (ARRAY_REF, array_expr, index_exp,
328 NULL_TREE, NULL_TREE);
329 array_expr = build_non_dependent_expr (array_expr);
330 index_exp = build_non_dependent_expr (index_exp);
333 type = TREE_TYPE (array_expr);
334 gcc_assert (type);
335 type = non_reference (type);
337 /* If they have an `operator[]', use that. */
338 if (IS_AGGR_TYPE (type) || IS_AGGR_TYPE (TREE_TYPE (index_exp)))
339 expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
340 array_expr, index_exp, NULL_TREE,
341 /*overloaded_p=*/NULL);
342 else
344 tree p1, p2, i1, i2;
346 /* Otherwise, create an ARRAY_REF for a pointer or array type.
347 It is a little-known fact that, if `a' is an array and `i' is
348 an int, you can write `i[a]', which means the same thing as
349 `a[i]'. */
350 if (TREE_CODE (type) == ARRAY_TYPE)
351 p1 = array_expr;
352 else
353 p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
355 if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
356 p2 = index_exp;
357 else
358 p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
360 i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
361 false);
362 i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
363 false);
365 if ((p1 && i2) && (i1 && p2))
366 error ("ambiguous conversion for array subscript");
368 if (p1 && i2)
369 array_expr = p1, index_exp = i2;
370 else if (i1 && p2)
371 array_expr = p2, index_exp = i1;
372 else
374 error ("invalid types %<%T[%T]%> for array subscript",
375 type, TREE_TYPE (index_exp));
376 return error_mark_node;
379 if (array_expr == error_mark_node || index_exp == error_mark_node)
380 error ("ambiguous conversion for array subscript");
382 expr = build_array_ref (array_expr, index_exp);
384 if (processing_template_decl && expr != error_mark_node)
385 return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
386 NULL_TREE, NULL_TREE);
387 return expr;
390 /* Given the cast expression EXP, checking out its validity. Either return
391 an error_mark_node if there was an unavoidable error, return a cast to
392 void for trying to delete a pointer w/ the value 0, or return the
393 call to delete. If DOING_VEC is true, we handle things differently
394 for doing an array delete.
395 Implements ARM $5.3.4. This is called from the parser. */
397 tree
398 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
400 tree t, type;
402 if (exp == error_mark_node)
403 return exp;
405 if (processing_template_decl)
407 t = build_min (DELETE_EXPR, void_type_node, exp, size);
408 DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
409 DELETE_EXPR_USE_VEC (t) = doing_vec;
410 TREE_SIDE_EFFECTS (t) = 1;
411 return t;
414 /* An array can't have been allocated by new, so complain. */
415 if (TREE_CODE (exp) == VAR_DECL
416 && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
417 warning (0, "deleting array %q#D", exp);
419 t = build_expr_type_conversion (WANT_POINTER, exp, true);
421 if (t == NULL_TREE || t == error_mark_node)
423 error ("type %q#T argument given to %<delete%>, expected pointer",
424 TREE_TYPE (exp));
425 return error_mark_node;
428 type = TREE_TYPE (t);
430 /* As of Valley Forge, you can delete a pointer to const. */
432 /* You can't delete functions. */
433 if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
435 error ("cannot delete a function. Only pointer-to-objects are "
436 "valid arguments to %<delete%>");
437 return error_mark_node;
440 /* Deleting ptr to void is undefined behavior [expr.delete/3]. */
441 if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
443 warning (0, "deleting %qT is undefined", type);
444 doing_vec = 0;
447 /* Deleting a pointer with the value zero is valid and has no effect. */
448 if (integer_zerop (t))
449 return build1 (NOP_EXPR, void_type_node, t);
451 if (doing_vec)
452 return build_vec_delete (t, /*maxindex=*/NULL_TREE,
453 sfk_deleting_destructor,
454 use_global_delete);
455 else
456 return build_delete (type, t, sfk_deleting_destructor,
457 LOOKUP_NORMAL, use_global_delete);
460 /* Report an error if the indicated template declaration is not the
461 sort of thing that should be a member template. */
463 void
464 check_member_template (tree tmpl)
466 tree decl;
468 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
469 decl = DECL_TEMPLATE_RESULT (tmpl);
471 if (TREE_CODE (decl) == FUNCTION_DECL
472 || (TREE_CODE (decl) == TYPE_DECL
473 && IS_AGGR_TYPE (TREE_TYPE (decl))))
475 if (current_function_decl)
476 /* 14.5.2.2 [temp.mem]
478 A local class shall not have member templates. */
479 error ("invalid declaration of member template %q#D in local class",
480 decl);
482 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VIRTUAL_P (decl))
484 /* 14.5.2.3 [temp.mem]
486 A member function template shall not be virtual. */
487 error
488 ("invalid use of %<virtual%> in template declaration of %q#D",
489 decl);
490 DECL_VIRTUAL_P (decl) = 0;
493 /* The debug-information generating code doesn't know what to do
494 with member templates. */
495 DECL_IGNORED_P (tmpl) = 1;
497 else
498 error ("template declaration of %q#D", decl);
501 /* Return true iff TYPE is a valid Java parameter or return type. */
503 static bool
504 acceptable_java_type (tree type)
506 if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
507 return 1;
508 if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
510 type = TREE_TYPE (type);
511 if (TREE_CODE (type) == RECORD_TYPE)
513 tree args; int i;
514 if (! TYPE_FOR_JAVA (type))
515 return false;
516 if (! CLASSTYPE_TEMPLATE_INFO (type))
517 return true;
518 args = CLASSTYPE_TI_ARGS (type);
519 i = TREE_VEC_LENGTH (args);
520 while (--i >= 0)
522 type = TREE_VEC_ELT (args, i);
523 if (TREE_CODE (type) == POINTER_TYPE)
524 type = TREE_TYPE (type);
525 if (! TYPE_FOR_JAVA (type))
526 return false;
528 return true;
531 return false;
534 /* For a METHOD in a Java class CTYPE, return true if
535 the parameter and return types are valid Java types.
536 Otherwise, print appropriate error messages, and return false. */
538 bool
539 check_java_method (tree method)
541 bool jerr = false;
542 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
543 tree ret_type = TREE_TYPE (TREE_TYPE (method));
545 if (!acceptable_java_type (ret_type))
547 error ("Java method %qD has non-Java return type %qT",
548 method, ret_type);
549 jerr = true;
552 arg_types = TREE_CHAIN (arg_types);
553 if (DECL_HAS_IN_CHARGE_PARM_P (method))
554 arg_types = TREE_CHAIN (arg_types);
555 if (DECL_HAS_VTT_PARM_P (method))
556 arg_types = TREE_CHAIN (arg_types);
558 for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
560 tree type = TREE_VALUE (arg_types);
561 if (!acceptable_java_type (type))
563 error ("Java method %qD has non-Java parameter type %qT",
564 method, type);
565 jerr = true;
568 return !jerr;
571 /* Sanity check: report error if this function FUNCTION is not
572 really a member of the class (CTYPE) it is supposed to belong to.
573 TEMPLATE_PARMS is used to specify the template parameters of a member
574 template passed as FUNCTION_DECL. If the member template is passed as a
575 TEMPLATE_DECL, it can be NULL since the parameters can be extracted
576 from the declaration. If the function is not a function template, it
577 must be NULL.
578 It returns the original declaration for the function, or NULL_TREE
579 if no declaration was found (and an error was emitted). */
581 tree
582 check_classfn (tree ctype, tree function, tree template_parms)
584 int ix;
585 bool is_template;
587 if (DECL_USE_TEMPLATE (function)
588 && !(TREE_CODE (function) == TEMPLATE_DECL
589 && DECL_TEMPLATE_SPECIALIZATION (function))
590 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
591 /* Since this is a specialization of a member template,
592 we're not going to find the declaration in the class.
593 For example, in:
595 struct S { template <typename T> void f(T); };
596 template <> void S::f(int);
598 we're not going to find `S::f(int)', but there's no
599 reason we should, either. We let our callers know we didn't
600 find the method, but we don't complain. */
601 return NULL_TREE;
603 /* Basic sanity check: for a template function, the template parameters
604 either were not passed, or they are the same of DECL_TEMPLATE_PARMS. */
605 if (TREE_CODE (function) == TEMPLATE_DECL)
607 gcc_assert (!template_parms
608 || comp_template_parms (template_parms,
609 DECL_TEMPLATE_PARMS (function)));
610 template_parms = DECL_TEMPLATE_PARMS (function);
613 /* OK, is this a definition of a member template? */
614 is_template = (template_parms != NULL_TREE);
616 ix = class_method_index_for_fn (complete_type (ctype), function);
617 if (ix >= 0)
619 VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
620 tree fndecls, fndecl = 0;
621 bool is_conv_op;
622 tree pushed_scope;
623 const char *format = NULL;
625 pushed_scope = push_scope (ctype);
626 for (fndecls = VEC_index (tree, methods, ix);
627 fndecls; fndecls = OVL_NEXT (fndecls))
629 tree p1, p2;
631 fndecl = OVL_CURRENT (fndecls);
632 p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
633 p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
635 /* We cannot simply call decls_match because this doesn't
636 work for static member functions that are pretending to
637 be methods, and because the name may have been changed by
638 asm("new_name"). */
640 /* Get rid of the this parameter on functions that become
641 static. */
642 if (DECL_STATIC_FUNCTION_P (fndecl)
643 && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
644 p1 = TREE_CHAIN (p1);
646 /* A member template definition only matches a member template
647 declaration. */
648 if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
649 continue;
651 if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
652 TREE_TYPE (TREE_TYPE (fndecl)))
653 && compparms (p1, p2)
654 && (!is_template
655 || comp_template_parms (template_parms,
656 DECL_TEMPLATE_PARMS (fndecl)))
657 && (DECL_TEMPLATE_SPECIALIZATION (function)
658 == DECL_TEMPLATE_SPECIALIZATION (fndecl))
659 && (!DECL_TEMPLATE_SPECIALIZATION (function)
660 || (DECL_TI_TEMPLATE (function)
661 == DECL_TI_TEMPLATE (fndecl))))
662 break;
664 if (pushed_scope)
665 pop_scope (pushed_scope);
666 if (fndecls)
667 return OVL_CURRENT (fndecls);
668 error ("prototype for %q#D does not match any in class %qT",
669 function, ctype);
670 is_conv_op = DECL_CONV_FN_P (fndecl);
672 if (is_conv_op)
673 ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
674 fndecls = VEC_index (tree, methods, ix);
675 while (fndecls)
677 fndecl = OVL_CURRENT (fndecls);
678 fndecls = OVL_NEXT (fndecls);
680 if (!fndecls && is_conv_op)
682 if (VEC_length (tree, methods) > (size_t) ++ix)
684 fndecls = VEC_index (tree, methods, ix);
685 if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
687 fndecls = NULL_TREE;
688 is_conv_op = false;
691 else
692 is_conv_op = false;
694 if (format)
695 format = " %#D";
696 else if (fndecls)
697 format = "candidates are: %#D";
698 else
699 format = "candidate is: %#D";
700 cp_error_at (format, fndecl);
703 else if (!COMPLETE_TYPE_P (ctype))
704 cxx_incomplete_type_error (function, ctype);
705 else
706 error ("no %q#D member function declared in class %qT",
707 function, ctype);
709 /* If we did not find the method in the class, add it to avoid
710 spurious errors (unless the CTYPE is not yet defined, in which
711 case we'll only confuse ourselves when the function is declared
712 properly within the class. */
713 if (COMPLETE_TYPE_P (ctype))
714 add_method (ctype, function);
715 return NULL_TREE;
718 /* DECL is a function with vague linkage. Remember it so that at the
719 end of the translation unit we can decide whether or not to emit
720 it. */
722 void
723 note_vague_linkage_fn (tree decl)
725 if (!DECL_DEFERRED_FN (decl))
727 DECL_DEFERRED_FN (decl) = 1;
728 DECL_DEFER_OUTPUT (decl) = 1;
729 VEC_safe_push (tree, gc, deferred_fns, decl);
733 /* Like note_vague_linkage_fn but for variables. */
735 static void
736 note_vague_linkage_var (tree var)
738 if (!pending_statics)
739 VARRAY_TREE_INIT (pending_statics, 32, "pending_statics");
740 VARRAY_PUSH_TREE (pending_statics, var);
743 /* We have just processed the DECL, which is a static data member.
744 Its initializer, if present, is INIT. The ASMSPEC_TREE, if
745 present, is the assembly-language name for the data member.
746 FLAGS is as for cp_finish_decl. */
748 void
749 finish_static_data_member_decl (tree decl, tree init, tree asmspec_tree,
750 int flags)
752 gcc_assert (TREE_PUBLIC (decl));
754 DECL_CONTEXT (decl) = current_class_type;
756 /* We cannot call pushdecl here, because that would fill in the
757 TREE_CHAIN of our decl. Instead, we modify cp_finish_decl to do
758 the right thing, namely, to put this decl out straight away. */
759 /* current_class_type can be NULL_TREE in case of error. */
760 if (!asmspec_tree && current_class_type)
761 DECL_INITIAL (decl) = error_mark_node;
763 if (! processing_template_decl)
764 note_vague_linkage_var (decl);
766 if (LOCAL_CLASS_P (current_class_type))
767 pedwarn ("local class %q#T shall not have static data member %q#D",
768 current_class_type, decl);
770 /* Static consts need not be initialized in the class definition. */
771 if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
773 static int explained = 0;
775 error ("initializer invalid for static member with constructor");
776 if (!explained)
778 error ("(an out of class initialization is required)");
779 explained = 1;
781 init = NULL_TREE;
783 /* Force the compiler to know when an uninitialized static const
784 member is being used. */
785 if (CP_TYPE_CONST_P (TREE_TYPE (decl)) && init == 0)
786 TREE_USED (decl) = 1;
787 DECL_INITIAL (decl) = init;
788 DECL_IN_AGGR_P (decl) = 1;
790 cp_finish_decl (decl, init, asmspec_tree, flags);
793 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
794 of a structure component, returning a _DECL node.
795 QUALS is a list of type qualifiers for this decl (such as for declaring
796 const member functions).
798 This is done during the parsing of the struct declaration.
799 The _DECL nodes are chained together and the lot of them
800 are ultimately passed to `build_struct' to make the RECORD_TYPE node.
802 If class A defines that certain functions in class B are friends, then
803 the way I have set things up, it is B who is interested in permission
804 granted by A. However, it is in A's context that these declarations
805 are parsed. By returning a void_type_node, class A does not attempt
806 to incorporate the declarations of the friends within its structure.
808 DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
809 CHANGES TO CODE IN `start_method'. */
811 tree
812 grokfield (const cp_declarator *declarator,
813 cp_decl_specifier_seq *declspecs,
814 tree init, tree asmspec_tree,
815 tree attrlist)
817 tree value;
818 const char *asmspec = 0;
819 int flags = LOOKUP_ONLYCONVERTING;
821 if (!declspecs->any_specifiers_p
822 && declarator->kind == cdk_id
823 && declarator->u.id.qualifying_scope
824 && TREE_CODE (declarator->u.id.unqualified_name) == IDENTIFIER_NODE)
825 /* Access declaration */
826 return do_class_using_decl (declarator->u.id.qualifying_scope,
827 declarator->u.id.unqualified_name);
829 if (init
830 && TREE_CODE (init) == TREE_LIST
831 && TREE_VALUE (init) == error_mark_node
832 && TREE_CHAIN (init) == NULL_TREE)
833 init = NULL_TREE;
835 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
836 if (! value || error_operand_p (value))
837 /* friend or constructor went bad. */
838 return error_mark_node;
840 if (TREE_CODE (value) == TYPE_DECL && init)
842 error ("typedef %qD is initialized (use __typeof__ instead)", value);
843 init = NULL_TREE;
846 /* Pass friendly classes back. */
847 if (value == void_type_node)
848 return value;
850 /* Pass friend decls back. */
851 if ((TREE_CODE (value) == FUNCTION_DECL
852 || TREE_CODE (value) == TEMPLATE_DECL)
853 && DECL_CONTEXT (value) != current_class_type)
854 return value;
856 if (DECL_NAME (value) != NULL_TREE
857 && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
858 && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
859 error ("member %qD conflicts with virtual function table field name",
860 value);
862 /* Stash away type declarations. */
863 if (TREE_CODE (value) == TYPE_DECL)
865 DECL_NONLOCAL (value) = 1;
866 DECL_CONTEXT (value) = current_class_type;
868 if (processing_template_decl)
869 value = push_template_decl (value);
871 if (attrlist)
873 /* Avoid storing attributes in template parameters:
874 tsubst is not ready to handle them. */
875 tree type = TREE_TYPE (value);
876 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
877 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
878 sorry ("applying attributes to template parameters is not implemented");
879 else
880 cplus_decl_attributes (&value, attrlist, 0);
883 return value;
886 if (DECL_IN_AGGR_P (value))
888 error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
889 return void_type_node;
892 if (asmspec_tree)
893 asmspec = TREE_STRING_POINTER (asmspec_tree);
895 if (init)
897 if (TREE_CODE (value) == FUNCTION_DECL)
899 /* Initializers for functions are rejected early in the parser.
900 If we get here, it must be a pure specifier for a method. */
901 gcc_assert (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE);
902 gcc_assert (error_operand_p (init) || integer_zerop (init));
903 DECL_PURE_VIRTUAL_P (value) = 1;
905 else if (pedantic && TREE_CODE (value) != VAR_DECL)
906 /* Already complained in grokdeclarator. */
907 init = NULL_TREE;
908 else
910 /* We allow initializers to become parameters to base
911 initializers. */
912 if (TREE_CODE (init) == TREE_LIST)
914 if (TREE_CHAIN (init) == NULL_TREE)
915 init = TREE_VALUE (init);
916 else
917 init = digest_init (TREE_TYPE (value), init, (tree *)0);
920 if (!processing_template_decl)
922 if (TREE_CODE (init) == CONSTRUCTOR)
923 init = digest_init (TREE_TYPE (value), init, (tree *)0);
924 else
925 init = integral_constant_value (init);
927 if (init != error_mark_node && ! TREE_CONSTANT (init))
929 /* We can allow references to things that are effectively
930 static, since references are initialized with the
931 address. */
932 if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
933 || (TREE_STATIC (init) == 0
934 && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
936 error ("field initializer is not constant");
937 init = error_mark_node;
944 if (processing_template_decl
945 && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
947 value = push_template_decl (value);
948 if (error_operand_p (value))
949 return error_mark_node;
952 if (attrlist)
953 cplus_decl_attributes (&value, attrlist, 0);
955 switch (TREE_CODE (value))
957 case VAR_DECL:
958 finish_static_data_member_decl (value, init, asmspec_tree,
959 flags);
960 return value;
962 case FIELD_DECL:
963 if (asmspec)
964 error ("%<asm%> specifiers are not permitted on non-static data members");
965 if (DECL_INITIAL (value) == error_mark_node)
966 init = error_mark_node;
967 cp_finish_decl (value, init, NULL_TREE, flags);
968 DECL_INITIAL (value) = init;
969 DECL_IN_AGGR_P (value) = 1;
970 return value;
972 case FUNCTION_DECL:
973 if (asmspec)
974 set_user_assembler_name (value, asmspec);
975 if (!DECL_FRIEND_P (value))
976 grok_special_member_properties (value);
978 cp_finish_decl (value, init, asmspec_tree, flags);
980 /* Pass friends back this way. */
981 if (DECL_FRIEND_P (value))
982 return void_type_node;
984 DECL_IN_AGGR_P (value) = 1;
985 return value;
987 default:
988 gcc_unreachable ();
990 return NULL_TREE;
993 /* Like `grokfield', but for bitfields.
994 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node. */
996 tree
997 grokbitfield (const cp_declarator *declarator,
998 cp_decl_specifier_seq *declspecs, tree width)
1000 tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, NULL);
1002 if (! value) return NULL_TREE; /* friends went bad. */
1004 /* Pass friendly classes back. */
1005 if (TREE_CODE (value) == VOID_TYPE)
1006 return void_type_node;
1008 if (TREE_CODE (value) == TYPE_DECL)
1010 error ("cannot declare %qD to be a bit-field type", value);
1011 return NULL_TREE;
1014 /* Usually, finish_struct_1 catches bitfields with invalid types.
1015 But, in the case of bitfields with function type, we confuse
1016 ourselves into thinking they are member functions, so we must
1017 check here. */
1018 if (TREE_CODE (value) == FUNCTION_DECL)
1020 error ("cannot declare bit-field %qD with function type",
1021 DECL_NAME (value));
1022 return NULL_TREE;
1025 if (DECL_IN_AGGR_P (value))
1027 error ("%qD is already defined in the class %qT", value,
1028 DECL_CONTEXT (value));
1029 return void_type_node;
1032 if (TREE_STATIC (value))
1034 error ("static member %qD cannot be a bit-field", value);
1035 return NULL_TREE;
1037 cp_finish_decl (value, NULL_TREE, NULL_TREE, 0);
1039 if (width != error_mark_node)
1041 constant_expression_warning (width);
1042 DECL_INITIAL (value) = width;
1043 SET_DECL_C_BIT_FIELD (value);
1046 DECL_IN_AGGR_P (value) = 1;
1047 return value;
1051 void
1052 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1054 if (*decl == NULL_TREE || *decl == void_type_node)
1055 return;
1057 if (TREE_CODE (*decl) == TEMPLATE_DECL)
1058 decl = &DECL_TEMPLATE_RESULT (*decl);
1060 decl_attributes (decl, attributes, flags);
1062 if (TREE_CODE (*decl) == TYPE_DECL)
1063 SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1066 /* Walks through the namespace- or function-scope anonymous union
1067 OBJECT, with the indicated TYPE, building appropriate ALIAS_DECLs.
1068 Returns one of the fields for use in the mangled name. */
1070 static tree
1071 build_anon_union_vars (tree type, tree object)
1073 tree main_decl = NULL_TREE;
1074 tree field;
1076 /* Rather than write the code to handle the non-union case,
1077 just give an error. */
1078 if (TREE_CODE (type) != UNION_TYPE)
1079 error ("anonymous struct not inside named type");
1081 for (field = TYPE_FIELDS (type);
1082 field != NULL_TREE;
1083 field = TREE_CHAIN (field))
1085 tree decl;
1086 tree ref;
1088 if (DECL_ARTIFICIAL (field))
1089 continue;
1090 if (TREE_CODE (field) != FIELD_DECL)
1092 cp_pedwarn_at ("%q#D invalid; an anonymous union can only "
1093 "have non-static data members",
1094 field);
1095 continue;
1098 if (TREE_PRIVATE (field))
1099 cp_pedwarn_at ("private member %q#D in anonymous union", field);
1100 else if (TREE_PROTECTED (field))
1101 cp_pedwarn_at ("protected member %q#D in anonymous union", field);
1103 if (processing_template_decl)
1104 ref = build_min_nt (COMPONENT_REF, object,
1105 DECL_NAME (field), NULL_TREE);
1106 else
1107 ref = build_class_member_access_expr (object, field, NULL_TREE,
1108 false);
1110 if (DECL_NAME (field))
1112 decl = build_decl (ALIAS_DECL, DECL_NAME (field), TREE_TYPE (field));
1113 DECL_INITIAL (decl) = ref;
1114 TREE_PUBLIC (decl) = 0;
1115 TREE_STATIC (decl) = 0;
1116 DECL_EXTERNAL (decl) = 1;
1117 decl = pushdecl (decl);
1119 else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1120 decl = build_anon_union_vars (TREE_TYPE (field), ref);
1121 else
1122 decl = 0;
1124 if (main_decl == NULL_TREE)
1125 main_decl = decl;
1128 return main_decl;
1131 /* Finish off the processing of a UNION_TYPE structure. If the union is an
1132 anonymous union, then all members must be laid out together. PUBLIC_P
1133 is nonzero if this union is not declared static. */
1135 void
1136 finish_anon_union (tree anon_union_decl)
1138 tree type;
1139 tree main_decl;
1140 bool public_p;
1142 if (anon_union_decl == error_mark_node)
1143 return;
1145 type = TREE_TYPE (anon_union_decl);
1146 public_p = TREE_PUBLIC (anon_union_decl);
1148 /* The VAR_DECL's context is the same as the TYPE's context. */
1149 DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1151 if (TYPE_FIELDS (type) == NULL_TREE)
1152 return;
1154 if (public_p)
1156 error ("namespace-scope anonymous aggregates must be static");
1157 return;
1160 main_decl = build_anon_union_vars (type, anon_union_decl);
1161 if (main_decl == NULL_TREE)
1163 warning (0, "anonymous union with no members");
1164 return;
1167 if (!processing_template_decl)
1169 /* Use main_decl to set the mangled name. */
1170 DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1171 mangle_decl (anon_union_decl);
1172 DECL_NAME (anon_union_decl) = NULL_TREE;
1175 pushdecl (anon_union_decl);
1176 if (building_stmt_tree ()
1177 && at_function_scope_p ())
1178 add_decl_expr (anon_union_decl);
1179 else if (!processing_template_decl)
1180 rest_of_decl_compilation (anon_union_decl,
1181 toplevel_bindings_p (), at_eof);
1184 /* Auxiliary functions to make type signatures for
1185 `operator new' and `operator delete' correspond to
1186 what compiler will be expecting. */
1188 tree
1189 coerce_new_type (tree type)
1191 int e = 0;
1192 tree args = TYPE_ARG_TYPES (type);
1194 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1196 if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1198 e = 1;
1199 error ("%<operator new%> must return type %qT", ptr_type_node);
1202 if (!args || args == void_list_node
1203 || !same_type_p (TREE_VALUE (args), size_type_node))
1205 e = 2;
1206 if (args && args != void_list_node)
1207 args = TREE_CHAIN (args);
1208 pedwarn ("%<operator new%> takes type %<size_t%> (%qT) "
1209 "as first parameter", size_type_node);
1211 switch (e)
1213 case 2:
1214 args = tree_cons (NULL_TREE, size_type_node, args);
1215 /* Fall through. */
1216 case 1:
1217 type = build_exception_variant
1218 (build_function_type (ptr_type_node, args),
1219 TYPE_RAISES_EXCEPTIONS (type));
1220 /* Fall through. */
1221 default:;
1223 return type;
1226 tree
1227 coerce_delete_type (tree type)
1229 int e = 0;
1230 tree args = TYPE_ARG_TYPES (type);
1232 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1234 if (!same_type_p (TREE_TYPE (type), void_type_node))
1236 e = 1;
1237 error ("%<operator delete%> must return type %qT", void_type_node);
1240 if (!args || args == void_list_node
1241 || !same_type_p (TREE_VALUE (args), ptr_type_node))
1243 e = 2;
1244 if (args && args != void_list_node)
1245 args = TREE_CHAIN (args);
1246 error ("%<operator delete%> takes type %qT as first parameter",
1247 ptr_type_node);
1249 switch (e)
1251 case 2:
1252 args = tree_cons (NULL_TREE, ptr_type_node, args);
1253 /* Fall through. */
1254 case 1:
1255 type = build_exception_variant
1256 (build_function_type (void_type_node, args),
1257 TYPE_RAISES_EXCEPTIONS (type));
1258 /* Fall through. */
1259 default:;
1262 return type;
1265 static void
1266 mark_vtable_entries (tree decl)
1268 tree entries = CONSTRUCTOR_ELTS (DECL_INITIAL (decl));
1270 for (; entries; entries = TREE_CHAIN (entries))
1272 tree fnaddr = TREE_VALUE (entries);
1273 tree fn;
1275 STRIP_NOPS (fnaddr);
1277 if (TREE_CODE (fnaddr) != ADDR_EXPR
1278 && TREE_CODE (fnaddr) != FDESC_EXPR)
1279 /* This entry is an offset: a virtual base class offset, a
1280 virtual call offset, an RTTI offset, etc. */
1281 continue;
1283 fn = TREE_OPERAND (fnaddr, 0);
1284 TREE_ADDRESSABLE (fn) = 1;
1285 /* When we don't have vcall offsets, we output thunks whenever
1286 we output the vtables that contain them. With vcall offsets,
1287 we know all the thunks we'll need when we emit a virtual
1288 function, so we emit the thunks there instead. */
1289 if (DECL_THUNK_P (fn))
1290 use_thunk (fn, /*emit_p=*/0);
1291 mark_used (fn);
1295 /* Set DECL up to have the closest approximation of "initialized common"
1296 linkage available. */
1298 void
1299 comdat_linkage (tree decl)
1301 if (flag_weak)
1302 make_decl_one_only (decl);
1303 else if (TREE_CODE (decl) == FUNCTION_DECL
1304 || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1305 /* We can just emit function and compiler-generated variables
1306 statically; having multiple copies is (for the most part) only
1307 a waste of space.
1309 There are two correctness issues, however: the address of a
1310 template instantiation with external linkage should be the
1311 same, independent of what translation unit asks for the
1312 address, and this will not hold when we emit multiple copies of
1313 the function. However, there's little else we can do.
1315 Also, by default, the typeinfo implementation assumes that
1316 there will be only one copy of the string used as the name for
1317 each type. Therefore, if weak symbols are unavailable, the
1318 run-time library should perform a more conservative check; it
1319 should perform a string comparison, rather than an address
1320 comparison. */
1321 TREE_PUBLIC (decl) = 0;
1322 else
1324 /* Static data member template instantiations, however, cannot
1325 have multiple copies. */
1326 if (DECL_INITIAL (decl) == 0
1327 || DECL_INITIAL (decl) == error_mark_node)
1328 DECL_COMMON (decl) = 1;
1329 else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1331 DECL_COMMON (decl) = 1;
1332 DECL_INITIAL (decl) = error_mark_node;
1334 else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1336 /* We can't do anything useful; leave vars for explicit
1337 instantiation. */
1338 DECL_EXTERNAL (decl) = 1;
1339 DECL_NOT_REALLY_EXTERN (decl) = 0;
1343 if (DECL_LANG_SPECIFIC (decl))
1344 DECL_COMDAT (decl) = 1;
1347 /* For win32 we also want to put explicit instantiations in
1348 linkonce sections, so that they will be merged with implicit
1349 instantiations; otherwise we get duplicate symbol errors.
1350 For Darwin we do not want explicit instantiations to be
1351 linkonce. */
1353 void
1354 maybe_make_one_only (tree decl)
1356 /* We used to say that this was not necessary on targets that support weak
1357 symbols, because the implicit instantiations will defer to the explicit
1358 one. However, that's not actually the case in SVR4; a strong definition
1359 after a weak one is an error. Also, not making explicit
1360 instantiations one_only means that we can end up with two copies of
1361 some template instantiations. */
1362 if (! flag_weak)
1363 return;
1365 /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1366 we can get away with not emitting them if they aren't used. We need
1367 to for variables so that cp_finish_decl will update their linkage,
1368 because their DECL_INITIAL may not have been set properly yet. */
1370 if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1371 || (! DECL_EXPLICIT_INSTANTIATION (decl)
1372 && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1374 make_decl_one_only (decl);
1376 if (TREE_CODE (decl) == VAR_DECL)
1378 DECL_COMDAT (decl) = 1;
1379 /* Mark it needed so we don't forget to emit it. */
1380 mark_decl_referenced (decl);
1385 /* Determine whether or not we want to specifically import or export CTYPE,
1386 using various heuristics. */
1388 static void
1389 import_export_class (tree ctype)
1391 /* -1 for imported, 1 for exported. */
1392 int import_export = 0;
1394 /* It only makes sense to call this function at EOF. The reason is
1395 that this function looks at whether or not the first non-inline
1396 non-abstract virtual member function has been defined in this
1397 translation unit. But, we can't possibly know that until we've
1398 seen the entire translation unit. */
1399 gcc_assert (at_eof);
1401 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1402 return;
1404 /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1405 we will have CLASSTYPE_INTERFACE_ONLY set but not
1406 CLASSTYPE_INTERFACE_KNOWN. In that case, we don't want to use this
1407 heuristic because someone will supply a #pragma implementation
1408 elsewhere, and deducing it here would produce a conflict. */
1409 if (CLASSTYPE_INTERFACE_ONLY (ctype))
1410 return;
1412 if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1413 import_export = -1;
1414 else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1415 import_export = 1;
1416 else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1417 && !flag_implicit_templates)
1418 /* For a template class, without -fimplicit-templates, check the
1419 repository. If the virtual table is assigned to this
1420 translation unit, then export the class; otherwise, import
1421 it. */
1422 import_export = repo_export_class_p (ctype) ? 1 : -1;
1423 else if (TYPE_POLYMORPHIC_P (ctype))
1425 /* The ABI specifies that the virtual table and associated
1426 information are emitted with the key method, if any. */
1427 tree method = CLASSTYPE_KEY_METHOD (ctype);
1428 /* If weak symbol support is not available, then we must be
1429 careful not to emit the vtable when the key function is
1430 inline. An inline function can be defined in multiple
1431 translation units. If we were to emit the vtable in each
1432 translation unit containing a definition, we would get
1433 multiple definition errors at link-time. */
1434 if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1435 import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1438 /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1439 a definition anywhere else. */
1440 if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1441 import_export = 0;
1443 /* Allow backends the chance to overrule the decision. */
1444 if (targetm.cxx.import_export_class)
1445 import_export = targetm.cxx.import_export_class (ctype, import_export);
1447 if (import_export)
1449 SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1450 CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1454 /* Return true if VAR has already been provided to the back end; in that
1455 case VAR should not be modified further by the front end. */
1456 static bool
1457 var_finalized_p (tree var)
1459 return cgraph_varpool_node (var)->finalized;
1462 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1463 must be emitted in this translation unit. Mark it as such. */
1465 void
1466 mark_needed (tree decl)
1468 /* It's possible that we no longer need to set
1469 TREE_SYMBOL_REFERENCED here directly, but doing so is
1470 harmless. */
1471 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1472 mark_decl_referenced (decl);
1475 /* DECL is either a FUNCTION_DECL or a VAR_DECL. This function
1476 returns true if a definition of this entity should be provided in
1477 this object file. Callers use this function to determine whether
1478 or not to let the back end know that a definition of DECL is
1479 available in this translation unit. */
1481 bool
1482 decl_needed_p (tree decl)
1484 gcc_assert (TREE_CODE (decl) == VAR_DECL
1485 || TREE_CODE (decl) == FUNCTION_DECL);
1486 /* This function should only be called at the end of the translation
1487 unit. We cannot be sure of whether or not something will be
1488 COMDAT until that point. */
1489 gcc_assert (at_eof);
1491 /* All entities with external linkage that are not COMDAT should be
1492 emitted; they may be referred to from other object files. */
1493 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1494 return true;
1495 /* If this entity was used, let the back-end see it; it will decide
1496 whether or not to emit it into the object file. */
1497 if (TREE_USED (decl)
1498 || (DECL_ASSEMBLER_NAME_SET_P (decl)
1499 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1500 return true;
1501 /* Otherwise, DECL does not need to be emitted -- yet. A subsequent
1502 reference to DECL might cause it to be emitted later. */
1503 return false;
1506 /* If necessary, write out the vtables for the dynamic class CTYPE.
1507 Returns true if any vtables were emitted. */
1509 static bool
1510 maybe_emit_vtables (tree ctype)
1512 tree vtbl;
1513 tree primary_vtbl;
1514 int needed = 0;
1516 /* If the vtables for this class have already been emitted there is
1517 nothing more to do. */
1518 primary_vtbl = CLASSTYPE_VTABLES (ctype);
1519 if (var_finalized_p (primary_vtbl))
1520 return false;
1521 /* Ignore dummy vtables made by get_vtable_decl. */
1522 if (TREE_TYPE (primary_vtbl) == void_type_node)
1523 return false;
1525 /* On some targets, we cannot determine the key method until the end
1526 of the translation unit -- which is when this function is
1527 called. */
1528 if (!targetm.cxx.key_method_may_be_inline ())
1529 determine_key_method (ctype);
1531 /* See if any of the vtables are needed. */
1532 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1534 import_export_decl (vtbl);
1535 if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1536 needed = 1;
1538 if (!needed)
1540 /* If the references to this class' vtables are optimized away,
1541 still emit the appropriate debugging information. See
1542 dfs_debug_mark. */
1543 if (DECL_COMDAT (primary_vtbl)
1544 && CLASSTYPE_DEBUG_REQUESTED (ctype))
1545 note_debug_info_needed (ctype);
1546 return false;
1549 /* The ABI requires that we emit all of the vtables if we emit any
1550 of them. */
1551 for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1553 /* Mark entities references from the virtual table as used. */
1554 mark_vtable_entries (vtbl);
1556 if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1558 tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl));
1560 /* It had better be all done at compile-time. */
1561 gcc_assert (!expr);
1564 /* Write it out. */
1565 DECL_EXTERNAL (vtbl) = 0;
1566 rest_of_decl_compilation (vtbl, 1, 1);
1568 /* Because we're only doing syntax-checking, we'll never end up
1569 actually marking the variable as written. */
1570 if (flag_syntax_only)
1571 TREE_ASM_WRITTEN (vtbl) = 1;
1574 /* Since we're writing out the vtable here, also write the debug
1575 info. */
1576 note_debug_info_needed (ctype);
1578 return true;
1581 /* Like c_determine_visibility, but with additional C++-specific
1582 behavior. */
1584 void
1585 determine_visibility (tree decl)
1587 tree class_type;
1589 /* Cloned constructors and destructors get the same visibility as
1590 the underlying function. That should be set up in
1591 maybe_clone_body. */
1592 gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
1594 /* Give the common code a chance to make a determination. */
1595 if (c_determine_visibility (decl))
1596 return;
1598 /* If DECL is a member of a class, visibility specifiers on the
1599 class can influence the visibility of the DECL. */
1600 if (DECL_CLASS_SCOPE_P (decl))
1601 class_type = DECL_CONTEXT (decl);
1602 else if (TREE_CODE (decl) == VAR_DECL
1603 && DECL_TINFO_P (decl)
1604 && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl))))
1605 class_type = TREE_TYPE (DECL_NAME (decl));
1606 else
1608 /* Virtual tables have DECL_CONTEXT set to their associated class,
1609 so they are automatically handled above. */
1610 gcc_assert (TREE_CODE (decl) != VAR_DECL
1611 || !DECL_VTABLE_OR_VTT_P (decl));
1612 /* Entities not associated with any class just get the
1613 visibility specified by their attributes. */
1614 return;
1617 /* By default, static data members and function members receive
1618 the visibility of their containing class. */
1619 if (class_type)
1621 if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
1622 && lookup_attribute ("dllexport", TYPE_ATTRIBUTES (class_type)))
1624 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
1625 DECL_VISIBILITY_SPECIFIED (decl) = 1;
1627 else if (TREE_CODE (decl) == FUNCTION_DECL
1628 && DECL_DECLARED_INLINE_P (decl)
1629 && visibility_options.inlines_hidden)
1631 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
1632 DECL_VISIBILITY_SPECIFIED (decl) = 1;
1634 else if (CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
1636 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
1637 DECL_VISIBILITY_SPECIFIED (decl) = 1;
1639 else if (!DECL_VISIBILITY_SPECIFIED (decl))
1641 DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
1642 DECL_VISIBILITY_SPECIFIED (decl) = 0;
1647 /* DECL is a FUNCTION_DECL or VAR_DECL. If the object file linkage
1648 for DECL has not already been determined, do so now by setting
1649 DECL_EXTERNAL, DECL_COMDAT and other related flags. Until this
1650 function is called entities with vague linkage whose definitions
1651 are available must have TREE_PUBLIC set.
1653 If this function decides to place DECL in COMDAT, it will set
1654 appropriate flags -- but will not clear DECL_EXTERNAL. It is up to
1655 the caller to decide whether or not to clear DECL_EXTERNAL. Some
1656 callers defer that decision until it is clear that DECL is actually
1657 required. */
1659 void
1660 import_export_decl (tree decl)
1662 int emit_p;
1663 bool comdat_p;
1664 bool import_p;
1665 tree class_type = NULL_TREE;
1667 if (DECL_INTERFACE_KNOWN (decl))
1668 return;
1670 /* We cannot determine what linkage to give to an entity with vague
1671 linkage until the end of the file. For example, a virtual table
1672 for a class will be defined if and only if the key method is
1673 defined in this translation unit. As a further example, consider
1674 that when compiling a translation unit that uses PCH file with
1675 "-frepo" it would be incorrect to make decisions about what
1676 entities to emit when building the PCH; those decisions must be
1677 delayed until the repository information has been processed. */
1678 gcc_assert (at_eof);
1679 /* Object file linkage for explicit instantiations is handled in
1680 mark_decl_instantiated. For static variables in functions with
1681 vague linkage, maybe_commonize_var is used.
1683 Therefore, the only declarations that should be provided to this
1684 function are those with external linkage that are:
1686 * implicit instantiations of function templates
1688 * inline function
1690 * implicit instantiations of static data members of class
1691 templates
1693 * virtual tables
1695 * typeinfo objects
1697 Furthermore, all entities that reach this point must have a
1698 definition available in this translation unit.
1700 The following assertions check these conditions. */
1701 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1702 || TREE_CODE (decl) == VAR_DECL);
1703 /* Any code that creates entities with TREE_PUBLIC cleared should
1704 also set DECL_INTERFACE_KNOWN. */
1705 gcc_assert (TREE_PUBLIC (decl));
1706 if (TREE_CODE (decl) == FUNCTION_DECL)
1707 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
1708 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
1709 || DECL_DECLARED_INLINE_P (decl));
1710 else
1711 gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
1712 || DECL_VTABLE_OR_VTT_P (decl)
1713 || DECL_TINFO_P (decl));
1714 /* Check that a definition of DECL is available in this translation
1715 unit. */
1716 gcc_assert (!DECL_REALLY_EXTERN (decl));
1718 /* Assume that DECL will not have COMDAT linkage. */
1719 comdat_p = false;
1720 /* Assume that DECL will not be imported into this translation
1721 unit. */
1722 import_p = false;
1724 /* See if the repository tells us whether or not to emit DECL in
1725 this translation unit. */
1726 emit_p = repo_emit_p (decl);
1727 if (emit_p == 0)
1728 import_p = true;
1729 else if (emit_p == 1)
1731 /* The repository indicates that this entity should be defined
1732 here. Make sure the back end honors that request. */
1733 if (TREE_CODE (decl) == VAR_DECL)
1734 mark_needed (decl);
1735 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
1736 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
1738 tree clone;
1739 FOR_EACH_CLONE (clone, decl)
1740 mark_needed (clone);
1742 else
1743 mark_needed (decl);
1744 /* Output the definition as an ordinary strong definition. */
1745 DECL_EXTERNAL (decl) = 0;
1746 DECL_INTERFACE_KNOWN (decl) = 1;
1747 return;
1750 if (import_p)
1751 /* We have already decided what to do with this DECL; there is no
1752 need to check anything further. */
1754 else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
1756 class_type = DECL_CONTEXT (decl);
1757 import_export_class (class_type);
1758 if (TYPE_FOR_JAVA (class_type))
1759 import_p = true;
1760 else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
1761 && CLASSTYPE_INTERFACE_ONLY (class_type))
1762 import_p = true;
1763 else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
1764 && !CLASSTYPE_USE_TEMPLATE (class_type)
1765 && CLASSTYPE_KEY_METHOD (class_type)
1766 && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
1767 /* The ABI requires that all virtual tables be emitted with
1768 COMDAT linkage. However, on systems where COMDAT symbols
1769 don't show up in the table of contents for a static
1770 archive, or on systems without weak symbols (where we
1771 approximate COMDAT linkage by using internal linkage), the
1772 linker will report errors about undefined symbols because
1773 it will not see the virtual table definition. Therefore,
1774 in the case that we know that the virtual table will be
1775 emitted in only one translation unit, we make the virtual
1776 table an ordinary definition with external linkage. */
1777 DECL_EXTERNAL (decl) = 0;
1778 else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
1780 /* CLASS_TYPE is being exported from this translation unit,
1781 so DECL should be defined here. */
1782 if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
1783 /* If a class is declared in a header with the "extern
1784 template" extension, then it will not be instantiated,
1785 even in translation units that would normally require
1786 it. Often such classes are explicitly instantiated in
1787 one translation unit. Therefore, the explicit
1788 instantiation must be made visible to other translation
1789 units. */
1790 DECL_EXTERNAL (decl) = 0;
1791 else
1793 /* The generic C++ ABI says that class data is always
1794 COMDAT, even if there is a key function. Some
1795 variants (e.g., the ARM EABI) says that class data
1796 only has COMDAT linkage if the the class data might
1797 be emitted in more than one translation unit. */
1798 if (!CLASSTYPE_KEY_METHOD (class_type)
1799 || targetm.cxx.class_data_always_comdat ())
1801 /* The ABI requires COMDAT linkage. Normally, we
1802 only emit COMDAT things when they are needed;
1803 make sure that we realize that this entity is
1804 indeed needed. */
1805 comdat_p = true;
1806 mark_needed (decl);
1810 else if (!flag_implicit_templates
1811 && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
1812 import_p = true;
1813 else
1814 comdat_p = true;
1816 else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
1818 tree type = TREE_TYPE (DECL_NAME (decl));
1819 if (CLASS_TYPE_P (type))
1821 class_type = type;
1822 import_export_class (type);
1823 if (CLASSTYPE_INTERFACE_KNOWN (type)
1824 && TYPE_POLYMORPHIC_P (type)
1825 && CLASSTYPE_INTERFACE_ONLY (type)
1826 /* If -fno-rtti was specified, then we cannot be sure
1827 that RTTI information will be emitted with the
1828 virtual table of the class, so we must emit it
1829 wherever it is used. */
1830 && flag_rtti)
1831 import_p = true;
1832 else
1834 if (CLASSTYPE_INTERFACE_KNOWN (type)
1835 && !CLASSTYPE_INTERFACE_ONLY (type))
1837 comdat_p = targetm.cxx.class_data_always_comdat ();
1838 mark_needed (decl);
1839 if (!flag_weak)
1841 comdat_p = false;
1842 DECL_EXTERNAL (decl) = 0;
1845 else
1846 comdat_p = true;
1849 else
1850 comdat_p = true;
1852 else if (DECL_TEMPLATE_INSTANTIATION (decl)
1853 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
1855 /* DECL is an implicit instantiation of a function or static
1856 data member. */
1857 if (flag_implicit_templates
1858 || (flag_implicit_inline_templates
1859 && TREE_CODE (decl) == FUNCTION_DECL
1860 && DECL_DECLARED_INLINE_P (decl)))
1861 comdat_p = true;
1862 else
1863 /* If we are not implicitly generating templates, then mark
1864 this entity as undefined in this translation unit. */
1865 import_p = true;
1867 else if (DECL_FUNCTION_MEMBER_P (decl))
1869 if (!DECL_DECLARED_INLINE_P (decl))
1871 tree ctype = DECL_CONTEXT (decl);
1872 import_export_class (ctype);
1873 if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1875 DECL_NOT_REALLY_EXTERN (decl)
1876 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
1877 || (DECL_DECLARED_INLINE_P (decl)
1878 && ! flag_implement_inlines
1879 && !DECL_VINDEX (decl)));
1881 if (!DECL_NOT_REALLY_EXTERN (decl))
1882 DECL_EXTERNAL (decl) = 1;
1884 /* Always make artificials weak. */
1885 if (DECL_ARTIFICIAL (decl) && flag_weak)
1886 comdat_p = true;
1887 else
1888 maybe_make_one_only (decl);
1891 else
1892 comdat_p = true;
1894 else
1895 comdat_p = true;
1897 if (import_p)
1899 /* If we are importing DECL into this translation unit, mark is
1900 an undefined here. */
1901 DECL_EXTERNAL (decl) = 1;
1902 DECL_NOT_REALLY_EXTERN (decl) = 0;
1904 else if (comdat_p)
1906 /* If we decided to put DECL in COMDAT, mark it accordingly at
1907 this point. */
1908 comdat_linkage (decl);
1911 /* Give the target a chance to override the visibility associated
1912 with DECL. */
1913 if (TREE_CODE (decl) == VAR_DECL
1914 && (DECL_TINFO_P (decl)
1915 || (DECL_VTABLE_OR_VTT_P (decl)
1916 /* Construction virtual tables are not exported because
1917 they cannot be referred to from other object files;
1918 their name is not standardized by the ABI. */
1919 && !DECL_CONSTRUCTION_VTABLE_P (decl)))
1920 && TREE_PUBLIC (decl)
1921 && !DECL_REALLY_EXTERN (decl)
1922 && DECL_VISIBILITY_SPECIFIED (decl)
1923 && (!class_type || !CLASSTYPE_VISIBILITY_SPECIFIED (class_type)))
1924 targetm.cxx.determine_class_data_visibility (decl);
1926 DECL_INTERFACE_KNOWN (decl) = 1;
1929 /* Return an expression that performs the destruction of DECL, which
1930 must be a VAR_DECL whose type has a non-trivial destructor, or is
1931 an array whose (innermost) elements have a non-trivial destructor. */
1933 tree
1934 build_cleanup (tree decl)
1936 tree temp;
1937 tree type = TREE_TYPE (decl);
1939 /* This function should only be called for declarations that really
1940 require cleanups. */
1941 gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
1943 /* Treat all objects with destructors as used; the destructor may do
1944 something substantive. */
1945 mark_used (decl);
1947 if (TREE_CODE (type) == ARRAY_TYPE)
1948 temp = decl;
1949 else
1951 cxx_mark_addressable (decl);
1952 temp = build1 (ADDR_EXPR, build_pointer_type (type), decl);
1954 temp = build_delete (TREE_TYPE (temp), temp,
1955 sfk_complete_destructor,
1956 LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
1957 return temp;
1960 /* Returns the initialization guard variable for the variable DECL,
1961 which has static storage duration. */
1963 tree
1964 get_guard (tree decl)
1966 tree sname;
1967 tree guard;
1969 sname = mangle_guard_variable (decl);
1970 guard = IDENTIFIER_GLOBAL_VALUE (sname);
1971 if (! guard)
1973 tree guard_type;
1975 /* We use a type that is big enough to contain a mutex as well
1976 as an integer counter. */
1977 guard_type = targetm.cxx.guard_type ();
1978 guard = build_decl (VAR_DECL, sname, guard_type);
1980 /* The guard should have the same linkage as what it guards. */
1981 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
1982 TREE_STATIC (guard) = TREE_STATIC (decl);
1983 DECL_COMMON (guard) = DECL_COMMON (decl);
1984 DECL_ONE_ONLY (guard) = DECL_ONE_ONLY (decl);
1985 if (TREE_PUBLIC (decl))
1986 DECL_WEAK (guard) = DECL_WEAK (decl);
1988 DECL_ARTIFICIAL (guard) = 1;
1989 DECL_IGNORED_P (guard) = 1;
1990 TREE_USED (guard) = 1;
1991 pushdecl_top_level_and_finish (guard, NULL_TREE);
1993 return guard;
1996 /* Return those bits of the GUARD variable that should be set when the
1997 guarded entity is actually initialized. */
1999 static tree
2000 get_guard_bits (tree guard)
2002 if (!targetm.cxx.guard_mask_bit ())
2004 /* We only set the first byte of the guard, in order to leave room
2005 for a mutex in the high-order bits. */
2006 guard = build1 (ADDR_EXPR,
2007 build_pointer_type (TREE_TYPE (guard)),
2008 guard);
2009 guard = build1 (NOP_EXPR,
2010 build_pointer_type (char_type_node),
2011 guard);
2012 guard = build1 (INDIRECT_REF, char_type_node, guard);
2015 return guard;
2018 /* Return an expression which determines whether or not the GUARD
2019 variable has already been initialized. */
2021 tree
2022 get_guard_cond (tree guard)
2024 tree guard_value;
2026 /* Check to see if the GUARD is zero. */
2027 guard = get_guard_bits (guard);
2029 /* Mask off all but the low bit. */
2030 if (targetm.cxx.guard_mask_bit ())
2032 guard_value = integer_one_node;
2033 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2034 guard_value = convert (TREE_TYPE (guard), guard_value);
2035 guard = cp_build_binary_op (BIT_AND_EXPR, guard, guard_value);
2038 guard_value = integer_zero_node;
2039 if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2040 guard_value = convert (TREE_TYPE (guard), guard_value);
2041 return cp_build_binary_op (EQ_EXPR, guard, guard_value);
2044 /* Return an expression which sets the GUARD variable, indicating that
2045 the variable being guarded has been initialized. */
2047 tree
2048 set_guard (tree guard)
2050 tree guard_init;
2052 /* Set the GUARD to one. */
2053 guard = get_guard_bits (guard);
2054 guard_init = integer_one_node;
2055 if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2056 guard_init = convert (TREE_TYPE (guard), guard_init);
2057 return build_modify_expr (guard, NOP_EXPR, guard_init);
2060 /* Start the process of running a particular set of global constructors
2061 or destructors. Subroutine of do_[cd]tors. */
2063 static tree
2064 start_objects (int method_type, int initp)
2066 tree body;
2067 tree fndecl;
2068 char type[10];
2070 /* Make ctor or dtor function. METHOD_TYPE may be 'I' or 'D'. */
2072 if (initp != DEFAULT_INIT_PRIORITY)
2074 char joiner;
2076 #ifdef JOINER
2077 joiner = JOINER;
2078 #else
2079 joiner = '_';
2080 #endif
2082 sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2084 else
2085 sprintf (type, "%c", method_type);
2087 fndecl = build_lang_decl (FUNCTION_DECL,
2088 get_file_function_name_long (type),
2089 build_function_type (void_type_node,
2090 void_list_node));
2091 start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2093 /* It can be a static function as long as collect2 does not have
2094 to scan the object file to find its ctor/dtor routine. */
2095 TREE_PUBLIC (current_function_decl) = ! targetm.have_ctors_dtors;
2097 /* Mark this declaration as used to avoid spurious warnings. */
2098 TREE_USED (current_function_decl) = 1;
2100 /* Mark this function as a global constructor or destructor. */
2101 if (method_type == 'I')
2102 DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2103 else
2104 DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2105 DECL_LANG_SPECIFIC (current_function_decl)->decl_flags.u2sel = 1;
2107 body = begin_compound_stmt (BCS_FN_BODY);
2109 /* We cannot allow these functions to be elided, even if they do not
2110 have external linkage. And, there's no point in deferring
2111 compilation of thes functions; they're all going to have to be
2112 out anyhow. */
2113 DECL_INLINE (current_function_decl) = 0;
2114 DECL_UNINLINABLE (current_function_decl) = 1;
2116 return body;
2119 /* Finish the process of running a particular set of global constructors
2120 or destructors. Subroutine of do_[cd]tors. */
2122 static void
2123 finish_objects (int method_type, int initp, tree body)
2125 tree fn;
2127 /* Finish up. */
2128 finish_compound_stmt (body);
2129 fn = finish_function (0);
2130 expand_or_defer_fn (fn);
2132 /* When only doing semantic analysis, and no RTL generation, we
2133 can't call functions that directly emit assembly code; there is
2134 no assembly file in which to put the code. */
2135 if (flag_syntax_only)
2136 return;
2138 if (targetm.have_ctors_dtors)
2140 rtx fnsym = XEXP (DECL_RTL (fn), 0);
2141 cgraph_mark_needed_node (cgraph_node (fn));
2142 if (method_type == 'I')
2143 (* targetm.asm_out.constructor) (fnsym, initp);
2144 else
2145 (* targetm.asm_out.destructor) (fnsym, initp);
2149 /* The names of the parameters to the function created to handle
2150 initializations and destructions for objects with static storage
2151 duration. */
2152 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2153 #define PRIORITY_IDENTIFIER "__priority"
2155 /* The name of the function we create to handle initializations and
2156 destructions for objects with static storage duration. */
2157 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2159 /* The declaration for the __INITIALIZE_P argument. */
2160 static GTY(()) tree initialize_p_decl;
2162 /* The declaration for the __PRIORITY argument. */
2163 static GTY(()) tree priority_decl;
2165 /* The declaration for the static storage duration function. */
2166 static GTY(()) tree ssdf_decl;
2168 /* All the static storage duration functions created in this
2169 translation unit. */
2170 static GTY(()) varray_type ssdf_decls;
2172 /* A map from priority levels to information about that priority
2173 level. There may be many such levels, so efficient lookup is
2174 important. */
2175 static splay_tree priority_info_map;
2177 /* Begins the generation of the function that will handle all
2178 initialization and destruction of objects with static storage
2179 duration. The function generated takes two parameters of type
2180 `int': __INITIALIZE_P and __PRIORITY. If __INITIALIZE_P is
2181 nonzero, it performs initializations. Otherwise, it performs
2182 destructions. It only performs those initializations or
2183 destructions with the indicated __PRIORITY. The generated function
2184 returns no value.
2186 It is assumed that this function will only be called once per
2187 translation unit. */
2189 static tree
2190 start_static_storage_duration_function (unsigned count)
2192 tree parm_types;
2193 tree type;
2194 tree body;
2195 char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2197 /* Create the identifier for this function. It will be of the form
2198 SSDF_IDENTIFIER_<number>. */
2199 sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2201 /* Create the parameters. */
2202 parm_types = void_list_node;
2203 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2204 parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2205 type = build_function_type (void_type_node, parm_types);
2207 /* Create the FUNCTION_DECL itself. */
2208 ssdf_decl = build_lang_decl (FUNCTION_DECL,
2209 get_identifier (id),
2210 type);
2211 TREE_PUBLIC (ssdf_decl) = 0;
2212 DECL_ARTIFICIAL (ssdf_decl) = 1;
2214 /* Put this function in the list of functions to be called from the
2215 static constructors and destructors. */
2216 if (!ssdf_decls)
2218 VARRAY_TREE_INIT (ssdf_decls, 32, "ssdf_decls");
2220 /* Take this opportunity to initialize the map from priority
2221 numbers to information about that priority level. */
2222 priority_info_map = splay_tree_new (splay_tree_compare_ints,
2223 /*delete_key_fn=*/0,
2224 /*delete_value_fn=*/
2225 (splay_tree_delete_value_fn) &free);
2227 /* We always need to generate functions for the
2228 DEFAULT_INIT_PRIORITY so enter it now. That way when we walk
2229 priorities later, we'll be sure to find the
2230 DEFAULT_INIT_PRIORITY. */
2231 get_priority_info (DEFAULT_INIT_PRIORITY);
2234 VARRAY_PUSH_TREE (ssdf_decls, ssdf_decl);
2236 /* Create the argument list. */
2237 initialize_p_decl = cp_build_parm_decl
2238 (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2239 DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2240 TREE_USED (initialize_p_decl) = 1;
2241 priority_decl = cp_build_parm_decl
2242 (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2243 DECL_CONTEXT (priority_decl) = ssdf_decl;
2244 TREE_USED (priority_decl) = 1;
2246 TREE_CHAIN (initialize_p_decl) = priority_decl;
2247 DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2249 /* Put the function in the global scope. */
2250 pushdecl (ssdf_decl);
2252 /* Start the function itself. This is equivalent to declaring the
2253 function as:
2255 static void __ssdf (int __initialize_p, init __priority_p);
2257 It is static because we only need to call this function from the
2258 various constructor and destructor functions for this module. */
2259 start_preparsed_function (ssdf_decl,
2260 /*attrs=*/NULL_TREE,
2261 SF_PRE_PARSED);
2263 /* Set up the scope of the outermost block in the function. */
2264 body = begin_compound_stmt (BCS_FN_BODY);
2266 /* This function must not be deferred because we are depending on
2267 its compilation to tell us what is TREE_SYMBOL_REFERENCED. */
2268 DECL_INLINE (ssdf_decl) = 0;
2269 DECL_UNINLINABLE (ssdf_decl) = 1;
2271 return body;
2274 /* Finish the generation of the function which performs initialization
2275 and destruction of objects with static storage duration. After
2276 this point, no more such objects can be created. */
2278 static void
2279 finish_static_storage_duration_function (tree body)
2281 /* Close out the function. */
2282 finish_compound_stmt (body);
2283 expand_or_defer_fn (finish_function (0));
2286 /* Return the information about the indicated PRIORITY level. If no
2287 code to handle this level has yet been generated, generate the
2288 appropriate prologue. */
2290 static priority_info
2291 get_priority_info (int priority)
2293 priority_info pi;
2294 splay_tree_node n;
2296 n = splay_tree_lookup (priority_info_map,
2297 (splay_tree_key) priority);
2298 if (!n)
2300 /* Create a new priority information structure, and insert it
2301 into the map. */
2302 pi = xmalloc (sizeof (struct priority_info_s));
2303 pi->initializations_p = 0;
2304 pi->destructions_p = 0;
2305 splay_tree_insert (priority_info_map,
2306 (splay_tree_key) priority,
2307 (splay_tree_value) pi);
2309 else
2310 pi = (priority_info) n->value;
2312 return pi;
2315 /* Set up to handle the initialization or destruction of DECL. If
2316 INITP is nonzero, we are initializing the variable. Otherwise, we
2317 are destroying it. */
2319 static tree
2320 start_static_initialization_or_destruction (tree decl, int initp)
2322 tree guard_if_stmt = NULL_TREE;
2323 int priority;
2324 tree cond;
2325 tree guard;
2326 tree init_cond;
2327 priority_info pi;
2329 /* Figure out the priority for this declaration. */
2330 priority = DECL_INIT_PRIORITY (decl);
2331 if (!priority)
2332 priority = DEFAULT_INIT_PRIORITY;
2334 /* Remember that we had an initialization or finalization at this
2335 priority. */
2336 pi = get_priority_info (priority);
2337 if (initp)
2338 pi->initializations_p = 1;
2339 else
2340 pi->destructions_p = 1;
2342 /* Trick the compiler into thinking we are at the file and line
2343 where DECL was declared so that error-messages make sense, and so
2344 that the debugger will show somewhat sensible file and line
2345 information. */
2346 input_location = DECL_SOURCE_LOCATION (decl);
2348 /* Because of:
2350 [class.access.spec]
2352 Access control for implicit calls to the constructors,
2353 the conversion functions, or the destructor called to
2354 create and destroy a static data member is performed as
2355 if these calls appeared in the scope of the member's
2356 class.
2358 we pretend we are in a static member function of the class of
2359 which the DECL is a member. */
2360 if (member_p (decl))
2362 DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
2363 DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
2366 /* Conditionalize this initialization on being in the right priority
2367 and being initializing/finalizing appropriately. */
2368 guard_if_stmt = begin_if_stmt ();
2369 cond = cp_build_binary_op (EQ_EXPR,
2370 priority_decl,
2371 build_int_cst (NULL_TREE, priority));
2372 init_cond = initp ? integer_one_node : integer_zero_node;
2373 init_cond = cp_build_binary_op (EQ_EXPR,
2374 initialize_p_decl,
2375 init_cond);
2376 cond = cp_build_binary_op (TRUTH_ANDIF_EXPR, cond, init_cond);
2378 /* Assume we don't need a guard. */
2379 guard = NULL_TREE;
2380 /* We need a guard if this is an object with external linkage that
2381 might be initialized in more than one place. (For example, a
2382 static data member of a template, when the data member requires
2383 construction.) */
2384 if (TREE_PUBLIC (decl) && (DECL_COMMON (decl)
2385 || DECL_ONE_ONLY (decl)
2386 || DECL_WEAK (decl)))
2388 tree guard_cond;
2390 guard = get_guard (decl);
2392 /* When using __cxa_atexit, we just check the GUARD as we would
2393 for a local static. */
2394 if (flag_use_cxa_atexit)
2396 /* When using __cxa_atexit, we never try to destroy
2397 anything from a static destructor. */
2398 gcc_assert (initp);
2399 guard_cond = get_guard_cond (guard);
2401 /* If we don't have __cxa_atexit, then we will be running
2402 destructors from .fini sections, or their equivalents. So,
2403 we need to know how many times we've tried to initialize this
2404 object. We do initializations only if the GUARD is zero,
2405 i.e., if we are the first to initialize the variable. We do
2406 destructions only if the GUARD is one, i.e., if we are the
2407 last to destroy the variable. */
2408 else if (initp)
2409 guard_cond
2410 = cp_build_binary_op (EQ_EXPR,
2411 build_unary_op (PREINCREMENT_EXPR,
2412 guard,
2413 /*noconvert=*/1),
2414 integer_one_node);
2415 else
2416 guard_cond
2417 = cp_build_binary_op (EQ_EXPR,
2418 build_unary_op (PREDECREMENT_EXPR,
2419 guard,
2420 /*noconvert=*/1),
2421 integer_zero_node);
2423 cond = cp_build_binary_op (TRUTH_ANDIF_EXPR, cond, guard_cond);
2426 finish_if_stmt_cond (cond, guard_if_stmt);
2428 /* If we're using __cxa_atexit, we have not already set the GUARD,
2429 so we must do so now. */
2430 if (guard && initp && flag_use_cxa_atexit)
2431 finish_expr_stmt (set_guard (guard));
2433 return guard_if_stmt;
2436 /* We've just finished generating code to do an initialization or
2437 finalization. GUARD_IF_STMT is the if-statement we used to guard
2438 the initialization. */
2440 static void
2441 finish_static_initialization_or_destruction (tree guard_if_stmt)
2443 finish_then_clause (guard_if_stmt);
2444 finish_if_stmt (guard_if_stmt);
2446 /* Now that we're done with DECL we don't need to pretend to be a
2447 member of its class any longer. */
2448 DECL_CONTEXT (current_function_decl) = NULL_TREE;
2449 DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
2452 /* Generate code to do the initialization of DECL, a VAR_DECL with
2453 static storage duration. The initialization is INIT. */
2455 static void
2456 do_static_initialization (tree decl, tree init)
2458 tree guard_if_stmt;
2460 /* Set up for the initialization. */
2461 guard_if_stmt
2462 = start_static_initialization_or_destruction (decl,
2463 /*initp=*/1);
2465 /* Perform the initialization. */
2466 if (init)
2467 finish_expr_stmt (init);
2469 /* If we're using __cxa_atexit, register a function that calls the
2470 destructor for the object. */
2471 if (flag_use_cxa_atexit)
2472 finish_expr_stmt (register_dtor_fn (decl));
2474 /* Finish up. */
2475 finish_static_initialization_or_destruction (guard_if_stmt);
2478 /* Generate code to do the static destruction of DECL. If DECL may be
2479 initialized more than once in different object files, GUARD is the
2480 guard variable to check. PRIORITY is the priority for the
2481 destruction. */
2483 static void
2484 do_static_destruction (tree decl)
2486 tree guard_if_stmt;
2488 /* If we're using __cxa_atexit, then destructors are registered
2489 immediately after objects are initialized. */
2490 gcc_assert (!flag_use_cxa_atexit);
2492 /* If we don't need a destructor, there's nothing to do. */
2493 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2494 return;
2496 /* Actually do the destruction. */
2497 guard_if_stmt = start_static_initialization_or_destruction (decl,
2498 /*initp=*/0);
2499 finish_expr_stmt (build_cleanup (decl));
2500 finish_static_initialization_or_destruction (guard_if_stmt);
2503 /* VARS is a list of variables with static storage duration which may
2504 need initialization and/or finalization. Remove those variables
2505 that don't really need to be initialized or finalized, and return
2506 the resulting list. The order in which the variables appear in
2507 VARS is in reverse order of the order in which they should actually
2508 be initialized. The list we return is in the unreversed order;
2509 i.e., the first variable should be initialized first. */
2511 static tree
2512 prune_vars_needing_no_initialization (tree *vars)
2514 tree *var = vars;
2515 tree result = NULL_TREE;
2517 while (*var)
2519 tree t = *var;
2520 tree decl = TREE_VALUE (t);
2521 tree init = TREE_PURPOSE (t);
2523 /* Deal gracefully with error. */
2524 if (decl == error_mark_node)
2526 var = &TREE_CHAIN (t);
2527 continue;
2530 /* The only things that can be initialized are variables. */
2531 gcc_assert (TREE_CODE (decl) == VAR_DECL);
2533 /* If this object is not defined, we don't need to do anything
2534 here. */
2535 if (DECL_EXTERNAL (decl))
2537 var = &TREE_CHAIN (t);
2538 continue;
2541 /* Also, if the initializer already contains errors, we can bail
2542 out now. */
2543 if (init && TREE_CODE (init) == TREE_LIST
2544 && value_member (error_mark_node, init))
2546 var = &TREE_CHAIN (t);
2547 continue;
2550 /* This variable is going to need initialization and/or
2551 finalization, so we add it to the list. */
2552 *var = TREE_CHAIN (t);
2553 TREE_CHAIN (t) = result;
2554 result = t;
2557 return result;
2560 /* Make sure we have told the back end about all the variables in
2561 VARS. */
2563 static void
2564 write_out_vars (tree vars)
2566 tree v;
2568 for (v = vars; v; v = TREE_CHAIN (v))
2570 tree var = TREE_VALUE (v);
2571 if (!var_finalized_p (var))
2573 import_export_decl (var);
2574 rest_of_decl_compilation (var, 1, 1);
2579 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
2580 (otherwise) that will initialize all gobal objects with static
2581 storage duration having the indicated PRIORITY. */
2583 static void
2584 generate_ctor_or_dtor_function (bool constructor_p, int priority,
2585 location_t *locus)
2587 char function_key;
2588 tree arguments;
2589 tree fndecl;
2590 tree body;
2591 size_t i;
2593 input_location = *locus;
2594 #ifdef USE_MAPPED_LOCATION
2595 /* ??? */
2596 #else
2597 locus->line++;
2598 #endif
2600 /* We use `I' to indicate initialization and `D' to indicate
2601 destruction. */
2602 function_key = constructor_p ? 'I' : 'D';
2604 /* We emit the function lazily, to avoid generating empty
2605 global constructors and destructors. */
2606 body = NULL_TREE;
2608 /* Call the static storage duration function with appropriate
2609 arguments. */
2610 if (ssdf_decls)
2611 for (i = 0; i < ssdf_decls->elements_used; ++i)
2613 fndecl = VARRAY_TREE (ssdf_decls, i);
2615 /* Calls to pure or const functions will expand to nothing. */
2616 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
2618 if (! body)
2619 body = start_objects (function_key, priority);
2621 arguments = tree_cons (NULL_TREE,
2622 build_int_cst (NULL_TREE, priority),
2623 NULL_TREE);
2624 arguments = tree_cons (NULL_TREE,
2625 build_int_cst (NULL_TREE, constructor_p),
2626 arguments);
2627 finish_expr_stmt (build_function_call (fndecl, arguments));
2631 /* If we're generating code for the DEFAULT_INIT_PRIORITY, throw in
2632 calls to any functions marked with attributes indicating that
2633 they should be called at initialization- or destruction-time. */
2634 if (priority == DEFAULT_INIT_PRIORITY)
2636 tree fns;
2638 for (fns = constructor_p ? static_ctors : static_dtors;
2639 fns;
2640 fns = TREE_CHAIN (fns))
2642 fndecl = TREE_VALUE (fns);
2644 /* Calls to pure/const functions will expand to nothing. */
2645 if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
2647 if (! body)
2648 body = start_objects (function_key, priority);
2649 finish_expr_stmt (build_function_call (fndecl, NULL_TREE));
2654 /* Close out the function. */
2655 if (body)
2656 finish_objects (function_key, priority, body);
2659 /* Generate constructor and destructor functions for the priority
2660 indicated by N. */
2662 static int
2663 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
2665 location_t *locus = data;
2666 int priority = (int) n->key;
2667 priority_info pi = (priority_info) n->value;
2669 /* Generate the functions themselves, but only if they are really
2670 needed. */
2671 if (pi->initializations_p
2672 || (priority == DEFAULT_INIT_PRIORITY && static_ctors))
2673 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
2674 if (pi->destructions_p
2675 || (priority == DEFAULT_INIT_PRIORITY && static_dtors))
2676 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
2678 /* Keep iterating. */
2679 return 0;
2682 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR. It is supposed to mark
2683 decls referenced from frontend specific constructs; it will be called
2684 only for language-specific tree nodes.
2686 Here we must deal with member pointers. */
2688 tree
2689 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
2690 tree from ATTRIBUTE_UNUSED)
2692 tree t = *tp;
2694 switch (TREE_CODE (t))
2696 case PTRMEM_CST:
2697 if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
2698 cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
2699 break;
2700 case BASELINK:
2701 if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
2702 cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t)));
2703 break;
2704 case VAR_DECL:
2705 if (DECL_VTABLE_OR_VTT_P (t))
2707 /* The ABI requires that all virtual tables be emitted
2708 whenever one of them is. */
2709 tree vtbl;
2710 for (vtbl = CLASSTYPE_VTABLES (DECL_CONTEXT (t));
2711 vtbl;
2712 vtbl = TREE_CHAIN (vtbl))
2713 mark_decl_referenced (vtbl);
2715 else if (DECL_CONTEXT (t)
2716 && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
2717 /* If we need a static variable in a function, then we
2718 need the containing function. */
2719 mark_decl_referenced (DECL_CONTEXT (t));
2720 break;
2721 default:
2722 break;
2725 return NULL;
2728 /* This routine is called from the last rule in yyparse ().
2729 Its job is to create all the code needed to initialize and
2730 destroy the global aggregates. We do the destruction
2731 first, since that way we only need to reverse the decls once. */
2733 void
2734 cp_finish_file (void)
2736 tree vars;
2737 bool reconsider;
2738 size_t i;
2739 location_t locus;
2740 unsigned ssdf_count = 0;
2741 int retries = 0;
2742 tree decl;
2744 locus = input_location;
2745 at_eof = 1;
2747 /* Bad parse errors. Just forget about it. */
2748 if (! global_bindings_p () || current_class_type || decl_namespace_list)
2749 return;
2751 if (pch_file)
2752 c_common_write_pch ();
2754 #ifdef USE_MAPPED_LOCATION
2755 /* FIXME - huh? */
2756 #else
2757 /* Otherwise, GDB can get confused, because in only knows
2758 about source for LINENO-1 lines. */
2759 input_line -= 1;
2760 #endif
2762 /* We now have to write out all the stuff we put off writing out.
2763 These include:
2765 o Template specializations that we have not yet instantiated,
2766 but which are needed.
2767 o Initialization and destruction for non-local objects with
2768 static storage duration. (Local objects with static storage
2769 duration are initialized when their scope is first entered,
2770 and are cleaned up via atexit.)
2771 o Virtual function tables.
2773 All of these may cause others to be needed. For example,
2774 instantiating one function may cause another to be needed, and
2775 generating the initializer for an object may cause templates to be
2776 instantiated, etc., etc. */
2778 timevar_push (TV_VARCONST);
2780 emit_support_tinfos ();
2784 tree t;
2786 reconsider = false;
2788 /* If there are templates that we've put off instantiating, do
2789 them now. */
2790 instantiate_pending_templates (retries);
2791 ggc_collect ();
2793 /* Write out virtual tables as required. Note that writing out
2794 the virtual table for a template class may cause the
2795 instantiation of members of that class. If we write out
2796 vtables then we remove the class from our list so we don't
2797 have to look at it again. */
2799 while (keyed_classes != NULL_TREE
2800 && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
2802 reconsider = true;
2803 keyed_classes = TREE_CHAIN (keyed_classes);
2806 t = keyed_classes;
2807 if (t != NULL_TREE)
2809 tree next = TREE_CHAIN (t);
2811 while (next)
2813 if (maybe_emit_vtables (TREE_VALUE (next)))
2815 reconsider = true;
2816 TREE_CHAIN (t) = TREE_CHAIN (next);
2818 else
2819 t = next;
2821 next = TREE_CHAIN (t);
2825 /* Write out needed type info variables. We have to be careful
2826 looping through unemitted decls, because emit_tinfo_decl may
2827 cause other variables to be needed. New elements will be
2828 appended, and we remove from the vector those that actually
2829 get emitted. */
2830 for (i = VEC_length (tree, unemitted_tinfo_decls);
2831 VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
2832 if (emit_tinfo_decl (t))
2834 reconsider = true;
2835 VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
2838 /* The list of objects with static storage duration is built up
2839 in reverse order. We clear STATIC_AGGREGATES so that any new
2840 aggregates added during the initialization of these will be
2841 initialized in the correct order when we next come around the
2842 loop. */
2843 vars = prune_vars_needing_no_initialization (&static_aggregates);
2845 if (vars)
2847 tree v;
2849 /* We need to start a new initialization function each time
2850 through the loop. That's because we need to know which
2851 vtables have been referenced, and TREE_SYMBOL_REFERENCED
2852 isn't computed until a function is finished, and written
2853 out. That's a deficiency in the back-end. When this is
2854 fixed, these initialization functions could all become
2855 inline, with resulting performance improvements. */
2856 tree ssdf_body;
2858 /* Set the line and file, so that it is obviously not from
2859 the source file. */
2860 input_location = locus;
2861 ssdf_body = start_static_storage_duration_function (ssdf_count);
2863 /* Make sure the back end knows about all the variables. */
2864 write_out_vars (vars);
2866 /* First generate code to do all the initializations. */
2867 for (v = vars; v; v = TREE_CHAIN (v))
2868 do_static_initialization (TREE_VALUE (v),
2869 TREE_PURPOSE (v));
2871 /* Then, generate code to do all the destructions. Do these
2872 in reverse order so that the most recently constructed
2873 variable is the first destroyed. If we're using
2874 __cxa_atexit, then we don't need to do this; functions
2875 were registered at initialization time to destroy the
2876 local statics. */
2877 if (!flag_use_cxa_atexit)
2879 vars = nreverse (vars);
2880 for (v = vars; v; v = TREE_CHAIN (v))
2881 do_static_destruction (TREE_VALUE (v));
2883 else
2884 vars = NULL_TREE;
2886 /* Finish up the static storage duration function for this
2887 round. */
2888 input_location = locus;
2889 finish_static_storage_duration_function (ssdf_body);
2891 /* All those initializations and finalizations might cause
2892 us to need more inline functions, more template
2893 instantiations, etc. */
2894 reconsider = true;
2895 ssdf_count++;
2896 #ifdef USE_MAPPED_LOCATION
2897 /* ??? */
2898 #else
2899 locus.line++;
2900 #endif
2903 /* Go through the set of inline functions whose bodies have not
2904 been emitted yet. If out-of-line copies of these functions
2905 are required, emit them. */
2906 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
2908 /* Does it need synthesizing? */
2909 if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
2910 && (! DECL_REALLY_EXTERN (decl) || DECL_INLINE (decl)))
2912 /* Even though we're already at the top-level, we push
2913 there again. That way, when we pop back a few lines
2914 hence, all of our state is restored. Otherwise,
2915 finish_function doesn't clean things up, and we end
2916 up with CURRENT_FUNCTION_DECL set. */
2917 push_to_top_level ();
2918 synthesize_method (decl);
2919 pop_from_top_level ();
2920 reconsider = true;
2923 if (!DECL_SAVED_TREE (decl))
2924 continue;
2926 import_export_decl (decl);
2928 /* We lie to the back-end, pretending that some functions
2929 are not defined when they really are. This keeps these
2930 functions from being put out unnecessarily. But, we must
2931 stop lying when the functions are referenced, or if they
2932 are not comdat since they need to be put out now. This
2933 is done in a separate for cycle, because if some deferred
2934 function is contained in another deferred function later
2935 in deferred_fns varray, rest_of_compilation would skip
2936 this function and we really cannot expand the same
2937 function twice. */
2938 if (DECL_NOT_REALLY_EXTERN (decl)
2939 && DECL_INITIAL (decl)
2940 && decl_needed_p (decl))
2941 DECL_EXTERNAL (decl) = 0;
2943 /* If we're going to need to write this function out, and
2944 there's already a body for it, create RTL for it now.
2945 (There might be no body if this is a method we haven't
2946 gotten around to synthesizing yet.) */
2947 if (!DECL_EXTERNAL (decl)
2948 && decl_needed_p (decl)
2949 && !TREE_ASM_WRITTEN (decl)
2950 && !cgraph_node (decl)->local.finalized)
2952 /* We will output the function; no longer consider it in this
2953 loop. */
2954 DECL_DEFER_OUTPUT (decl) = 0;
2955 /* Generate RTL for this function now that we know we
2956 need it. */
2957 expand_or_defer_fn (decl);
2958 /* If we're compiling -fsyntax-only pretend that this
2959 function has been written out so that we don't try to
2960 expand it again. */
2961 if (flag_syntax_only)
2962 TREE_ASM_WRITTEN (decl) = 1;
2963 reconsider = true;
2967 if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
2968 reconsider = true;
2970 /* Static data members are just like namespace-scope globals. */
2971 for (i = 0; i < pending_statics_used; ++i)
2973 tree decl = VARRAY_TREE (pending_statics, i);
2974 if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl))
2975 continue;
2976 import_export_decl (decl);
2977 /* If this static data member is needed, provide it to the
2978 back end. */
2979 if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
2980 DECL_EXTERNAL (decl) = 0;
2982 if (pending_statics
2983 && wrapup_global_declarations (&VARRAY_TREE (pending_statics, 0),
2984 pending_statics_used))
2985 reconsider = true;
2987 retries++;
2989 while (reconsider);
2991 /* All used inline functions must have a definition at this point. */
2992 for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
2994 if (/* Check online inline functions that were actually used. */
2995 TREE_USED (decl) && DECL_DECLARED_INLINE_P (decl)
2996 /* But not defined. */
2997 && DECL_REALLY_EXTERN (decl)
2998 /* If we decided to emit this function in another
2999 translation unit, the fact that the definition was
3000 missing here likely indicates only that the repository
3001 decided to place the function elsewhere. With -Winline,
3002 we will still warn if we could not inline the
3003 function. */
3004 && !flag_use_repository
3005 /* An explicit instantiation can be used to specify
3006 that the body is in another unit. It will have
3007 already verified there was a definition. */
3008 && !DECL_EXPLICIT_INSTANTIATION (decl))
3010 cp_warning_at ("inline function %qD used but never defined", decl);
3011 /* This symbol is effectively an "extern" declaration now.
3012 This is not strictly necessary, but removes a duplicate
3013 warning. */
3014 TREE_PUBLIC (decl) = 1;
3018 /* We give C linkage to static constructors and destructors. */
3019 push_lang_context (lang_name_c);
3021 /* Generate initialization and destruction functions for all
3022 priorities for which they are required. */
3023 if (priority_info_map)
3024 splay_tree_foreach (priority_info_map,
3025 generate_ctor_and_dtor_functions_for_priority,
3026 /*data=*/&locus);
3027 else
3030 if (static_ctors)
3031 generate_ctor_or_dtor_function (/*constructor_p=*/true,
3032 DEFAULT_INIT_PRIORITY, &locus);
3033 if (static_dtors)
3034 generate_ctor_or_dtor_function (/*constructor_p=*/false,
3035 DEFAULT_INIT_PRIORITY, &locus);
3038 /* We're done with the splay-tree now. */
3039 if (priority_info_map)
3040 splay_tree_delete (priority_info_map);
3042 /* Generate any missing aliases. */
3043 maybe_apply_pending_pragma_weaks ();
3045 /* We're done with static constructors, so we can go back to "C++"
3046 linkage now. */
3047 pop_lang_context ();
3049 cgraph_finalize_compilation_unit ();
3050 cgraph_optimize ();
3052 /* Now, issue warnings about static, but not defined, functions,
3053 etc., and emit debugging information. */
3054 walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3055 if (pending_statics)
3056 check_global_declarations (&VARRAY_TREE (pending_statics, 0),
3057 pending_statics_used);
3059 finish_repo ();
3061 /* The entire file is now complete. If requested, dump everything
3062 to a file. */
3064 int flags;
3065 FILE *stream = dump_begin (TDI_tu, &flags);
3067 if (stream)
3069 dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3070 dump_end (TDI_tu, stream);
3074 timevar_pop (TV_VARCONST);
3076 if (flag_detailed_statistics)
3078 dump_tree_statistics ();
3079 dump_time_statistics ();
3081 input_location = locus;
3083 #ifdef ENABLE_CHECKING
3084 validate_conversion_obstack ();
3085 #endif /* ENABLE_CHECKING */
3088 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3089 function to call in parse-tree form; it has not yet been
3090 semantically analyzed. ARGS are the arguments to the function.
3091 They have already been semantically analyzed. */
3093 tree
3094 build_offset_ref_call_from_tree (tree fn, tree args)
3096 tree orig_fn;
3097 tree orig_args;
3098 tree expr;
3099 tree object;
3101 orig_fn = fn;
3102 orig_args = args;
3103 object = TREE_OPERAND (fn, 0);
3105 if (processing_template_decl)
3107 gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3108 || TREE_CODE (fn) == MEMBER_REF);
3109 if (type_dependent_expression_p (fn)
3110 || any_type_dependent_arguments_p (args))
3111 return build_min_nt (CALL_EXPR, fn, args, NULL_TREE);
3113 /* Transform the arguments and add the implicit "this"
3114 parameter. That must be done before the FN is transformed
3115 because we depend on the form of FN. */
3116 args = build_non_dependent_args (args);
3117 if (TREE_CODE (fn) == DOTSTAR_EXPR)
3118 object = build_unary_op (ADDR_EXPR, object, 0);
3119 object = build_non_dependent_expr (object);
3120 args = tree_cons (NULL_TREE, object, args);
3121 /* Now that the arguments are done, transform FN. */
3122 fn = build_non_dependent_expr (fn);
3125 /* A qualified name corresponding to a bound pointer-to-member is
3126 represented as an OFFSET_REF:
3128 struct B { void g(); };
3129 void (B::*p)();
3130 void B::g() { (this->*p)(); } */
3131 if (TREE_CODE (fn) == OFFSET_REF)
3133 tree object_addr = build_unary_op (ADDR_EXPR, object, 0);
3134 fn = TREE_OPERAND (fn, 1);
3135 fn = get_member_function_from_ptrfunc (&object_addr, fn);
3136 args = tree_cons (NULL_TREE, object_addr, args);
3139 expr = build_function_call (fn, args);
3140 if (processing_template_decl && expr != error_mark_node)
3141 return build_min_non_dep (CALL_EXPR, expr, orig_fn, orig_args, NULL_TREE);
3142 return expr;
3146 void
3147 check_default_args (tree x)
3149 tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
3150 bool saw_def = false;
3151 int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
3152 for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
3154 if (TREE_PURPOSE (arg))
3155 saw_def = true;
3156 else if (saw_def)
3158 cp_error_at ("default argument missing for parameter %P of %q+#D",
3159 i, x);
3160 break;
3165 void
3166 mark_used (tree decl)
3168 TREE_USED (decl) = 1;
3169 if (processing_template_decl || skip_evaluation)
3170 return;
3172 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
3173 && !TREE_ASM_WRITTEN (decl))
3174 /* Remember it, so we can check it was defined. */
3176 if (DECL_DEFERRED_FN (decl))
3177 return;
3178 note_vague_linkage_fn (decl);
3181 assemble_external (decl);
3183 /* Is it a synthesized method that needs to be synthesized? */
3184 if (TREE_CODE (decl) == FUNCTION_DECL
3185 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3186 && DECL_ARTIFICIAL (decl)
3187 && !DECL_THUNK_P (decl)
3188 && ! DECL_INITIAL (decl)
3189 /* Kludge: don't synthesize for default args. Unfortunately this
3190 rules out initializers of namespace-scoped objects too, but
3191 it's sort-of ok if the implicit ctor or dtor decl keeps
3192 pointing to the class location. */
3193 && current_function_decl)
3195 /* Put the function definition at the position where it is needed,
3196 rather than within the body of the class. That way, an error
3197 during the generation of the implicit body points at the place
3198 where the attempt to generate the function occurs, giving the
3199 user a hint as to why we are attempting to generate the
3200 function. */
3201 DECL_SOURCE_LOCATION (decl) = input_location;
3203 synthesize_method (decl);
3204 /* If we've already synthesized the method we don't need to
3205 instantiate it, so we can return right away. */
3206 return;
3209 /* If this is a function or variable that is an instance of some
3210 template, we now know that we will need to actually do the
3211 instantiation. We check that DECL is not an explicit
3212 instantiation because that is not checked in instantiate_decl. */
3213 if ((DECL_NON_THUNK_FUNCTION_P (decl) || TREE_CODE (decl) == VAR_DECL)
3214 && DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3215 && (!DECL_EXPLICIT_INSTANTIATION (decl)
3216 || (TREE_CODE (decl) == FUNCTION_DECL
3217 && DECL_INLINE (DECL_TEMPLATE_RESULT
3218 (template_for_substitution (decl))))))
3219 /* We put off instantiating functions in order to improve compile
3220 times. Maintaining a stack of active functions is expensive,
3221 and the inliner knows to instantiate any functions it might
3222 need. */
3223 instantiate_decl (decl, /*defer_ok=*/true, /*undefined_ok=*/0);
3226 #include "gt-cp-decl2.h"