ipa.c (symbol_table::remove_unreachable_nodes): Avoid releasing bodies of thunks...
authorJan Hubicka <hubicka@ucw.cz>
Wed, 11 Feb 2015 19:11:47 +0000 (20:11 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Wed, 11 Feb 2015 19:11:47 +0000 (19:11 +0000)
* ipa.c (symbol_table::remove_unreachable_nodes): Avoid releasing
bodies of thunks; comment on why.
* symtab.c (symtab_node::get_partitioning_class): Aliases of extern
symbols are extern.

From-SVN: r220630

gcc/ChangeLog
gcc/ipa.c
gcc/symtab.c

index 87bf089..d895209 100644 (file)
@@ -1,3 +1,10 @@
+2015-02-11  Jan Hubicka  <hubicka@ucw.cz>
+
+       * ipa.c (symbol_table::remove_unreachable_nodes): Avoid releasing
+       bodies of thunks; comment on why.
+       * symtab.c (symtab_node::get_partitioning_class): Aliases of extern
+       symbols are extern.
+
 2015-02-11  Richard Henderson  <rth@redhat.com>
 
        PR sanitize/65000
index 620431c..58ba309 100644 (file)
--- a/gcc/ipa.c
+++ b/gcc/ipa.c
@@ -537,7 +537,13 @@ symbol_table::remove_unreachable_nodes (FILE *file)
       /* If node is unreachable, remove its body.  */
       else if (!reachable.contains (node))
         {
-         if (!body_needed_for_clonning.contains (node->decl))
+         /* We keep definitions of thunks and aliases in the boundary so
+            we can walk to the ultimate alias targets and function symbols
+            reliably.  */
+         if (node->alias || node->thunk.thunk_p)
+           ;
+         else if (!body_needed_for_clonning.contains (node->decl)
+             && !node->alias && !node->thunk.thunk_p)
            node->release_body ();
          else if (!node->clone_of)
            gcc_assert (in_lto_p || DECL_RESULT (node->decl));
index 3bfb04a..3cdf62a 100644 (file)
@@ -1779,6 +1779,8 @@ symtab_node::get_partitioning_class (void)
 
   if (varpool_node *vnode = dyn_cast <varpool_node *> (this))
     {
+      if (alias && definition && !ultimate_alias_target ()->definition)
+       return SYMBOL_EXTERNAL;
       /* Constant pool references use local symbol names that can not
          be promoted global.  We should never put into a constant pool
          objects that can not be duplicated across partitions.  */
@@ -1790,7 +1792,7 @@ symtab_node::get_partitioning_class (void)
      Handle them as external; compute_ltrans_boundary take care to make
      proper things to happen (i.e. to make them appear in the boundary but
      with body streamed, so clone can me materialized).  */
-  else if (!dyn_cast <cgraph_node *> (this)->definition)
+  else if (!dyn_cast <cgraph_node *> (this)->function_symbol ()->definition)
     return SYMBOL_EXTERNAL;
 
   /* Linker discardable symbols are duplicated to every use unless they are