]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/tree-phinodes.c
c++: Handle multiple aggregate overloads [PR95319].
[thirdparty/gcc.git] / gcc / tree-phinodes.c
index 2e190e58179db8ecd68a4c38a47065dfb781b6ef..e0cb60647593947d6a91805a72a1358636efb049 100644 (file)
@@ -1,11 +1,11 @@
 /* Generic routines for manipulating PHIs
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003-2020 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
 GCC is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
 any later version.
 
 GCC is distributed in the hope that it will be useful,
@@ -14,21 +14,19 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with GCC; see the file COPYING.  If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+along with GCC; see the file COPYING3.  If not see
+<http://www.gnu.org/licenses/>.  */
 
 #include "config.h"
 #include "system.h"
 #include "coretypes.h"
-#include "tm.h"
+#include "backend.h"
 #include "tree.h"
-#include "rtl.h"
-#include "varray.h"
-#include "ggc.h"
-#include "basic-block.h"
-#include "tree-flow.h"
-#include "toplev.h"
+#include "gimple.h"
+#include "ssa.h"
+#include "fold-const.h"
+#include "gimple-iterator.h"
+#include "tree-ssa.h"
 
 /* Rewriting a function into SSA form can create a huge number of PHIs
    many of which may be thrown away shortly after their creation if jumps
@@ -44,14 +42,6 @@ Boston, MA 02111-1307, USA.  */
    garbage collector.  Similar results have been seen on a wider variety
    of tests (such as the compiler itself).
 
-   Right now we maintain our free list on a per-function basis.  It may
-   or may not make sense to maintain the free list for the duration of
-   a compilation unit.
-
-   We could also use a zone allocator for these objects since they have
-   a very well defined lifetime.  If someone wants to experiment with that
-   this is the place to try it.
-
    PHI nodes have different sizes, so we can't have a single list of all
    the PHI nodes as it would be too expensive to walk down that list to
    find a PHI of a suitable size.
@@ -77,63 +67,36 @@ Boston, MA 02111-1307, USA.  */
    the -2 on all the calculations below.  */
 
 #define NUM_BUCKETS 10
-static GTY ((deletable (""))) tree free_phinodes[NUM_BUCKETS - 2];
+static GTY ((deletable (""))) vec<gimple *, va_gc> *free_phinodes[NUM_BUCKETS - 2];
 static unsigned long free_phinode_count;
 
 static int ideal_phi_node_len (int);
-static void resize_phi_node (tree *, int);
 
-#ifdef GATHER_STATISTICS
 unsigned int phi_nodes_reused;
 unsigned int phi_nodes_created;
-#endif
-
-/* Initialize management of PHIs.  */
-
-void
-init_phinodes (void)
-{
-  int i;
-
-  for (i = 0; i < NUM_BUCKETS - 2; i++)
-    free_phinodes[i] = NULL;
-  free_phinode_count = 0;
-}
-
-/* Finalize management of PHIs.  */
-
-void
-fini_phinodes (void)
-{
-  int i;
-
-  for (i = 0; i < NUM_BUCKETS - 2; i++)
-    free_phinodes[i] = NULL;
-  free_phinode_count = 0;
-}
 
 /* Dump some simple statistics regarding the re-use of PHI nodes.  */
 
-#ifdef GATHER_STATISTICS
 void
 phinodes_print_statistics (void)
 {
-  fprintf (stderr, "PHI nodes allocated: %u\n", phi_nodes_created);
-  fprintf (stderr, "PHI nodes reused: %u\n", phi_nodes_reused);
+  fprintf (stderr, "%-32s" PRsa (11) "\n", "PHI nodes allocated:",
+          SIZE_AMOUNT (phi_nodes_created));
+  fprintf (stderr, "%-32s" PRsa (11) "\n", "PHI nodes reused:",
+          SIZE_AMOUNT (phi_nodes_reused));
 }
-#endif
 
 /* Allocate a PHI node with at least LEN arguments.  If the free list
    happens to contain a PHI node with LEN arguments or more, return
    that one.  */
 
