OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [cfgloopmanip.c] - Diff between revs 280 and 338

Only display areas with differences | Details | Blame | View Log

Rev 280 Rev 338
/* Loop manipulation code for GNU compiler.
/* Loop manipulation code for GNU compiler.
   Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009 Free Software
   Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009 Free Software
   Foundation, Inc.
   Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify it under
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
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
Software Foundation; either version 3, or (at your option) any later
version.
version.
 
 
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#include "config.h"
#include "config.h"
#include "system.h"
#include "system.h"
#include "coretypes.h"
#include "coretypes.h"
#include "tm.h"
#include "tm.h"
#include "rtl.h"
#include "rtl.h"
#include "hard-reg-set.h"
#include "hard-reg-set.h"
#include "obstack.h"
#include "obstack.h"
#include "basic-block.h"
#include "basic-block.h"
#include "cfgloop.h"
#include "cfgloop.h"
#include "cfglayout.h"
#include "cfglayout.h"
#include "cfghooks.h"
#include "cfghooks.h"
#include "output.h"
#include "output.h"
#include "tree-flow.h"
#include "tree-flow.h"
 
 
static void copy_loops_to (struct loop **, int,
static void copy_loops_to (struct loop **, int,
                           struct loop *);
                           struct loop *);
static void loop_redirect_edge (edge, basic_block);
static void loop_redirect_edge (edge, basic_block);
static void remove_bbs (basic_block *, int);
static void remove_bbs (basic_block *, int);
static bool rpe_enum_p (const_basic_block, const void *);
static bool rpe_enum_p (const_basic_block, const void *);
static int find_path (edge, basic_block **);
static int find_path (edge, basic_block **);
static void fix_loop_placements (struct loop *, bool *);
static void fix_loop_placements (struct loop *, bool *);
static bool fix_bb_placement (basic_block);
static bool fix_bb_placement (basic_block);
static void fix_bb_placements (basic_block, bool *);
static void fix_bb_placements (basic_block, bool *);
static void unloop (struct loop *, bool *);
static void unloop (struct loop *, bool *);
 
 
#define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
#define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
 
 
/* Checks whether basic block BB is dominated by DATA.  */
/* Checks whether basic block BB is dominated by DATA.  */
static bool
static bool
rpe_enum_p (const_basic_block bb, const void *data)
rpe_enum_p (const_basic_block bb, const void *data)
{
{
  return dominated_by_p (CDI_DOMINATORS, bb, (const_basic_block) data);
  return dominated_by_p (CDI_DOMINATORS, bb, (const_basic_block) data);
}
}
 
 
/* Remove basic blocks BBS.  NBBS is the number of the basic blocks.  */
/* Remove basic blocks BBS.  NBBS is the number of the basic blocks.  */
 
 
static void
static void
remove_bbs (basic_block *bbs, int nbbs)
remove_bbs (basic_block *bbs, int nbbs)
{
{
  int i;
  int i;
 
 
  for (i = 0; i < nbbs; i++)
  for (i = 0; i < nbbs; i++)
    delete_basic_block (bbs[i]);
    delete_basic_block (bbs[i]);
}
}
 
 
/* Find path -- i.e. the basic blocks dominated by edge E and put them
/* Find path -- i.e. the basic blocks dominated by edge E and put them
   into array BBS, that will be allocated large enough to contain them.
   into array BBS, that will be allocated large enough to contain them.
   E->dest must have exactly one predecessor for this to work (it is
   E->dest must have exactly one predecessor for this to work (it is
   easy to achieve and we do not put it here because we do not want to
   easy to achieve and we do not put it here because we do not want to
   alter anything by this function).  The number of basic blocks in the
   alter anything by this function).  The number of basic blocks in the
   path is returned.  */
   path is returned.  */
static int
static int
find_path (edge e, basic_block **bbs)
find_path (edge e, basic_block **bbs)
{
{
  gcc_assert (EDGE_COUNT (e->dest->preds) <= 1);
  gcc_assert (EDGE_COUNT (e->dest->preds) <= 1);
 
 
  /* Find bbs in the path.  */
  /* Find bbs in the path.  */
  *bbs = XCNEWVEC (basic_block, n_basic_blocks);
  *bbs = XCNEWVEC (basic_block, n_basic_blocks);
  return dfs_enumerate_from (e->dest, 0, rpe_enum_p, *bbs,
  return dfs_enumerate_from (e->dest, 0, rpe_enum_p, *bbs,
                             n_basic_blocks, e->dest);
                             n_basic_blocks, e->dest);
}
}
 
 
/* Fix placement of basic block BB inside loop hierarchy --
/* Fix placement of basic block BB inside loop hierarchy --
   Let L be a loop to that BB belongs.  Then every successor of BB must either
   Let L be a loop to that BB belongs.  Then every successor of BB must either
     1) belong to some superloop of loop L, or
     1) belong to some superloop of loop L, or
     2) be a header of loop K such that K->outer is superloop of L
     2) be a header of loop K such that K->outer is superloop of L
   Returns true if we had to move BB into other loop to enforce this condition,
   Returns true if we had to move BB into other loop to enforce this condition,
   false if the placement of BB was already correct (provided that placements
   false if the placement of BB was already correct (provided that placements
   of its successors are correct).  */
   of its successors are correct).  */
static bool
static bool
fix_bb_placement (basic_block bb)
fix_bb_placement (basic_block bb)
{
{
  edge e;
  edge e;
  edge_iterator ei;
  edge_iterator ei;
  struct loop *loop = current_loops->tree_root, *act;
  struct loop *loop = current_loops->tree_root, *act;
 
 
  FOR_EACH_EDGE (e, ei, bb->succs)
  FOR_EACH_EDGE (e, ei, bb->succs)
    {
    {
      if (e->dest == EXIT_BLOCK_PTR)
      if (e->dest == EXIT_BLOCK_PTR)
        continue;
        continue;
 
 
      act = e->dest->loop_father;
      act = e->dest->loop_father;
      if (act->header == e->dest)
      if (act->header == e->dest)
        act = loop_outer (act);
        act = loop_outer (act);
 
 
      if (flow_loop_nested_p (loop, act))
      if (flow_loop_nested_p (loop, act))
        loop = act;
        loop = act;
    }
    }
 
 
  if (loop == bb->loop_father)
  if (loop == bb->loop_father)
    return false;
    return false;
 
 
  remove_bb_from_loops (bb);
  remove_bb_from_loops (bb);
  add_bb_to_loop (bb, loop);
  add_bb_to_loop (bb, loop);
 
 
  return true;
  return true;
}
}
 
 
/* Fix placement of LOOP inside loop tree, i.e. find the innermost superloop
/* Fix placement of LOOP inside loop tree, i.e. find the innermost superloop
   of LOOP to that leads at least one exit edge of LOOP, and set it
   of LOOP to that leads at least one exit edge of LOOP, and set it
   as the immediate superloop of LOOP.  Return true if the immediate superloop
   as the immediate superloop of LOOP.  Return true if the immediate superloop
   of LOOP changed.  */
   of LOOP changed.  */
 
 
static bool
static bool
fix_loop_placement (struct loop *loop)
fix_loop_placement (struct loop *loop)
{
{
  unsigned i;
  unsigned i;
  edge e;
  edge e;
  VEC (edge, heap) *exits = get_loop_exit_edges (loop);
  VEC (edge, heap) *exits = get_loop_exit_edges (loop);
  struct loop *father = current_loops->tree_root, *act;
  struct loop *father = current_loops->tree_root, *act;
  bool ret = false;
  bool ret = false;
 
 
  for (i = 0; VEC_iterate (edge, exits, i, e); i++)
  for (i = 0; VEC_iterate (edge, exits, i, e); i++)
    {
    {
      act = find_common_loop (loop, e->dest->loop_father);
      act = find_common_loop (loop, e->dest->loop_father);
      if (flow_loop_nested_p (father, act))
      if (flow_loop_nested_p (father, act))
        father = act;
        father = act;
    }
    }
 
 
  if (father != loop_outer (loop))
  if (father != loop_outer (loop))
    {
    {
      for (act = loop_outer (loop); act != father; act = loop_outer (act))
      for (act = loop_outer (loop); act != father; act = loop_outer (act))
        act->num_nodes -= loop->num_nodes;
        act->num_nodes -= loop->num_nodes;
      flow_loop_tree_node_remove (loop);
      flow_loop_tree_node_remove (loop);
      flow_loop_tree_node_add (father, loop);
      flow_loop_tree_node_add (father, loop);
 
 
      /* The exit edges of LOOP no longer exits its original immediate
      /* The exit edges of LOOP no longer exits its original immediate
         superloops; remove them from the appropriate exit lists.  */
         superloops; remove them from the appropriate exit lists.  */
      for (i = 0; VEC_iterate (edge, exits, i, e); i++)
      for (i = 0; VEC_iterate (edge, exits, i, e); i++)
        rescan_loop_exit (e, false, false);
        rescan_loop_exit (e, false, false);
 
 
      ret = true;
      ret = true;
    }
    }
 
 
  VEC_free (edge, heap, exits);
  VEC_free (edge, heap, exits);
  return ret;
  return ret;
}
}
 
 
/* Fix placements of basic blocks inside loop hierarchy stored in loops; i.e.
/* Fix placements of basic blocks inside loop hierarchy stored in loops; i.e.
   enforce condition condition stated in description of fix_bb_placement. We
   enforce condition condition stated in description of fix_bb_placement. We
   start from basic block FROM that had some of its successors removed, so that
   start from basic block FROM that had some of its successors removed, so that
   his placement no longer has to be correct, and iteratively fix placement of
   his placement no longer has to be correct, and iteratively fix placement of
   its predecessors that may change if placement of FROM changed.  Also fix
   its predecessors that may change if placement of FROM changed.  Also fix
   placement of subloops of FROM->loop_father, that might also be altered due
   placement of subloops of FROM->loop_father, that might also be altered due
   to this change; the condition for them is similar, except that instead of
   to this change; the condition for them is similar, except that instead of
   successors we consider edges coming out of the loops.
   successors we consider edges coming out of the loops.
 
 
   If the changes may invalidate the information about irreducible regions,
   If the changes may invalidate the information about irreducible regions,
   IRRED_INVALIDATED is set to true.  */
   IRRED_INVALIDATED is set to true.  */
 
 
static void
static void
fix_bb_placements (basic_block from,
fix_bb_placements (basic_block from,
                   bool *irred_invalidated)
                   bool *irred_invalidated)
{
{
  sbitmap in_queue;
  sbitmap in_queue;
  basic_block *queue, *qtop, *qbeg, *qend;
  basic_block *queue, *qtop, *qbeg, *qend;
  struct loop *base_loop;
  struct loop *base_loop;
  edge e;
  edge e;
 
 
  /* We pass through blocks back-reachable from FROM, testing whether some
  /* We pass through blocks back-reachable from FROM, testing whether some
     of their successors moved to outer loop.  It may be necessary to
     of their successors moved to outer loop.  It may be necessary to
     iterate several times, but it is finite, as we stop unless we move
     iterate several times, but it is finite, as we stop unless we move
     the basic block up the loop structure.  The whole story is a bit
     the basic block up the loop structure.  The whole story is a bit
     more complicated due to presence of subloops, those are moved using
     more complicated due to presence of subloops, those are moved using
     fix_loop_placement.  */
     fix_loop_placement.  */
 
 
  base_loop = from->loop_father;
  base_loop = from->loop_father;
  if (base_loop == current_loops->tree_root)
  if (base_loop == current_loops->tree_root)
    return;
    return;
 
 
  in_queue = sbitmap_alloc (last_basic_block);
  in_queue = sbitmap_alloc (last_basic_block);
  sbitmap_zero (in_queue);
  sbitmap_zero (in_queue);
  SET_BIT (in_queue, from->index);
  SET_BIT (in_queue, from->index);
  /* Prevent us from going out of the base_loop.  */
  /* Prevent us from going out of the base_loop.  */
  SET_BIT (in_queue, base_loop->header->index);
  SET_BIT (in_queue, base_loop->header->index);
 
 
  queue = XNEWVEC (basic_block, base_loop->num_nodes + 1);
  queue = XNEWVEC (basic_block, base_loop->num_nodes + 1);
  qtop = queue + base_loop->num_nodes + 1;
  qtop = queue + base_loop->num_nodes + 1;
  qbeg = queue;
  qbeg = queue;
  qend = queue + 1;
  qend = queue + 1;
  *qbeg = from;
  *qbeg = from;
 
 
  while (qbeg != qend)
  while (qbeg != qend)
    {
    {
      edge_iterator ei;
      edge_iterator ei;
      from = *qbeg;
      from = *qbeg;
      qbeg++;
      qbeg++;
      if (qbeg == qtop)
      if (qbeg == qtop)
        qbeg = queue;
        qbeg = queue;
      RESET_BIT (in_queue, from->index);
      RESET_BIT (in_queue, from->index);
 
 
      if (from->loop_father->header == from)
      if (from->loop_father->header == from)
        {
        {
          /* Subloop header, maybe move the loop upward.  */
          /* Subloop header, maybe move the loop upward.  */
          if (!fix_loop_placement (from->loop_father))
          if (!fix_loop_placement (from->loop_father))
            continue;
            continue;
        }
        }
      else
      else
        {
        {
          /* Ordinary basic block.  */
          /* Ordinary basic block.  */
          if (!fix_bb_placement (from))
          if (!fix_bb_placement (from))
            continue;
            continue;
        }
        }
 
 
      FOR_EACH_EDGE (e, ei, from->succs)
      FOR_EACH_EDGE (e, ei, from->succs)
        {
        {
          if (e->flags & EDGE_IRREDUCIBLE_LOOP)
          if (e->flags & EDGE_IRREDUCIBLE_LOOP)
            *irred_invalidated = true;
            *irred_invalidated = true;
        }
        }
 
 
      /* Something has changed, insert predecessors into queue.  */
      /* Something has changed, insert predecessors into queue.  */
      FOR_EACH_EDGE (e, ei, from->preds)
      FOR_EACH_EDGE (e, ei, from->preds)
        {
        {
          basic_block pred = e->src;
          basic_block pred = e->src;
          struct loop *nca;
          struct loop *nca;
 
 
          if (e->flags & EDGE_IRREDUCIBLE_LOOP)
          if (e->flags & EDGE_IRREDUCIBLE_LOOP)
            *irred_invalidated = true;
            *irred_invalidated = true;
 
 
          if (TEST_BIT (in_queue, pred->index))
          if (TEST_BIT (in_queue, pred->index))
            continue;
            continue;
 
 
          /* If it is subloop, then it either was not moved, or
          /* If it is subloop, then it either was not moved, or
             the path up the loop tree from base_loop do not contain
             the path up the loop tree from base_loop do not contain
             it.  */
             it.  */
          nca = find_common_loop (pred->loop_father, base_loop);
          nca = find_common_loop (pred->loop_father, base_loop);
          if (pred->loop_father != base_loop
          if (pred->loop_father != base_loop
              && (nca == base_loop
              && (nca == base_loop
                  || nca != pred->loop_father))
                  || nca != pred->loop_father))
            pred = pred->loop_father->header;
            pred = pred->loop_father->header;
          else if (!flow_loop_nested_p (from->loop_father, pred->loop_father))
          else if (!flow_loop_nested_p (from->loop_father, pred->loop_father))
            {
            {
              /* No point in processing it.  */
              /* No point in processing it.  */
              continue;
              continue;
            }
            }
 
 
          if (TEST_BIT (in_queue, pred->index))
          if (TEST_BIT (in_queue, pred->index))
            continue;
            continue;
 
 
          /* Schedule the basic block.  */
          /* Schedule the basic block.  */
          *qend = pred;
          *qend = pred;
          qend++;
          qend++;
          if (qend == qtop)
          if (qend == qtop)
            qend = queue;
            qend = queue;
          SET_BIT (in_queue, pred->index);
          SET_BIT (in_queue, pred->index);
        }
        }
    }
    }
  free (in_queue);
  free (in_queue);
  free (queue);
  free (queue);
}
}
 
 
/* Removes path beginning at edge E, i.e. remove basic blocks dominated by E
/* Removes path beginning at edge E, i.e. remove basic blocks dominated by E
   and update loop structures and dominators.  Return true if we were able
   and update loop structures and dominators.  Return true if we were able
   to remove the path, false otherwise (and nothing is affected then).  */
   to remove the path, false otherwise (and nothing is affected then).  */
