2 Copyright (C) 2012-2023 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
31 #include "lto-streamer.h"
32 #include "print-tree.h"
34 #include "langhooks.h"
36 #include "ipa-utils.h"
38 #include "stringpool.h"
41 #include "fold-const.h"
43 static const char *ipa_ref_use_name
[] = {"read","write","addr","alias"};
45 const char * const ld_plugin_symbol_resolution_names
[]=
50 "prevailing_def_ironly",
56 "prevailing_def_ironly_exp"
59 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at ALIAS
60 until we find an identifier that is not itself a transparent alias. */
63 ultimate_transparent_alias_target (tree alias
)
67 while (IDENTIFIER_TRANSPARENT_ALIAS (target
))
69 gcc_checking_assert (TREE_CHAIN (target
));
70 target
= TREE_CHAIN (target
);
72 gcc_checking_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
73 && ! TREE_CHAIN (target
));
79 /* Hash asmnames ignoring the user specified marks. */
82 symbol_table::decl_assembler_name_hash (const_tree asmname
)
84 if (IDENTIFIER_POINTER (asmname
)[0] == '*')
86 const char *decl_str
= IDENTIFIER_POINTER (asmname
) + 1;
87 size_t ulp_len
= strlen (user_label_prefix
);
91 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
94 return htab_hash_string (decl_str
);
97 return htab_hash_string (IDENTIFIER_POINTER (asmname
));
100 /* Return true if assembler names NAME1 and NAME2 leads to the same symbol
104 symbol_table::assembler_names_equal_p (const char *name1
, const char *name2
)
110 size_t ulp_len
= strlen (user_label_prefix
);
116 else if (strncmp (name1
, user_label_prefix
, ulp_len
) == 0)
123 size_t ulp_len
= strlen (user_label_prefix
);
129 else if (strncmp (name2
, user_label_prefix
, ulp_len
) == 0)
134 return !strcmp (name1
, name2
);
139 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
142 symbol_table::decl_assembler_name_equal (tree decl
, const_tree asmname
)
144 tree decl_asmname
= DECL_ASSEMBLER_NAME (decl
);
145 const char *decl_str
;
146 const char *asmname_str
;
148 if (decl_asmname
== asmname
)
151 decl_str
= IDENTIFIER_POINTER (decl_asmname
);
152 asmname_str
= IDENTIFIER_POINTER (asmname
);
153 return assembler_names_equal_p (decl_str
, asmname_str
);
157 /* Returns nonzero if P1 and P2 are equal. */
159 /* Insert NODE to assembler name hash. */
162 symbol_table::insert_to_assembler_name_hash (symtab_node
*node
,
165 if (is_a
<varpool_node
*> (node
) && DECL_HARD_REGISTER (node
->decl
))
167 gcc_checking_assert (!node
->previous_sharing_asm_name
168 && !node
->next_sharing_asm_name
);
169 if (assembler_name_hash
)
173 tree decl
= node
->decl
;
175 tree name
= DECL_ASSEMBLER_NAME (node
->decl
);
177 /* C++ FE can produce decls without associated assembler name and insert
178 them to symtab to hold section or TLS information. */
182 hashval_t hash
= decl_assembler_name_hash (name
);
183 aslot
= assembler_name_hash
->find_slot_with_hash (name
, hash
, INSERT
);
184 gcc_assert (*aslot
!= node
);
185 node
->next_sharing_asm_name
= (symtab_node
*)*aslot
;
187 (*aslot
)->previous_sharing_asm_name
= node
;
190 /* Update also possible inline clones sharing a decl. */
191 cnode
= dyn_cast
<cgraph_node
*> (node
);
192 if (cnode
&& cnode
->clones
&& with_clones
)
193 for (cnode
= cnode
->clones
; cnode
; cnode
= cnode
->next_sibling_clone
)
194 if (cnode
->decl
== decl
)
195 insert_to_assembler_name_hash (cnode
, true);
200 /* Remove NODE from assembler name hash. */
203 symbol_table::unlink_from_assembler_name_hash (symtab_node
*node
,
206 if (assembler_name_hash
)
209 tree decl
= node
->decl
;
211 if (node
->next_sharing_asm_name
)
212 node
->next_sharing_asm_name
->previous_sharing_asm_name
213 = node
->previous_sharing_asm_name
;
214 if (node
->previous_sharing_asm_name
)
216 node
->previous_sharing_asm_name
->next_sharing_asm_name
217 = node
->next_sharing_asm_name
;
221 tree name
= DECL_ASSEMBLER_NAME (node
->decl
);
227 hashval_t hash
= decl_assembler_name_hash (name
);
228 slot
= assembler_name_hash
->find_slot_with_hash (name
, hash
,
230 gcc_assert (*slot
== node
);
231 if (!node
->next_sharing_asm_name
)
232 assembler_name_hash
->clear_slot (slot
);
234 *slot
= node
->next_sharing_asm_name
;
236 node
->next_sharing_asm_name
= NULL
;
237 node
->previous_sharing_asm_name
= NULL
;
239 /* Update also possible inline clones sharing a decl. */
240 cnode
= dyn_cast
<cgraph_node
*> (node
);
241 if (cnode
&& cnode
->clones
&& with_clones
)
242 for (cnode
= cnode
->clones
; cnode
; cnode
= cnode
->next_sibling_clone
)
243 if (cnode
->decl
== decl
)
244 unlink_from_assembler_name_hash (cnode
, true);
248 /* Arrange node to be first in its entry of assembler_name_hash. */
251 symbol_table::symtab_prevail_in_asm_name_hash (symtab_node
*node
)
253 unlink_from_assembler_name_hash (node
, false);
254 insert_to_assembler_name_hash (node
, false);
257 /* Initialize asm name hash unless. */
260 symbol_table::symtab_initialize_asm_name_hash (void)
263 if (!assembler_name_hash
)
265 assembler_name_hash
= hash_table
<asmname_hasher
>::create_ggc (10);
266 FOR_EACH_SYMBOL (node
)
267 insert_to_assembler_name_hash (node
, false);
271 /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */
274 symbol_table::change_decl_assembler_name (tree decl
, tree name
)
276 symtab_node
*node
= NULL
;
278 /* We can have user ASM names on things, like global register variables, that
279 are not in the symbol table. */
280 if ((VAR_P (decl
) && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
281 || TREE_CODE (decl
) == FUNCTION_DECL
)
282 node
= symtab_node::get (decl
);
283 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
285 SET_DECL_ASSEMBLER_NAME (decl
, name
);
287 insert_to_assembler_name_hash (node
, true);
291 if (name
== DECL_ASSEMBLER_NAME (decl
))
294 tree alias
= (IDENTIFIER_TRANSPARENT_ALIAS (DECL_ASSEMBLER_NAME (decl
))
295 ? TREE_CHAIN (DECL_ASSEMBLER_NAME (decl
))
298 unlink_from_assembler_name_hash (node
, true);
300 const char *old_name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
301 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
302 && DECL_RTL_SET_P (decl
))
303 warning (0, "%qD renamed after being referenced in assembly", decl
);
305 SET_DECL_ASSEMBLER_NAME (decl
, name
);
308 IDENTIFIER_TRANSPARENT_ALIAS (name
) = 1;
309 TREE_CHAIN (name
) = alias
;
311 /* If we change assembler name, also all transparent aliases must
312 be updated. There are three kinds - those having same assembler name,
313 those being renamed in varasm.cc and weakref being renamed by the
317 insert_to_assembler_name_hash (node
, true);
319 for (unsigned i
= 0; node
->iterate_direct_aliases (i
, ref
); i
++)
321 struct symtab_node
*alias
= ref
->referring
;
322 if (alias
->transparent_alias
&& !alias
->weakref
323 && symbol_table::assembler_names_equal_p
324 (old_name
, IDENTIFIER_POINTER (
325 DECL_ASSEMBLER_NAME (alias
->decl
))))
326 change_decl_assembler_name (alias
->decl
, name
);
327 else if (alias
->transparent_alias
328 && IDENTIFIER_TRANSPARENT_ALIAS (alias
->decl
))
330 gcc_assert (TREE_CHAIN (DECL_ASSEMBLER_NAME (alias
->decl
))
331 && IDENTIFIER_TRANSPARENT_ALIAS
332 (DECL_ASSEMBLER_NAME (alias
->decl
)));
334 TREE_CHAIN (DECL_ASSEMBLER_NAME (alias
->decl
)) =
335 ultimate_transparent_alias_target
336 (DECL_ASSEMBLER_NAME (node
->decl
));
338 #ifdef ASM_OUTPUT_WEAKREF
339 else gcc_assert (!alias
->transparent_alias
|| alias
->weakref
);
341 else gcc_assert (!alias
->transparent_alias
);
344 gcc_assert (!node
->transparent_alias
|| !node
->definition
346 || TREE_CHAIN (DECL_ASSEMBLER_NAME (decl
))
347 || symbol_table::assembler_names_equal_p
348 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
351 (node
->get_alias_target ()->decl
))));
356 /* Hash sections by their names. */
359 section_name_hasher::hash (section_hash_entry
*n
)
361 return htab_hash_string (n
->name
);
364 /* Return true if section P1 name equals to P2. */
367 section_name_hasher::equal (section_hash_entry
*n1
, const char *name
)
369 return n1
->name
== name
|| !strcmp (n1
->name
, name
);
372 /* Bump the reference count on ENTRY so that it is retained. */
374 static section_hash_entry
*
375 retain_section_hash_entry (section_hash_entry
*entry
)
381 /* Drop the reference count on ENTRY and remove it if the reference
382 count drops to zero. */
385 release_section_hash_entry (section_hash_entry
*entry
)
390 if (!entry
->ref_count
)
392 hashval_t hash
= htab_hash_string (entry
->name
);
393 section_hash_entry
**slot
394 = symtab
->section_hash
->find_slot_with_hash (entry
->name
,
397 symtab
->section_hash
->clear_slot (slot
);
402 /* Add node into symbol table. This function is not used directly, but via
403 cgraph/varpool node creation routines. */
406 symtab_node::register_symbol (void)
408 symtab
->register_symbol (this);
410 if (!decl
->decl_with_vis
.symtab_node
)
411 decl
->decl_with_vis
.symtab_node
= this;
415 /* Be sure to do this last; C++ FE might create new nodes via
416 DECL_ASSEMBLER_NAME langhook! */
417 symtab
->insert_to_assembler_name_hash (this, false);
420 /* Remove NODE from same comdat group. */
423 symtab_node::remove_from_same_comdat_group (void)
425 if (same_comdat_group
)
428 for (prev
= same_comdat_group
;
429 prev
->same_comdat_group
!= this;
430 prev
= prev
->same_comdat_group
)
432 if (same_comdat_group
== prev
)
433 prev
->same_comdat_group
= NULL
;
435 prev
->same_comdat_group
= same_comdat_group
;
436 same_comdat_group
= NULL
;
437 set_comdat_group (NULL
);
441 /* Remove node from symbol table. This function is not used directly, but via
442 cgraph/varpool node removal routines.
443 INFO is a clone info to attach to new root of clone tree (if any). */
446 symtab_node::unregister (clone_info
*info
)
448 remove_all_references ();
449 remove_all_referring ();
451 /* Remove reference to section. */
452 set_section_for_node (NULL
);
454 remove_from_same_comdat_group ();
456 symtab
->unregister (this);
458 /* During LTO symtab merging we temporarily corrupt decl to symtab node
460 gcc_assert (decl
->decl_with_vis
.symtab_node
|| in_lto_p
);
461 if (decl
->decl_with_vis
.symtab_node
== this)
463 symtab_node
*replacement_node
= NULL
;
464 if (cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this))
465 replacement_node
= cnode
->find_replacement (info
);
466 decl
->decl_with_vis
.symtab_node
= replacement_node
;
468 if (!is_a
<varpool_node
*> (this) || !DECL_HARD_REGISTER (decl
))
469 symtab
->unlink_from_assembler_name_hash (this, false);
470 if (in_init_priority_hash
)
471 symtab
->init_priority_hash
->remove (this);
475 /* Remove symbol from symbol table. */
478 symtab_node::remove (void)
480 if (cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this))
482 else if (varpool_node
*vnode
= dyn_cast
<varpool_node
*> (this))
486 /* Add NEW_ to the same comdat group that OLD is in. */
489 symtab_node::add_to_same_comdat_group (symtab_node
*old_node
)
491 gcc_assert (old_node
->get_comdat_group ());
492 gcc_assert (!same_comdat_group
);
493 gcc_assert (this != old_node
);
495 set_comdat_group (old_node
->get_comdat_group ());
496 same_comdat_group
= old_node
;
497 if (!old_node
->same_comdat_group
)
498 old_node
->same_comdat_group
= this;
502 for (n
= old_node
->same_comdat_group
;
503 n
->same_comdat_group
!= old_node
;
504 n
= n
->same_comdat_group
)
506 n
->same_comdat_group
= this;
510 if (comdat_local_p ()
511 && (n
= dyn_cast
<cgraph_node
*> (this)) != NULL
)
513 for (cgraph_edge
*e
= n
->callers
; e
; e
= e
->next_caller
)
514 if (e
->caller
->inlined_to
)
515 e
->caller
->inlined_to
->calls_comdat_local
= true;
517 e
->caller
->calls_comdat_local
= true;
521 /* Dissolve the same_comdat_group list in which NODE resides. */
524 symtab_node::dissolve_same_comdat_group_list (void)
526 symtab_node
*n
= this;
529 if (!same_comdat_group
)
533 next
= n
->same_comdat_group
;
534 n
->same_comdat_group
= NULL
;
535 if (dyn_cast
<cgraph_node
*> (n
))
536 dyn_cast
<cgraph_node
*> (n
)->calls_comdat_local
= false;
537 /* Clear comdat_group for comdat locals, since
538 make_decl_local doesn't. */
539 if (!TREE_PUBLIC (n
->decl
))
540 n
->set_comdat_group (NULL
);
546 /* Return printable assembler name of NODE.
547 This function is used only for debugging. When assembler name
548 is unknown go with identifier name. */
551 symtab_node::asm_name () const
553 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
555 return IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
558 /* Return printable identifier name. */
561 symtab_node::name () const
563 if (!DECL_NAME (decl
))
565 if (DECL_ASSEMBLER_NAME_SET_P (decl
))
570 return lang_hooks
.decl_printable_name (decl
, 2);
574 symtab_node::get_dump_name (bool asm_name_p
) const
577 const char *fname
= asm_name_p
? asm_name () : name ();
578 unsigned l
= strlen (fname
);
580 char *s
= (char *)ggc_internal_cleared_alloc (l
+ EXTRA
);
581 snprintf (s
, l
+ EXTRA
, "%s/%d", fname
, order
);
587 symtab_node::dump_name () const
589 return get_dump_name (false);
593 symtab_node::dump_asm_name () const
595 return get_dump_name (true);
598 /* Return ipa reference from this symtab_node to
599 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
603 symtab_node::create_reference (symtab_node
*referred_node
,
604 enum ipa_ref_use use_type
)
606 return create_reference (referred_node
, use_type
, NULL
);
610 /* Return ipa reference from this symtab_node to
611 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
612 of the use and STMT the statement (if it exists). */
615 symtab_node::create_reference (symtab_node
*referred_node
,
616 enum ipa_ref_use use_type
, gimple
*stmt
)
618 ipa_ref
*ref
= NULL
, *ref2
= NULL
;
619 ipa_ref_list
*list
, *list2
;
620 ipa_ref_t
*old_references
;
622 gcc_checking_assert (!stmt
|| is_a
<cgraph_node
*> (this));
623 gcc_checking_assert (use_type
!= IPA_REF_ALIAS
|| !stmt
);
626 old_references
= list
->references
.address ();
627 list
->references
.safe_grow (list
->references
.length () + 1, false);
628 ref
= &list
->references
.last ();
630 list2
= &referred_node
->ref_list
;
632 /* IPA_REF_ALIAS is always inserted at the beginning of the list. */
633 if(use_type
== IPA_REF_ALIAS
)
635 list2
->referring
.safe_insert (0, ref
);
636 ref
->referred_index
= 0;
638 for (unsigned int i
= 1; i
< list2
->referring
.length (); i
++)
639 list2
->referring
[i
]->referred_index
= i
;
643 list2
->referring
.safe_push (ref
);
644 ref
->referred_index
= list2
->referring
.length () - 1;
647 ref
->referring
= this;
648 ref
->referred
= referred_node
;
650 ref
->lto_stmt_uid
= 0;
651 ref
->speculative_id
= 0;
653 ref
->speculative
= 0;
655 /* If vector was moved in memory, update pointers. */
656 if (old_references
!= list
->references
.address ())
659 for (i
= 0; iterate_reference(i
, ref2
); i
++)
660 ref2
->referred_ref_list ()->referring
[ref2
->referred_index
] = ref2
;
666 symtab_node::maybe_create_reference (tree val
, gimple
*stmt
)
669 ipa_ref_use use_type
;
671 switch (TREE_CODE (val
))
674 use_type
= IPA_REF_LOAD
;
677 use_type
= IPA_REF_ADDR
;
680 gcc_assert (!handled_component_p (val
));
684 val
= get_base_var (val
);
685 if (val
&& VAR_OR_FUNCTION_DECL_P (val
))
687 symtab_node
*referred
= symtab_node::get (val
);
688 gcc_checking_assert (referred
);
689 return create_reference (referred
, use_type
, stmt
);
694 /* Clone all references from symtab NODE to this symtab_node. */
697 symtab_node::clone_references (symtab_node
*node
)
699 ipa_ref
*ref
= NULL
, *ref2
= NULL
;
701 for (i
= 0; node
->iterate_reference (i
, ref
); i
++)
703 bool speculative
= ref
->speculative
;
704 unsigned int stmt_uid
= ref
->lto_stmt_uid
;
705 unsigned int spec_id
= ref
->speculative_id
;
707 ref2
= create_reference (ref
->referred
, ref
->use
, ref
->stmt
);
708 ref2
->speculative
= speculative
;
709 ref2
->lto_stmt_uid
= stmt_uid
;
710 ref2
->speculative_id
= spec_id
;
714 /* Clone all referring from symtab NODE to this symtab_node. */
717 symtab_node::clone_referring (symtab_node
*node
)
719 ipa_ref
*ref
= NULL
, *ref2
= NULL
;
721 for (i
= 0; node
->iterate_referring(i
, ref
); i
++)
723 bool speculative
= ref
->speculative
;
724 unsigned int stmt_uid
= ref
->lto_stmt_uid
;
725 unsigned int spec_id
= ref
->speculative_id
;
727 ref2
= ref
->referring
->create_reference (this, ref
->use
, ref
->stmt
);
728 ref2
->speculative
= speculative
;
729 ref2
->lto_stmt_uid
= stmt_uid
;
730 ref2
->speculative_id
= spec_id
;
734 /* Clone reference REF to this symtab_node and set its stmt to STMT. */
737 symtab_node::clone_reference (ipa_ref
*ref
, gimple
*stmt
)
739 bool speculative
= ref
->speculative
;
740 unsigned int stmt_uid
= ref
->lto_stmt_uid
;
741 unsigned int spec_id
= ref
->speculative_id
;
744 ref2
= create_reference (ref
->referred
, ref
->use
, stmt
);
745 ref2
->speculative
= speculative
;
746 ref2
->lto_stmt_uid
= stmt_uid
;
747 ref2
->speculative_id
= spec_id
;
751 /* Find the structure describing a reference to REFERRED_NODE of USE_TYPE and
752 associated with statement STMT or LTO_STMT_UID. */
755 symtab_node::find_reference (symtab_node
*referred_node
,
756 gimple
*stmt
, unsigned int lto_stmt_uid
,
757 enum ipa_ref_use use_type
)
762 for (i
= 0; iterate_reference (i
, r
); i
++)
763 if (r
->referred
== referred_node
765 && r
->use
== use_type
766 && ((stmt
&& r
->stmt
== stmt
)
767 || (lto_stmt_uid
&& r
->lto_stmt_uid
== lto_stmt_uid
)
768 || (!stmt
&& !lto_stmt_uid
&& !r
->stmt
&& !r
->lto_stmt_uid
)))
773 /* Remove all references that are associated with statement STMT. */
776 symtab_node::remove_stmt_references (gimple
*stmt
)
781 while (iterate_reference (i
, r
))
783 r
->remove_reference ();
788 /* Remove all stmt references in non-speculative references in THIS
790 Those are not maintained during inlining & cloning.
791 The exception are speculative references that are updated along
792 with callgraph edges associated with them. */
795 symtab_node::clear_stmts_in_references (void)
800 for (i
= 0; iterate_reference (i
, r
); i
++)
805 r
->speculative_id
= 0;
807 cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this);
811 for (cnode
= cnode
->clones
; cnode
; cnode
= cnode
->next_sibling_clone
)
812 cnode
->clear_stmts_in_references ();
816 /* Remove all references in ref list. */
819 symtab_node::remove_all_references (void)
821 while (ref_list
.references
.length ())
822 ref_list
.references
.last ().remove_reference ();
823 ref_list
.references
.release ();
826 /* Remove all referring items in ref list. */
829 symtab_node::remove_all_referring (void)
831 while (ref_list
.referring
.length ())
832 ref_list
.referring
.last ()->remove_reference ();
833 ref_list
.referring
.release ();
836 /* Dump references in ref list to FILE. */
839 symtab_node::dump_references (FILE *file
)
843 for (i
= 0; iterate_reference (i
, ref
); i
++)
845 fprintf (file
, "%s (%s) ", ref
->referred
->dump_asm_name (),
846 ipa_ref_use_name
[ref
->use
]);
847 if (ref
->speculative
)
848 fprintf (file
, "(speculative) ");
850 fprintf (file
, "\n");
853 /* Dump referring in list to FILE. */
856 symtab_node::dump_referring (FILE *file
)
860 for (i
= 0; iterate_referring(i
, ref
); i
++)
862 fprintf (file
, "%s (%s) ", ref
->referring
->dump_asm_name (),
863 ipa_ref_use_name
[ref
->use
]);
864 if (ref
->speculative
)
865 fprintf (file
, "(speculative) ");
867 fprintf (file
, "\n");
870 static const char * const symtab_type_names
[] = {"symbol", "function", "variable"};
872 /* Dump the visibility of the symbol. */
875 symtab_node::get_visibility_string () const
877 static const char * const visibility_types
[]
878 = { "default", "protected", "hidden", "internal" };
879 return visibility_types
[DECL_VISIBILITY (decl
)];
882 /* Dump the type_name of the symbol. */
884 symtab_node::get_symtab_type_string () const
886 return symtab_type_names
[type
];
889 /* Dump base fields of symtab nodes to F. Not to be used directly. */
892 symtab_node::dump_base (FILE *f
)
894 static const char * const visibility_types
[] = {
895 "default", "protected", "hidden", "internal"
898 fprintf (f
, "%s (%s)", dump_asm_name (), name ());
899 if (dump_flags
& TDF_ADDRESS
)
900 dump_addr (f
, " @", (void *)this);
901 fprintf (f
, "\n Type: %s", symtab_type_names
[type
]);
904 fprintf (f
, " definition");
906 fprintf (f
, " analyzed");
908 fprintf (f
, " alias");
909 if (transparent_alias
)
910 fprintf (f
, " transparent_alias");
912 fprintf (f
, " weakref");
914 fprintf (f
, " symver");
915 if (cpp_implicit_alias
)
916 fprintf (f
, " cpp_implicit_alias");
918 fprintf (f
, " target:%s",
919 DECL_P (alias_target
)
920 ? IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME
922 : IDENTIFIER_POINTER (alias_target
));
924 fprintf (f
, "\n Body removed by symtab_remove_unreachable_nodes");
925 fprintf (f
, "\n Visibility:");
926 if (in_other_partition
)
927 fprintf (f
, " in_other_partition");
928 if (used_from_other_partition
)
929 fprintf (f
, " used_from_other_partition");
931 fprintf (f
, " force_output");
933 fprintf (f
, " forced_by_abi");
934 if (externally_visible
)
935 fprintf (f
, " externally_visible");
936 if (semantic_interposition
)
937 fprintf (f
, " semantic_interposition");
939 fprintf (f
, " no_reorder");
940 if (resolution
!= LDPR_UNKNOWN
)
942 ld_plugin_symbol_resolution_names
[(int)resolution
]);
943 if (TREE_ASM_WRITTEN (decl
))
944 fprintf (f
, " asm_written");
945 if (DECL_EXTERNAL (decl
))
946 fprintf (f
, " external");
947 if (TREE_PUBLIC (decl
))
948 fprintf (f
, " public");
949 if (DECL_COMMON (decl
))
950 fprintf (f
, " common");
951 if (DECL_WEAK (decl
))
952 fprintf (f
, " weak");
953 if (DECL_DLLIMPORT_P (decl
))
954 fprintf (f
, " dll_import");
955 if (DECL_COMDAT (decl
))
956 fprintf (f
, " comdat");
957 if (get_comdat_group ())
958 fprintf (f
, " comdat_group:%s",
959 IDENTIFIER_POINTER (get_comdat_group_id ()));
960 if (DECL_ONE_ONLY (decl
))
961 fprintf (f
, " one_only");
963 fprintf (f
, " section:%s",
965 if (implicit_section
)
966 fprintf (f
," (implicit_section)");
967 if (DECL_VISIBILITY_SPECIFIED (decl
))
968 fprintf (f
, " visibility_specified");
969 if (DECL_VISIBILITY (decl
))
970 fprintf (f
, " visibility:%s",
971 visibility_types
[DECL_VISIBILITY (decl
)]);
972 if (DECL_VIRTUAL_P (decl
))
973 fprintf (f
, " virtual");
974 if (DECL_ARTIFICIAL (decl
))
975 fprintf (f
, " artificial");
976 if (TREE_CODE (decl
) == FUNCTION_DECL
)
978 if (DECL_STATIC_CONSTRUCTOR (decl
))
979 fprintf (f
, " constructor");
980 if (DECL_STATIC_DESTRUCTOR (decl
))
981 fprintf (f
, " destructor");
984 fprintf (f
, " ifunc_resolver");
987 if (same_comdat_group
)
988 fprintf (f
, " Same comdat group as: %s\n",
989 same_comdat_group
->dump_asm_name ());
990 if (next_sharing_asm_name
)
991 fprintf (f
, " next sharing asm name: %i\n",
992 next_sharing_asm_name
->order
);
993 if (previous_sharing_asm_name
)
994 fprintf (f
, " previous sharing asm name: %i\n",
995 previous_sharing_asm_name
->order
);
998 fprintf (f
, " Address is taken.\n");
1001 fprintf (f
, " Aux:");
1002 dump_addr (f
, " @", (void *)aux
);
1006 fprintf (f
, " References: ");
1007 dump_references (f
);
1008 fprintf (f
, " Referring: ");
1011 fprintf (f
, " Read from file: %s\n",
1012 lto_file_data
->file_name
);
1015 /* Dump symtab node to F. */
1018 symtab_node::dump (FILE *f
)
1020 if (cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this))
1022 else if (varpool_node
*vnode
= dyn_cast
<varpool_node
*> (this))
1027 symtab_node::dump_graphviz (FILE *f
)
1029 if (cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this))
1030 cnode
->dump_graphviz (f
);
1034 symbol_table::dump (FILE *f
)
1037 fprintf (f
, "Symbol table:\n\n");
1038 FOR_EACH_SYMBOL (node
)
1043 symbol_table::dump_graphviz (FILE *f
)
1046 fprintf (f
, "digraph symtab {\n");
1047 FOR_EACH_SYMBOL (node
)
1048 node
->dump_graphviz (f
);
1053 symbol_table::debug (void)
1058 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
1059 Return NULL if there's no such node. */
1062 symtab_node::get_for_asmname (const_tree asmname
)
1066 symtab
->symtab_initialize_asm_name_hash ();
1067 hashval_t hash
= symtab
->decl_assembler_name_hash (asmname
);
1069 = symtab
->assembler_name_hash
->find_slot_with_hash (asmname
, hash
,
1080 /* Dump symtab node NODE to stderr. */
1083 symtab_node::debug (void)
1088 /* Verify common part of symtab nodes. */
1091 /* Disable warnings about missing quoting in GCC diagnostics for
1092 the verification errors. Their format strings don't follow GCC
1093 diagnostic conventions and the calls are ultimately followed by
1094 one to internal_error. */
1095 # pragma GCC diagnostic push
1096 # pragma GCC diagnostic ignored "-Wformat-diag"
1100 symtab_node::verify_base (void)
1102 bool error_found
= false;
1103 symtab_node
*hashed_node
;
1105 if (is_a
<cgraph_node
*> (this))
1107 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1109 error ("function symbol is not function");
1112 else if ((lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
))
1114 != dyn_cast
<cgraph_node
*> (this)->ifunc_resolver
)
1116 error ("inconsistent %<ifunc%> attribute");
1120 else if (is_a
<varpool_node
*> (this))
1124 error ("variable symbol is not variable");
1130 error ("node has unknown type");
1133 if (order
< 0 || order
>= symtab
->order
)
1135 error ("node has invalid order %i", order
);
1139 if (symtab
->state
!= LTO_STREAMING
)
1141 hashed_node
= symtab_node::get (decl
);
1144 error ("node not found node->decl->decl_with_vis.symtab_node");
1147 if (hashed_node
!= this
1148 && (!is_a
<cgraph_node
*> (this)
1149 || !dyn_cast
<cgraph_node
*> (this)->clone_of
1150 || dyn_cast
<cgraph_node
*> (this)->clone_of
->decl
!= decl
))
1152 error ("node differs from node->decl->decl_with_vis.symtab_node");
1156 if (symtab
->assembler_name_hash
)
1158 hashed_node
= symtab_node::get_for_asmname (DECL_ASSEMBLER_NAME (decl
));
1161 if (hashed_node
->previous_sharing_asm_name
)
1163 error ("assembler name hash list corrupted");
1166 else if (previous_sharing_asm_name
== NULL
)
1168 if (hashed_node
!= this)
1170 error ("assembler name hash list corrupted");
1174 else if (!(is_a
<varpool_node
*> (this) && DECL_HARD_REGISTER (decl
)))
1176 if (!asmname_hasher::equal (previous_sharing_asm_name
,
1177 DECL_ASSEMBLER_NAME (decl
)))
1179 error ("node not found in symtab assembler name hash");
1185 if (previous_sharing_asm_name
1186 && previous_sharing_asm_name
->next_sharing_asm_name
!= this)
1188 error ("double linked list of assembler names corrupted");
1191 if (body_removed
&& definition
)
1193 error ("node has body_removed but is definition");
1196 if (analyzed
&& !definition
)
1198 error ("node is analyzed but it is not a definition");
1201 if (cpp_implicit_alias
&& !alias
)
1203 error ("node is alias but not implicit alias");
1206 if (alias
&& !definition
&& !weakref
)
1208 error ("node is alias but not definition");
1211 if (weakref
&& !transparent_alias
)
1213 error ("node is weakref but not an transparent_alias");
1216 if (transparent_alias
&& !alias
)
1218 error ("node is transparent_alias but not an alias");
1221 if (symver
&& !alias
)
1223 error ("node is symver but not alias");
1226 /* Limitation of gas requires us to output targets of symver aliases as
1227 global symbols. This is binutils PR 25295. */
1229 && (!TREE_PUBLIC (get_alias_target ()->decl
)
1230 || DECL_VISIBILITY (get_alias_target ()->decl
) != VISIBILITY_DEFAULT
))
1232 error ("symver target is not exported with default visibility");
1236 && (!TREE_PUBLIC (decl
)
1237 || DECL_VISIBILITY (decl
) != VISIBILITY_DEFAULT
))
1239 error ("symver is not exported with default visibility");
1242 if (same_comdat_group
)
1244 symtab_node
*n
= same_comdat_group
;
1246 if (!n
->get_comdat_group ())
1248 error ("node is in same_comdat_group list but has no comdat_group");
1251 if (n
->get_comdat_group () != get_comdat_group ())
1253 error ("same_comdat_group list across different groups");
1256 if (n
->type
!= type
)
1258 error ("mixing different types of symbol in same comdat groups is not supported");
1263 error ("node is alone in a comdat group");
1268 if (!n
->same_comdat_group
)
1270 error ("same_comdat_group is not a circular list");
1274 n
= n
->same_comdat_group
;
1277 if (comdat_local_p ())
1279 ipa_ref
*ref
= NULL
;
1281 for (int i
= 0; iterate_referring (i
, ref
); ++i
)
1283 if (!in_same_comdat_group_p (ref
->referring
))
1285 error ("comdat-local symbol referred to by %s outside its "
1287 identifier_to_locale (ref
->referring
->name()));
1293 if (implicit_section
&& !get_section ())
1295 error ("implicit_section flag is set but section isn%'t");
1298 if (get_section () && get_comdat_group ()
1299 && !implicit_section
1300 && !lookup_attribute ("section", DECL_ATTRIBUTES (decl
)))
1302 error ("Both section and comdat group is set");
1305 /* TODO: Add string table for sections, so we do not keep holding duplicated
1307 if (alias
&& definition
1308 && get_section () != get_alias_target ()->get_section ()
1310 || !get_alias_target ()->get_section ()
1311 || strcmp (get_section(),
1312 get_alias_target ()->get_section ())))
1314 error ("Alias and target%'s section differs");
1315 get_alias_target ()->dump (stderr
);
1318 if (alias
&& definition
1319 && get_comdat_group () != get_alias_target ()->get_comdat_group ())
1321 error ("Alias and target%'s comdat groups differs");
1322 get_alias_target ()->dump (stderr
);
1325 if (transparent_alias
&& definition
&& !weakref
)
1327 symtab_node
*to
= get_alias_target ();
1329 = IDENTIFIER_POINTER (
1330 ultimate_transparent_alias_target (DECL_ASSEMBLER_NAME (decl
)));
1332 = IDENTIFIER_POINTER (
1333 ultimate_transparent_alias_target (DECL_ASSEMBLER_NAME (to
->decl
)));
1334 if (!symbol_table::assembler_names_equal_p (name1
, name2
))
1336 error ("Transparent alias and target%'s assembler names differs");
1337 get_alias_target ()->dump (stderr
);
1341 if (transparent_alias
&& definition
1342 && get_alias_target()->transparent_alias
&& get_alias_target()->analyzed
)
1344 error ("Chained transparent aliases");
1345 get_alias_target ()->dump (stderr
);
1352 /* Verify consistency of NODE. */
1355 symtab_node::verify (void)
1360 timevar_push (TV_CGRAPH_VERIFY
);
1361 if (cgraph_node
*node
= dyn_cast
<cgraph_node
*> (this))
1362 node
->verify_node ();
1367 internal_error ("symtab_node::verify failed");
1369 timevar_pop (TV_CGRAPH_VERIFY
);
1372 /* Verify symbol table for internal consistency. */
1375 symtab_node::verify_symtab_nodes (void)
1378 hash_map
<tree
, symtab_node
*> comdat_head_map (251);
1381 for (anode
= symtab
->first_asm_symbol (); anode
; anode
= anode
->next
)
1382 if (anode
->order
< 0 || anode
->order
>= symtab
->order
)
1384 error ("invalid order in asm node %i", anode
->order
);
1385 internal_error ("symtab_node::verify failed");
1388 FOR_EACH_SYMBOL (node
)
1391 if (node
->get_comdat_group ())
1393 symtab_node
**entry
, *s
;
1396 entry
= &comdat_head_map
.get_or_insert (node
->get_comdat_group (),
1400 else if (!DECL_EXTERNAL (node
->decl
))
1402 for (s
= (*entry
)->same_comdat_group
;
1403 s
!= NULL
&& s
!= node
&& s
!= *entry
;
1404 s
= s
->same_comdat_group
)
1406 if (!s
|| s
== *entry
)
1408 error ("Two symbols with same comdat_group are not linked by "
1409 "the same_comdat_group list.");
1412 internal_error ("symtab_node::verify failed");
1420 # pragma GCC diagnostic pop
1423 /* Make DECL local. FIXME: We shouldn't need to mess with rtl this early,
1424 but other code such as notice_global_symbol generates rtl. */
1427 symtab_node::make_decl_local (void)
1434 IDENTIFIER_TRANSPARENT_ALIAS (DECL_ASSEMBLER_NAME (decl
)) = 0;
1435 TREE_CHAIN (DECL_ASSEMBLER_NAME (decl
)) = NULL_TREE
;
1436 symtab
->change_decl_assembler_name
1437 (decl
, DECL_ASSEMBLER_NAME (get_alias_target ()->decl
));
1438 DECL_ATTRIBUTES (decl
) = remove_attribute ("weakref",
1439 DECL_ATTRIBUTES (decl
));
1441 /* Avoid clearing comdat_groups on comdat-local decls. */
1442 else if (TREE_PUBLIC (decl
) == 0)
1445 /* Localizing a symbol also make all its transparent aliases local. */
1447 for (unsigned i
= 0; iterate_direct_aliases (i
, ref
); i
++)
1449 struct symtab_node
*alias
= ref
->referring
;
1450 if (alias
->transparent_alias
)
1451 alias
->make_decl_local ();
1456 DECL_COMMON (decl
) = 0;
1457 /* ADDRESSABLE flag is not defined for public symbols. */
1458 TREE_ADDRESSABLE (decl
) = 1;
1459 TREE_STATIC (decl
) = 1;
1462 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1464 DECL_COMDAT (decl
) = 0;
1465 DECL_WEAK (decl
) = 0;
1466 DECL_EXTERNAL (decl
) = 0;
1467 DECL_VISIBILITY_SPECIFIED (decl
) = 0;
1468 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
1469 TREE_PUBLIC (decl
) = 0;
1470 DECL_DLLIMPORT_P (decl
) = 0;
1471 if (!DECL_RTL_SET_P (decl
))
1474 /* Update rtl flags. */
1475 make_decl_rtl (decl
);
1477 rtl
= DECL_RTL (decl
);
1481 symbol
= XEXP (rtl
, 0);
1482 if (GET_CODE (symbol
) != SYMBOL_REF
)
1485 SYMBOL_REF_WEAK (symbol
) = DECL_WEAK (decl
);
1488 /* Copy visibility from N.
1489 This is useful when THIS becomes a transparent alias of N. */
1492 symtab_node::copy_visibility_from (symtab_node
*n
)
1494 gcc_checking_assert (n
->weakref
== weakref
);
1497 for (unsigned i
= 0; iterate_direct_aliases (i
, ref
); i
++)
1499 struct symtab_node
*alias
= ref
->referring
;
1500 if (alias
->transparent_alias
)
1501 alias
->copy_visibility_from (n
);
1506 DECL_COMMON (decl
) = DECL_COMMON (n
->decl
);
1507 /* ADDRESSABLE flag is not defined for public symbols. */
1508 if (TREE_PUBLIC (decl
) && !TREE_PUBLIC (n
->decl
))
1509 TREE_ADDRESSABLE (decl
) = 1;
1510 TREE_STATIC (decl
) = TREE_STATIC (n
->decl
);
1512 else gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1514 DECL_COMDAT (decl
) = DECL_COMDAT (n
->decl
);
1515 DECL_WEAK (decl
) = DECL_WEAK (n
->decl
);
1516 DECL_EXTERNAL (decl
) = DECL_EXTERNAL (n
->decl
);
1517 DECL_VISIBILITY_SPECIFIED (decl
) = DECL_VISIBILITY_SPECIFIED (n
->decl
);
1518 DECL_VISIBILITY (decl
) = DECL_VISIBILITY (n
->decl
);
1519 TREE_PUBLIC (decl
) = TREE_PUBLIC (n
->decl
);
1520 DECL_DLLIMPORT_P (decl
) = DECL_DLLIMPORT_P (n
->decl
);
1521 resolution
= n
->resolution
;
1522 set_comdat_group (n
->get_comdat_group ());
1524 externally_visible
= n
->externally_visible
;
1525 if (!DECL_RTL_SET_P (decl
))
1528 /* Update rtl flags. */
1529 make_decl_rtl (decl
);
1531 rtx rtl
= DECL_RTL (decl
);
1535 rtx symbol
= XEXP (rtl
, 0);
1536 if (GET_CODE (symbol
) != SYMBOL_REF
)
1539 SYMBOL_REF_WEAK (symbol
) = DECL_WEAK (decl
);
1542 /* Walk the alias chain to return the symbol NODE is alias of.
1543 If NODE is not an alias, return NODE.
1544 Assumes NODE is known to be alias. */
1547 symtab_node::ultimate_alias_target_1 (enum availability
*availability
,
1550 bool transparent_p
= false;
1552 /* To determine visibility of the target, we follow ELF semantic of aliases.
1553 Here alias is an alternative assembler name of a given definition. Its
1554 availability prevails the availability of its target (i.e. static alias of
1555 weak definition is available.
1557 Transparent alias is just alternative name of a given symbol used within
1558 one compilation unit and is translated prior hitting the object file. It
1559 inherits the visibility of its target.
1560 Weakref is a different animal (and noweak definition is weak).
1562 If we ever get into supporting targets with different semantics, a target
1563 hook will be needed here. */
1567 transparent_p
= transparent_alias
;
1569 *availability
= get_availability (ref
);
1571 *availability
= AVAIL_NOT_AVAILABLE
;
1574 symtab_node
*node
= this;
1577 if (node
->alias
&& node
->analyzed
)
1578 node
= node
->get_alias_target ();
1581 if (!availability
|| (!transparent_p
&& node
->analyzed
))
1583 else if (node
->analyzed
&& !node
->transparent_alias
)
1584 *availability
= node
->get_availability (ref
);
1586 *availability
= AVAIL_NOT_AVAILABLE
;
1589 if (node
&& availability
&& transparent_p
1590 && node
->transparent_alias
)
1592 *availability
= node
->get_availability (ref
);
1593 transparent_p
= false;
1597 *availability
= AVAIL_NOT_AVAILABLE
;
1601 /* C++ FE sometimes change linkage flags after producing same body aliases.
1603 FIXME: C++ produce implicit aliases for virtual functions and vtables that
1604 are obviously equivalent. The way it is doing so is however somewhat
1605 kludgy and interferes with the visibility code. As a result we need to
1606 copy the visibility from the target to get things right. */
1609 symtab_node::fixup_same_cpp_alias_visibility (symtab_node
*target
)
1611 if (is_a
<cgraph_node
*> (this))
1613 DECL_DECLARED_INLINE_P (decl
)
1614 = DECL_DECLARED_INLINE_P (target
->decl
);
1615 DECL_DISREGARD_INLINE_LIMITS (decl
)
1616 = DECL_DISREGARD_INLINE_LIMITS (target
->decl
);
1618 /* FIXME: It is not really clear why those flags should not be copied for
1622 DECL_WEAK (decl
) = DECL_WEAK (target
->decl
);
1623 DECL_EXTERNAL (decl
) = DECL_EXTERNAL (target
->decl
);
1624 DECL_VISIBILITY (decl
) = DECL_VISIBILITY (target
->decl
);
1626 if (TREE_PUBLIC (decl
))
1630 DECL_EXTERNAL (decl
) = DECL_EXTERNAL (target
->decl
);
1631 DECL_COMDAT (decl
) = DECL_COMDAT (target
->decl
);
1632 group
= target
->get_comdat_group ();
1633 set_comdat_group (group
);
1634 if (group
&& !same_comdat_group
)
1635 add_to_same_comdat_group (target
);
1637 externally_visible
= target
->externally_visible
;
1640 /* Set section, do not recurse into aliases.
1641 When one wants to change section of a symbol and its aliases,
1645 symtab_node::set_section_for_node (const char *section
)
1647 const char *current
= get_section ();
1649 if (current
== section
1650 || (current
&& section
1651 && !strcmp (current
, section
)))
1654 release_section_hash_entry (x_section
);
1658 implicit_section
= false;
1661 if (!symtab
->section_hash
)
1662 symtab
->section_hash
= hash_table
<section_name_hasher
>::create_ggc (10);
1663 section_hash_entry
**slot
= symtab
->section_hash
->find_slot_with_hash
1664 (section
, htab_hash_string (section
), INSERT
);
1666 x_section
= retain_section_hash_entry (*slot
);
1669 int len
= strlen (section
);
1670 *slot
= x_section
= ggc_cleared_alloc
<section_hash_entry
> ();
1671 x_section
->ref_count
= 1;
1672 x_section
->name
= ggc_vec_alloc
<char> (len
+ 1);
1673 memcpy (x_section
->name
, section
, len
+ 1);
1677 /* Set the section of node THIS to be the same as the section
1678 of node OTHER. Keep reference counts of the sections
1679 up-to-date as needed. */
1682 symtab_node::set_section_for_node (const symtab_node
&other
)
1684 if (x_section
== other
.x_section
)
1686 if (get_section () && other
.get_section ())
1687 gcc_checking_assert (strcmp (get_section (), other
.get_section ()) != 0);
1688 release_section_hash_entry (x_section
);
1689 if (other
.x_section
)
1690 x_section
= retain_section_hash_entry (other
.x_section
);
1694 implicit_section
= false;
1698 /* Workers for set_section. */
1701 symtab_node::set_section_from_string (symtab_node
*n
, void *s
)
1703 n
->set_section_for_node ((char *)s
);
1707 /* Set the section of node N to be the same as the section
1711 symtab_node::set_section_from_node (symtab_node
*n
, void *o
)
1713 const symtab_node
&other
= *static_cast<const symtab_node
*> (o
);
1714 n
->set_section_for_node (other
);
1718 /* Set section of symbol and its aliases. */
1721 symtab_node::set_section (const char *section
)
1723 gcc_assert (!this->alias
|| !this->analyzed
);
1724 call_for_symbol_and_aliases
1725 (symtab_node::set_section_from_string
, const_cast<char *>(section
), true);
1729 symtab_node::set_section (const symtab_node
&other
)
1731 call_for_symbol_and_aliases
1732 (symtab_node::set_section_from_node
, const_cast<symtab_node
*>(&other
), true);
1735 /* Return the initialization priority. */
1738 symtab_node::get_init_priority ()
1740 if (!this->in_init_priority_hash
)
1741 return DEFAULT_INIT_PRIORITY
;
1743 symbol_priority_map
*h
= symtab
->init_priority_hash
->get (this);
1744 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
1747 /* Return the finalization priority. */
1750 cgraph_node::get_fini_priority ()
1752 if (!this->in_init_priority_hash
)
1753 return DEFAULT_INIT_PRIORITY
;
1754 symbol_priority_map
*h
= symtab
->init_priority_hash
->get (this);
1755 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
1758 /* Return the initialization and finalization priority information for
1759 DECL. If there is no previous priority information, a freshly
1760 allocated structure is returned. */
1762 symbol_priority_map
*
1763 symtab_node::priority_info (void)
1765 if (!symtab
->init_priority_hash
)
1766 symtab
->init_priority_hash
= hash_map
<symtab_node
*, symbol_priority_map
>::create_ggc (13);
1769 symbol_priority_map
*h
1770 = &symtab
->init_priority_hash
->get_or_insert (this, &existed
);
1773 h
->init
= DEFAULT_INIT_PRIORITY
;
1774 h
->fini
= DEFAULT_INIT_PRIORITY
;
1775 in_init_priority_hash
= true;
1781 /* Set initialization priority to PRIORITY. */
1784 symtab_node::set_init_priority (priority_type priority
)
1786 symbol_priority_map
*h
;
1788 if (is_a
<cgraph_node
*> (this))
1789 gcc_assert (DECL_STATIC_CONSTRUCTOR (this->decl
));
1791 if (priority
== DEFAULT_INIT_PRIORITY
)
1793 gcc_assert (get_init_priority() == priority
);
1796 h
= priority_info ();
1800 /* Set finalization priority to PRIORITY. */
1803 cgraph_node::set_fini_priority (priority_type priority
)
1805 symbol_priority_map
*h
;
1807 gcc_assert (DECL_STATIC_DESTRUCTOR (this->decl
));
1809 if (priority
== DEFAULT_INIT_PRIORITY
)
1811 gcc_assert (get_fini_priority() == priority
);
1814 h
= priority_info ();
1818 /* Worker for symtab_resolve_alias. */
1821 symtab_node::set_implicit_section (symtab_node
*n
,
1822 void *data ATTRIBUTE_UNUSED
)
1824 n
->implicit_section
= true;
1828 /* Add reference recording that symtab node is alias of TARGET.
1829 The function can fail in the case of aliasing cycles; in this case
1830 it returns false. */
1833 symtab_node::resolve_alias (symtab_node
*target
, bool transparent
)
1837 gcc_assert (!analyzed
&& !ref_list
.references
.length ());
1839 /* Never let cycles to creep into the symbol table alias references;
1840 those will make alias walkers to be infinite. */
1841 for (n
= target
; n
&& n
->alias
;
1842 n
= n
->analyzed
? n
->get_alias_target () : NULL
)
1845 if (is_a
<cgraph_node
*> (this))
1846 error ("function %q+D part of alias cycle", decl
);
1847 else if (is_a
<varpool_node
*> (this))
1848 error ("variable %q+D part of alias cycle", decl
);
1855 /* "analyze" the node - i.e. mark the reference. */
1859 transparent
|= transparent_alias
;
1860 transparent_alias
= transparent
;
1862 while (target
->transparent_alias
&& target
->analyzed
)
1863 target
= target
->get_alias_target ();
1864 create_reference (target
, IPA_REF_ALIAS
, NULL
);
1866 /* Add alias into the comdat group of its target unless it is already there. */
1867 if (same_comdat_group
)
1868 remove_from_same_comdat_group ();
1869 set_comdat_group (NULL
);
1870 if (target
->get_comdat_group ())
1871 add_to_same_comdat_group (target
);
1873 if ((get_section () != target
->get_section ()
1874 || target
->get_comdat_group ()) && get_section () && !implicit_section
)
1876 error ("section of alias %q+D must match section of its target", decl
);
1878 set_section (*target
);
1879 if (target
->implicit_section
)
1880 call_for_symbol_and_aliases (set_implicit_section
, NULL
, true);
1882 /* Alias targets become redundant after alias is resolved into an reference.
1883 We do not want to keep it around or we would have to mind updating them
1884 when renaming symbols. */
1885 alias_target
= NULL
;
1887 if (!transparent
&& cpp_implicit_alias
&& symtab
->state
>= CONSTRUCTION
)
1888 fixup_same_cpp_alias_visibility (target
);
1890 /* If alias has address taken, so does the target. */
1892 target
->ultimate_alias_target ()->address_taken
= true;
1894 /* All non-transparent aliases of THIS are now in fact aliases of TARGET.
1895 If alias is transparent, also all transparent aliases of THIS are now
1897 Also merge same comdat group lists. */
1899 for (unsigned i
= 0; iterate_direct_aliases (i
, ref
);)
1901 struct symtab_node
*alias_alias
= ref
->referring
;
1902 if (alias_alias
->get_comdat_group ())
1904 alias_alias
->remove_from_same_comdat_group ();
1905 alias_alias
->set_comdat_group (NULL
);
1906 if (target
->get_comdat_group ())
1907 alias_alias
->add_to_same_comdat_group (target
);
1909 if ((!alias_alias
->transparent_alias
1910 && !alias_alias
->symver
)
1913 alias_alias
->remove_all_references ();
1914 alias_alias
->create_reference (target
, IPA_REF_ALIAS
, NULL
);
1921 /* Worker searching noninterposable alias. */
1924 symtab_node::noninterposable_alias (symtab_node
*node
, void *data
)
1926 if (!node
->transparent_alias
&& decl_binds_to_current_def_p (node
->decl
))
1928 symtab_node
*fn
= node
->ultimate_alias_target ();
1930 /* Ensure that the alias is well formed this may not be the case
1931 of user defined aliases and currently it is not always the case
1932 of C++ same body aliases (that is a bug). */
1933 if (TREE_TYPE (node
->decl
) != TREE_TYPE (fn
->decl
)
1934 || DECL_CONTEXT (node
->decl
) != DECL_CONTEXT (fn
->decl
)
1935 || (TREE_CODE (node
->decl
) == FUNCTION_DECL
1936 && flags_from_decl_or_type (node
->decl
)
1937 != flags_from_decl_or_type (fn
->decl
))
1938 || DECL_ATTRIBUTES (node
->decl
) != DECL_ATTRIBUTES (fn
->decl
))
1940 *(symtab_node
**)data
= node
;
1946 /* If node cannot be overwriten by static or dynamic linker to point to
1947 different definition, return NODE. Otherwise look for alias with such
1948 property and if none exists, introduce new one. */
1951 symtab_node::noninterposable_alias (void)
1954 symtab_node
*new_node
= NULL
;
1956 /* First try to look up existing alias or base object
1957 (if that is already non-overwritable). */
1958 symtab_node
*node
= ultimate_alias_target ();
1959 gcc_assert (!node
->alias
&& !node
->weakref
);
1960 node
->call_for_symbol_and_aliases (symtab_node::noninterposable_alias
,
1961 (void *)&new_node
, true);
1965 /* If aliases aren't supported by the assembler, fail. */
1966 if (!TARGET_SUPPORTS_ALIASES
)
1968 else if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (node
->decl
)))
1971 /* Otherwise create a new one. */
1972 new_decl
= copy_node (node
->decl
);
1973 DECL_DLLIMPORT_P (new_decl
) = 0;
1974 tree name
= clone_function_name (node
->decl
, "localalias");
1977 unsigned long num
= 0;
1978 /* In the rare case we already have a localalias, but the above
1979 node->call_for_symbol_and_aliases call didn't find any suitable,
1980 iterate until we find one not used yet. */
1981 while (symtab_node::get_for_asmname (name
))
1982 name
= clone_function_name (node
->decl
, "localalias", num
++);
1984 DECL_NAME (new_decl
) = name
;
1985 if (TREE_CODE (new_decl
) == FUNCTION_DECL
)
1986 DECL_STRUCT_FUNCTION (new_decl
) = NULL
;
1987 DECL_INITIAL (new_decl
) = NULL
;
1988 SET_DECL_ASSEMBLER_NAME (new_decl
, DECL_NAME (new_decl
));
1989 SET_DECL_RTL (new_decl
, NULL
);
1991 /* Update the properties. */
1992 DECL_EXTERNAL (new_decl
) = 0;
1993 TREE_PUBLIC (new_decl
) = 0;
1994 DECL_COMDAT (new_decl
) = 0;
1995 DECL_WEAK (new_decl
) = 0;
1997 /* Since the aliases can be added to vtables, keep DECL_VIRTUAL flag. */
1998 DECL_VIRTUAL_P (new_decl
) = DECL_VIRTUAL_P (node
->decl
);
1999 if (TREE_CODE (new_decl
) == FUNCTION_DECL
)
2001 DECL_STATIC_CONSTRUCTOR (new_decl
) = 0;
2002 DECL_STATIC_DESTRUCTOR (new_decl
) = 0;
2003 new_node
= cgraph_node::create_alias (new_decl
, node
->decl
);
2005 cgraph_node
*new_cnode
= dyn_cast
<cgraph_node
*> (new_node
),
2006 *cnode
= dyn_cast
<cgraph_node
*> (node
);
2008 new_cnode
->unit_id
= cnode
->unit_id
;
2009 new_cnode
->merged_comdat
= cnode
->merged_comdat
;
2010 new_cnode
->merged_extern_inline
= cnode
->merged_extern_inline
;
2014 TREE_READONLY (new_decl
) = TREE_READONLY (node
->decl
);
2015 DECL_INITIAL (new_decl
) = error_mark_node
;
2016 new_node
= varpool_node::create_alias (new_decl
, node
->decl
);
2018 new_node
->resolve_alias (node
);
2019 gcc_assert (decl_binds_to_current_def_p (new_decl
)
2020 && targetm
.binds_local_p (new_decl
));
2024 /* Return true if symtab node and TARGET represents
2025 semantically equivalent symbols. */
2028 symtab_node::semantically_equivalent_p (symtab_node
*target
)
2030 enum availability avail
;
2034 /* Equivalent functions are equivalent. */
2035 if (decl
== target
->decl
)
2038 /* If symbol is not overwritable by different implementation,
2039 walk to the base object it defines. */
2040 ba
= ultimate_alias_target (&avail
);
2041 if (avail
>= AVAIL_AVAILABLE
)
2048 bb
= target
->ultimate_alias_target (&avail
);
2049 if (avail
>= AVAIL_AVAILABLE
)
2059 /* Classify symbol symtab node for partitioning. */
2061 enum symbol_partitioning_class
2062 symtab_node::get_partitioning_class (void)
2064 /* Inline clones are always duplicated.
2065 This include external declarations. */
2066 cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this);
2068 if (DECL_ABSTRACT_P (decl
))
2069 return SYMBOL_EXTERNAL
;
2071 if (cnode
&& (cnode
->inlined_to
|| cnode
->declare_variant_alt
))
2072 return SYMBOL_DUPLICATE
;
2074 /* Transparent aliases are always duplicated. */
2075 if (transparent_alias
)
2076 return definition
? SYMBOL_DUPLICATE
: SYMBOL_EXTERNAL
;
2078 /* External declarations are external. */
2079 if (DECL_EXTERNAL (decl
))
2080 return SYMBOL_EXTERNAL
;
2082 /* Even static aliases of external functions as external. Those can happen
2083 when COMDAT got resolved to non-IL implementation. */
2084 if (alias
&& DECL_EXTERNAL (ultimate_alias_target ()->decl
))
2085 return SYMBOL_EXTERNAL
;
2087 if (varpool_node
*vnode
= dyn_cast
<varpool_node
*> (this))
2089 if (alias
&& definition
&& !ultimate_alias_target ()->definition
)
2090 return SYMBOL_EXTERNAL
;
2091 /* Constant pool references use local symbol names that cannot
2092 be promoted global. We should never put into a constant pool
2093 objects that cannot be duplicated across partitions. */
2094 if (DECL_IN_CONSTANT_POOL (decl
))
2095 return SYMBOL_DUPLICATE
;
2096 if (DECL_HARD_REGISTER (decl
))
2097 return SYMBOL_DUPLICATE
;
2098 gcc_checking_assert (vnode
->definition
);
2100 /* Functions that are cloned may stay in callgraph even if they are unused.
2101 Handle them as external; compute_ltrans_boundary take care to make
2102 proper things to happen (i.e. to make them appear in the boundary but
2103 with body streamed, so clone can me materialized). */
2104 else if (!dyn_cast
<cgraph_node
*> (this)->function_symbol ()->definition
)
2105 return SYMBOL_EXTERNAL
;
2107 /* Linker discardable symbols are duplicated to every use unless they are
2109 if (DECL_ONE_ONLY (decl
)
2112 && !used_from_object_file_p ())
2113 return SYMBOL_DUPLICATE
;
2115 return SYMBOL_PARTITION
;
2118 /* Return true when symbol is known to be non-zero. */
2121 symtab_node::nonzero_address ()
2123 /* Weakrefs may be NULL when their target is not defined. */
2124 if (alias
&& weakref
)
2128 symtab_node
*target
= ultimate_alias_target ();
2130 if (target
->alias
&& target
->weakref
)
2132 /* We cannot recurse to target::nonzero. It is possible that the
2133 target is used only via the alias.
2134 We may walk references and look for strong use, but we do not know
2135 if this strong use will survive to final binary, so be
2137 ??? Maybe we could do the lookup during late optimization that
2138 could be useful to eliminate the NULL pointer checks in LTO
2140 if (target
->definition
&& !DECL_EXTERNAL (target
->decl
))
2142 if (target
->resolution
!= LDPR_UNKNOWN
2143 && target
->resolution
!= LDPR_UNDEF
2144 && !target
->can_be_discarded_p ()
2145 && flag_delete_null_pointer_checks
)
2153 /* With !flag_delete_null_pointer_checks we assume that symbols may
2154 bind to NULL. This is on by default on embedded targets only.
2156 Otherwise all non-WEAK symbols must be defined and thus non-NULL or
2157 linking fails. Important case of WEAK we want to do well are comdats,
2158 which also must be defined somewhere.
2160 When parsing, beware the cases when WEAK attribute is added later. */
2161 if ((!DECL_WEAK (decl
) || DECL_COMDAT (decl
))
2162 && flag_delete_null_pointer_checks
)
2164 refuse_visibility_changes
= true;
2168 /* If target is defined and not extern, we know it will be
2169 output and thus it will bind to non-NULL.
2170 Play safe for flag_delete_null_pointer_checks where weak definition may
2171 be re-defined by NULL. */
2172 if (definition
&& !DECL_EXTERNAL (decl
)
2173 && (flag_delete_null_pointer_checks
|| !DECL_WEAK (decl
)))
2175 if (!DECL_WEAK (decl
))
2176 refuse_visibility_changes
= true;
2180 /* As the last resort, check the resolution info. */
2181 if (resolution
!= LDPR_UNKNOWN
2182 && resolution
!= LDPR_UNDEF
2183 && !can_be_discarded_p ()
2184 && flag_delete_null_pointer_checks
)
2189 /* Return 0 if symbol is known to have different address than S2,
2190 Return 1 if symbol is known to have same address as S2,
2191 return -1 otherwise.
2193 If MEMORY_ACCESSED is true, assume that both memory pointer to THIS
2194 and S2 is going to be accessed. This eliminates the situations when
2195 either THIS or S2 is NULL and is useful for comparing bases when deciding
2196 about memory aliasing. */
2198 symtab_node::equal_address_to (symtab_node
*s2
, bool memory_accessed
)
2200 enum availability avail1
, avail2
;
2202 /* A Shortcut: equivalent symbols are always equivalent. */
2206 /* Unwind transparent aliases first; those are always equal to their
2208 if (this->transparent_alias
&& this->analyzed
)
2209 return this->get_alias_target ()->equal_address_to (s2
);
2210 while (s2
->transparent_alias
&& s2
->analyzed
)
2211 s2
= s2
->get_alias_target();
2216 /* For non-interposable aliases, lookup and compare their actual definitions.
2217 Also check if the symbol needs to bind to given definition. */
2218 symtab_node
*rs1
= ultimate_alias_target (&avail1
);
2219 symtab_node
*rs2
= s2
->ultimate_alias_target (&avail2
);
2220 bool binds_local1
= rs1
->analyzed
&& decl_binds_to_current_def_p (this->decl
);
2221 bool binds_local2
= rs2
->analyzed
&& decl_binds_to_current_def_p (s2
->decl
);
2222 bool really_binds_local1
= binds_local1
;
2223 bool really_binds_local2
= binds_local2
;
2225 /* Addresses of vtables and virtual functions cannot be used by user
2226 code and are used only within speculation. In this case we may make
2227 symbol equivalent to its alias even if interposition may break this
2228 rule. Doing so will allow us to turn speculative inlining into
2229 non-speculative more aggressively. */
2230 if (DECL_VIRTUAL_P (this->decl
) && avail1
>= AVAIL_AVAILABLE
)
2231 binds_local1
= true;
2232 if (DECL_VIRTUAL_P (s2
->decl
) && avail2
>= AVAIL_AVAILABLE
)
2233 binds_local2
= true;
2235 /* If both definitions are available we know that even if they are bound
2236 to other unit they must be defined same way and therefore we can use
2237 equivalence test. */
2238 if (rs1
!= rs2
&& avail1
>= AVAIL_AVAILABLE
&& avail2
>= AVAIL_AVAILABLE
)
2239 binds_local1
= binds_local2
= true;
2241 if (binds_local1
&& binds_local2
&& rs1
== rs2
)
2243 /* We made use of the fact that alias is not weak. */
2245 refuse_visibility_changes
= true;
2247 s2
->refuse_visibility_changes
= true;
2251 /* If both symbols may resolve to NULL, we cannot really prove them
2253 if (!memory_accessed
&& !nonzero_address () && !s2
->nonzero_address ())
2256 /* Except for NULL, functions and variables never overlap. */
2257 if (TREE_CODE (decl
) != TREE_CODE (s2
->decl
))
2260 /* If one of the symbols is unresolved alias, punt. */
2261 if (rs1
->alias
|| rs2
->alias
)
2264 /* If we have a non-interposable definition of at least one of the symbols
2265 and the other symbol is different, we know other unit cannot interpose
2266 it to the first symbol; all aliases of the definition needs to be
2267 present in the current unit. */
2268 if (((really_binds_local1
|| really_binds_local2
)
2269 /* If we have both definitions and they are different, we know they
2270 will be different even in units they binds to. */
2271 || (binds_local1
&& binds_local2
))
2274 /* We make use of the fact that one symbol is not alias of the other
2275 and that the definition is non-interposable. */
2276 refuse_visibility_changes
= true;
2277 s2
->refuse_visibility_changes
= true;
2278 rs1
->refuse_visibility_changes
= true;
2279 rs2
->refuse_visibility_changes
= true;
2286 /* If the FE tells us at least one of the decls will never be aliased nor
2287 overlapping with other vars in some other way, return 0. */
2289 && (lookup_attribute ("non overlapping", DECL_ATTRIBUTES (decl
))
2290 || lookup_attribute ("non overlapping", DECL_ATTRIBUTES (s2
->decl
))))
2293 /* TODO: Alias oracle basically assume that addresses of global variables
2294 are different unless they are declared as alias of one to another while
2295 the code folding comparisons doesn't.
2296 We probably should be consistent and use this fact here, too, but for
2297 the moment return false only when we are called from the alias oracle.
2298 Return 0 in C constant initializers and C++ manifestly constant
2299 expressions, the likelyhood that different vars will be aliases is
2300 small and returning -1 lets us reject too many initializers. */
2301 if (memory_accessed
|| folding_initializer
)
2307 /* Worker for call_for_symbol_and_aliases. */
2310 symtab_node::call_for_symbol_and_aliases_1 (bool (*callback
) (symtab_node
*,
2313 bool include_overwritable
)
2316 FOR_EACH_ALIAS (this, ref
)
2318 symtab_node
*alias
= ref
->referring
;
2319 if (include_overwritable
2320 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2321 if (alias
->call_for_symbol_and_aliases (callback
, data
,
2322 include_overwritable
))
2328 /* Return true if address of N is possibly compared. */
2331 address_matters_1 (symtab_node
*n
, void *)
2333 struct ipa_ref
*ref
;
2335 if (!n
->address_can_be_compared_p ())
2337 if (n
->externally_visible
|| n
->force_output
)
2340 for (unsigned int i
= 0; n
->iterate_referring (i
, ref
); i
++)
2341 if (ref
->address_matters_p ())
2346 /* Return true if symbol's address may possibly be compared to other
2347 symbol's address. */
2350 symtab_node::address_matters_p ()
2352 gcc_assert (!alias
);
2353 return call_for_symbol_and_aliases (address_matters_1
, NULL
, true);
2356 /* Return true if symbol's alignment may be increased. */
2359 symtab_node::can_increase_alignment_p (void)
2361 symtab_node
*target
= ultimate_alias_target ();
2363 /* For now support only variables. */
2367 /* With -fno-toplevel-reorder we may have already output the constant. */
2368 if (TREE_ASM_WRITTEN (target
->decl
))
2371 /* If target is already placed in an anchor, we cannot touch its
2373 if (DECL_RTL_SET_P (target
->decl
)
2374 && MEM_P (DECL_RTL (target
->decl
))
2375 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (DECL_RTL (target
->decl
), 0)))
2378 /* Constant pool entries may be shared. */
2379 if (DECL_IN_CONSTANT_POOL (target
->decl
))
2382 /* We cannot change alignment of symbols that may bind to symbols
2383 in other translation unit that may contain a definition with lower
2385 if (!decl_binds_to_current_def_p (decl
))
2388 /* When compiling partition, be sure the symbol is not output by other
2391 && (target
->in_other_partition
2392 || target
->get_partitioning_class () == SYMBOL_DUPLICATE
))
2395 /* Do not override the alignment as specified by the ABI when the used
2396 attribute is set. */
2397 if (DECL_PRESERVE_P (decl
) || DECL_PRESERVE_P (target
->decl
))
2400 /* Do not override explicit alignment set by the user when an explicit
2401 section name is also used. This is a common idiom used by many
2402 software projects. */
2403 if (DECL_SECTION_NAME (target
->decl
) != NULL
&& !target
->implicit_section
)
2409 /* Worker for symtab_node::increase_alignment. */
2412 increase_alignment_1 (symtab_node
*n
, void *v
)
2414 unsigned int align
= (size_t)v
;
2415 if (DECL_ALIGN (n
->decl
) < align
2416 && n
->can_increase_alignment_p ())
2418 SET_DECL_ALIGN (n
->decl
, align
);
2419 DECL_USER_ALIGN (n
->decl
) = 1;
2424 /* Increase alignment of THIS to ALIGN. */
2427 symtab_node::increase_alignment (unsigned int align
)
2429 gcc_assert (can_increase_alignment_p () && align
<= MAX_OFILE_ALIGNMENT
);
2430 ultimate_alias_target()->call_for_symbol_and_aliases (increase_alignment_1
,
2431 (void *)(size_t) align
,
2433 gcc_assert (DECL_ALIGN (decl
) >= align
);
2436 /* Helper for symtab_node::definition_alignment. */
2439 get_alignment_1 (symtab_node
*n
, void *v
)
2441 *((unsigned int *)v
) = MAX (*((unsigned int *)v
), DECL_ALIGN (n
->decl
));
2445 /* Return desired alignment of the definition. This is NOT alignment useful
2446 to access THIS, because THIS may be interposable and DECL_ALIGN should
2447 be used instead. It however must be guaranteed when output definition
2451 symtab_node::definition_alignment ()
2453 unsigned int align
= 0;
2454 gcc_assert (!alias
);
2455 call_for_symbol_and_aliases (get_alignment_1
, &align
, true);
2459 /* Return symbol used to separate symbol name from suffix. */
2462 symbol_table::symbol_suffix_separator ()
2464 #ifndef NO_DOT_IN_LABEL
2466 #elif !defined NO_DOLLAR_IN_LABEL
2473 /* Return true when references to this symbol from REF must bind to current
2474 definition in final executable. */
2477 symtab_node::binds_to_current_def_p (symtab_node
*ref
)
2479 if (!definition
&& !in_other_partition
)
2481 if (transparent_alias
)
2483 && get_alias_target()->binds_to_current_def_p (ref
);
2484 cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this);
2485 if (cnode
&& cnode
->ifunc_resolver
)
2487 if (decl_binds_to_current_def_p (decl
))
2490 /* Inline clones always binds locally. */
2491 if (cnode
&& cnode
->inlined_to
)
2494 if (DECL_EXTERNAL (decl
))
2497 gcc_assert (externally_visible
);
2501 cgraph_node
*cref
= dyn_cast
<cgraph_node
*> (ref
);
2503 ref
= cref
->inlined_to
;
2506 /* If this is a reference from symbol itself and there are no aliases, we
2507 may be sure that the symbol was not interposed by something else because
2508 the symbol itself would be unreachable otherwise. This is important
2509 to optimize recursive functions well.
2511 This assumption may be broken by inlining: if symbol is interposable
2512 but the body is available (i.e. declared inline), inliner may make
2513 the body reachable even with interposition. */
2514 if (this == ref
&& !has_aliases_p ()
2516 || symtab
->state
>= IPA_SSA_AFTER_INLINING
2517 || get_availability () >= AVAIL_INTERPOSABLE
))
2521 /* References within one comdat group are always bound in a group. */
2523 && symtab
->state
>= IPA_SSA_AFTER_INLINING
2524 && get_comdat_group ()
2525 && get_comdat_group () == ref
->get_comdat_group ())
2531 /* Return true if symbol should be output to the symbol table. */
2534 symtab_node::output_to_lto_symbol_table_p (void)
2536 /* Only externally visible symbols matter. */
2537 if (!TREE_PUBLIC (decl
))
2539 if (!real_symbol_p ())
2541 /* FIXME: variables probably should not be considered as real symbols at
2543 if (VAR_P (decl
) && DECL_HARD_REGISTER (decl
))
2545 if (TREE_CODE (decl
) == FUNCTION_DECL
&& !definition
2546 && fndecl_built_in_p (decl
))
2548 /* Builtins like those for most math functions have actual implementations
2549 in libraries so make sure to output references into the symbol table to
2550 make those libraries referenced. Note this is incomplete handling for
2551 now and only covers math functions. */
2552 return builtin_with_linkage_p (decl
);
2555 /* We have real symbol that should be in symbol table. However try to trim
2556 down the references to libraries bit more because linker will otherwise
2557 bring unnecessary object files into the final link.
2558 FIXME: The following checks can easily be confused i.e. by self recursive
2559 function or self-referring variable. */
2561 /* We keep external functions in symtab for sake of inlining
2562 and devirtualization. We do not want to see them in symbol table as
2563 references unless they are really used. */
2564 cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (this);
2565 if (cnode
&& (!definition
|| DECL_EXTERNAL (decl
))
2569 /* Ignore all references from external vars initializers - they are not really
2570 part of the compilation unit until they are used by folding. Some symbols,
2571 like references to external construction vtables cannot be referred to at
2572 all. We decide this at can_refer_decl_in_current_unit_p. */
2573 if (!definition
|| DECL_EXTERNAL (decl
))
2576 struct ipa_ref
*ref
;
2577 for (i
= 0; iterate_referring (i
, ref
); i
++)
2579 if (ref
->use
== IPA_REF_ALIAS
)
2581 if (is_a
<cgraph_node
*> (ref
->referring
))
2583 if (!DECL_EXTERNAL (ref
->referring
->decl
))