-static inline tree
-allocate_phi_node (int len)
+static inline gphi *
+allocate_phi_node (size_t len)
 {
-  tree phi;
-  int bucket = NUM_BUCKETS - 2;
-  int size = (sizeof (struct tree_phi_node)
-             + (len - 1) * sizeof (struct phi_arg_d));
+  gphi *phi;
+  size_t bucket = NUM_BUCKETS - 2;
+  size_t size = sizeof (struct gphi)
+               + (len - 1) * sizeof (struct phi_arg_d);
 
   if (free_phinode_count)
     for (bucket = len - 2; bucket < NUM_BUCKETS - 2; bucket++)
@@ -142,23 +105,25 @@ allocate_phi_node (int len)
 
   /* If our free list has an element, then use it.  */
   if (bucket < NUM_BUCKETS - 2
-      && PHI_ARG_CAPACITY (free_phinodes[bucket]) >= len)
+      && gimple_phi_capacity ((*free_phinodes[bucket])[0]) >= len)
     {
       free_phinode_count--;
-      phi = free_phinodes[bucket];
-      free_phinodes[bucket] = PHI_CHAIN (free_phinodes[bucket]);
-#ifdef GATHER_STATISTICS
-      phi_nodes_reused++;
-#endif
+      phi = as_a <gphi *> (free_phinodes[bucket]->pop ());
+      if (free_phinodes[bucket]->is_empty ())
+       vec_free (free_phinodes[bucket]);
+      if (GATHER_STATISTICS)
+       phi_nodes_reused++;
     }
   else
     {
-      phi = ggc_alloc (size);
-#ifdef GATHER_STATISTICS
-      phi_nodes_created++;
-      tree_node_counts[(int) phi_kind]++;
-      tree_node_sizes[(int) phi_kind] += size;
-#endif
+      phi = static_cast <gphi *> (ggc_internal_alloc (size));
+      if (GATHER_STATISTICS)
+       {
+         enum gimple_alloc_kind kind = gimple_alloc_kind (GIMPLE_PHI);
+         phi_nodes_created++;
+         gimple_alloc_counts[(int) kind]++;
+         gimple_alloc_sizes[(int) kind] += size;
+       }
     }
 
   return phi;
@@ -185,7 +150,8 @@ ideal_phi_node_len (int len)
     len = 2;
 
   /* Compute the number of bytes of the original request.  */
-  size = sizeof (struct tree_phi_node) + (len - 1) * sizeof (struct phi_arg_d);
+  size = sizeof (struct gphi)
+        + (len - 1) * sizeof (struct phi_arg_d);
 
   /* Round it up to the next power of two.  */
   log2 = ceil_log2 (size);
@@ -197,97 +163,188 @@ ideal_phi_node_len (int len)
   return new_len;
 }
 
-/* Return a PHI node for variable VAR defined in statement STMT.
-   STMT may be an empty statement for artificial references (e.g., default
-   definitions created when a variable is used without a preceding
-   definition).  */
+/* Return a PHI node with LEN argument slots for variable VAR.  */
 