bool
bool
remove_path (edge e)
remove_path (edge e)
{
{
  edge ae;
  edge ae;
  basic_block *rem_bbs, *bord_bbs, from, bb;
  basic_block *rem_bbs, *bord_bbs, from, bb;
  VEC (basic_block, heap) *dom_bbs;
  VEC (basic_block, heap) *dom_bbs;
  int i, nrem, n_bord_bbs;
  int i, nrem, n_bord_bbs;
  sbitmap seen;
  sbitmap seen;
  bool irred_invalidated = false;
  bool irred_invalidated = false;
 
 
  if (!can_remove_branch_p (e))
  if (!can_remove_branch_p (e))
    return false;
    return false;
 
 
  /* Keep track of whether we need to update information about irreducible
  /* Keep track of whether we need to update information about irreducible
     regions.  This is the case if the removed area is a part of the
     regions.  This is the case if the removed area is a part of the
     irreducible region, or if the set of basic blocks that belong to a loop
     irreducible region, or if the set of basic blocks that belong to a loop
     that is inside an irreducible region is changed, or if such a loop is
     that is inside an irreducible region is changed, or if such a loop is
     removed.  */
     removed.  */
  if (e->flags & EDGE_IRREDUCIBLE_LOOP)
  if (e->flags & EDGE_IRREDUCIBLE_LOOP)
    irred_invalidated = true;
    irred_invalidated = true;
 
 
  /* We need to check whether basic blocks are dominated by the edge
  /* We need to check whether basic blocks are dominated by the edge
     e, but we only have basic block dominators.  This is easy to
     e, but we only have basic block dominators.  This is easy to
     fix -- when e->dest has exactly one predecessor, this corresponds
     fix -- when e->dest has exactly one predecessor, this corresponds
     to blocks dominated by e->dest, if not, split the edge.  */
     to blocks dominated by e->dest, if not, split the edge.  */
  if (!single_pred_p (e->dest))
  if (!single_pred_p (e->dest))
    e = single_pred_edge (split_edge (e));
    e = single_pred_edge (split_edge (e));
 
 
  /* It may happen that by removing path we remove one or more loops
  /* It may happen that by removing path we remove one or more loops
     we belong to.  In this case first unloop the loops, then proceed
     we belong to.  In this case first unloop the loops, then proceed
     normally.   We may assume that e->dest is not a header of any loop,
     normally.   We may assume that e->dest is not a header of any loop,
     as it now has exactly one predecessor.  */
     as it now has exactly one predecessor.  */
  while (loop_outer (e->src->loop_father)
  while (loop_outer (e->src->loop_father)
         && dominated_by_p (CDI_DOMINATORS,
         && dominated_by_p (CDI_DOMINATORS,
                            e->src->loop_father->latch, e->dest))
                            e->src->loop_father->latch, e->dest))
    unloop (e->src->loop_father, &irred_invalidated);
    unloop (e->src->loop_father, &irred_invalidated);
 
 
  /* Identify the path.  */
  /* Identify the path.  */
  nrem = find_path (e, &rem_bbs);
  nrem = find_path (e, &rem_bbs);
 
 
  n_bord_bbs = 0;
  n_bord_bbs = 0;
  bord_bbs = XCNEWVEC (basic_block, n_basic_blocks);
  bord_bbs = XCNEWVEC (basic_block, n_basic_blocks);
  seen = sbitmap_alloc (last_basic_block);
  seen = sbitmap_alloc (last_basic_block);
  sbitmap_zero (seen);
  sbitmap_zero (seen);
 
 
  /* Find "border" hexes -- i.e. those with predecessor in removed path.  */
  /* Find "border" hexes -- i.e. those with predecessor in removed path.  */
  for (i = 0; i < nrem; i++)
  for (i = 0; i < nrem; i++)
    SET_BIT (seen, rem_bbs[i]->index);
    SET_BIT (seen, rem_bbs[i]->index);
  for (i = 0; i < nrem; i++)
  for (i = 0; i < nrem; i++)
    {
    {
      edge_iterator ei;
      edge_iterator ei;
      bb = rem_bbs[i];
      bb = rem_bbs[i];
      FOR_EACH_EDGE (ae, ei, rem_bbs[i]->succs)
      FOR_EACH_EDGE (ae, ei, rem_bbs[i]->succs)
        if (ae->dest != EXIT_BLOCK_PTR && !TEST_BIT (seen, ae->dest->index))
        if (ae->dest != EXIT_BLOCK_PTR && !TEST_BIT (seen, ae->dest->index))
          {
          {
            SET_BIT (seen, ae->dest->index);
            SET_BIT (seen, ae->dest->index);
            bord_bbs[n_bord_bbs++] = ae->dest;
            bord_bbs[n_bord_bbs++] = ae->dest;
 
 
            if (ae->flags & EDGE_IRREDUCIBLE_LOOP)
            if (ae->flags & EDGE_IRREDUCIBLE_LOOP)
              irred_invalidated = true;
              irred_invalidated = true;
          }
          }
    }
    }
 
 
  /* Remove the path.  */
  /* Remove the path.  */
  from = e->src;
  from = e->src;
  remove_branch (e);
  remove_branch (e);
  dom_bbs = NULL;
  dom_bbs = NULL;
 
 
  /* Cancel loops contained in the path.  */
  /* Cancel loops contained in the path.  */
  for (i = 0; i < nrem; i++)
  for (i = 0; i < nrem; i++)
    if (rem_bbs[i]->loop_father->header == rem_bbs[i])
    if (rem_bbs[i]->loop_father->header == rem_bbs[i])
      cancel_loop_tree (rem_bbs[i]->loop_father);
      cancel_loop_tree (rem_bbs[i]->loop_father);
 
 
  remove_bbs (rem_bbs, nrem);
  remove_bbs (rem_bbs, nrem);
  free (rem_bbs);
  free (rem_bbs);
 
 
  /* Find blocks whose dominators may be affected.  */
  /* Find blocks whose dominators may be affected.  */
  sbitmap_zero (seen);
  sbitmap_zero (seen);
  for (i = 0; i < n_bord_bbs; i++)
  for (i = 0; i < n_bord_bbs; i++)
    {
    {
      basic_block ldom;
      basic_block ldom;
 
 
      bb = get_immediate_dominator (CDI_DOMINATORS, bord_bbs[i]);
      bb = get_immediate_dominator (CDI_DOMINATORS, bord_bbs[i]);
      if (TEST_BIT (seen, bb->index))
      if (TEST_BIT (seen, bb->index))
        continue;
        continue;
      SET_BIT (seen, bb->index);
      SET_BIT (seen, bb->index);
 
 
      for (ldom = first_dom_son (CDI_DOMINATORS, bb);
      for (ldom = first_dom_son (CDI_DOMINATORS, bb);
           ldom;
           ldom;
           ldom = next_dom_son (CDI_DOMINATORS, ldom))
           ldom = next_dom_son (CDI_DOMINATORS, ldom))
        if (!dominated_by_p (CDI_DOMINATORS, from, ldom))
        if (!dominated_by_p (CDI_DOMINATORS, from, ldom))
          VEC_safe_push (basic_block, heap, dom_bbs, ldom);
          VEC_safe_push (basic_block, heap, dom_bbs, ldom);
    }
    }
 
 
  free (seen);
  free (seen);
 
 
  /* Recount dominators.  */
  /* Recount dominators.  */
  iterate_fix_dominators (CDI_DOMINATORS, dom_bbs, true);
  iterate_fix_dominators (CDI_DOMINATORS, dom_bbs, true);
  VEC_free (basic_block, heap, dom_bbs);
  VEC_free (basic_block, heap, dom_bbs);
  free (bord_bbs);
  free (bord_bbs);
 
 
  /* Fix placements of basic blocks inside loops and the placement of
  /* Fix placements of basic blocks inside loops and the placement of
     loops in the loop tree.  */
     loops in the loop tree.  */
  fix_bb_placements (from, &irred_invalidated);
  fix_bb_placements (from, &irred_invalidated);
  fix_loop_placements (from->loop_father, &irred_invalidated);
  fix_loop_placements (from->loop_father, &irred_invalidated);
 
 
  if (irred_invalidated
  if (irred_invalidated
      && loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS))
      && loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS))
    mark_irreducible_loops ();
    mark_irreducible_loops ();
 
 
  return true;
  return true;
}
}
 
 
/* Creates place for a new LOOP in loops structure.  */
/* Creates place for a new LOOP in loops structure.  */
 
 
static void
static void
place_new_loop (struct loop *loop)
place_new_loop (struct loop *loop)
{
{
  loop->num = number_of_loops ();
  loop->num = number_of_loops ();
  VEC_safe_push (loop_p, gc, current_loops->larray, loop);
  VEC_safe_push (loop_p, gc, current_loops->larray, loop);
}
}
 
 
/* Given LOOP structure with filled header and latch, find the body of the
/* Given LOOP structure with filled header and latch, find the body of the
   corresponding loop and add it to loops tree.  Insert the LOOP as a son of
   corresponding loop and add it to loops tree.  Insert the LOOP as a son of
   outer.  */
   outer.  */
 
 
void
void
add_loop (struct loop *loop, struct loop *outer)
add_loop (struct loop *loop, struct loop *outer)
{
{
  basic_block *bbs;
  basic_block *bbs;
  int i, n;
  int i, n;
  struct loop *subloop;
  struct loop *subloop;
  edge e;
  edge e;
  edge_iterator ei;
  edge_iterator ei;
 
 
  /* Add it to loop structure.  */
  /* Add it to loop structure.  */
  place_new_loop (loop);
  place_new_loop (loop);
  flow_loop_tree_node_add (outer, loop);
  flow_loop_tree_node_add (outer, loop);
 
 
  /* Find its nodes.  */
  /* Find its nodes.  */
  bbs = XNEWVEC (basic_block, n_basic_blocks);
  bbs = XNEWVEC (basic_block, n_basic_blocks);
  n = get_loop_body_with_size (loop, bbs, n_basic_blocks);
  n = get_loop_body_with_size (loop, bbs, n_basic_blocks);
 
 
  for (i = 0; i < n; i++)
  for (i = 0; i < n; i++)
    {
    {
      if (bbs[i]->loop_father == outer)
      if (bbs[i]->loop_father == outer)
        {
        {
          remove_bb_from_loops (bbs[i]);
          remove_bb_from_loops (bbs[i]);
          add_bb_to_loop (bbs[i], loop);
          add_bb_to_loop (bbs[i], loop);
          continue;
          continue;
        }
        }
 
 
      loop->num_nodes++;
      loop->num_nodes++;
 
 
      /* If we find a direct subloop of OUTER, move it to LOOP.  */
      /* If we find a direct subloop of OUTER, move it to LOOP.  */
      subloop = bbs[i]->loop_father;
      subloop = bbs[i]->loop_father;
      if (loop_outer (subloop) == outer
      if (loop_outer (subloop) == outer
          && subloop->header == bbs[i])
          && subloop->header == bbs[i])
        {
        {
          flow_loop_tree_node_remove (subloop);
          flow_loop_tree_node_remove (subloop);
          flow_loop_tree_node_add (loop, subloop);
          flow_loop_tree_node_add (loop, subloop);
        }
        }
    }
    }
 
 
  /* Update the information about loop exit edges.  */
  /* Update the information about loop exit edges.  */
  for (i = 0; i < n; i++)
  for (i = 0; i < n; i++)
    {
    {
      FOR_EACH_EDGE (e, ei, bbs[i]->succs)
      FOR_EACH_EDGE (e, ei, bbs[i]->succs)
        {
        {
          rescan_loop_exit (e, false, false);
          rescan_loop_exit (e, false, false);
        }
        }
    }
    }
 
 
  free (bbs);
  free (bbs);
}
}
 
 
/* Multiply all frequencies in LOOP by NUM/DEN.  */
/* Multiply all frequencies in LOOP by NUM/DEN.  */
void
void
scale_loop_frequencies (struct loop *loop, int num, int den)
scale_loop_frequencies (struct loop *loop, int num, int den)
{
{
  basic_block *bbs;
  basic_block *bbs;
 
 
  bbs = get_loop_body (loop);
  bbs = get_loop_body (loop);
  scale_bbs_frequencies_int (bbs, loop->num_nodes, num, den);
  scale_bbs_frequencies_int (bbs, loop->num_nodes, num, den);
  free (bbs);
  free (bbs);
}
}
 
 
/* Recompute dominance information for basic blocks outside LOOP.  */
/* Recompute dominance information for basic blocks outside LOOP.  */
 
 
static void
static void
update_dominators_in_loop (struct loop *loop)
update_dominators_in_loop (struct loop *loop)
{
{
  VEC (basic_block, heap) *dom_bbs = NULL;
  VEC (basic_block, heap) *dom_bbs = NULL;
  sbitmap seen;
  sbitmap seen;
  basic_block *body;
  basic_block *body;
  unsigned i;
  unsigned i;
 
 
  seen = sbitmap_alloc (last_basic_block);
  seen = sbitmap_alloc (last_basic_block);
  sbitmap_zero (seen);
  sbitmap_zero (seen);
  body = get_loop_body (loop);
  body = get_loop_body (loop);
 
 
  for (i = 0; i < loop->num_nodes; i++)
  for (i = 0; i < loop->num_nodes; i++)
    SET_BIT (seen, body[i]->index);
    SET_BIT (seen, body[i]->index);
 
 
  for (i = 0; i < loop->num_nodes; i++)
  for (i = 0; i < loop->num_nodes; i++)
    {
    {
      basic_block ldom;
      basic_block ldom;
 
 
      for (ldom = first_dom_son (CDI_DOMINATORS, body[i]);
      for (ldom = first_dom_son (CDI_DOMINATORS, body[i]);
           ldom;
           ldom;
           ldom = next_dom_son (CDI_DOMINATORS, ldom))
           ldom = next_dom_son (CDI_DOMINATORS, ldom))
        if (!TEST_BIT (seen, ldom->index))
        if (!TEST_BIT (seen, ldom->index))
          {
          {
            SET_BIT (seen, ldom->index);
            SET_BIT (seen, ldom->index);
            VEC_safe_push (basic_block, heap, dom_bbs, ldom);
            VEC_safe_push (basic_block, heap, dom_bbs, ldom);
          }
          }
    }
    }
 
 
  iterate_fix_dominators (CDI_DOMINATORS, dom_bbs, false);
  iterate_fix_dominators (CDI_DOMINATORS, dom_bbs, false);
  free (body);
  free (body);
  free (seen);
  free (seen);
  VEC_free (basic_block, heap, dom_bbs);
  VEC_free (basic_block, heap, dom_bbs);
}
}
 
 
/* Creates an if region as shown above. CONDITION is used to create
/* Creates an if region as shown above. CONDITION is used to create
   the test for the if.
   the test for the if.
 
 
   |
   |
   |     -------------                 -------------
   |     -------------                 -------------
   |     |  pred_bb  |                 |  pred_bb  |
   |     |  pred_bb  |                 |  pred_bb  |
   |     -------------                 -------------
   |     -------------                 -------------
   |           |                             |
   |           |                             |
   |           |                             | ENTRY_EDGE
   |           |                             | ENTRY_EDGE
   |           | ENTRY_EDGE                  V
   |           | ENTRY_EDGE                  V
   |           |             ====>     -------------
   |           |             ====>     -------------
   |           |                       |  cond_bb  |
   |           |                       |  cond_bb  |
   |           |                       | CONDITION |
   |           |                       | CONDITION |
   |           |                       -------------
   |           |                       -------------
   |           V                        /         \
   |           V                        /         \
   |     -------------         e_false /           \ e_true
   |     -------------         e_false /           \ e_true
   |     |  succ_bb  |                V             V
   |     |  succ_bb  |                V             V
   |     -------------         -----------       -----------
   |     -------------         -----------       -----------
   |                           | false_bb |      | true_bb |
   |                           | false_bb |      | true_bb |
   |                           -----------       -----------
   |                           -----------       -----------
   |                                   \           /
   |                                   \           /
   |                                    \         /
   |                                    \         /
   |                                     V       V
   |                                     V       V
   |                                   -------------
   |                                   -------------
   |                                   |  join_bb  |
   |                                   |  join_bb  |
   |                                   -------------
   |                                   -------------
   |                                         | exit_edge (result)
   |                                         | exit_edge (result)
   |                                         V
   |                                         V
   |                                    -----------
   |                                    -----------
   |                                    | succ_bb |
   |                                    | succ_bb |
   |                                    -----------
   |                                    -----------
   |
   |
 */
 */
 
 
