* g++.dg/debug/dwarf2/ref-3.C: XFAIL AIX.
[official-gcc.git] / gcc / symtab.c
blob73168a8db0933bceb7baa9ef9c7292ae19521dc4
1 /* Symbol table.
2 Copyright (C) 2012-2016 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
10 version.
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
15 for more details.
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/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "target.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "gimple.h"
29 #include "timevar.h"
30 #include "cgraph.h"
31 #include "lto-streamer.h"
32 #include "print-tree.h"
33 #include "varasm.h"
34 #include "langhooks.h"
35 #include "output.h"
36 #include "ipa-utils.h"
37 #include "calls.h"
39 static const char *ipa_ref_use_name[] = {"read","write","addr","alias","chkp"};
41 const char * const ld_plugin_symbol_resolution_names[]=
43 "",
44 "undef",
45 "prevailing_def",
46 "prevailing_def_ironly",
47 "preempted_reg",
48 "preempted_ir",
49 "resolved_ir",
50 "resolved_exec",
51 "resolved_dyn",
52 "prevailing_def_ironly_exp"
55 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at ALIAS
56 until we find an identifier that is not itself a transparent alias. */
58 static inline tree
59 ultimate_transparent_alias_target (tree alias)
61 tree target = alias;
63 while (IDENTIFIER_TRANSPARENT_ALIAS (target))
65 gcc_checking_assert (TREE_CHAIN (target));
66 target = TREE_CHAIN (target);
68 gcc_checking_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
69 && ! TREE_CHAIN (target));
71 return target;
75 /* Hash asmnames ignoring the user specified marks. */
77 hashval_t
78 symbol_table::decl_assembler_name_hash (const_tree asmname)
80 if (IDENTIFIER_POINTER (asmname)[0] == '*')
82 const char *decl_str = IDENTIFIER_POINTER (asmname) + 1;
83 size_t ulp_len = strlen (user_label_prefix);
85 if (ulp_len == 0)
87 else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
88 decl_str += ulp_len;
90 return htab_hash_string (decl_str);
93 return htab_hash_string (IDENTIFIER_POINTER (asmname));
96 /* Return true if assembler names NAME1 and NAME2 leads to the same symbol
97 name. */
99 bool
100 symbol_table::assembler_names_equal_p (const char *name1, const char *name2)
102 if (name1 != name2)
104 if (name1[0] == '*')
106 size_t ulp_len = strlen (user_label_prefix);
108 name1 ++;
110 if (ulp_len == 0)
112 else if (strncmp (name1, user_label_prefix, ulp_len) == 0)
113 name1 += ulp_len;
114 else
115 return false;
117 if (name2[0] == '*')
119 size_t ulp_len = strlen (user_label_prefix);
121 name2 ++;
123 if (ulp_len == 0)
125 else if (strncmp (name2, user_label_prefix, ulp_len) == 0)
126 name2 += ulp_len;
127 else
128 return false;
130 return !strcmp (name1, name2);
132 return true;
135 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
137 bool
138 symbol_table::decl_assembler_name_equal (tree decl, const_tree asmname)
140 tree decl_asmname = DECL_ASSEMBLER_NAME (decl);
141 const char *decl_str;
142 const char *asmname_str;
144 if (decl_asmname == asmname)
145 return true;
147 decl_str = IDENTIFIER_POINTER (decl_asmname);
148 asmname_str = IDENTIFIER_POINTER (asmname);
149 return assembler_names_equal_p (decl_str, asmname_str);
153 /* Returns nonzero if P1 and P2 are equal. */
155 /* Insert NODE to assembler name hash. */
157 void
158 symbol_table::insert_to_assembler_name_hash (symtab_node *node,
159 bool with_clones)
161 if (is_a <varpool_node *> (node) && DECL_HARD_REGISTER (node->decl))
162 return;
163 gcc_checking_assert (!node->previous_sharing_asm_name
164 && !node->next_sharing_asm_name);
165 if (assembler_name_hash)
167 symtab_node **aslot;
168 cgraph_node *cnode;
169 tree decl = node->decl;
171 tree name = DECL_ASSEMBLER_NAME (node->decl);
173 /* C++ FE can produce decls without associated assembler name and insert
174 them to symtab to hold section or TLS information. */
175 if (!name)
176 return;
178 hashval_t hash = decl_assembler_name_hash (name);
179 aslot = assembler_name_hash->find_slot_with_hash (name, hash, INSERT);
180 gcc_assert (*aslot != node);
181 node->next_sharing_asm_name = (symtab_node *)*aslot;
182 if (*aslot != NULL)
183 (*aslot)->previous_sharing_asm_name = node;
184 *aslot = node;
186 /* Update also possible inline clones sharing a decl. */
187 cnode = dyn_cast <cgraph_node *> (node);
188 if (cnode && cnode->clones && with_clones)
189 for (cnode = cnode->clones; cnode; cnode = cnode->next_sibling_clone)
190 if (cnode->decl == decl)
191 insert_to_assembler_name_hash (cnode, true);
196 /* Remove NODE from assembler name hash. */
198 void
199 symbol_table::unlink_from_assembler_name_hash (symtab_node *node,
200 bool with_clones)
202 if (assembler_name_hash)
204 cgraph_node *cnode;
205 tree decl = node->decl;
207 if (node->next_sharing_asm_name)
208 node->next_sharing_asm_name->previous_sharing_asm_name
209 = node->previous_sharing_asm_name;
210 if (node->previous_sharing_asm_name)
212 node->previous_sharing_asm_name->next_sharing_asm_name
213 = node->next_sharing_asm_name;
215 else
217 tree name = DECL_ASSEMBLER_NAME (node->decl);
218 symtab_node **slot;
220 if (!name)
221 return;
223 hashval_t hash = decl_assembler_name_hash (name);
224 slot = assembler_name_hash->find_slot_with_hash (name, hash,
225 NO_INSERT);
226 gcc_assert (*slot == node);
227 if (!node->next_sharing_asm_name)
228 assembler_name_hash->clear_slot (slot);
229 else
230 *slot = node->next_sharing_asm_name;
232 node->next_sharing_asm_name = NULL;
233 node->previous_sharing_asm_name = NULL;
235 /* Update also possible inline clones sharing a decl. */
236 cnode = dyn_cast <cgraph_node *> (node);
237 if (cnode && cnode->clones && with_clones)
238 for (cnode = cnode->clones; cnode; cnode = cnode->next_sibling_clone)
239 if (cnode->decl == decl)
240 unlink_from_assembler_name_hash (cnode, true);
244 /* Arrange node to be first in its entry of assembler_name_hash. */
246 void
247 symbol_table::symtab_prevail_in_asm_name_hash (symtab_node *node)
249 unlink_from_assembler_name_hash (node, false);
250 insert_to_assembler_name_hash (node, false);
253 /* Initalize asm name hash unless. */
255 void
256 symbol_table::symtab_initialize_asm_name_hash (void)
258 symtab_node *node;
259 if (!assembler_name_hash)
261 assembler_name_hash = hash_table<asmname_hasher>::create_ggc (10);
262 FOR_EACH_SYMBOL (node)
263 insert_to_assembler_name_hash (node, false);
267 /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */
269 void
270 symbol_table::change_decl_assembler_name (tree decl, tree name)
272 symtab_node *node = NULL;
274 /* We can have user ASM names on things, like global register variables, that
275 are not in the symbol table. */
276 if ((VAR_P (decl) && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
277 || TREE_CODE (decl) == FUNCTION_DECL)
278 node = symtab_node::get (decl);
279 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
281 SET_DECL_ASSEMBLER_NAME (decl, name);
282 if (node)
283 insert_to_assembler_name_hash (node, true);
285 else
287 if (name == DECL_ASSEMBLER_NAME (decl))
288 return;
290 tree alias = (IDENTIFIER_TRANSPARENT_ALIAS (DECL_ASSEMBLER_NAME (decl))
291 ? TREE_CHAIN (DECL_ASSEMBLER_NAME (decl))
292 : NULL);
293 if (node)
294 unlink_from_assembler_name_hash (node, true);
296 const char *old_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
297 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
298 && DECL_RTL_SET_P (decl))
299 warning (0, "%D renamed after being referenced in assembly", decl);
301 SET_DECL_ASSEMBLER_NAME (decl, name);
302 if (alias)
304 IDENTIFIER_TRANSPARENT_ALIAS (name) = 1;
305 TREE_CHAIN (name) = alias;
307 /* If we change assembler name, also all transparent aliases must
308 be updated. There are three kinds - those having same assembler name,
309 those being renamed in varasm.c and weakref being renamed by the
310 assembler. */
311 if (node)
313 insert_to_assembler_name_hash (node, true);
314 ipa_ref *ref;
315 for (unsigned i = 0; node->iterate_direct_aliases (i, ref); i++)
317 struct symtab_node *alias = ref->referring;
318 if (alias->transparent_alias && !alias->weakref
319 && symbol_table::assembler_names_equal_p
320 (old_name, IDENTIFIER_POINTER (
321 DECL_ASSEMBLER_NAME (alias->decl))))
322 change_decl_assembler_name (alias->decl, name);
323 else if (alias->transparent_alias
324 && IDENTIFIER_TRANSPARENT_ALIAS (alias->decl))
326 gcc_assert (TREE_CHAIN (DECL_ASSEMBLER_NAME (alias->decl))
327 && IDENTIFIER_TRANSPARENT_ALIAS
328 (DECL_ASSEMBLER_NAME (alias->decl)));
330 TREE_CHAIN (DECL_ASSEMBLER_NAME (alias->decl)) =
331 ultimate_transparent_alias_target
332 (DECL_ASSEMBLER_NAME (node->decl));
334 #ifdef ASM_OUTPUT_WEAKREF
335 else gcc_assert (!alias->transparent_alias || alias->weakref);
336 #else
337 else gcc_assert (!alias->transparent_alias);
338 #endif
340 gcc_assert (!node->transparent_alias || !node->definition
341 || node->weakref
342 || TREE_CHAIN (DECL_ASSEMBLER_NAME (decl))
343 || symbol_table::assembler_names_equal_p
344 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
345 IDENTIFIER_POINTER
346 (DECL_ASSEMBLER_NAME
347 (node->get_alias_target ()->decl))));
352 /* Hash sections by their names. */
354 hashval_t
355 section_name_hasher::hash (section_hash_entry *n)
357 return htab_hash_string (n->name);
360 /* Return true if section P1 name equals to P2. */
362 bool
363 section_name_hasher::equal (section_hash_entry *n1, const char *name)
365 return n1->name == name || !strcmp (n1->name, name);
368 /* Add node into symbol table. This function is not used directly, but via
369 cgraph/varpool node creation routines. */
371 void
372 symtab_node::register_symbol (void)
374 symtab->register_symbol (this);
376 if (!decl->decl_with_vis.symtab_node)
377 decl->decl_with_vis.symtab_node = this;
379 ref_list.clear ();
381 /* Be sure to do this last; C++ FE might create new nodes via
382 DECL_ASSEMBLER_NAME langhook! */
383 symtab->insert_to_assembler_name_hash (this, false);
386 /* Remove NODE from same comdat group. */
388 void
389 symtab_node::remove_from_same_comdat_group (void)
391 if (same_comdat_group)
393 symtab_node *prev;
394 for (prev = same_comdat_group;
395 prev->same_comdat_group != this;
396 prev = prev->same_comdat_group)
398 if (same_comdat_group == prev)
399 prev->same_comdat_group = NULL;
400 else
401 prev->same_comdat_group = same_comdat_group;
402 same_comdat_group = NULL;
403 set_comdat_group (NULL);
407 /* Remove node from symbol table. This function is not used directly, but via
408 cgraph/varpool node removal routines. */
410 void
411 symtab_node::unregister (void)
413 remove_all_references ();
414 remove_all_referring ();
416 /* Remove reference to section. */
417 set_section_for_node (NULL);
419 remove_from_same_comdat_group ();
421 symtab->unregister (this);
423 /* During LTO symtab merging we temporarily corrupt decl to symtab node
424 hash. */
425 gcc_assert (decl->decl_with_vis.symtab_node || in_lto_p);
426 if (decl->decl_with_vis.symtab_node == this)
428 symtab_node *replacement_node = NULL;
429 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (this))
430 replacement_node = cnode->find_replacement ();
431 decl->decl_with_vis.symtab_node = replacement_node;
433 if (!is_a <varpool_node *> (this) || !DECL_HARD_REGISTER (decl))
434 symtab->unlink_from_assembler_name_hash (this, false);
435 if (in_init_priority_hash)
436 symtab->init_priority_hash->remove (this);
440 /* Remove symbol from symbol table. */
442 void
443 symtab_node::remove (void)
445 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (this))
446 cnode->remove ();
447 else if (varpool_node *vnode = dyn_cast <varpool_node *> (this))
448 vnode->remove ();
451 /* Add NEW_ to the same comdat group that OLD is in. */
453 void
454 symtab_node::add_to_same_comdat_group (symtab_node *old_node)
456 gcc_assert (old_node->get_comdat_group ());
457 gcc_assert (!same_comdat_group);
458 gcc_assert (this != old_node);
460 set_comdat_group (old_node->get_comdat_group ());
461 same_comdat_group = old_node;
462 if (!old_node->same_comdat_group)
463 old_node->same_comdat_group = this;
464 else
466 symtab_node *n;
467 for (n = old_node->same_comdat_group;
468 n->same_comdat_group != old_node;
469 n = n->same_comdat_group)
471 n->same_comdat_group = this;
475 /* Dissolve the same_comdat_group list in which NODE resides. */
477 void
478 symtab_node::dissolve_same_comdat_group_list (void)
480 symtab_node *n = this;
481 symtab_node *next;
483 if (!same_comdat_group)
484 return;
487 next = n->same_comdat_group;
488 n->same_comdat_group = NULL;
489 /* Clear comdat_group for comdat locals, since
490 make_decl_local doesn't. */
491 if (!TREE_PUBLIC (n->decl))
492 n->set_comdat_group (NULL);
493 n = next;
495 while (n != this);
498 /* Return printable assembler name of NODE.
499 This function is used only for debugging. When assembler name
500 is unknown go with identifier name. */
502 const char *
503 symtab_node::asm_name () const
505 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
506 return name ();
507 return IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
510 /* Return printable identifier name. */
512 const char *
513 symtab_node::name () const
515 if (!DECL_NAME (decl))
517 if (DECL_ASSEMBLER_NAME_SET_P (decl))
518 return asm_name ();
519 else
520 return "<unnamed>";
522 return lang_hooks.decl_printable_name (decl, 2);
525 /* Return ipa reference from this symtab_node to
526 REFERED_NODE or REFERED_VARPOOL_NODE. USE_TYPE specify type
527 of the use. */
529 ipa_ref *
530 symtab_node::create_reference (symtab_node *referred_node,
531 enum ipa_ref_use use_type)
533 return create_reference (referred_node, use_type, NULL);
537 /* Return ipa reference from this symtab_node to
538 REFERED_NODE or REFERED_VARPOOL_NODE. USE_TYPE specify type
539 of the use and STMT the statement (if it exists). */
541 ipa_ref *
542 symtab_node::create_reference (symtab_node *referred_node,
543 enum ipa_ref_use use_type, gimple *stmt)
545 ipa_ref *ref = NULL, *ref2 = NULL;
546 ipa_ref_list *list, *list2;
547 ipa_ref_t *old_references;
549 gcc_checking_assert (!stmt || is_a <cgraph_node *> (this));
550 gcc_checking_assert (use_type != IPA_REF_ALIAS || !stmt);
552 list = &ref_list;
553 old_references = vec_safe_address (list->references);
554 vec_safe_grow (list->references, vec_safe_length (list->references) + 1);
555 ref = &list->references->last ();
557 list2 = &referred_node->ref_list;
559 /* IPA_REF_ALIAS is always inserted at the beginning of the list. */
560 if(use_type == IPA_REF_ALIAS)
562 list2->referring.safe_insert (0, ref);
563 ref->referred_index = 0;
565 for (unsigned int i = 1; i < list2->referring.length (); i++)
566 list2->referring[i]->referred_index = i;
568 else
570 list2->referring.safe_push (ref);
571 ref->referred_index = list2->referring.length () - 1;
574 ref->referring = this;
575 ref->referred = referred_node;
576 ref->stmt = stmt;
577 ref->lto_stmt_uid = 0;
578 ref->use = use_type;
579 ref->speculative = 0;
581 /* If vector was moved in memory, update pointers. */
582 if (old_references != list->references->address ())
584 int i;
585 for (i = 0; iterate_reference(i, ref2); i++)
586 ref2->referred_ref_list ()->referring[ref2->referred_index] = ref2;
588 return ref;
591 /* If VAL is a reference to a function or a variable, add a reference from
592 this symtab_node to the corresponding symbol table node. USE_TYPE specify
593 type of the use and STMT the statement (if it exists). Return the new
594 reference or NULL if none was created. */
596 ipa_ref *
597 symtab_node::maybe_create_reference (tree val, enum ipa_ref_use use_type,
598 gimple *stmt)
600 STRIP_NOPS (val);
601 if (TREE_CODE (val) != ADDR_EXPR)
602 return NULL;
603 val = get_base_var (val);
604 if (val && VAR_OR_FUNCTION_DECL_P (val))
606 symtab_node *referred = symtab_node::get (val);
607 gcc_checking_assert (referred);
608 return create_reference (referred, use_type, stmt);
610 return NULL;
613 /* Clone all references from symtab NODE to this symtab_node. */
615 void
616 symtab_node::clone_references (symtab_node *node)
618 ipa_ref *ref = NULL, *ref2 = NULL;
619 int i;
620 for (i = 0; node->iterate_reference (i, ref); i++)
622 bool speculative = ref->speculative;
623 unsigned int stmt_uid = ref->lto_stmt_uid;
625 ref2 = create_reference (ref->referred, ref->use, ref->stmt);
626 ref2->speculative = speculative;
627 ref2->lto_stmt_uid = stmt_uid;
631 /* Clone all referring from symtab NODE to this symtab_node. */
633 void
634 symtab_node::clone_referring (symtab_node *node)
636 ipa_ref *ref = NULL, *ref2 = NULL;
637 int i;
638 for (i = 0; node->iterate_referring(i, ref); i++)
640 bool speculative = ref->speculative;
641 unsigned int stmt_uid = ref->lto_stmt_uid;
643 ref2 = ref->referring->create_reference (this, ref->use, ref->stmt);
644 ref2->speculative = speculative;
645 ref2->lto_stmt_uid = stmt_uid;
649 /* Clone reference REF to this symtab_node and set its stmt to STMT. */
651 ipa_ref *
652 symtab_node::clone_reference (ipa_ref *ref, gimple *stmt)
654 bool speculative = ref->speculative;
655 unsigned int stmt_uid = ref->lto_stmt_uid;
656 ipa_ref *ref2;
658 ref2 = create_reference (ref->referred, ref->use, stmt);
659 ref2->speculative = speculative;
660 ref2->lto_stmt_uid = stmt_uid;
661 return ref2;
664 /* Find the structure describing a reference to REFERRED_NODE
665 and associated with statement STMT. */
667 ipa_ref *
668 symtab_node::find_reference (symtab_node *referred_node,
669 gimple *stmt, unsigned int lto_stmt_uid)
671 ipa_ref *r = NULL;
672 int i;
674 for (i = 0; iterate_reference (i, r); i++)
675 if (r->referred == referred_node
676 && !r->speculative
677 && ((stmt && r->stmt == stmt)
678 || (lto_stmt_uid && r->lto_stmt_uid == lto_stmt_uid)
679 || (!stmt && !lto_stmt_uid && !r->stmt && !r->lto_stmt_uid)))
680 return r;
681 return NULL;
684 /* Remove all references that are associated with statement STMT. */
686 void
687 symtab_node::remove_stmt_references (gimple *stmt)
689 ipa_ref *r = NULL;
690 int i = 0;
692 while (iterate_reference (i, r))
693 if (r->stmt == stmt)
694 r->remove_reference ();
695 else
696 i++;
699 /* Remove all stmt references in non-speculative references.
700 Those are not maintained during inlining & clonning.
701 The exception are speculative references that are updated along
702 with callgraph edges associated with them. */
704 void
705 symtab_node::clear_stmts_in_references (void)
707 ipa_ref *r = NULL;
708 int i;
710 for (i = 0; iterate_reference (i, r); i++)
711 if (!r->speculative)
713 r->stmt = NULL;
714 r->lto_stmt_uid = 0;
718 /* Remove all references in ref list. */
720 void
721 symtab_node::remove_all_references (void)
723 while (vec_safe_length (ref_list.references))
724 ref_list.references->last ().remove_reference ();
725 vec_free (ref_list.references);
728 /* Remove all referring items in ref list. */
730 void
731 symtab_node::remove_all_referring (void)
733 while (ref_list.referring.length ())
734 ref_list.referring.last ()->remove_reference ();
735 ref_list.referring.release ();
738 /* Dump references in ref list to FILE. */
740 void
741 symtab_node::dump_references (FILE *file)
743 ipa_ref *ref = NULL;
744 int i;
745 for (i = 0; iterate_reference (i, ref); i++)
747 fprintf (file, "%s/%i (%s)",
748 ref->referred->asm_name (),
749 ref->referred->order,
750 ipa_ref_use_name [ref->use]);
751 if (ref->speculative)
752 fprintf (file, " (speculative)");
754 fprintf (file, "\n");
757 /* Dump referring in list to FILE. */
759 void
760 symtab_node::dump_referring (FILE *file)
762 ipa_ref *ref = NULL;
763 int i;
764 for (i = 0; iterate_referring(i, ref); i++)
766 fprintf (file, "%s/%i (%s)",
767 ref->referring->asm_name (),
768 ref->referring->order,
769 ipa_ref_use_name [ref->use]);
770 if (ref->speculative)
771 fprintf (file, " (speculative)");
773 fprintf (file, "\n");
776 static const char * const symtab_type_names[] = {"symbol", "function", "variable"};
778 /* Dump base fields of symtab nodes to F. Not to be used directly. */
780 void
781 symtab_node::dump_base (FILE *f)
783 static const char * const visibility_types[] = {
784 "default", "protected", "hidden", "internal"
787 fprintf (f, "%s/%i (%s)", asm_name (), order, name ());
788 dump_addr (f, " @", (void *)this);
789 fprintf (f, "\n Type: %s", symtab_type_names[type]);
791 if (definition)
792 fprintf (f, " definition");
793 if (analyzed)
794 fprintf (f, " analyzed");
795 if (alias)
796 fprintf (f, " alias");
797 if (transparent_alias)
798 fprintf (f, " transparent_alias");
799 if (weakref)
800 fprintf (f, " weakref");
801 if (cpp_implicit_alias)
802 fprintf (f, " cpp_implicit_alias");
803 if (alias_target)
804 fprintf (f, " target:%s",
805 DECL_P (alias_target)
806 ? IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME
807 (alias_target))
808 : IDENTIFIER_POINTER (alias_target));
809 if (body_removed)
810 fprintf (f, "\n Body removed by symtab_remove_unreachable_nodes");
811 fprintf (f, "\n Visibility:");
812 if (in_other_partition)
813 fprintf (f, " in_other_partition");
814 if (used_from_other_partition)
815 fprintf (f, " used_from_other_partition");
816 if (force_output)
817 fprintf (f, " force_output");
818 if (forced_by_abi)
819 fprintf (f, " forced_by_abi");
820 if (externally_visible)
821 fprintf (f, " externally_visible");
822 if (no_reorder)
823 fprintf (f, " no_reorder");
824 if (resolution != LDPR_UNKNOWN)
825 fprintf (f, " %s",
826 ld_plugin_symbol_resolution_names[(int)resolution]);
827 if (TREE_ASM_WRITTEN (decl))
828 fprintf (f, " asm_written");
829 if (DECL_EXTERNAL (decl))
830 fprintf (f, " external");
831 if (TREE_PUBLIC (decl))
832 fprintf (f, " public");
833 if (DECL_COMMON (decl))
834 fprintf (f, " common");
835 if (DECL_WEAK (decl))
836 fprintf (f, " weak");
837 if (DECL_DLLIMPORT_P (decl))
838 fprintf (f, " dll_import");
839 if (DECL_COMDAT (decl))
840 fprintf (f, " comdat");
841 if (get_comdat_group ())
842 fprintf (f, " comdat_group:%s",
843 IDENTIFIER_POINTER (get_comdat_group_id ()));
844 if (DECL_ONE_ONLY (decl))
845 fprintf (f, " one_only");
846 if (get_section ())
847 fprintf (f, " section:%s",
848 get_section ());
849 if (implicit_section)
850 fprintf (f," (implicit_section)");
851 if (DECL_VISIBILITY_SPECIFIED (decl))
852 fprintf (f, " visibility_specified");
853 if (DECL_VISIBILITY (decl))
854 fprintf (f, " visibility:%s",
855 visibility_types [DECL_VISIBILITY (decl)]);
856 if (DECL_VIRTUAL_P (decl))
857 fprintf (f, " virtual");
858 if (DECL_ARTIFICIAL (decl))
859 fprintf (f, " artificial");
860 if (TREE_CODE (decl) == FUNCTION_DECL)
862 if (DECL_STATIC_CONSTRUCTOR (decl))
863 fprintf (f, " constructor");
864 if (DECL_STATIC_DESTRUCTOR (decl))
865 fprintf (f, " destructor");
867 fprintf (f, "\n");
869 if (same_comdat_group)
870 fprintf (f, " Same comdat group as: %s/%i\n",
871 same_comdat_group->asm_name (),
872 same_comdat_group->order);
873 if (next_sharing_asm_name)
874 fprintf (f, " next sharing asm name: %i\n",
875 next_sharing_asm_name->order);
876 if (previous_sharing_asm_name)
877 fprintf (f, " previous sharing asm name: %i\n",
878 previous_sharing_asm_name->order);
880 if (address_taken)
881 fprintf (f, " Address is taken.\n");
882 if (aux)
884 fprintf (f, " Aux:");
885 dump_addr (f, " @", (void *)aux);
888 fprintf (f, " References: ");
889 dump_references (f);
890 fprintf (f, " Referring: ");
891 dump_referring (f);
892 if (lto_file_data)
893 fprintf (f, " Read from file: %s\n",
894 lto_file_data->file_name);
897 /* Dump symtab node to F. */
899 void
900 symtab_node::dump (FILE *f)
902 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (this))
903 cnode->dump (f);
904 else if (varpool_node *vnode = dyn_cast <varpool_node *> (this))
905 vnode->dump (f);
908 /* Dump symbol table to F. */
910 void
911 symtab_node::dump_table (FILE *f)
913 symtab_node *node;
914 fprintf (f, "Symbol table:\n\n");
915 FOR_EACH_SYMBOL (node)
916 node->dump (f);
920 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
921 Return NULL if there's no such node. */
923 symtab_node *
924 symtab_node::get_for_asmname (const_tree asmname)
926 symtab_node *node;
928 symtab->symtab_initialize_asm_name_hash ();
929 hashval_t hash = symtab->decl_assembler_name_hash (asmname);
930 symtab_node **slot
931 = symtab->assembler_name_hash->find_slot_with_hash (asmname, hash,
932 NO_INSERT);
934 if (slot)
936 node = *slot;
937 return node;
939 return NULL;
942 /* Dump symtab node NODE to stderr. */
944 DEBUG_FUNCTION void
945 symtab_node::debug (void)
947 dump (stderr);
950 /* Verify common part of symtab nodes. */
952 DEBUG_FUNCTION bool
953 symtab_node::verify_base (void)
955 bool error_found = false;
956 symtab_node *hashed_node;
958 if (is_a <cgraph_node *> (this))
960 if (TREE_CODE (decl) != FUNCTION_DECL)
962 error ("function symbol is not function");
963 error_found = true;
966 else if (is_a <varpool_node *> (this))
968 if (!VAR_P (decl))
970 error ("variable symbol is not variable");
971 error_found = true;
974 else
976 error ("node has unknown type");
977 error_found = true;
980 if (symtab->state != LTO_STREAMING)
982 hashed_node = symtab_node::get (decl);
983 if (!hashed_node)
985 error ("node not found node->decl->decl_with_vis.symtab_node");
986 error_found = true;
988 if (hashed_node != this
989 && (!is_a <cgraph_node *> (this)
990 || !dyn_cast <cgraph_node *> (this)->clone_of
991 || dyn_cast <cgraph_node *> (this)->clone_of->decl != decl))
993 error ("node differs from node->decl->decl_with_vis.symtab_node");
994 error_found = true;
997 if (symtab->assembler_name_hash)
999 hashed_node = symtab_node::get_for_asmname (DECL_ASSEMBLER_NAME (decl));
1000 if (hashed_node && hashed_node->previous_sharing_asm_name)
1002 error ("assembler name hash list corrupted");
1003 error_found = true;
1005 while (hashed_node)
1007 if (hashed_node == this)
1008 break;
1009 hashed_node = hashed_node->next_sharing_asm_name;
1011 if (!hashed_node
1012 && !(is_a <varpool_node *> (this)
1013 && DECL_HARD_REGISTER (decl)))
1015 error ("node not found in symtab assembler name hash");
1016 error_found = true;
1019 if (previous_sharing_asm_name
1020 && previous_sharing_asm_name->next_sharing_asm_name != this)
1022 error ("double linked list of assembler names corrupted");
1023 error_found = true;
1025 if (body_removed && definition)
1027 error ("node has body_removed but is definition");
1028 error_found = true;
1030 if (analyzed && !definition)
1032 error ("node is analyzed byt it is not a definition");
1033 error_found = true;
1035 if (cpp_implicit_alias && !alias)
1037 error ("node is alias but not implicit alias");
1038 error_found = true;
1040 if (alias && !definition && !weakref)
1042 error ("node is alias but not definition");
1043 error_found = true;
1045 if (weakref && !transparent_alias)
1047 error ("node is weakref but not an transparent_alias");
1048 error_found = true;
1050 if (transparent_alias && !alias)
1052 error ("node is transparent_alias but not an alias");
1053 error_found = true;
1055 if (same_comdat_group)
1057 symtab_node *n = same_comdat_group;
1059 if (!n->get_comdat_group ())
1061 error ("node is in same_comdat_group list but has no comdat_group");
1062 error_found = true;
1064 if (n->get_comdat_group () != get_comdat_group ())
1066 error ("same_comdat_group list across different groups");
1067 error_found = true;
1069 if (n->type != type)
1071 error ("mixing different types of symbol in same comdat groups is not supported");
1072 error_found = true;
1074 if (n == this)
1076 error ("node is alone in a comdat group");
1077 error_found = true;
1081 if (!n->same_comdat_group)
1083 error ("same_comdat_group is not a circular list");
1084 error_found = true;
1085 break;
1087 n = n->same_comdat_group;
1089 while (n != this);
1090 if (comdat_local_p ())
1092 ipa_ref *ref = NULL;
1094 for (int i = 0; iterate_referring (i, ref); ++i)
1096 if (!in_same_comdat_group_p (ref->referring))
1098 error ("comdat-local symbol referred to by %s outside its "
1099 "comdat",
1100 identifier_to_locale (ref->referring->name()));
1101 error_found = true;
1106 if (implicit_section && !get_section ())
1108 error ("implicit_section flag is set but section isn't");
1109 error_found = true;
1111 if (get_section () && get_comdat_group ()
1112 && !implicit_section
1113 && !lookup_attribute ("section", DECL_ATTRIBUTES (decl)))
1115 error ("Both section and comdat group is set");
1116 error_found = true;
1118 /* TODO: Add string table for sections, so we do not keep holding duplicated
1119 strings. */
1120 if (alias && definition
1121 && get_section () != get_alias_target ()->get_section ()
1122 && (!get_section()
1123 || !get_alias_target ()->get_section ()
1124 || strcmp (get_section(),
1125 get_alias_target ()->get_section ())))
1127 error ("Alias and target's section differs");
1128 get_alias_target ()->dump (stderr);
1129 error_found = true;
1131 if (alias && definition
1132 && get_comdat_group () != get_alias_target ()->get_comdat_group ())
1134 error ("Alias and target's comdat groups differs");
1135 get_alias_target ()->dump (stderr);
1136 error_found = true;
1138 if (transparent_alias && definition && !weakref)
1140 symtab_node *to = get_alias_target ();
1141 const char *name1
1142 = IDENTIFIER_POINTER (
1143 ultimate_transparent_alias_target (DECL_ASSEMBLER_NAME (decl)));
1144 const char *name2
1145 = IDENTIFIER_POINTER (
1146 ultimate_transparent_alias_target (DECL_ASSEMBLER_NAME (to->decl)));
1147 if (!symbol_table::assembler_names_equal_p (name1, name2))
1149 error ("Transparent alias and target's assembler names differs");
1150 get_alias_target ()->dump (stderr);
1151 error_found = true;
1154 if (transparent_alias && definition
1155 && get_alias_target()->transparent_alias && get_alias_target()->analyzed)
1157 error ("Chained transparent aliases");
1158 get_alias_target ()->dump (stderr);
1159 error_found = true;
1162 return error_found;
1165 /* Verify consistency of NODE. */
1167 DEBUG_FUNCTION void
1168 symtab_node::verify (void)
1170 if (seen_error ())
1171 return;
1173 timevar_push (TV_CGRAPH_VERIFY);
1174 if (cgraph_node *node = dyn_cast <cgraph_node *> (this))
1175 node->verify_node ();
1176 else
1177 if (verify_base ())
1179 debug ();
1180 internal_error ("symtab_node::verify failed");
1182 timevar_pop (TV_CGRAPH_VERIFY);
1185 /* Verify symbol table for internal consistency. */
1187 DEBUG_FUNCTION void
1188 symtab_node::verify_symtab_nodes (void)
1190 symtab_node *node;
1191 hash_map<tree, symtab_node *> comdat_head_map (251);
1193 FOR_EACH_SYMBOL (node)
1195 node->verify ();
1196 if (node->get_comdat_group ())
1198 symtab_node **entry, *s;
1199 bool existed;
1201 entry = &comdat_head_map.get_or_insert (node->get_comdat_group (),
1202 &existed);
1203 if (!existed)
1204 *entry = node;
1205 else if (!DECL_EXTERNAL (node->decl))
1207 for (s = (*entry)->same_comdat_group;
1208 s != NULL && s != node && s != *entry;
1209 s = s->same_comdat_group)
1211 if (!s || s == *entry)
1213 error ("Two symbols with same comdat_group are not linked by "
1214 "the same_comdat_group list.");
1215 (*entry)->debug ();
1216 node->debug ();
1217 internal_error ("symtab_node::verify failed");
1224 /* Make DECL local. FIXME: We shouldn't need to mess with rtl this early,
1225 but other code such as notice_global_symbol generates rtl. */
1227 void
1228 symtab_node::make_decl_local (void)
1230 rtx rtl, symbol;
1232 if (weakref)
1234 weakref = false;
1235 IDENTIFIER_TRANSPARENT_ALIAS (DECL_ASSEMBLER_NAME (decl)) = 0;
1236 TREE_CHAIN (DECL_ASSEMBLER_NAME (decl)) = NULL_TREE;
1237 symtab->change_decl_assembler_name
1238 (decl, DECL_ASSEMBLER_NAME (get_alias_target ()->decl));
1239 DECL_ATTRIBUTES (decl) = remove_attribute ("weakref",
1240 DECL_ATTRIBUTES (decl));
1242 /* Avoid clearing comdat_groups on comdat-local decls. */
1243 else if (TREE_PUBLIC (decl) == 0)
1244 return;
1246 /* Localizing a symbol also make all its transparent aliases local. */
1247 ipa_ref *ref;
1248 for (unsigned i = 0; iterate_direct_aliases (i, ref); i++)
1250 struct symtab_node *alias = ref->referring;
1251 if (alias->transparent_alias)
1252 alias->make_decl_local ();
1255 if (VAR_P (decl))
1257 DECL_COMMON (decl) = 0;
1258 /* ADDRESSABLE flag is not defined for public symbols. */
1259 TREE_ADDRESSABLE (decl) = 1;
1260 TREE_STATIC (decl) = 1;
1262 else gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1264 DECL_COMDAT (decl) = 0;
1265 DECL_WEAK (decl) = 0;
1266 DECL_EXTERNAL (decl) = 0;
1267 DECL_VISIBILITY_SPECIFIED (decl) = 0;
1268 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
1269 TREE_PUBLIC (decl) = 0;
1270 DECL_DLLIMPORT_P (decl) = 0;
1271 if (!DECL_RTL_SET_P (decl))
1272 return;
1274 /* Update rtl flags. */
1275 make_decl_rtl (decl);
1277 rtl = DECL_RTL (decl);
1278 if (!MEM_P (rtl))
1279 return;
1281 symbol = XEXP (rtl, 0);
1282 if (GET_CODE (symbol) != SYMBOL_REF)
1283 return;
1285 SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl);
1288 /* Copy visibility from N.
1289 This is useful when THIS becomes a transparent alias of N. */
1291 void
1292 symtab_node::copy_visibility_from (symtab_node *n)
1294 gcc_checking_assert (n->weakref == weakref);
1296 ipa_ref *ref;
1297 for (unsigned i = 0; iterate_direct_aliases (i, ref); i++)
1299 struct symtab_node *alias = ref->referring;
1300 if (alias->transparent_alias)
1301 alias->copy_visibility_from (n);
1304 if (VAR_P (decl))
1306 DECL_COMMON (decl) = DECL_COMMON (n->decl);
1307 /* ADDRESSABLE flag is not defined for public symbols. */
1308 if (TREE_PUBLIC (decl) && !TREE_PUBLIC (n->decl))
1309 TREE_ADDRESSABLE (decl) = 1;
1310 TREE_STATIC (decl) = TREE_STATIC (n->decl);
1312 else gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1314 DECL_COMDAT (decl) = DECL_COMDAT (n->decl);
1315 DECL_WEAK (decl) = DECL_WEAK (n->decl);
1316 DECL_EXTERNAL (decl) = DECL_EXTERNAL (n->decl);
1317 DECL_VISIBILITY_SPECIFIED (decl) = DECL_VISIBILITY_SPECIFIED (n->decl);
1318 DECL_VISIBILITY (decl) = DECL_VISIBILITY (n->decl);
1319 TREE_PUBLIC (decl) = TREE_PUBLIC (n->decl);
1320 DECL_DLLIMPORT_P (decl) = DECL_DLLIMPORT_P (n->decl);
1321 resolution = n->resolution;
1322 set_comdat_group (n->get_comdat_group ());
1323 call_for_symbol_and_aliases (symtab_node::set_section,
1324 const_cast<char *>(n->get_section ()), true);
1325 externally_visible = n->externally_visible;
1326 if (!DECL_RTL_SET_P (decl))
1327 return;
1329 /* Update rtl flags. */
1330 make_decl_rtl (decl);
1332 rtx rtl = DECL_RTL (decl);
1333 if (!MEM_P (rtl))
1334 return;
1336 rtx symbol = XEXP (rtl, 0);
1337 if (GET_CODE (symbol) != SYMBOL_REF)
1338 return;
1340 SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl);
1343 /* Walk the alias chain to return the symbol NODE is alias of.
1344 If NODE is not an alias, return NODE.
1345 Assumes NODE is known to be alias. */
1347 symtab_node *
1348 symtab_node::ultimate_alias_target_1 (enum availability *availability,
1349 symtab_node *ref)
1351 bool transparent_p = false;
1353 /* To determine visibility of the target, we follow ELF semantic of aliases.
1354 Here alias is an alternative assembler name of a given definition. Its
1355 availability prevails the availability of its target (i.e. static alias of
1356 weak definition is available.
1358 Transaparent alias is just alternative anme of a given symbol used within
1359 one compilation unit and is translated prior hitting the object file. It
1360 inherits the visibility of its target.
1361 Weakref is a different animal (and noweak definition is weak).
1363 If we ever get into supporting targets with different semantics, a target
1364 hook will be needed here. */
1366 if (availability)
1368 transparent_p = transparent_alias;
1369 if (!transparent_p)
1370 *availability = get_availability (ref);
1371 else
1372 *availability = AVAIL_NOT_AVAILABLE;
1375 symtab_node *node = this;
1376 while (node)
1378 if (node->alias && node->analyzed)
1379 node = node->get_alias_target ();
1380 else
1382 if (!availability || (!transparent_p && node->analyzed))
1384 else if (node->analyzed && !node->transparent_alias)
1385 *availability = node->get_availability (ref);
1386 else
1387 *availability = AVAIL_NOT_AVAILABLE;
1388 return node;
1390 if (node && availability && transparent_p
1391 && node->transparent_alias)
1393 *availability = node->get_availability (ref);
1394 transparent_p = false;
1397 if (availability)
1398 *availability = AVAIL_NOT_AVAILABLE;
1399 return NULL;
1402 /* C++ FE sometimes change linkage flags after producing same body aliases.
1404 FIXME: C++ produce implicit aliases for virtual functions and vtables that
1405 are obviously equivalent. The way it is doing so is however somewhat
1406 kludgy and interferes with the visibility code. As a result we need to
1407 copy the visibility from the target to get things right. */
1409 void
1410 symtab_node::fixup_same_cpp_alias_visibility (symtab_node *target)
1412 if (is_a <cgraph_node *> (this))
1414 DECL_DECLARED_INLINE_P (decl)
1415 = DECL_DECLARED_INLINE_P (target->decl);
1416 DECL_DISREGARD_INLINE_LIMITS (decl)
1417 = DECL_DISREGARD_INLINE_LIMITS (target->decl);
1419 /* FIXME: It is not really clear why those flags should not be copied for
1420 functions, too. */
1421 else
1423 DECL_WEAK (decl) = DECL_WEAK (target->decl);
1424 DECL_EXTERNAL (decl) = DECL_EXTERNAL (target->decl);
1425 DECL_VISIBILITY (decl) = DECL_VISIBILITY (target->decl);
1427 if (TREE_PUBLIC (decl))
1429 tree group;
1431 DECL_EXTERNAL (decl) = DECL_EXTERNAL (target->decl);
1432 DECL_COMDAT (decl) = DECL_COMDAT (target->decl);
1433 group = target->get_comdat_group ();
1434 set_comdat_group (group);
1435 if (group && !same_comdat_group)
1436 add_to_same_comdat_group (target);
1438 externally_visible = target->externally_visible;
1441 /* Set section, do not recurse into aliases.
1442 When one wants to change section of symbol and its aliases,
1443 use set_section. */
1445 void
1446 symtab_node::set_section_for_node (const char *section)
1448 const char *current = get_section ();
1449 section_hash_entry **slot;
1451 if (current == section
1452 || (current && section
1453 && !strcmp (current, section)))
1454 return;
1456 if (current)
1458 x_section->ref_count--;
1459 if (!x_section->ref_count)
1461 hashval_t hash = htab_hash_string (x_section->name);
1462 slot = symtab->section_hash->find_slot_with_hash (x_section->name,
1463 hash, INSERT);
1464 ggc_free (x_section);
1465 symtab->section_hash->clear_slot (slot);
1467 x_section = NULL;
1469 if (!section)
1471 implicit_section = false;
1472 return;
1474 if (!symtab->section_hash)
1475 symtab->section_hash = hash_table<section_name_hasher>::create_ggc (10);
1476 slot = symtab->section_hash->find_slot_with_hash (section,
1477 htab_hash_string (section),
1478 INSERT);
1479 if (*slot)
1480 x_section = (section_hash_entry *)*slot;
1481 else
1483 int len = strlen (section);
1484 *slot = x_section = ggc_cleared_alloc<section_hash_entry> ();
1485 x_section->name = ggc_vec_alloc<char> (len + 1);
1486 memcpy (x_section->name, section, len + 1);
1488 x_section->ref_count++;
1491 /* Worker for set_section. */
1493 bool
1494 symtab_node::set_section (symtab_node *n, void *s)
1496 n->set_section_for_node ((char *)s);
1497 return false;
1500 /* Set section of symbol and its aliases. */
1502 void
1503 symtab_node::set_section (const char *section)
1505 gcc_assert (!this->alias);
1506 call_for_symbol_and_aliases
1507 (symtab_node::set_section, const_cast<char *>(section), true);
1510 /* Return the initialization priority. */
1512 priority_type
1513 symtab_node::get_init_priority ()
1515 if (!this->in_init_priority_hash)
1516 return DEFAULT_INIT_PRIORITY;
1518 symbol_priority_map *h = symtab->init_priority_hash->get (this);
1519 return h ? h->init : DEFAULT_INIT_PRIORITY;
1522 /* Return the finalization priority. */
1524 priority_type
1525 cgraph_node::get_fini_priority ()
1527 if (!this->in_init_priority_hash)
1528 return DEFAULT_INIT_PRIORITY;
1529 symbol_priority_map *h = symtab->init_priority_hash->get (this);
1530 return h ? h->fini : DEFAULT_INIT_PRIORITY;
1533 /* Return the initialization and finalization priority information for
1534 DECL. If there is no previous priority information, a freshly
1535 allocated structure is returned. */
1537 symbol_priority_map *
1538 symtab_node::priority_info (void)
1540 if (!symtab->init_priority_hash)
1541 symtab->init_priority_hash = hash_map<symtab_node *, symbol_priority_map>::create_ggc (13);
1543 bool existed;
1544 symbol_priority_map *h
1545 = &symtab->init_priority_hash->get_or_insert (this, &existed);
1546 if (!existed)
1548 h->init = DEFAULT_INIT_PRIORITY;
1549 h->fini = DEFAULT_INIT_PRIORITY;
1550 in_init_priority_hash = true;
1553 return h;
1556 /* Set initialization priority to PRIORITY. */
1558 void
1559 symtab_node::set_init_priority (priority_type priority)
1561 symbol_priority_map *h;
1563 if (is_a <cgraph_node *> (this))
1564 gcc_assert (DECL_STATIC_CONSTRUCTOR (this->decl));
1566 if (priority == DEFAULT_INIT_PRIORITY)
1568 gcc_assert (get_init_priority() == priority);
1569 return;
1571 h = priority_info ();
1572 h->init = priority;
1575 /* Set fialization priority to PRIORITY. */
1577 void
1578 cgraph_node::set_fini_priority (priority_type priority)
1580 symbol_priority_map *h;
1582 gcc_assert (DECL_STATIC_DESTRUCTOR (this->decl));
1584 if (priority == DEFAULT_INIT_PRIORITY)
1586 gcc_assert (get_fini_priority() == priority);
1587 return;
1589 h = priority_info ();
1590 h->fini = priority;
1593 /* Worker for symtab_resolve_alias. */
1595 bool
1596 symtab_node::set_implicit_section (symtab_node *n,
1597 void *data ATTRIBUTE_UNUSED)
1599 n->implicit_section = true;
1600 return false;
1603 /* Add reference recording that symtab node is alias of TARGET.
1604 The function can fail in the case of aliasing cycles; in this case
1605 it returns false. */
1607 bool
1608 symtab_node::resolve_alias (symtab_node *target, bool transparent)
1610 symtab_node *n;
1612 gcc_assert (!analyzed && !vec_safe_length (ref_list.references));
1614 /* Never let cycles to creep into the symbol table alias references;
1615 those will make alias walkers to be infinite. */
1616 for (n = target; n && n->alias;
1617 n = n->analyzed ? n->get_alias_target () : NULL)
1618 if (n == this)
1620 if (is_a <cgraph_node *> (this))
1621 error ("function %q+D part of alias cycle", decl);
1622 else if (is_a <varpool_node *> (this))
1623 error ("variable %q+D part of alias cycle", decl);
1624 else
1625 gcc_unreachable ();
1626 alias = false;
1627 return false;
1630 /* "analyze" the node - i.e. mark the reference. */
1631 definition = true;
1632 alias = true;
1633 analyzed = true;
1634 transparent |= transparent_alias;
1635 transparent_alias = transparent;
1636 if (transparent)
1637 while (target->transparent_alias && target->analyzed)
1638 target = target->get_alias_target ();
1639 create_reference (target, IPA_REF_ALIAS, NULL);
1641 /* Add alias into the comdat group of its target unless it is already there. */
1642 if (same_comdat_group)
1643 remove_from_same_comdat_group ();
1644 set_comdat_group (NULL);
1645 if (target->get_comdat_group ())
1646 add_to_same_comdat_group (target);
1648 if ((get_section () != target->get_section ()
1649 || target->get_comdat_group ()) && get_section () && !implicit_section)
1651 error ("section of alias %q+D must match section of its target", decl);
1653 call_for_symbol_and_aliases (symtab_node::set_section,
1654 const_cast<char *>(target->get_section ()), true);
1655 if (target->implicit_section)
1656 call_for_symbol_and_aliases (set_implicit_section, NULL, true);
1658 /* Alias targets become redundant after alias is resolved into an reference.
1659 We do not want to keep it around or we would have to mind updating them
1660 when renaming symbols. */
1661 alias_target = NULL;
1663 if (!transparent && cpp_implicit_alias && symtab->state >= CONSTRUCTION)
1664 fixup_same_cpp_alias_visibility (target);
1666 /* If alias has address taken, so does the target. */
1667 if (address_taken)
1668 target->ultimate_alias_target ()->address_taken = true;
1670 /* All non-transparent aliases of THIS are now in fact aliases of TARGET.
1671 If alias is transparent, also all transparent aliases of THIS are now
1672 aliases of TARGET.
1673 Also merge same comdat group lists. */
1674 ipa_ref *ref;
1675 for (unsigned i = 0; iterate_direct_aliases (i, ref);)
1677 struct symtab_node *alias_alias = ref->referring;
1678 if (alias_alias->get_comdat_group ())
1680 alias_alias->remove_from_same_comdat_group ();
1681 alias_alias->set_comdat_group (NULL);
1682 if (target->get_comdat_group ())
1683 alias_alias->add_to_same_comdat_group (target);
1685 if (!alias_alias->transparent_alias || transparent)
1687 alias_alias->remove_all_references ();
1688 alias_alias->create_reference (target, IPA_REF_ALIAS, NULL);
1690 else i++;
1692 return true;
1695 /* Worker searching noninterposable alias. */
1697 bool
1698 symtab_node::noninterposable_alias (symtab_node *node, void *data)
1700 if (!node->transparent_alias && decl_binds_to_current_def_p (node->decl))
1702 symtab_node *fn = node->ultimate_alias_target ();
1704 /* Ensure that the alias is well formed this may not be the case
1705 of user defined aliases and currently it is not always the case
1706 of C++ same body aliases (that is a bug). */
1707 if (TREE_TYPE (node->decl) != TREE_TYPE (fn->decl)
1708 || DECL_CONTEXT (node->decl) != DECL_CONTEXT (fn->decl)
1709 || (TREE_CODE (node->decl) == FUNCTION_DECL
1710 && flags_from_decl_or_type (node->decl)
1711 != flags_from_decl_or_type (fn->decl))
1712 || DECL_ATTRIBUTES (node->decl) != DECL_ATTRIBUTES (fn->decl))
1713 return false;
1714 *(symtab_node **)data = node;
1715 return true;
1717 return false;
1720 /* If node can not be overwriten by static or dynamic linker to point to
1721 different definition, return NODE. Otherwise look for alias with such
1722 property and if none exists, introduce new one. */
1724 symtab_node *
1725 symtab_node::noninterposable_alias (void)
1727 tree new_decl;
1728 symtab_node *new_node = NULL;
1730 /* First try to look up existing alias or base object
1731 (if that is already non-overwritable). */
1732 symtab_node *node = ultimate_alias_target ();
1733 gcc_assert (!node->alias && !node->weakref);
1734 node->call_for_symbol_and_aliases (symtab_node::noninterposable_alias,
1735 (void *)&new_node, true);
1736 if (new_node)
1737 return new_node;
1738 #ifndef ASM_OUTPUT_DEF
1739 /* If aliases aren't supported by the assembler, fail. */
1740 return NULL;
1741 #endif
1743 /* Otherwise create a new one. */
1744 new_decl = copy_node (node->decl);
1745 DECL_DLLIMPORT_P (new_decl) = 0;
1746 DECL_NAME (new_decl) = clone_function_name (node->decl, "localalias");
1747 if (TREE_CODE (new_decl) == FUNCTION_DECL)
1748 DECL_STRUCT_FUNCTION (new_decl) = NULL;
1749 DECL_INITIAL (new_decl) = NULL;
1750 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
1751 SET_DECL_RTL (new_decl, NULL);
1753 /* Update the properties. */
1754 DECL_EXTERNAL (new_decl) = 0;
1755 TREE_PUBLIC (new_decl) = 0;
1756 DECL_COMDAT (new_decl) = 0;
1757 DECL_WEAK (new_decl) = 0;
1759 /* Since the aliases can be added to vtables, keep DECL_VIRTUAL flag. */
1760 DECL_VIRTUAL_P (new_decl) = DECL_VIRTUAL_P (node->decl);
1761 if (TREE_CODE (new_decl) == FUNCTION_DECL)
1763 DECL_STATIC_CONSTRUCTOR (new_decl) = 0;
1764 DECL_STATIC_DESTRUCTOR (new_decl) = 0;
1765 new_node = cgraph_node::create_alias (new_decl, node->decl);
1767 else
1769 TREE_READONLY (new_decl) = TREE_READONLY (node->decl);
1770 DECL_INITIAL (new_decl) = error_mark_node;
1771 new_node = varpool_node::create_alias (new_decl, node->decl);
1773 new_node->resolve_alias (node);
1774 gcc_assert (decl_binds_to_current_def_p (new_decl)
1775 && targetm.binds_local_p (new_decl));
1776 return new_node;
1779 /* Return true if symtab node and TARGET represents
1780 semantically equivalent symbols. */
1782 bool
1783 symtab_node::semantically_equivalent_p (symtab_node *target)
1785 enum availability avail;
1786 symtab_node *ba;
1787 symtab_node *bb;
1789 /* Equivalent functions are equivalent. */
1790 if (decl == target->decl)
1791 return true;
1793 /* If symbol is not overwritable by different implementation,
1794 walk to the base object it defines. */
1795 ba = ultimate_alias_target (&avail);
1796 if (avail >= AVAIL_AVAILABLE)
1798 if (target == ba)
1799 return true;
1801 else
1802 ba = this;
1803 bb = target->ultimate_alias_target (&avail);
1804 if (avail >= AVAIL_AVAILABLE)
1806 if (this == bb)
1807 return true;
1809 else
1810 bb = target;
1811 return bb == ba;
1814 /* Classify symbol symtab node for partitioning. */
1816 enum symbol_partitioning_class
1817 symtab_node::get_partitioning_class (void)
1819 /* Inline clones are always duplicated.
1820 This include external delcarations. */
1821 cgraph_node *cnode = dyn_cast <cgraph_node *> (this);
1823 if (DECL_ABSTRACT_P (decl))
1824 return SYMBOL_EXTERNAL;
1826 if (cnode && cnode->global.inlined_to)
1827 return SYMBOL_DUPLICATE;
1829 /* Transparent aliases are always duplicated. */
1830 if (transparent_alias)
1831 return definition ? SYMBOL_DUPLICATE : SYMBOL_EXTERNAL;
1833 /* External declarations are external. */
1834 if (DECL_EXTERNAL (decl))
1835 return SYMBOL_EXTERNAL;
1837 if (varpool_node *vnode = dyn_cast <varpool_node *> (this))
1839 if (alias && definition && !ultimate_alias_target ()->definition)
1840 return SYMBOL_EXTERNAL;
1841 /* Constant pool references use local symbol names that can not
1842 be promoted global. We should never put into a constant pool
1843 objects that can not be duplicated across partitions. */
1844 if (DECL_IN_CONSTANT_POOL (decl))
1845 return SYMBOL_DUPLICATE;
1846 if (DECL_HARD_REGISTER (decl))
1847 return SYMBOL_DUPLICATE;
1848 gcc_checking_assert (vnode->definition);
1850 /* Functions that are cloned may stay in callgraph even if they are unused.
1851 Handle them as external; compute_ltrans_boundary take care to make
1852 proper things to happen (i.e. to make them appear in the boundary but
1853 with body streamed, so clone can me materialized). */
1854 else if (!dyn_cast <cgraph_node *> (this)->function_symbol ()->definition)
1855 return SYMBOL_EXTERNAL;
1857 /* Linker discardable symbols are duplicated to every use unless they are
1858 keyed. */
1859 if (DECL_ONE_ONLY (decl)
1860 && !force_output
1861 && !forced_by_abi
1862 && !used_from_object_file_p ())
1863 return SYMBOL_DUPLICATE;
1865 return SYMBOL_PARTITION;
1868 /* Return true when symbol is known to be non-zero. */
1870 bool
1871 symtab_node::nonzero_address ()
1873 /* Weakrefs may be NULL when their target is not defined. */
1874 if (alias && weakref)
1876 if (analyzed)
1878 symtab_node *target = ultimate_alias_target ();
1880 if (target->alias && target->weakref)
1881 return false;
1882 /* We can not recurse to target::nonzero. It is possible that the
1883 target is used only via the alias.
1884 We may walk references and look for strong use, but we do not know
1885 if this strong use will survive to final binary, so be
1886 conservative here.
1887 ??? Maybe we could do the lookup during late optimization that
1888 could be useful to eliminate the NULL pointer checks in LTO
1889 programs. */
1890 if (target->definition && !DECL_EXTERNAL (target->decl))
1891 return true;
1892 if (target->resolution != LDPR_UNKNOWN
1893 && target->resolution != LDPR_UNDEF
1894 && !target->can_be_discarded_p ()
1895 && flag_delete_null_pointer_checks)
1896 return true;
1897 return false;
1899 else
1900 return false;
1903 /* With !flag_delete_null_pointer_checks we assume that symbols may
1904 bind to NULL. This is on by default on embedded targets only.
1906 Otherwise all non-WEAK symbols must be defined and thus non-NULL or
1907 linking fails. Important case of WEAK we want to do well are comdats.
1908 Those are handled by later check for definition.
1910 When parsing, beware the cases when WEAK attribute is added later. */
1911 if (!DECL_WEAK (decl)
1912 && flag_delete_null_pointer_checks)
1914 refuse_visibility_changes = true;
1915 return true;
1918 /* If target is defined and not extern, we know it will be output and thus
1919 it will bind to non-NULL.
1920 Play safe for flag_delete_null_pointer_checks where weak definition maye
1921 be re-defined by NULL. */
1922 if (definition && !DECL_EXTERNAL (decl)
1923 && (flag_delete_null_pointer_checks || !DECL_WEAK (decl)))
1925 if (!DECL_WEAK (decl))
1926 refuse_visibility_changes = true;
1927 return true;
1930 /* As the last resort, check the resolution info. */
1931 if (resolution != LDPR_UNKNOWN
1932 && resolution != LDPR_UNDEF
1933 && !can_be_discarded_p ()
1934 && flag_delete_null_pointer_checks)
1935 return true;
1936 return false;
1939 /* Return 0 if symbol is known to have different address than S2,
1940 Return 1 if symbol is known to have same address as S2,
1941 return -1 otherwise.
1943 If MEMORY_ACCESSED is true, assume that both memory pointer to THIS
1944 and S2 is going to be accessed. This eliminates the situations when
1945 either THIS or S2 is NULL and is seful for comparing bases when deciding
1946 about memory aliasing. */
1948 symtab_node::equal_address_to (symtab_node *s2, bool memory_accessed)
1950 enum availability avail1, avail2;
1952 /* A Shortcut: equivalent symbols are always equivalent. */
1953 if (this == s2)
1954 return 1;
1956 /* Unwind transparent aliases first; those are always equal to their
1957 target. */
1958 if (this->transparent_alias && this->analyzed)
1959 return this->get_alias_target ()->equal_address_to (s2);
1960 while (s2->transparent_alias && s2->analyzed)
1961 s2 = s2->get_alias_target();
1963 if (this == s2)
1964 return 1;
1966 /* For non-interposable aliases, lookup and compare their actual definitions.
1967 Also check if the symbol needs to bind to given definition. */
1968 symtab_node *rs1 = ultimate_alias_target (&avail1);
1969 symtab_node *rs2 = s2->ultimate_alias_target (&avail2);
1970 bool binds_local1 = rs1->analyzed && decl_binds_to_current_def_p (this->decl);
1971 bool binds_local2 = rs2->analyzed && decl_binds_to_current_def_p (s2->decl);
1972 bool really_binds_local1 = binds_local1;
1973 bool really_binds_local2 = binds_local2;
1975 /* Addresses of vtables and virtual functions can not be used by user
1976 code and are used only within speculation. In this case we may make
1977 symbol equivalent to its alias even if interposition may break this
1978 rule. Doing so will allow us to turn speculative inlining into
1979 non-speculative more agressively. */
1980 if (DECL_VIRTUAL_P (this->decl) && avail1 >= AVAIL_AVAILABLE)
1981 binds_local1 = true;
1982 if (DECL_VIRTUAL_P (s2->decl) && avail2 >= AVAIL_AVAILABLE)
1983 binds_local2 = true;
1985 /* If both definitions are available we know that even if they are bound
1986 to other unit they must be defined same way and therefore we can use
1987 equivalence test. */
1988 if (rs1 != rs2 && avail1 >= AVAIL_AVAILABLE && avail2 >= AVAIL_AVAILABLE)
1989 binds_local1 = binds_local2 = true;
1991 if ((binds_local1 ? rs1 : this)
1992 == (binds_local2 ? rs2 : s2))
1994 /* We made use of the fact that alias is not weak. */
1995 if (binds_local1 && rs1 != this)
1996 refuse_visibility_changes = true;
1997 if (binds_local2 && rs2 != s2)
1998 s2->refuse_visibility_changes = true;
1999 return 1;
2002 /* If both symbols may resolve to NULL, we can not really prove them
2003 different. */
2004 if (!memory_accessed && !nonzero_address () && !s2->nonzero_address ())
2005 return -1;
2007 /* Except for NULL, functions and variables never overlap. */
2008 if (TREE_CODE (decl) != TREE_CODE (s2->decl))
2009 return 0;
2011 /* If one of the symbols is unresolved alias, punt. */
2012 if (rs1->alias || rs2->alias)
2013 return -1;
2015 /* If we have a non-interposale definition of at least one of the symbols
2016 and the other symbol is different, we know other unit can not interpose
2017 it to the first symbol; all aliases of the definition needs to be
2018 present in the current unit. */
2019 if (((really_binds_local1 || really_binds_local2)
2020 /* If we have both definitions and they are different, we know they
2021 will be different even in units they binds to. */
2022 || (binds_local1 && binds_local2))
2023 && rs1 != rs2)
2025 /* We make use of the fact that one symbol is not alias of the other
2026 and that the definition is non-interposable. */
2027 refuse_visibility_changes = true;
2028 s2->refuse_visibility_changes = true;
2029 rs1->refuse_visibility_changes = true;
2030 rs2->refuse_visibility_changes = true;
2031 return 0;
2034 /* TODO: Alias oracle basically assume that addresses of global variables
2035 are different unless they are declared as alias of one to another while
2036 the code folding comparsions doesn't.
2037 We probably should be consistent and use this fact here, too, but for
2038 the moment return false only when we are called from the alias oracle. */
2040 return memory_accessed && rs1 != rs2 ? 0 : -1;
2043 /* Worker for call_for_symbol_and_aliases. */
2045 bool
2046 symtab_node::call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *,
2047 void *),
2048 void *data,
2049 bool include_overwritable)
2051 ipa_ref *ref;
2052 FOR_EACH_ALIAS (this, ref)
2054 symtab_node *alias = ref->referring;
2055 if (include_overwritable
2056 || alias->get_availability () > AVAIL_INTERPOSABLE)
2057 if (alias->call_for_symbol_and_aliases (callback, data,
2058 include_overwritable))
2059 return true;
2061 return false;
2064 /* Return true if address of N is possibly compared. */
2066 static bool
2067 address_matters_1 (symtab_node *n, void *)
2069 struct ipa_ref *ref;
2071 if (!n->address_can_be_compared_p ())
2072 return false;
2073 if (n->externally_visible || n->force_output)
2074 return true;
2076 for (unsigned int i = 0; n->iterate_referring (i, ref); i++)
2077 if (ref->address_matters_p ())
2078 return true;
2079 return false;
2082 /* Return true if symbol's address may possibly be compared to other
2083 symbol's address. */
2085 bool
2086 symtab_node::address_matters_p ()
2088 gcc_assert (!alias);
2089 return call_for_symbol_and_aliases (address_matters_1, NULL, true);
2092 /* Return true if symbol's alignment may be increased. */
2094 bool
2095 symtab_node::can_increase_alignment_p (void)
2097 symtab_node *target = ultimate_alias_target ();
2099 /* For now support only variables. */
2100 if (!VAR_P (decl))
2101 return false;
2103 /* With -fno-toplevel-reorder we may have already output the constant. */
2104 if (TREE_ASM_WRITTEN (target->decl))
2105 return false;
2107 /* If target is already placed in an anchor, we can not touch its
2108 alignment. */
2109 if (DECL_RTL_SET_P (target->decl)
2110 && MEM_P (DECL_RTL (target->decl))
2111 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (DECL_RTL (target->decl), 0)))
2112 return false;
2114 /* Constant pool entries may be shared. */
2115 if (DECL_IN_CONSTANT_POOL (target->decl))
2116 return false;
2118 /* We cannot change alignment of symbols that may bind to symbols
2119 in other translation unit that may contain a definition with lower
2120 alignment. */
2121 if (!decl_binds_to_current_def_p (decl))
2122 return false;
2124 /* When compiling partition, be sure the symbol is not output by other
2125 partition. */
2126 if (flag_ltrans
2127 && (target->in_other_partition
2128 || target->get_partitioning_class () == SYMBOL_DUPLICATE))
2129 return false;
2131 /* Do not override the alignment as specified by the ABI when the used
2132 attribute is set. */
2133 if (DECL_PRESERVE_P (decl) || DECL_PRESERVE_P (target->decl))
2134 return false;
2136 /* Do not override explicit alignment set by the user when an explicit
2137 section name is also used. This is a common idiom used by many
2138 software projects. */
2139 if (DECL_SECTION_NAME (target->decl) != NULL && !target->implicit_section)
2140 return false;
2142 return true;
2145 /* Worker for symtab_node::increase_alignment. */
2147 static bool
2148 increase_alignment_1 (symtab_node *n, void *v)
2150 unsigned int align = (size_t)v;
2151 if (DECL_ALIGN (n->decl) < align
2152 && n->can_increase_alignment_p ())
2154 SET_DECL_ALIGN (n->decl, align);
2155 DECL_USER_ALIGN (n->decl) = 1;
2157 return false;
2160 /* Increase alignment of THIS to ALIGN. */
2162 void
2163 symtab_node::increase_alignment (unsigned int align)
2165 gcc_assert (can_increase_alignment_p () && align < MAX_OFILE_ALIGNMENT);
2166 ultimate_alias_target()->call_for_symbol_and_aliases (increase_alignment_1,
2167 (void *)(size_t) align,
2168 true);
2169 gcc_assert (DECL_ALIGN (decl) >= align);
2172 /* Helper for symtab_node::definition_alignment. */
2174 static bool
2175 get_alignment_1 (symtab_node *n, void *v)
2177 *((unsigned int *)v) = MAX (*((unsigned int *)v), DECL_ALIGN (n->decl));
2178 return false;
2181 /* Return desired alignment of the definition. This is NOT alignment useful
2182 to access THIS, because THIS may be interposable and DECL_ALIGN should
2183 be used instead. It however must be guaranteed when output definition
2184 of THIS. */
2186 unsigned int
2187 symtab_node::definition_alignment ()
2189 unsigned int align = 0;
2190 gcc_assert (!alias);
2191 call_for_symbol_and_aliases (get_alignment_1, &align, true);
2192 return align;
2195 /* Return symbol used to separate symbol name from suffix. */
2197 char
2198 symbol_table::symbol_suffix_separator ()
2200 #ifndef NO_DOT_IN_LABEL
2201 return '.';
2202 #elif !defined NO_DOLLAR_IN_LABEL
2203 return '$';
2204 #else
2205 return '_';
2206 #endif
2209 /* Return true when references to this symbol from REF must bind to current
2210 definition in final executable. */
2212 bool
2213 symtab_node::binds_to_current_def_p (symtab_node *ref)
2215 if (!definition)
2216 return false;
2217 if (decl_binds_to_current_def_p (decl))
2218 return true;
2220 /* Inline clones always binds locally. */
2221 cgraph_node *cnode = dyn_cast <cgraph_node *> (this);
2222 if (cnode && cnode->global.inlined_to)
2223 return true;
2225 if (DECL_EXTERNAL (decl))
2226 return false;
2228 if (!externally_visible)
2229 debug ();
2230 gcc_assert (externally_visible);
2232 if (ref)
2234 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2235 if (cref)
2236 ref = cref->global.inlined_to;
2239 /* If this is a reference from symbol itself and there are no aliases, we
2240 may be sure that the symbol was not interposed by something else because
2241 the symbol itself would be unreachable otherwise. This is important
2242 to optimize recursive functions well.
2244 This assumption may be broken by inlining: if symbol is interposable
2245 but the body is available (i.e. declared inline), inliner may make
2246 the body reachable even with interposition. */
2247 if (this == ref && !has_aliases_p ()
2248 && (!cnode
2249 || symtab->state >= IPA_SSA_AFTER_INLINING
2250 || get_availability () >= AVAIL_INTERPOSABLE))
2251 return true;
2254 /* References within one comdat group are always bound in a group. */
2255 if (ref
2256 && symtab->state >= IPA_SSA_AFTER_INLINING
2257 && get_comdat_group ()
2258 && get_comdat_group () == ref->get_comdat_group ())
2259 return true;
2261 return false;