-static tree
+static gphi *
 make_phi_node (tree var, int len)
 {
-  tree phi;
-
-  len = ideal_phi_node_len (len);
-
-  phi = allocate_phi_node (len);
-
-  /* We do not have to clear a part of the PHI node that stores PHI
-     arguments, which is safe because we tell the garbage collector to
-     scan up to num_args elements in the array of PHI arguments.  In
-     other words, the garbage collector will not follow garbage
-     pointers in the unused portion of the array.  */
-  memset (phi, 0, sizeof (struct tree_phi_node) - sizeof (struct phi_arg_d));
-  TREE_SET_CODE (phi, PHI_NODE);
-  PHI_ARG_CAPACITY (phi) = len;
-  TREE_TYPE (phi) = TREE_TYPE (var);
-  if (TREE_CODE (var) == SSA_NAME)
-    SET_PHI_RESULT (phi, var);
+  gphi *phi;
+  int capacity, i;
+
+  capacity = ideal_phi_node_len (len);
+
+  phi = allocate_phi_node (capacity);
+
+  /* We need to clear the entire PHI node, including the argument
+     portion, because we represent a "missing PHI argument" by placing
+     NULL_TREE in PHI_ARG_DEF.  */
+  memset (phi, 0, (sizeof (struct gphi)
+                  - sizeof (struct phi_arg_d)
+                  + sizeof (struct phi_arg_d) * len));
+  phi->code = GIMPLE_PHI;
+  gimple_init_singleton (phi);
+  phi->nargs = len;
+  phi->capacity = capacity;
+  if (!var)
+    ;
+  else if (TREE_CODE (var) == SSA_NAME)
+    gimple_phi_set_result (phi, var);
   else
-    SET_PHI_RESULT (phi, make_ssa_name (var, phi));
+    gimple_phi_set_result (phi, make_ssa_name (var, phi));
+
+  for (i = 0; i < len; i++)
+    {
+      use_operand_p  imm;
+
+      gimple_phi_arg_set_location (phi, i, UNKNOWN_LOCATION);
+      imm = gimple_phi_arg_imm_use_ptr (phi, i);
+      imm->use = gimple_phi_arg_def_ptr (phi, i);
+      imm->prev = NULL;
+      imm->next = NULL;
+      imm->loc.stmt = phi;
+    }
 
   return phi;
 }
 
 /* We no longer need PHI, release it so that it may be reused.  */
 
-void
-release_phi_node (tree phi)
+static void
+release_phi_node (gimple *phi)
 {
-  int bucket;
-  int len = PHI_ARG_CAPACITY (phi);
+  size_t bucket;
+  size_t len = gimple_phi_capacity (phi);
+  size_t x;
+
+  for (x = 0; x < gimple_phi_num_args (phi); x++)
+    {
+      use_operand_p  imm;
+      imm = gimple_phi_arg_imm_use_ptr (phi, x);
+      delink_imm_use (imm);
+    }
 
   bucket = len > NUM_BUCKETS - 1 ? NUM_BUCKETS - 1 : len;
   bucket -= 2;
-  PHI_CHAIN (phi) = free_phinodes[bucket];
-  free_phinodes[bucket] = phi;
+  vec_safe_push (free_phinodes[bucket], phi);
   free_phinode_count++;
 }
 
+
 /* Resize an existing PHI node.  The only way is up.  Return the
    possibly relocated phi.  */
 
-static void
-resize_phi_node (tree *phi, int len)
+static gphi *
+resize_phi_node (gphi *phi, size_t len)
 {
-  int old_size;
-  tree new_phi;
+  size_t old_size, i;
+  gphi *new_phi;
 
-  gcc_assert (len >= PHI_ARG_CAPACITY (*phi));
+  gcc_assert (len > gimple_phi_capacity (phi));
 
   /* The garbage collector will not look at the PHI node beyond the
      first PHI_NUM_ARGS elements.  Therefore, all we have to copy is a
      portion of the PHI node currently in use.  */
-  old_size = (sizeof (struct tree_phi_node)
-            + (PHI_NUM_ARGS (*phi) - 1) * sizeof (struct phi_arg_d));
+  old_size = sizeof (struct gphi)
+            + (gimple_phi_num_args (phi) - 1) * sizeof (struct phi_arg_d);
 
   new_phi = allocate_phi_node (len);
 
-  memcpy (new_phi, *phi, old_size);
+  memcpy (new_phi, phi, old_size);
+  memset ((char *)new_phi + old_size, 0,
+         (sizeof (struct gphi)
+          - sizeof (struct phi_arg_d)
+          + sizeof (struct phi_arg_d) * len) - old_size);
+
+  for (i = 0; i < gimple_phi_num_args (new_phi); i++)
+    {
+      use_operand_p imm, old_imm;
+      imm = gimple_phi_arg_imm_use_ptr (new_phi, i);
+      old_imm = gimple_phi_arg_imm_use_ptr (phi, i);
+      imm->use = gimple_phi_arg_def_ptr (new_phi, i);
+      relink_imm_use_stmt (imm, old_imm, new_phi);
+    }
 
-  PHI_ARG_CAPACITY (new_phi) = len;
+  new_phi->capacity = len;
 
-  *phi = new_phi;
+  return new_phi;
 }
 