edge
edge
create_empty_if_region_on_edge (edge entry_edge, tree condition)
create_empty_if_region_on_edge (edge entry_edge, tree condition)
{
{
 
 
  basic_block cond_bb, true_bb, false_bb, join_bb;
  basic_block cond_bb, true_bb, false_bb, join_bb;
  edge e_true, e_false, exit_edge;
  edge e_true, e_false, exit_edge;
  gimple cond_stmt;
  gimple cond_stmt;
  tree simple_cond;
  tree simple_cond;
  gimple_stmt_iterator gsi;
  gimple_stmt_iterator gsi;
 
 
  cond_bb = split_edge (entry_edge);
  cond_bb = split_edge (entry_edge);
 
 
  /* Insert condition in cond_bb.  */
  /* Insert condition in cond_bb.  */
  gsi = gsi_last_bb (cond_bb);
  gsi = gsi_last_bb (cond_bb);
  simple_cond =
  simple_cond =
    force_gimple_operand_gsi (&gsi, condition, true, NULL,
    force_gimple_operand_gsi (&gsi, condition, true, NULL,
                              false, GSI_NEW_STMT);
                              false, GSI_NEW_STMT);
  cond_stmt = gimple_build_cond_from_tree (simple_cond, NULL_TREE, NULL_TREE);
  cond_stmt = gimple_build_cond_from_tree (simple_cond, NULL_TREE, NULL_TREE);
  gsi = gsi_last_bb (cond_bb);
  gsi = gsi_last_bb (cond_bb);
  gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
  gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
 
 
  join_bb = split_edge (single_succ_edge (cond_bb));
  join_bb = split_edge (single_succ_edge (cond_bb));
 
 
  e_true = single_succ_edge (cond_bb);
  e_true = single_succ_edge (cond_bb);
  true_bb = split_edge (e_true);
  true_bb = split_edge (e_true);
 
 
  e_false = make_edge (cond_bb, join_bb, 0);
  e_false = make_edge (cond_bb, join_bb, 0);
  false_bb = split_edge (e_false);
  false_bb = split_edge (e_false);
 
 
  e_true->flags &= ~EDGE_FALLTHRU;
  e_true->flags &= ~EDGE_FALLTHRU;
  e_true->flags |= EDGE_TRUE_VALUE;
  e_true->flags |= EDGE_TRUE_VALUE;
  e_false->flags &= ~EDGE_FALLTHRU;
  e_false->flags &= ~EDGE_FALLTHRU;
  e_false->flags |= EDGE_FALSE_VALUE;
  e_false->flags |= EDGE_FALSE_VALUE;
 
 
  set_immediate_dominator (CDI_DOMINATORS, cond_bb, entry_edge->src);
  set_immediate_dominator (CDI_DOMINATORS, cond_bb, entry_edge->src);
  set_immediate_dominator (CDI_DOMINATORS, true_bb, cond_bb);
  set_immediate_dominator (CDI_DOMINATORS, true_bb, cond_bb);
  set_immediate_dominator (CDI_DOMINATORS, false_bb, cond_bb);
  set_immediate_dominator (CDI_DOMINATORS, false_bb, cond_bb);
  set_immediate_dominator (CDI_DOMINATORS, join_bb, cond_bb);
  set_immediate_dominator (CDI_DOMINATORS, join_bb, cond_bb);
 
 
  exit_edge = single_succ_edge (join_bb);
  exit_edge = single_succ_edge (join_bb);
 
 
  if (single_pred_p (exit_edge->dest))
  if (single_pred_p (exit_edge->dest))
    set_immediate_dominator (CDI_DOMINATORS, exit_edge->dest, join_bb);
    set_immediate_dominator (CDI_DOMINATORS, exit_edge->dest, join_bb);
 
 
  return exit_edge;
  return exit_edge;
}
}
 
 
/* create_empty_loop_on_edge
/* create_empty_loop_on_edge
   |
   |
   |    - pred_bb -                   ------ pred_bb ------
   |    - pred_bb -                   ------ pred_bb ------
   |   |           |                 | iv0 = initial_value |
   |   |           |                 | iv0 = initial_value |
   |    -----|-----                   ---------|-----------
   |    -----|-----                   ---------|-----------
   |         |                       ______    | entry_edge
   |         |                       ______    | entry_edge
   |         | entry_edge           /      |   |
   |         | entry_edge           /      |   |
   |         |             ====>   |      -V---V- loop_header -------------
   |         |             ====>   |      -V---V- loop_header -------------
   |         V                     |     | iv_before = phi (iv0, iv_after) |
   |         V                     |     | iv_before = phi (iv0, iv_after) |
   |    - succ_bb -                |      ---|-----------------------------
   |    - succ_bb -                |      ---|-----------------------------
   |   |           |               |         |
   |   |           |               |         |
   |    -----------                |      ---V--- loop_body ---------------
   |    -----------                |      ---V--- loop_body ---------------
   |                               |     | iv_after = iv_before + stride   |
   |                               |     | iv_after = iv_before + stride   |
   |                               |     | if (iv_before < upper_bound)    |
   |                               |     | if (iv_before < upper_bound)    |
   |                               |      ---|--------------\--------------
   |                               |      ---|--------------\--------------
   |                               |         |               \ exit_e
   |                               |         |               \ exit_e
   |                               |         V                \
   |                               |         V                \
   |                               |       - loop_latch -      V- succ_bb -
   |                               |       - loop_latch -      V- succ_bb -
   |                               |      |              |     |           |
   |                               |      |              |     |           |
   |                               |       /-------------       -----------
   |                               |       /-------------       -----------
   |                                \ ___ /
   |                                \ ___ /
 
 
   Creates an empty loop as shown above, the IV_BEFORE is the SSA_NAME
   Creates an empty loop as shown above, the IV_BEFORE is the SSA_NAME
   that is used before the increment of IV. IV_BEFORE should be used for
   that is used before the increment of IV. IV_BEFORE should be used for
   adding code to the body that uses the IV.  OUTER is the outer loop in
   adding code to the body that uses the IV.  OUTER is the outer loop in
   which the new loop should be inserted.
   which the new loop should be inserted.
 
 
   Both INITIAL_VALUE and UPPER_BOUND expressions are gimplified and
   Both INITIAL_VALUE and UPPER_BOUND expressions are gimplified and
   inserted on the loop entry edge.  This implies that this function
   inserted on the loop entry edge.  This implies that this function
   should be used only when the UPPER_BOUND expression is a loop
   should be used only when the UPPER_BOUND expression is a loop
   invariant.  */
   invariant.  */
 
 
struct loop *
struct loop *
create_empty_loop_on_edge (edge entry_edge,
create_empty_loop_on_edge (edge entry_edge,
                           tree initial_value,
                           tree initial_value,
                           tree stride, tree upper_bound,
                           tree stride, tree upper_bound,
                           tree iv,
                           tree iv,
                           tree *iv_before,
                           tree *iv_before,
                           tree *iv_after,
                           tree *iv_after,
                           struct loop *outer)
                           struct loop *outer)
{
{
  basic_block loop_header, loop_latch, succ_bb, pred_bb;
  basic_block loop_header, loop_latch, succ_bb, pred_bb;
  struct loop *loop;
  struct loop *loop;
  gimple_stmt_iterator gsi;
  gimple_stmt_iterator gsi;
  gimple_seq stmts;
  gimple_seq stmts;
  gimple cond_expr;
  gimple cond_expr;
  tree exit_test;
  tree exit_test;
  edge exit_e;
  edge exit_e;
  int prob;
  int prob;
 
 
  gcc_assert (entry_edge && initial_value && stride && upper_bound && iv);
  gcc_assert (entry_edge && initial_value && stride && upper_bound && iv);
 
 
  /* Create header, latch and wire up the loop.  */
  /* Create header, latch and wire up the loop.  */
  pred_bb = entry_edge->src;
  pred_bb = entry_edge->src;
  loop_header = split_edge (entry_edge);
  loop_header = split_edge (entry_edge);
  loop_latch = split_edge (single_succ_edge (loop_header));
  loop_latch = split_edge (single_succ_edge (loop_header));
  succ_bb = single_succ (loop_latch);
  succ_bb = single_succ (loop_latch);
  make_edge (loop_header, succ_bb, 0);
  make_edge (loop_header, succ_bb, 0);
  redirect_edge_succ_nodup (single_succ_edge (loop_latch), loop_header);
  redirect_edge_succ_nodup (single_succ_edge (loop_latch), loop_header);
 
 
  /* Set immediate dominator information.  */
  /* Set immediate dominator information.  */
  set_immediate_dominator (CDI_DOMINATORS, loop_header, pred_bb);
  set_immediate_dominator (CDI_DOMINATORS, loop_header, pred_bb);
  set_immediate_dominator (CDI_DOMINATORS, loop_latch, loop_header);
  set_immediate_dominator (CDI_DOMINATORS, loop_latch, loop_header);
  set_immediate_dominator (CDI_DOMINATORS, succ_bb, loop_header);
  set_immediate_dominator (CDI_DOMINATORS, succ_bb, loop_header);
 
 
  /* Initialize a loop structure and put it in a loop hierarchy.  */
  /* Initialize a loop structure and put it in a loop hierarchy.  */
  loop = alloc_loop ();
  loop = alloc_loop ();
  loop->header = loop_header;
  loop->header = loop_header;
  loop->latch = loop_latch;
  loop->latch = loop_latch;
  add_loop (loop, outer);
  add_loop (loop, outer);
 
 
  /* TODO: Fix frequencies and counts.  */
  /* TODO: Fix frequencies and counts.  */
  prob = REG_BR_PROB_BASE / 2;
  prob = REG_BR_PROB_BASE / 2;
 
 
  scale_loop_frequencies (loop, REG_BR_PROB_BASE - prob, REG_BR_PROB_BASE);
  scale_loop_frequencies (loop, REG_BR_PROB_BASE - prob, REG_BR_PROB_BASE);
 
 
  /* Update dominators.  */
  /* Update dominators.  */
  update_dominators_in_loop (loop);
  update_dominators_in_loop (loop);
 
 
  /* Modify edge flags.  */
  /* Modify edge flags.  */
  exit_e = single_exit (loop);
  exit_e = single_exit (loop);
  exit_e->flags = EDGE_LOOP_EXIT | EDGE_FALSE_VALUE;
  exit_e->flags = EDGE_LOOP_EXIT | EDGE_FALSE_VALUE;
  single_pred_edge (loop_latch)->flags = EDGE_TRUE_VALUE;
  single_pred_edge (loop_latch)->flags = EDGE_TRUE_VALUE;
 
 
  /* Construct IV code in loop.  */
  /* Construct IV code in loop.  */
  initial_value = force_gimple_operand (initial_value, &stmts, true, iv);
  initial_value = force_gimple_operand (initial_value, &stmts, true, iv);
  if (stmts)
  if (stmts)
    {
    {
      gsi_insert_seq_on_edge (loop_preheader_edge (loop), stmts);
      gsi_insert_seq_on_edge (loop_preheader_edge (loop), stmts);
      gsi_commit_edge_inserts ();
      gsi_commit_edge_inserts ();
    }
    }
 
 
  upper_bound = force_gimple_operand (upper_bound, &stmts, true, NULL);
  upper_bound = force_gimple_operand (upper_bound, &stmts, true, NULL);
  if (stmts)
  if (stmts)
    {
    {
      gsi_insert_seq_on_edge (loop_preheader_edge (loop), stmts);
      gsi_insert_seq_on_edge (loop_preheader_edge (loop), stmts);
      gsi_commit_edge_inserts ();
      gsi_commit_edge_inserts ();
    }
    }
 
 
  gsi = gsi_last_bb (loop_header);
  gsi = gsi_last_bb (loop_header);
  create_iv (initial_value, stride, iv, loop, &gsi, false,
  create_iv (initial_value, stride, iv, loop, &gsi, false,
             iv_before, iv_after);
             iv_before, iv_after);
 
 
  /* Insert loop exit condition.  */
  /* Insert loop exit condition.  */
  cond_expr = gimple_build_cond
  cond_expr = gimple_build_cond
    (LT_EXPR, *iv_before, upper_bound, NULL_TREE, NULL_TREE);
    (LT_EXPR, *iv_before, upper_bound, NULL_TREE, NULL_TREE);
 
 
  exit_test = gimple_cond_lhs (cond_expr);
  exit_test = gimple_cond_lhs (cond_expr);
  exit_test = force_gimple_operand_gsi (&gsi, exit_test, true, NULL,
  exit_test = force_gimple_operand_gsi (&gsi, exit_test, true, NULL,
                                        false, GSI_NEW_STMT);
                                        false, GSI_NEW_STMT);
  gimple_cond_set_lhs (cond_expr, exit_test);
  gimple_cond_set_lhs (cond_expr, exit_test);
  gsi = gsi_last_bb (exit_e->src);
  gsi = gsi_last_bb (exit_e->src);
  gsi_insert_after (&gsi, cond_expr, GSI_NEW_STMT);
  gsi_insert_after (&gsi, cond_expr, GSI_NEW_STMT);
 
 
  split_block_after_labels (loop_header);
  split_block_after_labels (loop_header);
 
 
  return loop;
  return loop;
}
}
 
 
/* Make area between HEADER_EDGE and LATCH_EDGE a loop by connecting
/* Make area between HEADER_EDGE and LATCH_EDGE a loop by connecting
   latch to header and update loop tree and dominators
   latch to header and update loop tree and dominators
   accordingly. Everything between them plus LATCH_EDGE destination must
   accordingly. Everything between them plus LATCH_EDGE destination must
   be dominated by HEADER_EDGE destination, and back-reachable from
   be dominated by HEADER_EDGE destination, and back-reachable from
   LATCH_EDGE source.  HEADER_EDGE is redirected to basic block SWITCH_BB,
   LATCH_EDGE source.  HEADER_EDGE is redirected to basic block SWITCH_BB,
   FALSE_EDGE of SWITCH_BB to original destination of HEADER_EDGE and
   FALSE_EDGE of SWITCH_BB to original destination of HEADER_EDGE and
   TRUE_EDGE of SWITCH_BB to original destination of LATCH_EDGE.
   TRUE_EDGE of SWITCH_BB to original destination of LATCH_EDGE.
   Returns the newly created loop.  Frequencies and counts in the new loop
   Returns the newly created loop.  Frequencies and counts in the new loop
   are scaled by FALSE_SCALE and in the old one by TRUE_SCALE.  */
   are scaled by FALSE_SCALE and in the old one by TRUE_SCALE.  */
 
 