-/* Create a new PHI node for variable VAR at basic block BB.  */
+/* Reserve PHI arguments for a new edge to basic block BB.  */
 
-tree
-create_phi_node (tree var, basic_block bb)
+void
+reserve_phi_args_for_new_edge (basic_block bb)
 {
-  tree phi;
+  size_t len = EDGE_COUNT (bb->preds);
+  size_t cap = ideal_phi_node_len (len + 4);
+  gphi_iterator gsi;
+
+  for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
+    {
+      gphi *stmt = gsi.phi ();
+
+      if (len > gimple_phi_capacity (stmt))
+       {
+         gphi *new_phi = resize_phi_node (stmt, cap);
+
+         /* The result of the PHI is defined by this PHI node.  */
+         SSA_NAME_DEF_STMT (gimple_phi_result (new_phi)) = new_phi;
+         gsi_set_stmt (&gsi, new_phi);
+
+         release_phi_node (stmt);
+         stmt = new_phi;
+       }
+
+      stmt->nargs++;
+
+      /* We represent a "missing PHI argument" by placing NULL_TREE in
+        the corresponding slot.  If PHI arguments were added
+        immediately after an edge is created, this zeroing would not
+        be necessary, but unfortunately this is not the case.  For
+        example, the loop optimizer duplicates several basic blocks,
+        redirects edges, and then fixes up PHI arguments later in
+        batch.  */
+      use_operand_p imm = gimple_phi_arg_imm_use_ptr (stmt, len - 1);
+      imm->use = gimple_phi_arg_def_ptr (stmt, len - 1);
+      imm->prev = NULL;
+      imm->next = NULL;
+      imm->loc.stmt = stmt;
+      SET_PHI_ARG_DEF (stmt, len - 1, NULL_TREE);
+      gimple_phi_arg_set_location (stmt, len - 1, UNKNOWN_LOCATION);
+    }
+}
 
-  phi = make_phi_node (var, EDGE_COUNT (bb->preds));
+/* Adds PHI to BB.  */
 
+void
+add_phi_node_to_bb (gphi *phi, basic_block bb)
+{
+  gimple_seq seq = phi_nodes (bb);
   /* Add the new PHI node to the list of PHI nodes for block BB.  */
-  PHI_CHAIN (phi) = phi_nodes (bb);
-  bb_ann (bb)->phi_nodes = phi;
+  if (seq == NULL)
+    set_phi_nodes (bb, gimple_seq_alloc_with_stmt (phi));
+  else
+    {
+      gimple_seq_add_stmt (&seq, phi);
+      gcc_assert (seq == phi_nodes (bb));
+    }
 
   /* Associate BB to the PHI node.  */
-  set_bb_for_stmt (phi, bb);
+  gimple_set_bb (phi, bb);
+
+}
+
+/* Create a new PHI node for variable VAR at basic block BB.  */
 
+gphi *
+create_phi_node (tree var, basic_block bb)
+{
+  gphi *phi = make_phi_node (var, EDGE_COUNT (bb->preds));
+
+  add_phi_node_to_bb (phi, bb);
   return phi;
 }
 
+
 /* Add a new argument to PHI node PHI.  DEF is the incoming reaching
    definition and E is the edge through which DEF reaches PHI.  The new
    argument is added at the end of the argument list.
@@ -295,208 +352,166 @@ create_phi_node (tree var, basic_block bb)
    PHI points to the reallocated phi node when we return.  */
 
 void