struct loop *
struct loop *
loopify (edge latch_edge, edge header_edge,
loopify (edge latch_edge, edge header_edge,
         basic_block switch_bb, edge true_edge, edge false_edge,
         basic_block switch_bb, edge true_edge, edge false_edge,
         bool redirect_all_edges, unsigned true_scale, unsigned false_scale)
         bool redirect_all_edges, unsigned true_scale, unsigned false_scale)
{
{
  basic_block succ_bb = latch_edge->dest;
  basic_block succ_bb = latch_edge->dest;
  basic_block pred_bb = header_edge->src;
  basic_block pred_bb = header_edge->src;
  struct loop *loop = alloc_loop ();
  struct loop *loop = alloc_loop ();
  struct loop *outer = loop_outer (succ_bb->loop_father);
  struct loop *outer = loop_outer (succ_bb->loop_father);
  int freq;
  int freq;
  gcov_type cnt;
  gcov_type cnt;
  edge e;
  edge e;
  edge_iterator ei;
  edge_iterator ei;
 
 
  loop->header = header_edge->dest;
  loop->header = header_edge->dest;
  loop->latch = latch_edge->src;
  loop->latch = latch_edge->src;
 
 
  freq = EDGE_FREQUENCY (header_edge);
  freq = EDGE_FREQUENCY (header_edge);
  cnt = header_edge->count;
  cnt = header_edge->count;
 
 
  /* Redirect edges.  */
  /* Redirect edges.  */
  loop_redirect_edge (latch_edge, loop->header);
  loop_redirect_edge (latch_edge, loop->header);
  loop_redirect_edge (true_edge, succ_bb);
  loop_redirect_edge (true_edge, succ_bb);
 
 
  /* During loop versioning, one of the switch_bb edge is already properly
  /* During loop versioning, one of the switch_bb edge is already properly
     set. Do not redirect it again unless redirect_all_edges is true.  */
     set. Do not redirect it again unless redirect_all_edges is true.  */
  if (redirect_all_edges)
  if (redirect_all_edges)
    {
    {
      loop_redirect_edge (header_edge, switch_bb);
      loop_redirect_edge (header_edge, switch_bb);
      loop_redirect_edge (false_edge, loop->header);
      loop_redirect_edge (false_edge, loop->header);
 
 
      /* Update dominators.  */
      /* Update dominators.  */
      set_immediate_dominator (CDI_DOMINATORS, switch_bb, pred_bb);
      set_immediate_dominator (CDI_DOMINATORS, switch_bb, pred_bb);
      set_immediate_dominator (CDI_DOMINATORS, loop->header, switch_bb);
      set_immediate_dominator (CDI_DOMINATORS, loop->header, switch_bb);
    }
    }
 
 
  set_immediate_dominator (CDI_DOMINATORS, succ_bb, switch_bb);
  set_immediate_dominator (CDI_DOMINATORS, succ_bb, switch_bb);
 
 
  /* Compute new loop.  */
  /* Compute new loop.  */
  add_loop (loop, outer);
  add_loop (loop, outer);
 
 
  /* Add switch_bb to appropriate loop.  */
  /* Add switch_bb to appropriate loop.  */
  if (switch_bb->loop_father)
  if (switch_bb->loop_father)
    remove_bb_from_loops (switch_bb);
    remove_bb_from_loops (switch_bb);
  add_bb_to_loop (switch_bb, outer);
  add_bb_to_loop (switch_bb, outer);
 
 
  /* Fix frequencies.  */
  /* Fix frequencies.  */
  if (redirect_all_edges)
  if (redirect_all_edges)
    {
    {
      switch_bb->frequency = freq;
      switch_bb->frequency = freq;
      switch_bb->count = cnt;
      switch_bb->count = cnt;
      FOR_EACH_EDGE (e, ei, switch_bb->succs)
      FOR_EACH_EDGE (e, ei, switch_bb->succs)
        {
        {
          e->count = (switch_bb->count * e->probability) / REG_BR_PROB_BASE;
          e->count = (switch_bb->count * e->probability) / REG_BR_PROB_BASE;
        }
        }
    }
    }
  scale_loop_frequencies (loop, false_scale, REG_BR_PROB_BASE);
  scale_loop_frequencies (loop, false_scale, REG_BR_PROB_BASE);
  scale_loop_frequencies (succ_bb->loop_father, true_scale, REG_BR_PROB_BASE);
  scale_loop_frequencies (succ_bb->loop_father, true_scale, REG_BR_PROB_BASE);
  update_dominators_in_loop (loop);
  update_dominators_in_loop (loop);
 
 
  return loop;
  return loop;
}
}
 
 
/* Remove the latch edge of a LOOP and update loops to indicate that
/* Remove the latch edge of a LOOP and update loops to indicate that
   the LOOP was removed.  After this function, original loop latch will
   the LOOP was removed.  After this function, original loop latch will
   have no successor, which caller is expected to fix somehow.
   have no successor, which caller is expected to fix somehow.
 
 
   If this may cause the information about irreducible regions to become
   If this may cause the information about irreducible regions to become
   invalid, IRRED_INVALIDATED is set to true.  */
   invalid, IRRED_INVALIDATED is set to true.  */
 
 
static void
static void
unloop (struct loop *loop, bool *irred_invalidated)
unloop (struct loop *loop, bool *irred_invalidated)
{
{
  basic_block *body;
  basic_block *body;
  struct loop *ploop;
  struct loop *ploop;
  unsigned i, n;
  unsigned i, n;
  basic_block latch = loop->latch;
  basic_block latch = loop->latch;
  bool dummy = false;
  bool dummy = false;
 
 
  if (loop_preheader_edge (loop)->flags & EDGE_IRREDUCIBLE_LOOP)
  if (loop_preheader_edge (loop)->flags & EDGE_IRREDUCIBLE_LOOP)
    *irred_invalidated = true;
    *irred_invalidated = true;
 
 
  /* This is relatively straightforward.  The dominators are unchanged, as
  /* This is relatively straightforward.  The dominators are unchanged, as
     loop header dominates loop latch, so the only thing we have to care of
     loop header dominates loop latch, so the only thing we have to care of
     is the placement of loops and basic blocks inside the loop tree.  We
     is the placement of loops and basic blocks inside the loop tree.  We
     move them all to the loop->outer, and then let fix_bb_placements do
     move them all to the loop->outer, and then let fix_bb_placements do
     its work.  */
     its work.  */
 
 
  body = get_loop_body (loop);
  body = get_loop_body (loop);
  n = loop->num_nodes;
  n = loop->num_nodes;
  for (i = 0; i < n; i++)
  for (i = 0; i < n; i++)
    if (body[i]->loop_father == loop)
    if (body[i]->loop_father == loop)
      {
      {
        remove_bb_from_loops (body[i]);
        remove_bb_from_loops (body[i]);
        add_bb_to_loop (body[i], loop_outer (loop));
        add_bb_to_loop (body[i], loop_outer (loop));
      }
      }
  free(body);
  free(body);
 
 
  while (loop->inner)
  while (loop->inner)
    {
    {
      ploop = loop->inner;
      ploop = loop->inner;
      flow_loop_tree_node_remove (ploop);
      flow_loop_tree_node_remove (ploop);
      flow_loop_tree_node_add (loop_outer (loop), ploop);
      flow_loop_tree_node_add (loop_outer (loop), ploop);
    }
    }
 
 
  /* Remove the loop and free its data.  */
  /* Remove the loop and free its data.  */
  delete_loop (loop);
  delete_loop (loop);
 
 
  remove_edge (single_succ_edge (latch));
  remove_edge (single_succ_edge (latch));
 
 
  /* We do not pass IRRED_INVALIDATED to fix_bb_placements here, as even if
  /* We do not pass IRRED_INVALIDATED to fix_bb_placements here, as even if
     there is an irreducible region inside the cancelled loop, the flags will
     there is an irreducible region inside the cancelled loop, the flags will
     be still correct.  */
     be still correct.  */
  fix_bb_placements (latch, &dummy);
  fix_bb_placements (latch, &dummy);
}
}
 
 
/* Fix placement of superloops of LOOP inside loop tree, i.e. ensure that
/* Fix placement of superloops of LOOP inside loop tree, i.e. ensure that
   condition stated in description of fix_loop_placement holds for them.
   condition stated in description of fix_loop_placement holds for them.
   It is used in case when we removed some edges coming out of LOOP, which
   It is used in case when we removed some edges coming out of LOOP, which
   may cause the right placement of LOOP inside loop tree to change.
   may cause the right placement of LOOP inside loop tree to change.
 
 
   IRRED_INVALIDATED is set to true if a change in the loop structures might
   IRRED_INVALIDATED is set to true if a change in the loop structures might
   invalidate the information about irreducible regions.  */
   invalidate the information about irreducible regions.  */
 
 
static void
static void
fix_loop_placements (struct loop *loop, bool *irred_invalidated)
fix_loop_placements (struct loop *loop, bool *irred_invalidated)
{
{
  struct loop *outer;
  struct loop *outer;
 
 
  while (loop_outer (loop))
  while (loop_outer (loop))
    {
    {
      outer = loop_outer (loop);
      outer = loop_outer (loop);
      if (!fix_loop_placement (loop))
      if (!fix_loop_placement (loop))
        break;
        break;
 
 
      /* Changing the placement of a loop in the loop tree may alter the
      /* Changing the placement of a loop in the loop tree may alter the
         validity of condition 2) of the description of fix_bb_placement
         validity of condition 2) of the description of fix_bb_placement
         for its preheader, because the successor is the header and belongs
         for its preheader, because the successor is the header and belongs
         to the loop.  So call fix_bb_placements to fix up the placement
         to the loop.  So call fix_bb_placements to fix up the placement
         of the preheader and (possibly) of its predecessors.  */
         of the preheader and (possibly) of its predecessors.  */
      fix_bb_placements (loop_preheader_edge (loop)->src,
      fix_bb_placements (loop_preheader_edge (loop)->src,
                         irred_invalidated);
                         irred_invalidated);
      loop = outer;
      loop = outer;
    }
    }
}
}
 
 
/* Copies copy of LOOP as subloop of TARGET loop, placing newly
/* Copies copy of LOOP as subloop of TARGET loop, placing newly
   created loop into loops structure.  */
   created loop into loops structure.  */
struct loop *
struct loop *
duplicate_loop (struct loop *loop, struct loop *target)
duplicate_loop (struct loop *loop, struct loop *target)
{
{
  struct loop *cloop;
  struct loop *cloop;
  cloop = alloc_loop ();
  cloop = alloc_loop ();
  place_new_loop (cloop);
  place_new_loop (cloop);
 
 
  /* Mark the new loop as copy of LOOP.  */
  /* Mark the new loop as copy of LOOP.  */
  set_loop_copy (loop, cloop);
  set_loop_copy (loop, cloop);
 
 
  /* Add it to target.  */
  /* Add it to target.  */
  flow_loop_tree_node_add (target, cloop);
  flow_loop_tree_node_add (target, cloop);
 
 
  return cloop;
  return cloop;
}
}
 
 
/* Copies structure of subloops of LOOP into TARGET loop, placing
/* Copies structure of subloops of LOOP into TARGET loop, placing
   newly created loops into loop tree.  */
   newly created loops into loop tree.  */
void
void
duplicate_subloops (struct loop *loop, struct loop *target)
duplicate_subloops (struct loop *loop, struct loop *target)
{
{
  struct loop *aloop, *cloop;
  struct loop *aloop, *cloop;
 
 
  for (aloop = loop->inner; aloop; aloop = aloop->next)
  for (aloop = loop->inner; aloop; aloop = aloop->next)
    {
    {
      cloop = duplicate_loop (aloop, target);
      cloop = duplicate_loop (aloop, target);
      duplicate_subloops (aloop, cloop);
      duplicate_subloops (aloop, cloop);
    }
    }
}
}
 
 
/* Copies structure of subloops of N loops, stored in array COPIED_LOOPS,
/* Copies structure of subloops of N loops, stored in array COPIED_LOOPS,
   into TARGET loop, placing newly created loops into loop tree.  */
   into TARGET loop, placing newly created loops into loop tree.  */
static void
static void
copy_loops_to (struct loop **copied_loops, int n, struct loop *target)
copy_loops_to (struct loop **copied_loops, int n, struct loop *target)
{
{
  struct loop *aloop;
  struct loop *aloop;
  int i;
  int i;
 
 
  for (i = 0; i < n; i++)
  for (i = 0; i < n; i++)
    {
    {
      aloop = duplicate_loop (copied_loops[i], target);
      aloop = duplicate_loop (copied_loops[i], target);
      duplicate_subloops (copied_loops[i], aloop);
      duplicate_subloops (copied_loops[i], aloop);
    }
    }
}
}
 
 
/* Redirects edge E to basic block DEST.  */
/* Redirects edge E to basic block DEST.  */
static void
static void
loop_redirect_edge (edge e, basic_block dest)
loop_redirect_edge (edge e, basic_block dest)
{
{
  if (e->dest == dest)
  if (e->dest == dest)
    return;
    return;
 
 
  redirect_edge_and_branch_force (e, dest);
  redirect_edge_and_branch_force (e, dest);
}
}
 
 
/* Check whether LOOP's body can be duplicated.  */
/* Check whether LOOP's body can be duplicated.  */
bool
bool
can_duplicate_loop_p (const struct loop *loop)
can_duplicate_loop_p (const struct loop *loop)
{
{
  int ret;
  int ret;
  basic_block *bbs = get_loop_body (loop);
  basic_block *bbs = get_loop_body (loop);
 
 
  ret = can_copy_bbs_p (bbs, loop->num_nodes);
  ret = can_copy_bbs_p (bbs, loop->num_nodes);
  free (bbs);
  free (bbs);
 
 
  return ret;
  return ret;
}
}
 
 
/* Sets probability and count of edge E to zero.  The probability and count
/* Sets probability and count of edge E to zero.  The probability and count
   is redistributed evenly to the remaining edges coming from E->src.  */
   is redistributed evenly to the remaining edges coming from E->src.  */
 
 
static void
static void
set_zero_probability (edge e)
set_zero_probability (edge e)
{
{
  basic_block bb = e->src;
  basic_block bb = e->src;
  edge_iterator ei;
  edge_iterator ei;
  edge ae, last = NULL;
  edge ae, last = NULL;
  unsigned n = EDGE_COUNT (bb->succs);
  unsigned n = EDGE_COUNT (bb->succs);
  gcov_type cnt = e->count, cnt1;
  gcov_type cnt = e->count, cnt1;
  unsigned prob = e->probability, prob1;
  unsigned prob = e->probability, prob1;
 
 
  gcc_assert (n > 1);
  gcc_assert (n > 1);
  cnt1 = cnt / (n - 1);
  cnt1 = cnt / (n - 1);
  prob1 = prob / (n - 1);
  prob1 = prob / (n - 1);
 
 
  FOR_EACH_EDGE (ae, ei, bb->succs)
  FOR_EACH_EDGE (ae, ei, bb->succs)
    {
    {
      if (ae == e)
      if (ae == e)
        continue;
        continue;
 
 
      ae->probability += prob1;
      ae->probability += prob1;
      ae->count += cnt1;
      ae->count += cnt1;
      last = ae;
      last = ae;
    }
    }
 
 
  /* Move the rest to one of the edges.  */
  /* Move the rest to one of the edges.  */
  last->probability += prob % (n - 1);
  last->probability += prob % (n - 1);
  last->count += cnt % (n - 1);
  last->count += cnt % (n - 1);
 
 
  e->probability = 0;
  e->probability = 0;
  e->count = 0;
  e->count = 0;
}
}
 
 
/* Duplicates body of LOOP to given edge E NDUPL times.  Takes care of updating
/* Duplicates body of LOOP to given edge E NDUPL times.  Takes care of updating
   loop structure and dominators.  E's destination must be LOOP header for
   loop structure and dominators.  E's destination must be LOOP header for
   this to work, i.e. it must be entry or latch edge of this loop; these are
   this to work, i.e. it must be entry or latch edge of this loop; these are
   unique, as the loops must have preheaders for this function to work
   unique, as the loops must have preheaders for this function to work
   correctly (in case E is latch, the function unrolls the loop, if E is entry
   correctly (in case E is latch, the function unrolls the loop, if E is entry
   edge, it peels the loop).  Store edges created by copying ORIG edge from
   edge, it peels the loop).  Store edges created by copying ORIG edge from
   copies corresponding to set bits in WONT_EXIT bitmap (bit 0 corresponds to
   copies corresponding to set bits in WONT_EXIT bitmap (bit 0 corresponds to
   original LOOP body, the other copies are numbered in order given by control
   original LOOP body, the other copies are numbered in order given by control
   flow through them) into TO_REMOVE array.  Returns false if duplication is
   flow through them) into TO_REMOVE array.  Returns false if duplication is
   impossible.  */
   impossible.  */
 
 