-add_phi_arg (tree *phi, tree def, edge e)
+add_phi_arg (gphi *phi, tree def, edge e, location_t locus)
 {
   basic_block bb = e->dest;
-  int i = PHI_NUM_ARGS (*phi);
 
-  gcc_assert (bb == bb_for_stmt (*phi));
+  gcc_assert (bb == gimple_bb (phi));
 
-  if (i >= PHI_ARG_CAPACITY (*phi))
-    {
-      tree old_phi = *phi;
-
-      /* Resize the phi.  Unfortunately, this will relocate it.  */
-      resize_phi_node (phi, ideal_phi_node_len (i + 4));
-
-      /* resize_phi_node will necessarily relocate the phi.  */
-      gcc_assert (*phi != old_phi);
-
-      /* The result of the phi is defined by this phi node.  */
-      SSA_NAME_DEF_STMT (PHI_RESULT (*phi)) = *phi;
-
-      release_phi_node (old_phi);
-
-      /* Update the list head if replacing the first listed phi.  */
-      if (phi_nodes (bb) == old_phi)
-       bb_ann (bb)->phi_nodes = *phi;
-      else
-       {
-         /* Traverse the list looking for the phi node to chain to.  */
-         tree p;
+  /* We resize PHI nodes upon edge creation.  We should always have
+     enough room at this point.  */
+  gcc_assert (gimple_phi_num_args (phi) <= gimple_phi_capacity (phi));
 
-         for (p = phi_nodes (bb);
-              p && PHI_CHAIN (p) != old_phi;
-              p = PHI_CHAIN (p))
-           ;
-
-         gcc_assert (p);
-         PHI_CHAIN (p) = *phi;
-       }
-    }
+  /* We resize PHI nodes upon edge creation.  We should always have
+     enough room at this point.  */
+  gcc_assert (e->dest_idx < gimple_phi_num_args (phi));
 
   /* Copy propagation needs to know what object occur in abnormal
      PHI nodes.  This is a convenient place to record such information.  */
   if (e->flags & EDGE_ABNORMAL)
     {
       SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def) = 1;
-      SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (*phi)) = 1;
+      SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)) = 1;
     }
 
-  SET_PHI_ARG_DEF (*phi, i, def);
-  PHI_ARG_EDGE (*phi, i) = e;
-  PHI_ARG_NONZERO (*phi, i) = false;
-  PHI_NUM_ARGS (*phi)++;
+  SET_PHI_ARG_DEF (phi, e->dest_idx, def);
+  gimple_phi_arg_set_location (phi, e->dest_idx, locus);
 }
 
-/* Remove a PHI argument from PHI.  BLOCK is the predecessor block where
-   the PHI argument is coming from.  */
 