bool
bool
duplicate_loop_to_header_edge (struct loop *loop, edge e,
duplicate_loop_to_header_edge (struct loop *loop, edge e,
                               unsigned int ndupl, sbitmap wont_exit,
                               unsigned int ndupl, sbitmap wont_exit,
                               edge orig, VEC (edge, heap) **to_remove,
                               edge orig, VEC (edge, heap) **to_remove,
                               int flags)
                               int flags)
{
{
  struct loop *target, *aloop;
  struct loop *target, *aloop;
  struct loop **orig_loops;
  struct loop **orig_loops;
  unsigned n_orig_loops;
  unsigned n_orig_loops;
  basic_block header = loop->header, latch = loop->latch;
  basic_block header = loop->header, latch = loop->latch;
  basic_block *new_bbs, *bbs, *first_active;
  basic_block *new_bbs, *bbs, *first_active;
  basic_block new_bb, bb, first_active_latch = NULL;
  basic_block new_bb, bb, first_active_latch = NULL;
  edge ae, latch_edge;
  edge ae, latch_edge;
  edge spec_edges[2], new_spec_edges[2];
  edge spec_edges[2], new_spec_edges[2];
#define SE_LATCH 0
#define SE_LATCH 0
#define SE_ORIG 1
#define SE_ORIG 1
  unsigned i, j, n;
  unsigned i, j, n;
  int is_latch = (latch == e->src);
  int is_latch = (latch == e->src);
  int scale_act = 0, *scale_step = NULL, scale_main = 0;
  int scale_act = 0, *scale_step = NULL, scale_main = 0;
  int scale_after_exit = 0;
  int scale_after_exit = 0;
  int p, freq_in, freq_le, freq_out_orig;
  int p, freq_in, freq_le, freq_out_orig;
  int prob_pass_thru, prob_pass_wont_exit, prob_pass_main;
  int prob_pass_thru, prob_pass_wont_exit, prob_pass_main;
  int add_irreducible_flag;
  int add_irreducible_flag;
  basic_block place_after;
  basic_block place_after;
  bitmap bbs_to_scale = NULL;
  bitmap bbs_to_scale = NULL;
  bitmap_iterator bi;
  bitmap_iterator bi;
 
 
  gcc_assert (e->dest == loop->header);
  gcc_assert (e->dest == loop->header);
  gcc_assert (ndupl > 0);
  gcc_assert (ndupl > 0);
 
 
  if (orig)
  if (orig)
    {
    {
      /* Orig must be edge out of the loop.  */
      /* Orig must be edge out of the loop.  */
      gcc_assert (flow_bb_inside_loop_p (loop, orig->src));
      gcc_assert (flow_bb_inside_loop_p (loop, orig->src));
      gcc_assert (!flow_bb_inside_loop_p (loop, orig->dest));
      gcc_assert (!flow_bb_inside_loop_p (loop, orig->dest));
    }
    }
 
 
  n = loop->num_nodes;
  n = loop->num_nodes;
  bbs = get_loop_body_in_dom_order (loop);
  bbs = get_loop_body_in_dom_order (loop);
  gcc_assert (bbs[0] == loop->header);
  gcc_assert (bbs[0] == loop->header);
  gcc_assert (bbs[n  - 1] == loop->latch);
  gcc_assert (bbs[n  - 1] == loop->latch);
 
 
  /* Check whether duplication is possible.  */
  /* Check whether duplication is possible.  */
  if (!can_copy_bbs_p (bbs, loop->num_nodes))
  if (!can_copy_bbs_p (bbs, loop->num_nodes))
    {
    {
      free (bbs);
      free (bbs);
      return false;
      return false;
    }
    }
  new_bbs = XNEWVEC (basic_block, loop->num_nodes);
  new_bbs = XNEWVEC (basic_block, loop->num_nodes);
 
 
  /* In case we are doing loop peeling and the loop is in the middle of
  /* In case we are doing loop peeling and the loop is in the middle of
     irreducible region, the peeled copies will be inside it too.  */
     irreducible region, the peeled copies will be inside it too.  */
  add_irreducible_flag = e->flags & EDGE_IRREDUCIBLE_LOOP;
  add_irreducible_flag = e->flags & EDGE_IRREDUCIBLE_LOOP;
  gcc_assert (!is_latch || !add_irreducible_flag);
  gcc_assert (!is_latch || !add_irreducible_flag);
 
 
  /* Find edge from latch.  */
  /* Find edge from latch.  */
  latch_edge = loop_latch_edge (loop);
  latch_edge = loop_latch_edge (loop);
 
 
  if (flags & DLTHE_FLAG_UPDATE_FREQ)
  if (flags & DLTHE_FLAG_UPDATE_FREQ)
    {
    {
      /* Calculate coefficients by that we have to scale frequencies
      /* Calculate coefficients by that we have to scale frequencies
         of duplicated loop bodies.  */
         of duplicated loop bodies.  */
      freq_in = header->frequency;
      freq_in = header->frequency;
      freq_le = EDGE_FREQUENCY (latch_edge);
      freq_le = EDGE_FREQUENCY (latch_edge);
      if (freq_in == 0)
      if (freq_in == 0)
        freq_in = 1;
        freq_in = 1;
      if (freq_in < freq_le)
      if (freq_in < freq_le)
        freq_in = freq_le;
        freq_in = freq_le;
      freq_out_orig = orig ? EDGE_FREQUENCY (orig) : freq_in - freq_le;
      freq_out_orig = orig ? EDGE_FREQUENCY (orig) : freq_in - freq_le;
      if (freq_out_orig > freq_in - freq_le)
      if (freq_out_orig > freq_in - freq_le)
        freq_out_orig = freq_in - freq_le;
        freq_out_orig = freq_in - freq_le;
      prob_pass_thru = RDIV (REG_BR_PROB_BASE * freq_le, freq_in);
      prob_pass_thru = RDIV (REG_BR_PROB_BASE * freq_le, freq_in);
      prob_pass_wont_exit =
      prob_pass_wont_exit =
              RDIV (REG_BR_PROB_BASE * (freq_le + freq_out_orig), freq_in);
              RDIV (REG_BR_PROB_BASE * (freq_le + freq_out_orig), freq_in);
 
 
      if (orig
      if (orig
          && REG_BR_PROB_BASE - orig->probability != 0)
          && REG_BR_PROB_BASE - orig->probability != 0)
        {
        {
          /* The blocks that are dominated by a removed exit edge ORIG have
          /* The blocks that are dominated by a removed exit edge ORIG have
             frequencies scaled by this.  */
             frequencies scaled by this.  */
          scale_after_exit = RDIV (REG_BR_PROB_BASE * REG_BR_PROB_BASE,
          scale_after_exit = RDIV (REG_BR_PROB_BASE * REG_BR_PROB_BASE,
                                   REG_BR_PROB_BASE - orig->probability);
                                   REG_BR_PROB_BASE - orig->probability);
          bbs_to_scale = BITMAP_ALLOC (NULL);
          bbs_to_scale = BITMAP_ALLOC (NULL);
          for (i = 0; i < n; i++)
          for (i = 0; i < n; i++)
            {
            {
              if (bbs[i] != orig->src
              if (bbs[i] != orig->src
                  && dominated_by_p (CDI_DOMINATORS, bbs[i], orig->src))
                  && dominated_by_p (CDI_DOMINATORS, bbs[i], orig->src))
                bitmap_set_bit (bbs_to_scale, i);
                bitmap_set_bit (bbs_to_scale, i);
            }
            }
        }
        }
 
 
      scale_step = XNEWVEC (int, ndupl);
      scale_step = XNEWVEC (int, ndupl);
 
 
      for (i = 1; i <= ndupl; i++)
      for (i = 1; i <= ndupl; i++)
        scale_step[i - 1] = TEST_BIT (wont_exit, i)
        scale_step[i - 1] = TEST_BIT (wont_exit, i)
                                ? prob_pass_wont_exit
                                ? prob_pass_wont_exit
                                : prob_pass_thru;
                                : prob_pass_thru;
 
 
      /* Complete peeling is special as the probability of exit in last
      /* Complete peeling is special as the probability of exit in last
         copy becomes 1.  */
         copy becomes 1.  */
      if (flags & DLTHE_FLAG_COMPLETTE_PEEL)
      if (flags & DLTHE_FLAG_COMPLETTE_PEEL)
        {
        {
          int wanted_freq = EDGE_FREQUENCY (e);
          int wanted_freq = EDGE_FREQUENCY (e);
 
 
          if (wanted_freq > freq_in)
          if (wanted_freq > freq_in)
            wanted_freq = freq_in;
            wanted_freq = freq_in;
 
 
          gcc_assert (!is_latch);
          gcc_assert (!is_latch);
          /* First copy has frequency of incoming edge.  Each subsequent
          /* First copy has frequency of incoming edge.  Each subsequent
             frequency should be reduced by prob_pass_wont_exit.  Caller
             frequency should be reduced by prob_pass_wont_exit.  Caller
             should've managed the flags so all except for original loop
             should've managed the flags so all except for original loop
             has won't exist set.  */
             has won't exist set.  */
          scale_act = RDIV (wanted_freq * REG_BR_PROB_BASE, freq_in);
          scale_act = RDIV (wanted_freq * REG_BR_PROB_BASE, freq_in);
          /* Now simulate the duplication adjustments and compute header
          /* Now simulate the duplication adjustments and compute header
             frequency of the last copy.  */
             frequency of the last copy.  */
          for (i = 0; i < ndupl; i++)
          for (i = 0; i < ndupl; i++)
            wanted_freq = RDIV (wanted_freq * scale_step[i], REG_BR_PROB_BASE);
            wanted_freq = RDIV (wanted_freq * scale_step[i], REG_BR_PROB_BASE);
          scale_main = RDIV (wanted_freq * REG_BR_PROB_BASE, freq_in);
          scale_main = RDIV (wanted_freq * REG_BR_PROB_BASE, freq_in);
        }
        }
      else if (is_latch)
      else if (is_latch)
        {
        {
          prob_pass_main = TEST_BIT (wont_exit, 0)
          prob_pass_main = TEST_BIT (wont_exit, 0)
                                ? prob_pass_wont_exit
                                ? prob_pass_wont_exit
                                : prob_pass_thru;
                                : prob_pass_thru;
          p = prob_pass_main;
          p = prob_pass_main;
          scale_main = REG_BR_PROB_BASE;
          scale_main = REG_BR_PROB_BASE;
          for (i = 0; i < ndupl; i++)
          for (i = 0; i < ndupl; i++)
            {
            {
              scale_main += p;
              scale_main += p;
              p = RDIV (p * scale_step[i], REG_BR_PROB_BASE);
              p = RDIV (p * scale_step[i], REG_BR_PROB_BASE);
            }
            }
          scale_main = RDIV (REG_BR_PROB_BASE * REG_BR_PROB_BASE, scale_main);
          scale_main = RDIV (REG_BR_PROB_BASE * REG_BR_PROB_BASE, scale_main);
          scale_act = RDIV (scale_main * prob_pass_main, REG_BR_PROB_BASE);
          scale_act = RDIV (scale_main * prob_pass_main, REG_BR_PROB_BASE);
        }
        }
      else
      else
        {
        {
          scale_main = REG_BR_PROB_BASE;
          scale_main = REG_BR_PROB_BASE;
          for (i = 0; i < ndupl; i++)
          for (i = 0; i < ndupl; i++)
            scale_main = RDIV (scale_main * scale_step[i], REG_BR_PROB_BASE);
            scale_main = RDIV (scale_main * scale_step[i], REG_BR_PROB_BASE);
          scale_act = REG_BR_PROB_BASE - prob_pass_thru;
          scale_act = REG_BR_PROB_BASE - prob_pass_thru;
        }
        }
      for (i = 0; i < ndupl; i++)
      for (i = 0; i < ndupl; i++)
        gcc_assert (scale_step[i] >= 0 && scale_step[i] <= REG_BR_PROB_BASE);
        gcc_assert (scale_step[i] >= 0 && scale_step[i] <= REG_BR_PROB_BASE);
      gcc_assert (scale_main >= 0 && scale_main <= REG_BR_PROB_BASE
      gcc_assert (scale_main >= 0 && scale_main <= REG_BR_PROB_BASE
                  && scale_act >= 0  && scale_act <= REG_BR_PROB_BASE);
                  && scale_act >= 0  && scale_act <= REG_BR_PROB_BASE);
    }
    }
 
 
  /* Loop the new bbs will belong to.  */
  /* Loop the new bbs will belong to.  */
  target = e->src->loop_father;
  target = e->src->loop_father;
 
 
  /* Original loops.  */
  /* Original loops.  */
  n_orig_loops = 0;
  n_orig_loops = 0;
  for (aloop = loop->inner; aloop; aloop = aloop->next)
  for (aloop = loop->inner; aloop; aloop = aloop->next)
    n_orig_loops++;
    n_orig_loops++;
  orig_loops = XCNEWVEC (struct loop *, n_orig_loops);
  orig_loops = XCNEWVEC (struct loop *, n_orig_loops);
  for (aloop = loop->inner, i = 0; aloop; aloop = aloop->next, i++)
  for (aloop = loop->inner, i = 0; aloop; aloop = aloop->next, i++)
    orig_loops[i] = aloop;
    orig_loops[i] = aloop;
 
 
  set_loop_copy (loop, target);
  set_loop_copy (loop, target);
 
 
  first_active = XNEWVEC (basic_block, n);
  first_active = XNEWVEC (basic_block, n);
  if (is_latch)
  if (is_latch)
    {
    {
      memcpy (first_active, bbs, n * sizeof (basic_block));
      memcpy (first_active, bbs, n * sizeof (basic_block));
      first_active_latch = latch;
      first_active_latch = latch;
    }
    }
 
 
  spec_edges[SE_ORIG] = orig;
  spec_edges[SE_ORIG] = orig;
  spec_edges[SE_LATCH] = latch_edge;
  spec_edges[SE_LATCH] = latch_edge;
 
 
  place_after = e->src;
  place_after = e->src;
  for (j = 0; j < ndupl; j++)
  for (j = 0; j < ndupl; j++)
    {
    {
      /* Copy loops.  */
      /* Copy loops.  */
      copy_loops_to (orig_loops, n_orig_loops, target);
      copy_loops_to (orig_loops, n_orig_loops, target);
 
 
      /* Copy bbs.  */
      /* Copy bbs.  */
      copy_bbs (bbs, n, new_bbs, spec_edges, 2, new_spec_edges, loop,
      copy_bbs (bbs, n, new_bbs, spec_edges, 2, new_spec_edges, loop,
                place_after);
                place_after);
      place_after = new_spec_edges[SE_LATCH]->src;
      place_after = new_spec_edges[SE_LATCH]->src;
 
 
      if (flags & DLTHE_RECORD_COPY_NUMBER)
      if (flags & DLTHE_RECORD_COPY_NUMBER)
        for (i = 0; i < n; i++)
        for (i = 0; i < n; i++)
          {
          {
            gcc_assert (!new_bbs[i]->aux);
            gcc_assert (!new_bbs[i]->aux);
            new_bbs[i]->aux = (void *)(size_t)(j + 1);
            new_bbs[i]->aux = (void *)(size_t)(j + 1);
          }
          }
 
 
      /* Note whether the blocks and edges belong to an irreducible loop.  */
      /* Note whether the blocks and edges belong to an irreducible loop.  */
      if (add_irreducible_flag)
      if (add_irreducible_flag)
        {
        {
          for (i = 0; i < n; i++)
          for (i = 0; i < n; i++)
            new_bbs[i]->flags |= BB_DUPLICATED;
            new_bbs[i]->flags |= BB_DUPLICATED;
          for (i = 0; i < n; i++)
          for (i = 0; i < n; i++)
            {
            {
              edge_iterator ei;
              edge_iterator ei;
              new_bb = new_bbs[i];
              new_bb = new_bbs[i];
              if (new_bb->loop_father == target)
              if (new_bb->loop_father == target)
                new_bb->flags |= BB_IRREDUCIBLE_LOOP;
                new_bb->flags |= BB_IRREDUCIBLE_LOOP;
 
 
              FOR_EACH_EDGE (ae, ei, new_bb->succs)
              FOR_EACH_EDGE (ae, ei, new_bb->succs)
                if ((ae->dest->flags & BB_DUPLICATED)
                if ((ae->dest->flags & BB_DUPLICATED)
                    && (ae->src->loop_father == target
                    && (ae->src->loop_father == target
                        || ae->dest->loop_father == target))
                        || ae->dest->loop_father == target))
                  ae->flags |= EDGE_IRREDUCIBLE_LOOP;
                  ae->flags |= EDGE_IRREDUCIBLE_LOOP;
            }
            }
          for (i = 0; i < n; i++)
          for (i = 0; i < n; i++)
            new_bbs[i]->flags &= ~BB_DUPLICATED;
            new_bbs[i]->flags &= ~BB_DUPLICATED;
        }
        }
 
 
      /* Redirect the special edges.  */
      /* Redirect the special edges.  */
      if (is_latch)
      if (is_latch)
        {
        {
          redirect_edge_and_branch_force (latch_edge, new_bbs[0]);
          redirect_edge_and_branch_force (latch_edge, new_bbs[0]);
          redirect_edge_and_branch_force (new_spec_edges[SE_LATCH],
          redirect_edge_and_branch_force (new_spec_edges[SE_LATCH],
                                          loop->header);
                                          loop->header);
          set_immediate_dominator (CDI_DOMINATORS, new_bbs[0], latch);
          set_immediate_dominator (CDI_DOMINATORS, new_bbs[0], latch);
          latch = loop->latch = new_bbs[n - 1];
          latch = loop->latch = new_bbs[n - 1];
          e = latch_edge = new_spec_edges[SE_LATCH];
          e = latch_edge = new_spec_edges[SE_LATCH];
        }
        }
      else
      else
        {
        {
          redirect_edge_and_branch_force (new_spec_edges[SE_LATCH],
          redirect_edge_and_branch_force (new_spec_edges[SE_LATCH],
                                          loop->header);
                                          loop->header);
          redirect_edge_and_branch_force (e, new_bbs[0]);
          redirect_edge_and_branch_force (e, new_bbs[0]);
          set_immediate_dominator (CDI_DOMINATORS, new_bbs[0], e->src);
          set_immediate_dominator (CDI_DOMINATORS, new_bbs[0], e->src);
          e = new_spec_edges[SE_LATCH];
          e = new_spec_edges[SE_LATCH];
        }
        }
 
 
      /* Record exit edge in this copy.  */
      /* Record exit edge in this copy.  */
      if (orig && TEST_BIT (wont_exit, j + 1))
      if (orig && TEST_BIT (wont_exit, j + 1))
        {
        {
          if (to_remove)
          if (to_remove)
            VEC_safe_push (edge, heap, *to_remove, new_spec_edges[SE_ORIG]);
            VEC_safe_push (edge, heap, *to_remove, new_spec_edges[SE_ORIG]);
          set_zero_probability (new_spec_edges[SE_ORIG]);
          set_zero_probability (new_spec_edges[SE_ORIG]);
 
 
          /* Scale the frequencies of the blocks dominated by the exit.  */
          /* Scale the frequencies of the blocks dominated by the exit.  */
          if (bbs_to_scale)
          if (bbs_to_scale)
            {
            {
              EXECUTE_IF_SET_IN_BITMAP (bbs_to_scale, 0, i, bi)
              EXECUTE_IF_SET_IN_BITMAP (bbs_to_scale, 0, i, bi)
                {
                {
                  scale_bbs_frequencies_int (new_bbs + i, 1, scale_after_exit,
                  scale_bbs_frequencies_int (new_bbs + i, 1, scale_after_exit,
                                             REG_BR_PROB_BASE);
                                             REG_BR_PROB_BASE);
                }
                }
            }
            }
        }
        }
 
 
      /* Record the first copy in the control flow order if it is not
      /* Record the first copy in the control flow order if it is not
         the original loop (i.e. in case of peeling).  */
         the original loop (i.e. in case of peeling).  */
      if (!first_active_latch)
      if (!first_active_latch)
        {
        {
          memcpy (first_active, new_bbs, n * sizeof (basic_block));
          memcpy (first_active, new_bbs, n * sizeof (basic_block));
          first_active_latch = new_bbs[n - 1];
          first_active_latch = new_bbs[n - 1];
        }
        }
 
 
      /* Set counts and frequencies.  */
      /* Set counts and frequencies.  */
      if (flags & DLTHE_FLAG_UPDATE_FREQ)
      if (flags & DLTHE_FLAG_UPDATE_FREQ)
        {
        {
          scale_bbs_frequencies_int (new_bbs, n, scale_act, REG_BR_PROB_BASE);
          scale_bbs_frequencies_int (new_bbs, n, scale_act, REG_BR_PROB_BASE);
          scale_act = RDIV (scale_act * scale_step[j], REG_BR_PROB_BASE);
          scale_act = RDIV (scale_act * scale_step[j], REG_BR_PROB_BASE);
        }
        }
    }
    }
  free (new_bbs);
  free (new_bbs);
  free (orig_loops);
  free (orig_loops);
 
 
  /* Record the exit edge in the original loop body, and update the frequencies.  */
  /* Record the exit edge in the original loop body, and update the frequencies.  */
  if (orig && TEST_BIT (wont_exit, 0))
  if (orig && TEST_BIT (wont_exit, 0))
    {
    {
      if (to_remove)
      if (to_remove)
        VEC_safe_push (edge, heap, *to_remove, orig);
        VEC_safe_push (edge, heap, *to_remove, orig);
      set_zero_probability (orig);
      set_zero_probability (orig);
 
 
      /* Scale the frequencies of the blocks dominated by the exit.  */
      /* Scale the frequencies of the blocks dominated by the exit.  */
      if (bbs_to_scale)
      if (bbs_to_scale)
        {
        {
          EXECUTE_IF_SET_IN_BITMAP (bbs_to_scale, 0, i, bi)
          EXECUTE_IF_SET_IN_BITMAP (bbs_to_scale, 0, i, bi)
            {
            {
              scale_bbs_frequencies_int (bbs + i, 1, scale_after_exit,
              scale_bbs_frequencies_int (bbs + i, 1, scale_after_exit,
                                         REG_BR_PROB_BASE);
                                         REG_BR_PROB_BASE);
            }
            }
        }
        }
    }
    }
 
 
  /* Update the original loop.  */
  /* Update the original loop.  */
  if (!is_latch)
  if (!is_latch)
    set_immediate_dominator (CDI_DOMINATORS, e->dest, e->src);
    set_immediate_dominator (CDI_DOMINATORS, e->dest, e->src);
  if (flags & DLTHE_FLAG_UPDATE_FREQ)
  if (flags & DLTHE_FLAG_UPDATE_FREQ)
    {
    {
      scale_bbs_frequencies_int (bbs, n, scale_main, REG_BR_PROB_BASE);
      scale_bbs_frequencies_int (bbs, n, scale_main, REG_BR_PROB_BASE);
      free (scale_step);
      free (scale_step);
    }
    }
 
 
  /* Update dominators of outer blocks if affected.  */
  /* Update dominators of outer blocks if affected.  */
  for (i = 0; i < n; i++)
  for (i = 0; i < n; i++)
    {
    {
      basic_block dominated, dom_bb;
      basic_block dominated, dom_bb;
      VEC (basic_block, heap) *dom_bbs;
      VEC (basic_block, heap) *dom_bbs;
      unsigned j;
      unsigned j;
 
 
      bb = bbs[i];
      bb = bbs[i];
      bb->aux = 0;
      bb->aux = 0;
 
 
      dom_bbs = get_dominated_by (CDI_DOMINATORS, bb);
      dom_bbs = get_dominated_by (CDI_DOMINATORS, bb);
      for (j = 0; VEC_iterate (basic_block, dom_bbs, j, dominated); j++)
      for (j = 0; VEC_iterate (basic_block, dom_bbs, j, dominated); j++)
        {
        {
          if (flow_bb_inside_loop_p (loop, dominated))
          if (flow_bb_inside_loop_p (loop, dominated))
            continue;
            continue;
          dom_bb = nearest_common_dominator (
          dom_bb = nearest_common_dominator (
                        CDI_DOMINATORS, first_active[i], first_active_latch);
                        CDI_DOMINATORS, first_active[i], first_active_latch);
          set_immediate_dominator (CDI_DOMINATORS, dominated, dom_bb);
          set_immediate_dominator (CDI_DOMINATORS, dominated, dom_bb);
        }
        }
      VEC_free (basic_block, heap, dom_bbs);
      VEC_free (basic_block, heap, dom_bbs);
    }
    }
  free (first_active);
  free (first_active);
 
 
  free (bbs);
  free (bbs);
  BITMAP_FREE (bbs_to_scale);
  BITMAP_FREE (bbs_to_scale);
 
 
  return true;
  return true;
}
}
 
 
/* A callback for make_forwarder block, to redirect all edges except for
/* A callback for make_forwarder block, to redirect all edges except for
   MFB_KJ_EDGE to the entry part.  E is the edge for that we should decide
   MFB_KJ_EDGE to the entry part.  E is the edge for that we should decide
   whether to redirect it.  */
   whether to redirect it.  */
 
 