-void
-remove_phi_arg (tree phi, basic_block block)
+/* Remove the Ith argument from PHI's argument list.  This routine
+   implements removal by swapping the last alternative with the
+   alternative we want to delete and then shrinking the vector, which
+   is consistent with how we remove an edge from the edge vector.  */
+
+static void
+remove_phi_arg_num (gphi *phi, int i)
 {
-  int i, num_elem = PHI_NUM_ARGS (phi);
+  int num_elem = gimple_phi_num_args (phi);
 
-  for (i = 0; i < num_elem; i++)
-    {
-      basic_block src_bb;
+  gcc_assert (i < num_elem);
 
-      src_bb = PHI_ARG_EDGE (phi, i)->src;
+  /* Delink the item which is being removed.  */
+  delink_imm_use (gimple_phi_arg_imm_use_ptr (phi, i));
 
-      if (src_bb == block)
-       {
-         remove_phi_arg_num (phi, i);
-         return;
-       }
+  /* If it is not the last element, move the last element
+     to the element we want to delete, resetting all the links. */
+  if (i != num_elem - 1)
+    {
+      use_operand_p old_p, new_p;
+      old_p = gimple_phi_arg_imm_use_ptr (phi, num_elem - 1);
+      new_p = gimple_phi_arg_imm_use_ptr (phi, i);
+      /* Set use on new node, and link into last element's place.  */
+      *(new_p->use) = *(old_p->use);
+      relink_imm_use (new_p, old_p);
+      /* Move the location as well.  */
+      gimple_phi_arg_set_location (phi, i,
+                                  gimple_phi_arg_location (phi, num_elem - 1));
     }
+
+  /* Shrink the vector and return.  Note that we do not have to clear
+     PHI_ARG_DEF because the garbage collector will not look at those
+     elements beyond the first PHI_NUM_ARGS elements of the array.  */
+  phi->nargs--;
 }
 
 
-/* Remove the Ith argument from PHI's argument list.  This routine assumes
-   ordering of alternatives in the vector is not important and implements
-   removal by swapping the last alternative with the alternative we want to
-   delete, then shrinking the vector.  */
+/* Remove all PHI arguments associated with edge E.  */
 
 void
-remove_phi_arg_num (tree phi, int i)
+remove_phi_args (edge e)
 {
-  int num_elem = PHI_NUM_ARGS (phi);
+  gphi_iterator gsi;
 
-  gcc_assert (i < num_elem);
-
-  /* If we are not at the last element, switch the last element
-     with the element we want to delete.  */
-  if (i != num_elem - 1)
-    {
-      SET_PHI_ARG_DEF (phi, i, PHI_ARG_DEF (phi, num_elem - 1));
-      PHI_ARG_EDGE (phi, i) = PHI_ARG_EDGE (phi, num_elem - 1);
-      PHI_ARG_NONZERO (phi, i) = PHI_ARG_NONZERO (phi, num_elem - 1);
-    }
-
-  /* Shrink the vector and return.  Note that we do not have to clear
-     PHI_ARG_DEF, PHI_ARG_EDGE, or PHI_ARG_NONZERO because the garbage
-     collector will not look at those elements beyond the first
-     PHI_NUM_ARGS elements of the array.  */
-  PHI_NUM_ARGS (phi)--;
+  for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi); gsi_next (&gsi))
+    remove_phi_arg_num (gsi.phi (),
+                       e->dest_idx);
 }
 
-/* Remove PHI node PHI from basic block BB.  If PREV is non-NULL, it is
-   used as the node immediately before PHI in the linked list.  */
+
+/* Remove the PHI node pointed-to by iterator GSI from basic block BB.  After
+   removal, iterator GSI is updated to point to the next PHI node in the
+   sequence. If RELEASE_LHS_P is true, the LHS of this PHI node is released
+   into the free pool of SSA names.  */
 
 void
-remove_phi_node (tree phi, tree prev, basic_block bb)
+remove_phi_node (gimple_stmt_iterator *gsi, bool release_lhs_p)
 {
-  if (prev)
-    {
-      /* Rewire the list if we are given a PREV pointer.  */
-      PHI_CHAIN (prev) = PHI_CHAIN (phi);
+  gimple *phi = gsi_stmt (*gsi);
 
-      /* If we are deleting the PHI node, then we should release the
-        SSA_NAME node so that it can be reused.  */
-      release_ssa_name (PHI_RESULT (phi));
-      release_phi_node (phi);
-    }
-  else if (phi == phi_nodes (bb))
-    {
-      /* Update the list head if removing the first element.  */
-      bb_ann (bb)->phi_nodes = PHI_CHAIN (phi);
+  if (release_lhs_p)
+    insert_debug_temps_for_defs (gsi);
 
-      /* If we are deleting the PHI node, then we should release the
-        SSA_NAME node so that it can be reused.  */
-      release_ssa_name (PHI_RESULT (phi));
-      release_phi_node (phi);
-    }
-  else
-    {
-      /* Traverse the list looking for the node to remove.  */
-      tree prev, t;
-      prev = NULL_TREE;
-      for (t = phi_nodes (bb); t && t != phi; t = PHI_CHAIN (t))
-       prev = t;
-      if (t)
-       remove_phi_node (t, prev, bb);
-    }
-}
+  gsi_remove (gsi, false);
 
+  /* If we are deleting the PHI node, then we should release the
+     SSA_NAME node so that it can be reused.  */
+  release_phi_node (phi);
+  if (release_lhs_p)
+    release_ssa_name (gimple_phi_result (phi));
+}
 
-/* Remove all the PHI nodes for variables in the VARS bitmap.  */
+/* Remove all the phi nodes from BB.  */
 
 void
-remove_all_phi_nodes_for (bitmap vars)
+remove_phi_nodes (basic_block bb)
 {
-  basic_block bb;
+  gphi_iterator gsi;
 
-  FOR_EACH_BB (bb)
-    {
-      /* Build a new PHI list for BB without variables in VARS.  */
-      tree phi, new_phi_list, last_phi, next;
+  for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); )
+    remove_phi_node (&gsi, true);
 
-      last_phi = new_phi_list = NULL_TREE;
-      for (phi = phi_nodes (bb), next = NULL; phi; phi = next)
-       {
-         tree var = SSA_NAME_VAR (PHI_RESULT (phi));
-
-         next = PHI_CHAIN (phi);
-         /* Only add PHI nodes for variables not in VARS.  */
-         if (!bitmap_bit_p (vars, var_ann (var)->uid))
-           {
-             /* If we're not removing this PHI node, then it must have
-                been rewritten by a previous call into the SSA rewriter.
-                Note that fact in PHI_REWRITTEN.  */
-             PHI_REWRITTEN (phi) = 1;
-
-             if (new_phi_list == NULL_TREE)
-               new_phi_list = last_phi = phi;
-             else
-               {
-                 PHI_CHAIN (last_phi) = phi;
-                 last_phi = phi;
-               }
-           }
-         else
-           {
-             /* If we are deleting the PHI node, then we should release the
-                SSA_NAME node so that it can be reused.  */
-             release_ssa_name (PHI_RESULT (phi));
-             release_phi_node (phi);
-           }
-       }
+  set_phi_nodes (bb, NULL);
+}
 
-      /* Make sure the last node in the new list has no successors.  */
-      if (last_phi)
-       PHI_CHAIN (last_phi) = NULL_TREE;
-      bb_ann (bb)->phi_nodes = new_phi_list;
+/* Given PHI, return its RHS if the PHI is a degenerate, otherwise return
+   NULL.  */
 
-#if defined ENABLE_CHECKING
-      for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
-       {
-         tree var = SSA_NAME_VAR (PHI_RESULT (phi));
-         gcc_assert (!bitmap_bit_p (vars, var_ann (var)->uid));
-       }
-#endif
+tree
+degenerate_phi_result (gphi *phi)
+{
+  tree lhs = gimple_phi_result (phi);
+  tree val = NULL;
+  size_t i;
+
+  /* Ignoring arguments which are the same as LHS, if all the remaining
+     arguments are the same, then the PHI is a degenerate and has the
+     value of that common argument.  */
+  for (i = 0; i < gimple_phi_num_args (phi); i++)
+    {
+      tree arg = gimple_phi_arg_def (phi, i);
+
+      if (arg == lhs)
+       continue;
+      else if (!arg)
+       break;
+      else if (!val)
+       val = arg;
+      else if (arg == val)
+       continue;
+      /* We bring in some of operand_equal_p not only to speed things
+        up, but also to avoid crashing when dereferencing the type of
+        a released SSA name.  */
+      else if (TREE_CODE (val) != TREE_CODE (arg)
+              || TREE_CODE (val) == SSA_NAME
+              || !operand_equal_p (arg, val, 0))
+       break;
     }
+  return (i == gimple_phi_num_args (phi) ? val : NULL);
 }
 
+/* Set PHI nodes of a basic block BB to SEQ.  */
 
-#include "gt-tree-phinodes.h"
+void
+set_phi_nodes (basic_block bb, gimple_seq seq)
+{
+  gimple_stmt_iterator i;
 
+  gcc_checking_assert (!(bb->flags & BB_RTL));
+  bb->il.gimple.phi_nodes = seq;
+  if (seq)
+    for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
+      gimple_set_bb (gsi_stmt (i), bb);
+}
+
+#include "gt-tree-phinodes.h"