edge mfb_kj_edge;
edge mfb_kj_edge;
bool
bool
mfb_keep_just (edge e)
mfb_keep_just (edge e)
{
{
  return e != mfb_kj_edge;
  return e != mfb_kj_edge;
}
}
 
 
/* True when a candidate preheader BLOCK has predecessors from LOOP.  */
/* True when a candidate preheader BLOCK has predecessors from LOOP.  */
 
 
static bool
static bool
has_preds_from_loop (basic_block block, struct loop *loop)
has_preds_from_loop (basic_block block, struct loop *loop)
{
{
  edge e;
  edge e;
  edge_iterator ei;
  edge_iterator ei;
 
 
  FOR_EACH_EDGE (e, ei, block->preds)
  FOR_EACH_EDGE (e, ei, block->preds)
    if (e->src->loop_father == loop)
    if (e->src->loop_father == loop)
      return true;
      return true;
  return false;
  return false;
}
}
 
 
/* Creates a pre-header for a LOOP.  Returns newly created block.  Unless
/* Creates a pre-header for a LOOP.  Returns newly created block.  Unless
   CP_SIMPLE_PREHEADERS is set in FLAGS, we only force LOOP to have single
   CP_SIMPLE_PREHEADERS is set in FLAGS, we only force LOOP to have single
   entry; otherwise we also force preheader block to have only one successor.
   entry; otherwise we also force preheader block to have only one successor.
   When CP_FALLTHRU_PREHEADERS is set in FLAGS, we force the preheader block
   When CP_FALLTHRU_PREHEADERS is set in FLAGS, we force the preheader block
   to be a fallthru predecessor to the loop header and to have only
   to be a fallthru predecessor to the loop header and to have only
   predecessors from outside of the loop.
   predecessors from outside of the loop.
   The function also updates dominators.  */
   The function also updates dominators.  */
 
 
basic_block
basic_block
create_preheader (struct loop *loop, int flags)
create_preheader (struct loop *loop, int flags)
{
{
  edge e, fallthru;
  edge e, fallthru;
  basic_block dummy;
  basic_block dummy;
  int nentry = 0;
  int nentry = 0;
  bool irred = false;
  bool irred = false;
  bool latch_edge_was_fallthru;
  bool latch_edge_was_fallthru;
  edge one_succ_pred = NULL, single_entry = NULL;
  edge one_succ_pred = NULL, single_entry = NULL;
  edge_iterator ei;
  edge_iterator ei;
 
 
  FOR_EACH_EDGE (e, ei, loop->header->preds)
  FOR_EACH_EDGE (e, ei, loop->header->preds)
    {
    {
      if (e->src == loop->latch)
      if (e->src == loop->latch)
        continue;
        continue;
      irred |= (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
      irred |= (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
      nentry++;
      nentry++;
      single_entry = e;
      single_entry = e;
      if (single_succ_p (e->src))
      if (single_succ_p (e->src))
        one_succ_pred = e;
        one_succ_pred = e;
    }
    }
  gcc_assert (nentry);
  gcc_assert (nentry);
  if (nentry == 1)
  if (nentry == 1)
    {
    {
      bool need_forwarder_block = false;
      bool need_forwarder_block = false;
 
 
      /* We do not allow entry block to be the loop preheader, since we
      /* We do not allow entry block to be the loop preheader, since we
             cannot emit code there.  */
             cannot emit code there.  */
      if (single_entry->src == ENTRY_BLOCK_PTR)
      if (single_entry->src == ENTRY_BLOCK_PTR)
        need_forwarder_block = true;
        need_forwarder_block = true;
      else
      else
        {
        {
          /* If we want simple preheaders, also force the preheader to have
          /* If we want simple preheaders, also force the preheader to have
             just a single successor.  */
             just a single successor.  */
          if ((flags & CP_SIMPLE_PREHEADERS)
          if ((flags & CP_SIMPLE_PREHEADERS)
              && !single_succ_p (single_entry->src))
              && !single_succ_p (single_entry->src))
            need_forwarder_block = true;
            need_forwarder_block = true;
          /* If we want fallthru preheaders, also create forwarder block when
          /* If we want fallthru preheaders, also create forwarder block when
             preheader ends with a jump or has predecessors from loop.  */
             preheader ends with a jump or has predecessors from loop.  */
          else if ((flags & CP_FALLTHRU_PREHEADERS)
          else if ((flags & CP_FALLTHRU_PREHEADERS)
                   && (JUMP_P (BB_END (single_entry->src))
                   && (JUMP_P (BB_END (single_entry->src))
                       || has_preds_from_loop (single_entry->src, loop)))
                       || has_preds_from_loop (single_entry->src, loop)))
            need_forwarder_block = true;
            need_forwarder_block = true;
        }
        }
      if (! need_forwarder_block)
      if (! need_forwarder_block)
        return NULL;
        return NULL;
    }
    }
 
 
  mfb_kj_edge = loop_latch_edge (loop);
  mfb_kj_edge = loop_latch_edge (loop);
  latch_edge_was_fallthru = (mfb_kj_edge->flags & EDGE_FALLTHRU) != 0;
  latch_edge_was_fallthru = (mfb_kj_edge->flags & EDGE_FALLTHRU) != 0;
  fallthru = make_forwarder_block (loop->header, mfb_keep_just, NULL);
  fallthru = make_forwarder_block (loop->header, mfb_keep_just, NULL);
  dummy = fallthru->src;
  dummy = fallthru->src;
  loop->header = fallthru->dest;
  loop->header = fallthru->dest;
 
 
  /* Try to be clever in placing the newly created preheader.  The idea is to
  /* Try to be clever in placing the newly created preheader.  The idea is to
     avoid breaking any "fallthruness" relationship between blocks.
     avoid breaking any "fallthruness" relationship between blocks.
 
 
     The preheader was created just before the header and all incoming edges
     The preheader was created just before the header and all incoming edges
     to the header were redirected to the preheader, except the latch edge.
     to the header were redirected to the preheader, except the latch edge.
     So the only problematic case is when this latch edge was a fallthru
     So the only problematic case is when this latch edge was a fallthru
     edge: it is not anymore after the preheader creation so we have broken
     edge: it is not anymore after the preheader creation so we have broken
     the fallthruness.  We're therefore going to look for a better place.  */
     the fallthruness.  We're therefore going to look for a better place.  */
  if (latch_edge_was_fallthru)
  if (latch_edge_was_fallthru)
    {
    {
      if (one_succ_pred)
      if (one_succ_pred)
        e = one_succ_pred;
        e = one_succ_pred;
      else
      else
        e = EDGE_PRED (dummy, 0);
        e = EDGE_PRED (dummy, 0);
 
 
      move_block_after (dummy, e->src);
      move_block_after (dummy, e->src);
    }
    }
 
 
  if (irred)
  if (irred)
    {
    {
      dummy->flags |= BB_IRREDUCIBLE_LOOP;
      dummy->flags |= BB_IRREDUCIBLE_LOOP;
      single_succ_edge (dummy)->flags |= EDGE_IRREDUCIBLE_LOOP;
      single_succ_edge (dummy)->flags |= EDGE_IRREDUCIBLE_LOOP;
    }
    }
 
 
  if (dump_file)
  if (dump_file)
    fprintf (dump_file, "Created preheader block for loop %i\n",
    fprintf (dump_file, "Created preheader block for loop %i\n",
             loop->num);
             loop->num);
 
 
  if (flags & CP_FALLTHRU_PREHEADERS)
  if (flags & CP_FALLTHRU_PREHEADERS)
    gcc_assert ((single_succ_edge (dummy)->flags & EDGE_FALLTHRU)
    gcc_assert ((single_succ_edge (dummy)->flags & EDGE_FALLTHRU)
                && !JUMP_P (BB_END (dummy)));
                && !JUMP_P (BB_END (dummy)));
 
 
  return dummy;
  return dummy;
}
}
 
 
/* Create preheaders for each loop; for meaning of FLAGS see create_preheader.  */
/* Create preheaders for each loop; for meaning of FLAGS see create_preheader.  */
 
 
void
void
create_preheaders (int flags)
create_preheaders (int flags)
{
{
  loop_iterator li;
  loop_iterator li;
  struct loop *loop;
  struct loop *loop;
 
 
  if (!current_loops)
  if (!current_loops)
    return;
    return;
 
 
  FOR_EACH_LOOP (li, loop, 0)
  FOR_EACH_LOOP (li, loop, 0)
    create_preheader (loop, flags);
    create_preheader (loop, flags);
  loops_state_set (LOOPS_HAVE_PREHEADERS);
  loops_state_set (LOOPS_HAVE_PREHEADERS);
}
}
 
 
/* Forces all loop latches to have only single successor.  */
/* Forces all loop latches to have only single successor.  */
 
 
void
void
force_single_succ_latches (void)
force_single_succ_latches (void)
{
{
  loop_iterator li;
  loop_iterator li;
  struct loop *loop;
  struct loop *loop;
  edge e;
  edge e;
 
 
  FOR_EACH_LOOP (li, loop, 0)
  FOR_EACH_LOOP (li, loop, 0)
    {
    {
      if (loop->latch != loop->header && single_succ_p (loop->latch))
      if (loop->latch != loop->header && single_succ_p (loop->latch))
        continue;
        continue;
 
 
      e = find_edge (loop->latch, loop->header);
      e = find_edge (loop->latch, loop->header);
 
 
      split_edge (e);
      split_edge (e);
    }
    }
  loops_state_set (LOOPS_HAVE_SIMPLE_LATCHES);
  loops_state_set (LOOPS_HAVE_SIMPLE_LATCHES);
}
}
 
 
/* This function is called from loop_version.  It splits the entry edge
/* This function is called from loop_version.  It splits the entry edge
   of the loop we want to version, adds the versioning condition, and
   of the loop we want to version, adds the versioning condition, and
   adjust the edges to the two versions of the loop appropriately.
   adjust the edges to the two versions of the loop appropriately.
   e is an incoming edge. Returns the basic block containing the
   e is an incoming edge. Returns the basic block containing the
   condition.
   condition.
 
 
   --- edge e ---- > [second_head]
   --- edge e ---- > [second_head]
 
 
   Split it and insert new conditional expression and adjust edges.
   Split it and insert new conditional expression and adjust edges.
 
 
    --- edge e ---> [cond expr] ---> [first_head]
    --- edge e ---> [cond expr] ---> [first_head]
                        |
                        |
                        +---------> [second_head]
                        +---------> [second_head]
 
 
  THEN_PROB is the probability of then branch of the condition.  */
  THEN_PROB is the probability of then branch of the condition.  */
 
 
static basic_block
static basic_block
lv_adjust_loop_entry_edge (basic_block first_head, basic_block second_head,
lv_adjust_loop_entry_edge (basic_block first_head, basic_block second_head,
                           edge e, void *cond_expr, unsigned then_prob)
                           edge e, void *cond_expr, unsigned then_prob)
{
{
  basic_block new_head = NULL;
  basic_block new_head = NULL;
  edge e1;
  edge e1;
 
 
  gcc_assert (e->dest == second_head);
  gcc_assert (e->dest == second_head);
 
 
  /* Split edge 'e'. This will create a new basic block, where we can
  /* Split edge 'e'. This will create a new basic block, where we can
     insert conditional expr.  */
     insert conditional expr.  */
  new_head = split_edge (e);
  new_head = split_edge (e);
 
 
  lv_add_condition_to_bb (first_head, second_head, new_head,
  lv_add_condition_to_bb (first_head, second_head, new_head,
                          cond_expr);
                          cond_expr);
 
 
  /* Don't set EDGE_TRUE_VALUE in RTL mode, as it's invalid there.  */
  /* Don't set EDGE_TRUE_VALUE in RTL mode, as it's invalid there.  */
  e = single_succ_edge (new_head);
  e = single_succ_edge (new_head);
  e1 = make_edge (new_head, first_head,
  e1 = make_edge (new_head, first_head,
                  current_ir_type () == IR_GIMPLE ? EDGE_TRUE_VALUE : 0);
                  current_ir_type () == IR_GIMPLE ? EDGE_TRUE_VALUE : 0);
  e1->probability = then_prob;
  e1->probability = then_prob;
  e->probability = REG_BR_PROB_BASE - then_prob;
  e->probability = REG_BR_PROB_BASE - then_prob;
  e1->count = RDIV (e->count * e1->probability, REG_BR_PROB_BASE);
  e1->count = RDIV (e->count * e1->probability, REG_BR_PROB_BASE);
  e->count = RDIV (e->count * e->probability, REG_BR_PROB_BASE);
  e->count = RDIV (e->count * e->probability, REG_BR_PROB_BASE);
 
 
  set_immediate_dominator (CDI_DOMINATORS, first_head, new_head);
  set_immediate_dominator (CDI_DOMINATORS, first_head, new_head);
  set_immediate_dominator (CDI_DOMINATORS, second_head, new_head);
  set_immediate_dominator (CDI_DOMINATORS, second_head, new_head);
 
 
  /* Adjust loop header phi nodes.  */
  /* Adjust loop header phi nodes.  */
  lv_adjust_loop_header_phi (first_head, second_head, new_head, e1);
  lv_adjust_loop_header_phi (first_head, second_head, new_head, e1);
 
 
  return new_head;
  return new_head;
}
}
 
 
/* Main entry point for Loop Versioning transformation.
/* Main entry point for Loop Versioning transformation.
 
 
   This transformation given a condition and a loop, creates
   This transformation given a condition and a loop, creates
   -if (condition) { loop_copy1 } else { loop_copy2 },
   -if (condition) { loop_copy1 } else { loop_copy2 },
   where loop_copy1 is the loop transformed in one way, and loop_copy2
   where loop_copy1 is the loop transformed in one way, and loop_copy2
   is the loop transformed in another way (or unchanged). 'condition'
   is the loop transformed in another way (or unchanged). 'condition'
   may be a run time test for things that were not resolved by static
   may be a run time test for things that were not resolved by static
   analysis (overlapping ranges (anti-aliasing), alignment, etc.).
   analysis (overlapping ranges (anti-aliasing), alignment, etc.).
 
 
   THEN_PROB is the probability of the then edge of the if.  THEN_SCALE
   THEN_PROB is the probability of the then edge of the if.  THEN_SCALE
   is the ratio by that the frequencies in the original loop should
   is the ratio by that the frequencies in the original loop should
   be scaled.  ELSE_SCALE is the ratio by that the frequencies in the
   be scaled.  ELSE_SCALE is the ratio by that the frequencies in the
   new loop should be scaled.
   new loop should be scaled.
 
 
   If PLACE_AFTER is true, we place the new loop after LOOP in the
   If PLACE_AFTER is true, we place the new loop after LOOP in the
   instruction stream, otherwise it is placed before LOOP.  */
   instruction stream, otherwise it is placed before LOOP.  */
 
 
struct loop *
struct loop *
loop_version (struct loop *loop,
loop_version (struct loop *loop,
              void *cond_expr, basic_block *condition_bb,
              void *cond_expr, basic_block *condition_bb,
              unsigned then_prob, unsigned then_scale, unsigned else_scale,
              unsigned then_prob, unsigned then_scale, unsigned else_scale,
              bool place_after)
              bool place_after)
{
{
  basic_block first_head, second_head;
  basic_block first_head, second_head;
  edge entry, latch_edge, true_edge, false_edge;
  edge entry, latch_edge, true_edge, false_edge;
  int irred_flag;
  int irred_flag;
  struct loop *nloop;
  struct loop *nloop;
  basic_block cond_bb;
  basic_block cond_bb;
 
 
  /* Record entry and latch edges for the loop */
  /* Record entry and latch edges for the loop */
  entry = loop_preheader_edge (loop);
  entry = loop_preheader_edge (loop);
  irred_flag = entry->flags & EDGE_IRREDUCIBLE_LOOP;
  irred_flag = entry->flags & EDGE_IRREDUCIBLE_LOOP;
  entry->flags &= ~EDGE_IRREDUCIBLE_LOOP;
  entry->flags &= ~EDGE_IRREDUCIBLE_LOOP;
 
 
  /* Note down head of loop as first_head.  */
  /* Note down head of loop as first_head.  */
  first_head = entry->dest;
  first_head = entry->dest;
 
 
  /* Duplicate loop.  */
  /* Duplicate loop.  */
  if (!cfg_hook_duplicate_loop_to_header_edge (loop, entry, 1,
  if (!cfg_hook_duplicate_loop_to_header_edge (loop, entry, 1,
                                               NULL, NULL, NULL, 0))
                                               NULL, NULL, NULL, 0))
    return NULL;
    return NULL;
 
 
  /* After duplication entry edge now points to new loop head block.
  /* After duplication entry edge now points to new loop head block.
     Note down new head as second_head.  */
     Note down new head as second_head.  */
  second_head = entry->dest;
  second_head = entry->dest;
 
 
  /* Split loop entry edge and insert new block with cond expr.  */
  /* Split loop entry edge and insert new block with cond expr.  */
  cond_bb =  lv_adjust_loop_entry_edge (first_head, second_head,
  cond_bb =  lv_adjust_loop_entry_edge (first_head, second_head,
                                        entry, cond_expr, then_prob);
                                        entry, cond_expr, then_prob);
  if (condition_bb)
  if (condition_bb)
    *condition_bb = cond_bb;
    *condition_bb = cond_bb;
 
 
  if (!cond_bb)
  if (!cond_bb)
    {
    {
      entry->flags |= irred_flag;
      entry->flags |= irred_flag;
      return NULL;
      return NULL;
    }
    }
 
 
  latch_edge = single_succ_edge (get_bb_copy (loop->latch));
  latch_edge = single_succ_edge (get_bb_copy (loop->latch));
 
 
  extract_cond_bb_edges (cond_bb, &true_edge, &false_edge);
  extract_cond_bb_edges (cond_bb, &true_edge, &false_edge);
  nloop = loopify (latch_edge,
  nloop = loopify (latch_edge,
                   single_pred_edge (get_bb_copy (loop->header)),
                   single_pred_edge (get_bb_copy (loop->header)),
                   cond_bb, true_edge, false_edge,
                   cond_bb, true_edge, false_edge,
                   false /* Do not redirect all edges.  */,
                   false /* Do not redirect all edges.  */,
                   then_scale, else_scale);
                   then_scale, else_scale);
 
 
  /* loopify redirected latch_edge. Update its PENDING_STMTS.  */
  /* loopify redirected latch_edge. Update its PENDING_STMTS.  */
  lv_flush_pending_stmts (latch_edge);
  lv_flush_pending_stmts (latch_edge);
 
 
  /* loopify redirected condition_bb's succ edge. Update its PENDING_STMTS.  */
  /* loopify redirected condition_bb's succ edge. Update its PENDING_STMTS.  */
  extract_cond_bb_edges (cond_bb, &true_edge, &false_edge);
  extract_cond_bb_edges (cond_bb, &true_edge, &false_edge);
  lv_flush_pending_stmts (false_edge);
  lv_flush_pending_stmts (false_edge);
  /* Adjust irreducible flag.  */
  /* Adjust irreducible flag.  */
  if (irred_flag)
  if (irred_flag)
    {
    {
      cond_bb->flags |= BB_IRREDUCIBLE_LOOP;
      cond_bb->flags |= BB_IRREDUCIBLE_LOOP;
      loop_preheader_edge (loop)->flags |= EDGE_IRREDUCIBLE_LOOP;
      loop_preheader_edge (loop)->flags |= EDGE_IRREDUCIBLE_LOOP;
      loop_preheader_edge (nloop)->flags |= EDGE_IRREDUCIBLE_LOOP;
      loop_preheader_edge (nloop)->flags |= EDGE_IRREDUCIBLE_LOOP;
      single_pred_edge (cond_bb)->flags |= EDGE_IRREDUCIBLE_LOOP;
      single_pred_edge (cond_bb)->flags |= EDGE_IRREDUCIBLE_LOOP;
    }
    }
 
 
  if (place_after)
  if (place_after)
    {
    {
      basic_block *bbs = get_loop_body_in_dom_order (nloop), after;
      basic_block *bbs = get_loop_body_in_dom_order (nloop), after;
      unsigned i;
      unsigned i;
 
 
      after = loop->latch;
      after = loop->latch;
 
 
      for (i = 0; i < nloop->num_nodes; i++)
      for (i = 0; i < nloop->num_nodes; i++)
        {
        {
          move_block_after (bbs[i], after);
          move_block_after (bbs[i], after);
          after = bbs[i];
          after = bbs[i];
        }
        }
      free (bbs);
      free (bbs);
    }
    }
 
 
  /* At this point condition_bb is loop preheader with two successors,
  /* At this point condition_bb is loop preheader with two successors,
     first_head and second_head.   Make sure that loop preheader has only
     first_head and second_head.   Make sure that loop preheader has only
     one successor.  */
     one successor.  */
  split_edge (loop_preheader_edge (loop));
  split_edge (loop_preheader_edge (loop));
  split_edge (loop_preheader_edge (nloop));
  split_edge (loop_preheader_edge (nloop));
 
 
  return nloop;
  return nloop;
}
}
 
 
/* The structure of loops might have changed.  Some loops might get removed
/* The structure of loops might have changed.  Some loops might get removed
   (and their headers and latches were set to NULL), loop exists might get
   (and their headers and latches were set to NULL), loop exists might get
   removed (thus the loop nesting may be wrong), and some blocks and edges
   removed (thus the loop nesting may be wrong), and some blocks and edges
   were changed (so the information about bb --> loop mapping does not have
   were changed (so the information about bb --> loop mapping does not have
   to be correct).  But still for the remaining loops the header dominates
   to be correct).  But still for the remaining loops the header dominates
   the latch, and loops did not get new subloops (new loops might possibly
   the latch, and loops did not get new subloops (new loops might possibly
   get created, but we are not interested in them).  Fix up the mess.
   get created, but we are not interested in them).  Fix up the mess.
 
 
   If CHANGED_BBS is not NULL, basic blocks whose loop has changed are
   If CHANGED_BBS is not NULL, basic blocks whose loop has changed are
   marked in it.  */
   marked in it.  */
 
 
void
void
fix_loop_structure (bitmap changed_bbs)
fix_loop_structure (bitmap changed_bbs)
{
{
  basic_block bb;
  basic_block bb;
  struct loop *loop, *ploop;
  struct loop *loop, *ploop;
  loop_iterator li;
  loop_iterator li;
  bool record_exits = false;
  bool record_exits = false;
  struct loop **superloop = XNEWVEC (struct loop *, number_of_loops ());
  struct loop **superloop = XNEWVEC (struct loop *, number_of_loops ());
 
 
  /* Remove the old bb -> loop mapping.  Remember the depth of the blocks in
  /* Remove the old bb -> loop mapping.  Remember the depth of the blocks in
     the loop hierarchy, so that we can recognize blocks whose loop nesting
     the loop hierarchy, so that we can recognize blocks whose loop nesting
     relationship has changed.  */
     relationship has changed.  */
  FOR_EACH_BB (bb)
  FOR_EACH_BB (bb)
    {
    {
      if (changed_bbs)
      if (changed_bbs)
        bb->aux = (void *) (size_t) loop_depth (bb->loop_father);
        bb->aux = (void *) (size_t) loop_depth (bb->loop_father);
      bb->loop_father = current_loops->tree_root;
      bb->loop_father = current_loops->tree_root;
    }
    }
 
 
  if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
  if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
    {
    {
      release_recorded_exits ();
      release_recorded_exits ();
      record_exits = true;
      record_exits = true;
    }
    }
 
 
  /* Remove the dead loops from structures.  We start from the innermost
  /* Remove the dead loops from structures.  We start from the innermost
     loops, so that when we remove the loops, we know that the loops inside
     loops, so that when we remove the loops, we know that the loops inside
     are preserved, and do not waste time relinking loops that will be
     are preserved, and do not waste time relinking loops that will be
     removed later.  */
     removed later.  */
  FOR_EACH_LOOP (li, loop, LI_FROM_INNERMOST)
  FOR_EACH_LOOP (li, loop, LI_FROM_INNERMOST)
    {
    {
      if (loop->header)
      if (loop->header)
        continue;
        continue;
 
 
      while (loop->inner)
      while (loop->inner)
        {
        {
          ploop = loop->inner;
          ploop = loop->inner;
          flow_loop_tree_node_remove (ploop);
          flow_loop_tree_node_remove (ploop);
          flow_loop_tree_node_add (loop_outer (loop), ploop);
          flow_loop_tree_node_add (loop_outer (loop), ploop);
        }
        }
 
 
      /* Remove the loop and free its data.  */
      /* Remove the loop and free its data.  */
      delete_loop (loop);
      delete_loop (loop);
    }
    }
 
 
  /* Rescan the bodies of loops, starting from the outermost ones.  We assume
  /* Rescan the bodies of loops, starting from the outermost ones.  We assume
     that no optimization interchanges the order of the loops, i.e., it cannot
     that no optimization interchanges the order of the loops, i.e., it cannot
     happen that L1 was superloop of L2 before and it is subloop of L2 now
     happen that L1 was superloop of L2 before and it is subloop of L2 now
     (without explicitly updating loop information).  At the same time, we also
     (without explicitly updating loop information).  At the same time, we also
     determine the new loop structure.  */
     determine the new loop structure.  */
  current_loops->tree_root->num_nodes = n_basic_blocks;
  current_loops->tree_root->num_nodes = n_basic_blocks;
  FOR_EACH_LOOP (li, loop, 0)
  FOR_EACH_LOOP (li, loop, 0)
    {
    {
      superloop[loop->num] = loop->header->loop_father;
      superloop[loop->num] = loop->header->loop_father;
      loop->num_nodes = flow_loop_nodes_find (loop->header, loop);
      loop->num_nodes = flow_loop_nodes_find (loop->header, loop);
    }
    }
 
 
  /* Now fix the loop nesting.  */
  /* Now fix the loop nesting.  */
  FOR_EACH_LOOP (li, loop, 0)
  FOR_EACH_LOOP (li, loop, 0)
    {
    {
      ploop = superloop[loop->num];
      ploop = superloop[loop->num];
      if (ploop != loop_outer (loop))
      if (ploop != loop_outer (loop))
        {
        {
          flow_loop_tree_node_remove (loop);
          flow_loop_tree_node_remove (loop);
          flow_loop_tree_node_add (ploop, loop);
          flow_loop_tree_node_add (ploop, loop);
        }
        }
    }
    }
  free (superloop);
  free (superloop);
 
 
  /* Mark the blocks whose loop has changed.  */
  /* Mark the blocks whose loop has changed.  */
  if (changed_bbs)
  if (changed_bbs)
    {
    {
      FOR_EACH_BB (bb)
      FOR_EACH_BB (bb)
        {
        {
          if ((void *) (size_t) loop_depth (bb->loop_father) != bb->aux)
          if ((void *) (size_t) loop_depth (bb->loop_father) != bb->aux)
            bitmap_set_bit (changed_bbs, bb->index);
            bitmap_set_bit (changed_bbs, bb->index);
 
 
          bb->aux = NULL;
          bb->aux = NULL;
        }
        }
    }
    }
 
 
  if (loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS))
  if (loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS))
    create_preheaders (CP_SIMPLE_PREHEADERS);
    create_preheaders (CP_SIMPLE_PREHEADERS);
 
 
  if (loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES))
  if (loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES))
    force_single_succ_latches ();
    force_single_succ_latches ();
 
 
  if (loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS))
  if (loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS))
    mark_irreducible_loops ();
    mark_irreducible_loops ();
 
 
  if (record_exits)
  if (record_exits)
    record_loop_exits ();
    record_loop_exits ();
 
 
#ifdef ENABLE_CHECKING
#ifdef ENABLE_CHECKING
  verify_loop_structure ();
  verify_loop_structure ();
#endif
#endif
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.