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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [tree-ssa-reassoc.c] - Diff between revs 38 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 38 Rev 154
/* Reassociation for trees.
/* Reassociation for trees.
   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
   Contributed by Daniel Berlin <dan@dberlin.org>
   Contributed by Daniel Berlin <dan@dberlin.org>
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
the Free Software Foundation; either version 3, or (at your option)
any later version.
any later version.
 
 
GCC is distributed in the hope that it will be useful,
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License 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 "errors.h"
#include "errors.h"
#include "ggc.h"
#include "ggc.h"
#include "tree.h"
#include "tree.h"
#include "basic-block.h"
#include "basic-block.h"
#include "diagnostic.h"
#include "diagnostic.h"
#include "tree-inline.h"
#include "tree-inline.h"
#include "tree-flow.h"
#include "tree-flow.h"
#include "tree-gimple.h"
#include "tree-gimple.h"
#include "tree-dump.h"
#include "tree-dump.h"
#include "timevar.h"
#include "timevar.h"
#include "tree-iterator.h"
#include "tree-iterator.h"
#include "tree-pass.h"
#include "tree-pass.h"
#include "alloc-pool.h"
#include "alloc-pool.h"
#include "vec.h"
#include "vec.h"
#include "langhooks.h"
#include "langhooks.h"
 
 
/*  This is a simple global reassociation pass.  It is, in part, based
/*  This is a simple global reassociation pass.  It is, in part, based
    on the LLVM pass of the same name (They do some things more/less
    on the LLVM pass of the same name (They do some things more/less
    than we do, in different orders, etc).
    than we do, in different orders, etc).
 
 
    It consists of five steps:
    It consists of five steps:
 
 
    1. Breaking up subtract operations into addition + negate, where
    1. Breaking up subtract operations into addition + negate, where
    it would promote the reassociation of adds.
    it would promote the reassociation of adds.
 
 
    2. Left linearization of the expression trees, so that (A+B)+(C+D)
    2. Left linearization of the expression trees, so that (A+B)+(C+D)
    becomes (((A+B)+C)+D), which is easier for us to rewrite later.
    becomes (((A+B)+C)+D), which is easier for us to rewrite later.
    During linearization, we place the operands of the binary
    During linearization, we place the operands of the binary
    expressions into a vector of operand_entry_t
    expressions into a vector of operand_entry_t
 
 
    3. Optimization of the operand lists, eliminating things like a +
    3. Optimization of the operand lists, eliminating things like a +
    -a, a & a, etc.
    -a, a & a, etc.
 
 
    4. Rewrite the expression trees we linearized and optimized so
    4. Rewrite the expression trees we linearized and optimized so
    they are in proper rank order.
    they are in proper rank order.
 
 
    5. Repropagate negates, as nothing else will clean it up ATM.
    5. Repropagate negates, as nothing else will clean it up ATM.
 
 
    A bit of theory on #4, since nobody seems to write anything down
    A bit of theory on #4, since nobody seems to write anything down
    about why it makes sense to do it the way they do it:
    about why it makes sense to do it the way they do it:
 
 
    We could do this much nicer theoretically, but don't (for reasons
    We could do this much nicer theoretically, but don't (for reasons
    explained after how to do it theoretically nice :P).
    explained after how to do it theoretically nice :P).
 
 
    In order to promote the most redundancy elimination, you want
    In order to promote the most redundancy elimination, you want
    binary expressions whose operands are the same rank (or
    binary expressions whose operands are the same rank (or
    preferably, the same value) exposed to the redundancy eliminator,
    preferably, the same value) exposed to the redundancy eliminator,
    for possible elimination.
    for possible elimination.
 
 
    So the way to do this if we really cared, is to build the new op
    So the way to do this if we really cared, is to build the new op
    tree from the leaves to the roots, merging as you go, and putting the
    tree from the leaves to the roots, merging as you go, and putting the
    new op on the end of the worklist, until you are left with one
    new op on the end of the worklist, until you are left with one
    thing on the worklist.
    thing on the worklist.
 
 
    IE if you have to rewrite the following set of operands (listed with
    IE if you have to rewrite the following set of operands (listed with
    rank in parentheses), with opcode PLUS_EXPR:
    rank in parentheses), with opcode PLUS_EXPR:
 
 
    a (1),  b (1),  c (1),  d (2), e (2)
    a (1),  b (1),  c (1),  d (2), e (2)
 
 
 
 
    We start with our merge worklist empty, and the ops list with all of
    We start with our merge worklist empty, and the ops list with all of
    those on it.
    those on it.
 
 
    You want to first merge all leaves of the same rank, as much as
    You want to first merge all leaves of the same rank, as much as
    possible.
    possible.
 
 
    So first build a binary op of
    So first build a binary op of
 
 
    mergetmp = a + b, and put "mergetmp" on the merge worklist.
    mergetmp = a + b, and put "mergetmp" on the merge worklist.
 
 
    Because there is no three operand form of PLUS_EXPR, c is not going to
    Because there is no three operand form of PLUS_EXPR, c is not going to
    be exposed to redundancy elimination as a rank 1 operand.
    be exposed to redundancy elimination as a rank 1 operand.
 
 
    So you might as well throw it on the merge worklist (you could also
    So you might as well throw it on the merge worklist (you could also
    consider it to now be a rank two operand, and merge it with d and e,
    consider it to now be a rank two operand, and merge it with d and e,
    but in this case, you then have evicted e from a binary op. So at
    but in this case, you then have evicted e from a binary op. So at
    least in this situation, you can't win.)
    least in this situation, you can't win.)
 
 
    Then build a binary op of d + e
    Then build a binary op of d + e
    mergetmp2 = d + e
    mergetmp2 = d + e
 
 
    and put mergetmp2 on the merge worklist.
    and put mergetmp2 on the merge worklist.
 
 
    so merge worklist = {mergetmp, c, mergetmp2}
    so merge worklist = {mergetmp, c, mergetmp2}
 
 
    Continue building binary ops of these operations until you have only
    Continue building binary ops of these operations until you have only
    one operation left on the worklist.
    one operation left on the worklist.
 
 
    So we have
    So we have
 
 
    build binary op
    build binary op
    mergetmp3 = mergetmp + c
    mergetmp3 = mergetmp + c
 
 
    worklist = {mergetmp2, mergetmp3}
    worklist = {mergetmp2, mergetmp3}
 
 
    mergetmp4 = mergetmp2 + mergetmp3
    mergetmp4 = mergetmp2 + mergetmp3
 
 
    worklist = {mergetmp4}
    worklist = {mergetmp4}
 
 
    because we have one operation left, we can now just set the original
    because we have one operation left, we can now just set the original
    statement equal to the result of that operation.
    statement equal to the result of that operation.
 
 
    This will at least expose a + b  and d + e to redundancy elimination
    This will at least expose a + b  and d + e to redundancy elimination
    as binary operations.
    as binary operations.
 
 
    For extra points, you can reuse the old statements to build the
    For extra points, you can reuse the old statements to build the
    mergetmps, since you shouldn't run out.
    mergetmps, since you shouldn't run out.
 
 
    So why don't we do this?
    So why don't we do this?
 
 
    Because it's expensive, and rarely will help.  Most trees we are
    Because it's expensive, and rarely will help.  Most trees we are
    reassociating have 3 or less ops.  If they have 2 ops, they already
    reassociating have 3 or less ops.  If they have 2 ops, they already
    will be written into a nice single binary op.  If you have 3 ops, a
    will be written into a nice single binary op.  If you have 3 ops, a
    single simple check suffices to tell you whether the first two are of the
    single simple check suffices to tell you whether the first two are of the
    same rank.  If so, you know to order it
    same rank.  If so, you know to order it
 
 
    mergetmp = op1 + op2
    mergetmp = op1 + op2
    newstmt = mergetmp + op3
    newstmt = mergetmp + op3
 
 
    instead of
    instead of
    mergetmp = op2 + op3
    mergetmp = op2 + op3
    newstmt = mergetmp + op1
    newstmt = mergetmp + op1
 
 
    If all three are of the same rank, you can't expose them all in a
    If all three are of the same rank, you can't expose them all in a
    single binary operator anyway, so the above is *still* the best you
    single binary operator anyway, so the above is *still* the best you
    can do.
    can do.
 
 
    Thus, this is what we do.  When we have three ops left, we check to see
    Thus, this is what we do.  When we have three ops left, we check to see
    what order to put them in, and call it a day.  As a nod to vector sum
    what order to put them in, and call it a day.  As a nod to vector sum
    reduction, we check if any of ops are a really a phi node that is a
    reduction, we check if any of ops are a really a phi node that is a
    destructive update for the associating op, and keep the destructive
    destructive update for the associating op, and keep the destructive
    update together for vector sum reduction recognition.  */
    update together for vector sum reduction recognition.  */
 
 
 
 
/* Statistics */
/* Statistics */
static struct
static struct
{
{
  int linearized;
  int linearized;
  int constants_eliminated;
  int constants_eliminated;
  int ops_eliminated;
  int ops_eliminated;
  int rewritten;
  int rewritten;
} reassociate_stats;
} reassociate_stats;
 
 
/* Operator, rank pair.  */
/* Operator, rank pair.  */
typedef struct operand_entry
typedef struct operand_entry
{
{
  unsigned int rank;
  unsigned int rank;
  tree op;
  tree op;
} *operand_entry_t;
} *operand_entry_t;
 
 
static alloc_pool operand_entry_pool;
static alloc_pool operand_entry_pool;
 
 
 
 
/* Starting rank number for a given basic block, so that we can rank
/* Starting rank number for a given basic block, so that we can rank
   operations using unmovable instructions in that BB based on the bb
   operations using unmovable instructions in that BB based on the bb
   depth.  */
   depth.  */
static unsigned int *bb_rank;
static unsigned int *bb_rank;
 
 
/* Operand->rank hashtable.  */
/* Operand->rank hashtable.  */
static htab_t operand_rank;
static htab_t operand_rank;
 
 
 
 
/* Look up the operand rank structure for expression E.  */
/* Look up the operand rank structure for expression E.  */
 
 
static operand_entry_t
static operand_entry_t
find_operand_rank (tree e)
find_operand_rank (tree e)
{
{
  void **slot;
  void **slot;
  struct operand_entry vrd;
  struct operand_entry vrd;
 
 
  vrd.op = e;
  vrd.op = e;
  slot = htab_find_slot (operand_rank, &vrd, NO_INSERT);
  slot = htab_find_slot (operand_rank, &vrd, NO_INSERT);
  if (!slot)
  if (!slot)
    return NULL;
    return NULL;
  return ((operand_entry_t) *slot);
  return ((operand_entry_t) *slot);
}
}
 
 
/* Insert {E,RANK} into the operand rank hashtable.  */
/* Insert {E,RANK} into the operand rank hashtable.  */
 
 
static void
static void
insert_operand_rank (tree e, unsigned int rank)
insert_operand_rank (tree e, unsigned int rank)
{
{
  void **slot;
  void **slot;
  operand_entry_t new_pair = pool_alloc (operand_entry_pool);
  operand_entry_t new_pair = pool_alloc (operand_entry_pool);
 
 
  new_pair->op = e;
  new_pair->op = e;
  new_pair->rank = rank;
  new_pair->rank = rank;
  slot = htab_find_slot (operand_rank, new_pair, INSERT);
  slot = htab_find_slot (operand_rank, new_pair, INSERT);
  gcc_assert (*slot == NULL);
  gcc_assert (*slot == NULL);
  *slot = new_pair;
  *slot = new_pair;
}
}
 
 
/* Return the hash value for a operand rank structure  */
/* Return the hash value for a operand rank structure  */
 
 
static hashval_t
static hashval_t
operand_entry_hash (const void *p)
operand_entry_hash (const void *p)
{
{
  const operand_entry_t vr = (operand_entry_t) p;
  const operand_entry_t vr = (operand_entry_t) p;
  return iterative_hash_expr (vr->op, 0);
  return iterative_hash_expr (vr->op, 0);
}
}
 
 
/* Return true if two operand rank structures are equal.  */
/* Return true if two operand rank structures are equal.  */
 
 
static int
static int
operand_entry_eq (const void *p1, const void *p2)
operand_entry_eq (const void *p1, const void *p2)
{
{
  const operand_entry_t vr1 = (operand_entry_t) p1;
  const operand_entry_t vr1 = (operand_entry_t) p1;
  const operand_entry_t vr2 = (operand_entry_t) p2;
  const operand_entry_t vr2 = (operand_entry_t) p2;
  return vr1->op == vr2->op;
  return vr1->op == vr2->op;
}
}
 
 
/* Given an expression E, return the rank of the expression.  */
/* Given an expression E, return the rank of the expression.  */
 
 
static unsigned int
static unsigned int
get_rank (tree e)
get_rank (tree e)
{
{
  operand_entry_t vr;
  operand_entry_t vr;
 
 
  /* Constants have rank 0.  */
  /* Constants have rank 0.  */
  if (is_gimple_min_invariant (e))
  if (is_gimple_min_invariant (e))
    return 0;
    return 0;
 
 
  /* SSA_NAME's have the rank of the expression they are the result
  /* SSA_NAME's have the rank of the expression they are the result
     of.
     of.
     For globals and uninitialized values, the rank is 0.
     For globals and uninitialized values, the rank is 0.
     For function arguments, use the pre-setup rank.
     For function arguments, use the pre-setup rank.
     For PHI nodes, stores, asm statements, etc, we use the rank of
     For PHI nodes, stores, asm statements, etc, we use the rank of
     the BB.
     the BB.
     For simple operations, the rank is the maximum rank of any of
     For simple operations, the rank is the maximum rank of any of
     its operands, or the bb_rank, whichever is less.
     its operands, or the bb_rank, whichever is less.
     I make no claims that this is optimal, however, it gives good
     I make no claims that this is optimal, however, it gives good
     results.  */
     results.  */
 
 
  if (TREE_CODE (e) == SSA_NAME)
  if (TREE_CODE (e) == SSA_NAME)
    {
    {
      tree stmt;
      tree stmt;
      tree rhs;
      tree rhs;
      unsigned int rank, maxrank;
      unsigned int rank, maxrank;
      int i;
      int i;
 
 
      if (TREE_CODE (SSA_NAME_VAR (e)) == PARM_DECL
      if (TREE_CODE (SSA_NAME_VAR (e)) == PARM_DECL
          && e == default_def (SSA_NAME_VAR (e)))
          && e == default_def (SSA_NAME_VAR (e)))
        return find_operand_rank (e)->rank;
        return find_operand_rank (e)->rank;
 
 
      stmt = SSA_NAME_DEF_STMT (e);
      stmt = SSA_NAME_DEF_STMT (e);
      if (bb_for_stmt (stmt) == NULL)
      if (bb_for_stmt (stmt) == NULL)
        return 0;
        return 0;
 
 
      if (TREE_CODE (stmt) != MODIFY_EXPR
      if (TREE_CODE (stmt) != MODIFY_EXPR
          || !ZERO_SSA_OPERANDS (stmt, SSA_OP_VIRTUAL_DEFS))
          || !ZERO_SSA_OPERANDS (stmt, SSA_OP_VIRTUAL_DEFS))
        return bb_rank[bb_for_stmt (stmt)->index];
        return bb_rank[bb_for_stmt (stmt)->index];
 
 
      /* If we already have a rank for this expression, use that.  */
      /* If we already have a rank for this expression, use that.  */
      vr = find_operand_rank (e);
      vr = find_operand_rank (e);
      if (vr)
      if (vr)
        return vr->rank;
        return vr->rank;
 
 
      /* Otherwise, find the maximum rank for the operands, or the bb
      /* Otherwise, find the maximum rank for the operands, or the bb
         rank, whichever is less.   */
         rank, whichever is less.   */
      rank = 0;
      rank = 0;
      maxrank = bb_rank[bb_for_stmt(stmt)->index];
      maxrank = bb_rank[bb_for_stmt(stmt)->index];
      rhs = TREE_OPERAND (stmt, 1);
      rhs = TREE_OPERAND (stmt, 1);
      if (TREE_CODE_LENGTH (TREE_CODE (rhs)) == 0)
      if (TREE_CODE_LENGTH (TREE_CODE (rhs)) == 0)
        rank = MAX (rank, get_rank (rhs));
        rank = MAX (rank, get_rank (rhs));
      else
      else
        {
        {
          for (i = 0;
          for (i = 0;
               i < TREE_CODE_LENGTH (TREE_CODE (rhs))
               i < TREE_CODE_LENGTH (TREE_CODE (rhs))
                 && TREE_OPERAND (rhs, i)
                 && TREE_OPERAND (rhs, i)
                 && rank != maxrank;
                 && rank != maxrank;
               i++)
               i++)
            rank = MAX(rank, get_rank (TREE_OPERAND (rhs, i)));
            rank = MAX(rank, get_rank (TREE_OPERAND (rhs, i)));
        }
        }
 
 
      if (dump_file && (dump_flags & TDF_DETAILS))
      if (dump_file && (dump_flags & TDF_DETAILS))
        {
        {
          fprintf (dump_file, "Rank for ");
          fprintf (dump_file, "Rank for ");
          print_generic_expr (dump_file, e, 0);
          print_generic_expr (dump_file, e, 0);
          fprintf (dump_file, " is %d\n", (rank + 1));
          fprintf (dump_file, " is %d\n", (rank + 1));
        }
        }
 
 
      /* Note the rank in the hashtable so we don't recompute it.  */
      /* Note the rank in the hashtable so we don't recompute it.  */
      insert_operand_rank (e, (rank + 1));
      insert_operand_rank (e, (rank + 1));
      return (rank + 1);
      return (rank + 1);
    }
    }
 
 
  /* Globals, etc,  are rank 0 */
  /* Globals, etc,  are rank 0 */
  return 0;
  return 0;
}
}
 
 
DEF_VEC_P(operand_entry_t);
DEF_VEC_P(operand_entry_t);
DEF_VEC_ALLOC_P(operand_entry_t, heap);
DEF_VEC_ALLOC_P(operand_entry_t, heap);
 
 
/* We want integer ones to end up last no matter what, since they are
/* We want integer ones to end up last no matter what, since they are
   the ones we can do the most with.  */
   the ones we can do the most with.  */
#define INTEGER_CONST_TYPE 1 << 3
#define INTEGER_CONST_TYPE 1 << 3
#define FLOAT_CONST_TYPE 1 << 2
#define FLOAT_CONST_TYPE 1 << 2
#define OTHER_CONST_TYPE 1 << 1
#define OTHER_CONST_TYPE 1 << 1
 
 
/* Classify an invariant tree into integer, float, or other, so that
/* Classify an invariant tree into integer, float, or other, so that
   we can sort them to be near other constants of the same type.  */
   we can sort them to be near other constants of the same type.  */
static inline int
static inline int
constant_type (tree t)
constant_type (tree t)
{
{
  if (INTEGRAL_TYPE_P (TREE_TYPE (t)))
  if (INTEGRAL_TYPE_P (TREE_TYPE (t)))
    return INTEGER_CONST_TYPE;
    return INTEGER_CONST_TYPE;
  else if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (t)))
  else if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (t)))
    return FLOAT_CONST_TYPE;
    return FLOAT_CONST_TYPE;
  else
  else
    return OTHER_CONST_TYPE;
    return OTHER_CONST_TYPE;
}
}
 
 
/* qsort comparison function to sort operand entries PA and PB by rank
/* qsort comparison function to sort operand entries PA and PB by rank
   so that the sorted array is ordered by rank in decreasing order.  */
   so that the sorted array is ordered by rank in decreasing order.  */
static int
static int
sort_by_operand_rank (const void *pa, const void *pb)
sort_by_operand_rank (const void *pa, const void *pb)
{
{
  const operand_entry_t oea = *(const operand_entry_t *)pa;
  const operand_entry_t oea = *(const operand_entry_t *)pa;
  const operand_entry_t oeb = *(const operand_entry_t *)pb;
  const operand_entry_t oeb = *(const operand_entry_t *)pb;
 
 
  /* It's nicer for optimize_expression if constants that are likely
  /* It's nicer for optimize_expression if constants that are likely
     to fold when added/multiplied//whatever are put next to each
     to fold when added/multiplied//whatever are put next to each
     other.  Since all constants have rank 0, order them by type.  */
     other.  Since all constants have rank 0, order them by type.  */
  if (oeb->rank == 0 &&  oea->rank == 0)
  if (oeb->rank == 0 &&  oea->rank == 0)
    return constant_type (oeb->op) - constant_type (oea->op);
    return constant_type (oeb->op) - constant_type (oea->op);
 
 
  /* Lastly, make sure the versions that are the same go next to each
  /* Lastly, make sure the versions that are the same go next to each
     other.  We use SSA_NAME_VERSION because it's stable.  */
     other.  We use SSA_NAME_VERSION because it's stable.  */
  if ((oeb->rank - oea->rank == 0)
  if ((oeb->rank - oea->rank == 0)
      && TREE_CODE (oea->op) == SSA_NAME
      && TREE_CODE (oea->op) == SSA_NAME
      && TREE_CODE (oeb->op) == SSA_NAME)
      && TREE_CODE (oeb->op) == SSA_NAME)
    return SSA_NAME_VERSION (oeb->op) - SSA_NAME_VERSION (oea->op);
    return SSA_NAME_VERSION (oeb->op) - SSA_NAME_VERSION (oea->op);
 
 
  return oeb->rank - oea->rank;
  return oeb->rank - oea->rank;
}
}
 
 
/* Add an operand entry to *OPS for the tree operand OP.  */
/* Add an operand entry to *OPS for the tree operand OP.  */
 
 
static void
static void
add_to_ops_vec (VEC(operand_entry_t, heap) **ops, tree op)
add_to_ops_vec (VEC(operand_entry_t, heap) **ops, tree op)
{
{
  operand_entry_t oe = pool_alloc (operand_entry_pool);
  operand_entry_t oe = pool_alloc (operand_entry_pool);
 
 
  oe->op = op;
  oe->op = op;
  oe->rank = get_rank (op);
  oe->rank = get_rank (op);
  VEC_safe_push (operand_entry_t, heap, *ops, oe);
  VEC_safe_push (operand_entry_t, heap, *ops, oe);
}
}
 
 
/* Return true if STMT is reassociable operation containing a binary
/* Return true if STMT is reassociable operation containing a binary
   operation with tree code CODE.  */
   operation with tree code CODE.  */
 
 
static bool
static bool
is_reassociable_op (tree stmt, enum tree_code code)
is_reassociable_op (tree stmt, enum tree_code code)
{
{
  if (!IS_EMPTY_STMT (stmt)
  if (!IS_EMPTY_STMT (stmt)
      && TREE_CODE (stmt) == MODIFY_EXPR
      && TREE_CODE (stmt) == MODIFY_EXPR
      && TREE_CODE (TREE_OPERAND (stmt, 1)) == code
      && TREE_CODE (TREE_OPERAND (stmt, 1)) == code
      && has_single_use (TREE_OPERAND (stmt, 0)))
      && has_single_use (TREE_OPERAND (stmt, 0)))
    return true;
    return true;
  return false;
  return false;
}
}
 
 
 
 
/* Given NAME, if NAME is defined by a unary operation OPCODE, return the
/* Given NAME, if NAME is defined by a unary operation OPCODE, return the
   operand of the negate operation.  Otherwise, return NULL.  */
   operand of the negate operation.  Otherwise, return NULL.  */
 
 
static tree
static tree
get_unary_op (tree name, enum tree_code opcode)
get_unary_op (tree name, enum tree_code opcode)
{
{
  tree stmt = SSA_NAME_DEF_STMT (name);
  tree stmt = SSA_NAME_DEF_STMT (name);
  tree rhs;
  tree rhs;
 
 
  if (TREE_CODE (stmt) != MODIFY_EXPR)
  if (TREE_CODE (stmt) != MODIFY_EXPR)
    return NULL_TREE;
    return NULL_TREE;
 
 
  rhs = TREE_OPERAND (stmt, 1);
  rhs = TREE_OPERAND (stmt, 1);
  if (TREE_CODE (rhs) == opcode)
  if (TREE_CODE (rhs) == opcode)
    return TREE_OPERAND (rhs, 0);
    return TREE_OPERAND (rhs, 0);
  return NULL_TREE;
  return NULL_TREE;
}
}
 
 
/* If CURR and LAST are a pair of ops that OPCODE allows us to
/* If CURR and LAST are a pair of ops that OPCODE allows us to
   eliminate through equivalences, do so, remove them from OPS, and
   eliminate through equivalences, do so, remove them from OPS, and
   return true.  Otherwise, return false.  */
   return true.  Otherwise, return false.  */
 
 
static bool
static bool
eliminate_duplicate_pair (enum tree_code opcode,
eliminate_duplicate_pair (enum tree_code opcode,
                          VEC (operand_entry_t, heap) **ops,
                          VEC (operand_entry_t, heap) **ops,
                          bool *all_done,
                          bool *all_done,
                          unsigned int i,
                          unsigned int i,
                          operand_entry_t curr,
                          operand_entry_t curr,
                          operand_entry_t last)
                          operand_entry_t last)
{
{
 
 
  /* If we have two of the same op, and the opcode is & |, min, or max,
  /* If we have two of the same op, and the opcode is & |, min, or max,
     we can eliminate one of them.
     we can eliminate one of them.
     If we have two of the same op, and the opcode is ^, we can
     If we have two of the same op, and the opcode is ^, we can
     eliminate both of them.  */
     eliminate both of them.  */
 
 
  if (last && last->op == curr->op)
  if (last && last->op == curr->op)
    {
    {
      switch (opcode)
      switch (opcode)
        {
        {
        case MAX_EXPR:
        case MAX_EXPR:
        case MIN_EXPR:
        case MIN_EXPR:
        case BIT_IOR_EXPR:
        case BIT_IOR_EXPR:
        case BIT_AND_EXPR:
        case BIT_AND_EXPR:
          if (dump_file && (dump_flags & TDF_DETAILS))
          if (dump_file && (dump_flags & TDF_DETAILS))
            {
            {
              fprintf (dump_file, "Equivalence: ");
              fprintf (dump_file, "Equivalence: ");
              print_generic_expr (dump_file, curr->op, 0);
              print_generic_expr (dump_file, curr->op, 0);
              fprintf (dump_file, " [&|minmax] ");
              fprintf (dump_file, " [&|minmax] ");
              print_generic_expr (dump_file, last->op, 0);
              print_generic_expr (dump_file, last->op, 0);
              fprintf (dump_file, " -> ");
              fprintf (dump_file, " -> ");
              print_generic_stmt (dump_file, last->op, 0);
              print_generic_stmt (dump_file, last->op, 0);
            }
            }
 
 
          VEC_ordered_remove (operand_entry_t, *ops, i);
          VEC_ordered_remove (operand_entry_t, *ops, i);
          reassociate_stats.ops_eliminated ++;
          reassociate_stats.ops_eliminated ++;
 
 
          return true;
          return true;
 
 
        case BIT_XOR_EXPR:
        case BIT_XOR_EXPR:
          if (dump_file && (dump_flags & TDF_DETAILS))
          if (dump_file && (dump_flags & TDF_DETAILS))
            {
            {
              fprintf (dump_file, "Equivalence: ");
              fprintf (dump_file, "Equivalence: ");
              print_generic_expr (dump_file, curr->op, 0);
              print_generic_expr (dump_file, curr->op, 0);
              fprintf (dump_file, " ^ ");
              fprintf (dump_file, " ^ ");
              print_generic_expr (dump_file, last->op, 0);
              print_generic_expr (dump_file, last->op, 0);
              fprintf (dump_file, " -> nothing\n");
              fprintf (dump_file, " -> nothing\n");
            }
            }
 
 
          reassociate_stats.ops_eliminated += 2;
          reassociate_stats.ops_eliminated += 2;
 
 
          if (VEC_length (operand_entry_t, *ops) == 2)
          if (VEC_length (operand_entry_t, *ops) == 2)
            {
            {
              VEC_free (operand_entry_t, heap, *ops);
              VEC_free (operand_entry_t, heap, *ops);
              *ops = NULL;
              *ops = NULL;
              add_to_ops_vec (ops, fold_convert (TREE_TYPE (last->op),
              add_to_ops_vec (ops, fold_convert (TREE_TYPE (last->op),
                                                 integer_zero_node));
                                                 integer_zero_node));
              *all_done = true;
              *all_done = true;
            }
            }
          else
          else
            {
            {
              VEC_ordered_remove (operand_entry_t, *ops, i-1);
              VEC_ordered_remove (operand_entry_t, *ops, i-1);
              VEC_ordered_remove (operand_entry_t, *ops, i-1);
              VEC_ordered_remove (operand_entry_t, *ops, i-1);
            }
            }
 
 
          return true;
          return true;
 
 
        default:
        default:
          break;
          break;
        }
        }
    }
    }
  return false;
  return false;
}
}
 
 
/* If OPCODE is PLUS_EXPR, CURR->OP is really a negate expression,
/* If OPCODE is PLUS_EXPR, CURR->OP is really a negate expression,
   look in OPS for a corresponding positive operation to cancel it
   look in OPS for a corresponding positive operation to cancel it
   out.  If we find one, remove the other from OPS, replace
   out.  If we find one, remove the other from OPS, replace
   OPS[CURRINDEX] with 0, and return true.  Otherwise, return
   OPS[CURRINDEX] with 0, and return true.  Otherwise, return
   false. */
   false. */
 
 
static bool
static bool
eliminate_plus_minus_pair (enum tree_code opcode,
eliminate_plus_minus_pair (enum tree_code opcode,
                           VEC (operand_entry_t, heap) **ops,
                           VEC (operand_entry_t, heap) **ops,
                           unsigned int currindex,
                           unsigned int currindex,
                           operand_entry_t curr)
                           operand_entry_t curr)
{
{
  tree negateop;
  tree negateop;
  unsigned int i;
  unsigned int i;
  operand_entry_t oe;
  operand_entry_t oe;
 
 
  if (opcode != PLUS_EXPR || TREE_CODE (curr->op) != SSA_NAME)
  if (opcode != PLUS_EXPR || TREE_CODE (curr->op) != SSA_NAME)
    return false;
    return false;
 
 
  negateop = get_unary_op (curr->op, NEGATE_EXPR);
  negateop = get_unary_op (curr->op, NEGATE_EXPR);
  if (negateop == NULL_TREE)
  if (negateop == NULL_TREE)
    return false;
    return false;
 
 
  /* Any non-negated version will have a rank that is one less than
  /* Any non-negated version will have a rank that is one less than
     the current rank.  So once we hit those ranks, if we don't find
     the current rank.  So once we hit those ranks, if we don't find
     one, we can stop.  */
     one, we can stop.  */
 
 
  for (i = currindex + 1;
  for (i = currindex + 1;
       VEC_iterate (operand_entry_t, *ops, i, oe)
       VEC_iterate (operand_entry_t, *ops, i, oe)
       && oe->rank >= curr->rank - 1 ;
       && oe->rank >= curr->rank - 1 ;
       i++)
       i++)
    {
    {
      if (oe->op == negateop)
      if (oe->op == negateop)
        {
        {
 
 
          if (dump_file && (dump_flags & TDF_DETAILS))
          if (dump_file && (dump_flags & TDF_DETAILS))
            {
            {
              fprintf (dump_file, "Equivalence: ");
              fprintf (dump_file, "Equivalence: ");
              print_generic_expr (dump_file, negateop, 0);
              print_generic_expr (dump_file, negateop, 0);
              fprintf (dump_file, " + -");
              fprintf (dump_file, " + -");
              print_generic_expr (dump_file, oe->op, 0);
              print_generic_expr (dump_file, oe->op, 0);
              fprintf (dump_file, " -> 0\n");
              fprintf (dump_file, " -> 0\n");
            }
            }
 
 
          VEC_ordered_remove (operand_entry_t, *ops, i);
          VEC_ordered_remove (operand_entry_t, *ops, i);
          add_to_ops_vec (ops, fold_convert(TREE_TYPE (oe->op),
          add_to_ops_vec (ops, fold_convert(TREE_TYPE (oe->op),
                                            integer_zero_node));
                                            integer_zero_node));
          VEC_ordered_remove (operand_entry_t, *ops, currindex);
          VEC_ordered_remove (operand_entry_t, *ops, currindex);
          reassociate_stats.ops_eliminated ++;
          reassociate_stats.ops_eliminated ++;
 
 
          return true;
          return true;
        }
        }
    }
    }
 
 
  return false;
  return false;
}
}
 
 
/* If OPCODE is BIT_IOR_EXPR, BIT_AND_EXPR, and, CURR->OP is really a
/* If OPCODE is BIT_IOR_EXPR, BIT_AND_EXPR, and, CURR->OP is really a
   bitwise not expression, look in OPS for a corresponding operand to
   bitwise not expression, look in OPS for a corresponding operand to
   cancel it out.  If we find one, remove the other from OPS, replace
   cancel it out.  If we find one, remove the other from OPS, replace
   OPS[CURRINDEX] with 0, and return true.  Otherwise, return
   OPS[CURRINDEX] with 0, and return true.  Otherwise, return
   false. */
   false. */
 
 
static bool
static bool
eliminate_not_pairs (enum tree_code opcode,
eliminate_not_pairs (enum tree_code opcode,
                     VEC (operand_entry_t, heap) **ops,
                     VEC (operand_entry_t, heap) **ops,
                     unsigned int currindex,
                     unsigned int currindex,
                     operand_entry_t curr)
                     operand_entry_t curr)
{
{
  tree notop;
  tree notop;
  unsigned int i;
  unsigned int i;
  operand_entry_t oe;
  operand_entry_t oe;
 
 
  if ((opcode != BIT_IOR_EXPR && opcode != BIT_AND_EXPR)
  if ((opcode != BIT_IOR_EXPR && opcode != BIT_AND_EXPR)
      || TREE_CODE (curr->op) != SSA_NAME)
      || TREE_CODE (curr->op) != SSA_NAME)
    return false;
    return false;
 
 
  notop = get_unary_op (curr->op, BIT_NOT_EXPR);
  notop = get_unary_op (curr->op, BIT_NOT_EXPR);
  if (notop == NULL_TREE)
  if (notop == NULL_TREE)
    return false;
    return false;
 
 
  /* Any non-not version will have a rank that is one less than
  /* Any non-not version will have a rank that is one less than
     the current rank.  So once we hit those ranks, if we don't find
     the current rank.  So once we hit those ranks, if we don't find
     one, we can stop.  */
     one, we can stop.  */
 
 
  for (i = currindex + 1;
  for (i = currindex + 1;
       VEC_iterate (operand_entry_t, *ops, i, oe)
       VEC_iterate (operand_entry_t, *ops, i, oe)
       && oe->rank >= curr->rank - 1;
       && oe->rank >= curr->rank - 1;
       i++)
       i++)
    {
    {
      if (oe->op == notop)
      if (oe->op == notop)
        {
        {
          if (dump_file && (dump_flags & TDF_DETAILS))
          if (dump_file && (dump_flags & TDF_DETAILS))
            {
            {
              fprintf (dump_file, "Equivalence: ");
              fprintf (dump_file, "Equivalence: ");
              print_generic_expr (dump_file, notop, 0);
              print_generic_expr (dump_file, notop, 0);
              if (opcode == BIT_AND_EXPR)
              if (opcode == BIT_AND_EXPR)
                fprintf (dump_file, " & ~");
                fprintf (dump_file, " & ~");
              else if (opcode == BIT_IOR_EXPR)
              else if (opcode == BIT_IOR_EXPR)
                fprintf (dump_file, " | ~");
                fprintf (dump_file, " | ~");
              print_generic_expr (dump_file, oe->op, 0);
              print_generic_expr (dump_file, oe->op, 0);
              if (opcode == BIT_AND_EXPR)
              if (opcode == BIT_AND_EXPR)
                fprintf (dump_file, " -> 0\n");
                fprintf (dump_file, " -> 0\n");
              else if (opcode == BIT_IOR_EXPR)
              else if (opcode == BIT_IOR_EXPR)
                fprintf (dump_file, " -> -1\n");
                fprintf (dump_file, " -> -1\n");
            }
            }
 
 
          if (opcode == BIT_AND_EXPR)
          if (opcode == BIT_AND_EXPR)
            oe->op = fold_convert (TREE_TYPE (oe->op), integer_zero_node);
            oe->op = fold_convert (TREE_TYPE (oe->op), integer_zero_node);
          else if (opcode == BIT_IOR_EXPR)
          else if (opcode == BIT_IOR_EXPR)
            oe->op = build_low_bits_mask (TREE_TYPE (oe->op),
            oe->op = build_low_bits_mask (TREE_TYPE (oe->op),
                                          TYPE_PRECISION (TREE_TYPE (oe->op)));
                                          TYPE_PRECISION (TREE_TYPE (oe->op)));
 
 
          reassociate_stats.ops_eliminated
          reassociate_stats.ops_eliminated
            += VEC_length (operand_entry_t, *ops) - 1;
            += VEC_length (operand_entry_t, *ops) - 1;
          VEC_free (operand_entry_t, heap, *ops);
          VEC_free (operand_entry_t, heap, *ops);
          *ops = NULL;
          *ops = NULL;
          VEC_safe_push (operand_entry_t, heap, *ops, oe);
          VEC_safe_push (operand_entry_t, heap, *ops, oe);
          return true;
          return true;
        }
        }
    }
    }
 
 
  return false;
  return false;
}
}
 
 
/* Use constant value that may be present in OPS to try to eliminate
/* Use constant value that may be present in OPS to try to eliminate
   operands.  Note that this function is only really used when we've
   operands.  Note that this function is only really used when we've
   eliminated ops for other reasons, or merged constants.  Across
   eliminated ops for other reasons, or merged constants.  Across
   single statements, fold already does all of this, plus more.  There
   single statements, fold already does all of this, plus more.  There
   is little point in duplicating logic, so I've only included the
   is little point in duplicating logic, so I've only included the
   identities that I could ever construct testcases to trigger.  */
   identities that I could ever construct testcases to trigger.  */
 
 
static void
static void
eliminate_using_constants (enum tree_code opcode,
eliminate_using_constants (enum tree_code opcode,
                           VEC(operand_entry_t, heap) **ops)
                           VEC(operand_entry_t, heap) **ops)
{
{
  operand_entry_t oelast = VEC_last (operand_entry_t, *ops);
  operand_entry_t oelast = VEC_last (operand_entry_t, *ops);
 
 
  if (oelast->rank == 0 && INTEGRAL_TYPE_P (TREE_TYPE (oelast->op)))
  if (oelast->rank == 0 && INTEGRAL_TYPE_P (TREE_TYPE (oelast->op)))
    {
    {
      switch (opcode)
      switch (opcode)
        {
        {
        case BIT_AND_EXPR:
        case BIT_AND_EXPR:
          if (integer_zerop (oelast->op))
          if (integer_zerop (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found & 0, removing all other ops\n");
                    fprintf (dump_file, "Found & 0, removing all other ops\n");
 
 
                  reassociate_stats.ops_eliminated
                  reassociate_stats.ops_eliminated
                    += VEC_length (operand_entry_t, *ops) - 1;
                    += VEC_length (operand_entry_t, *ops) - 1;
 
 
                  VEC_free (operand_entry_t, heap, *ops);
                  VEC_free (operand_entry_t, heap, *ops);
                  *ops = NULL;
                  *ops = NULL;
                  VEC_safe_push (operand_entry_t, heap, *ops, oelast);
                  VEC_safe_push (operand_entry_t, heap, *ops, oelast);
                  return;
                  return;
                }
                }
            }
            }
          else if (integer_all_onesp (oelast->op))
          else if (integer_all_onesp (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found & -1, removing\n");
                    fprintf (dump_file, "Found & -1, removing\n");
                  VEC_pop (operand_entry_t, *ops);
                  VEC_pop (operand_entry_t, *ops);
                  reassociate_stats.ops_eliminated++;
                  reassociate_stats.ops_eliminated++;
                }
                }
            }
            }
          break;
          break;
        case BIT_IOR_EXPR:
        case BIT_IOR_EXPR:
          if (integer_all_onesp (oelast->op))
          if (integer_all_onesp (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found | -1, removing all other ops\n");
                    fprintf (dump_file, "Found | -1, removing all other ops\n");
 
 
                  reassociate_stats.ops_eliminated
                  reassociate_stats.ops_eliminated
                    += VEC_length (operand_entry_t, *ops) - 1;
                    += VEC_length (operand_entry_t, *ops) - 1;
 
 
                  VEC_free (operand_entry_t, heap, *ops);
                  VEC_free (operand_entry_t, heap, *ops);
                  *ops = NULL;
                  *ops = NULL;
                  VEC_safe_push (operand_entry_t, heap, *ops, oelast);
                  VEC_safe_push (operand_entry_t, heap, *ops, oelast);
                  return;
                  return;
                }
                }
            }
            }
          else if (integer_zerop (oelast->op))
          else if (integer_zerop (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found | 0, removing\n");
                    fprintf (dump_file, "Found | 0, removing\n");
                  VEC_pop (operand_entry_t, *ops);
                  VEC_pop (operand_entry_t, *ops);
                  reassociate_stats.ops_eliminated++;
                  reassociate_stats.ops_eliminated++;
                }
                }
            }
            }
          break;
          break;
        case MULT_EXPR:
        case MULT_EXPR:
          if (integer_zerop (oelast->op))
          if (integer_zerop (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found * 0, removing all other ops\n");
                    fprintf (dump_file, "Found * 0, removing all other ops\n");
 
 
                  reassociate_stats.ops_eliminated
                  reassociate_stats.ops_eliminated
                    += VEC_length (operand_entry_t, *ops) - 1;
                    += VEC_length (operand_entry_t, *ops) - 1;
                  VEC_free (operand_entry_t, heap, *ops);
                  VEC_free (operand_entry_t, heap, *ops);
                  *ops = NULL;
                  *ops = NULL;
                  VEC_safe_push (operand_entry_t, heap, *ops, oelast);
                  VEC_safe_push (operand_entry_t, heap, *ops, oelast);
                  return;
                  return;
                }
                }
            }
            }
          else if (integer_onep (oelast->op))
          else if (integer_onep (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found * 1, removing\n");
                    fprintf (dump_file, "Found * 1, removing\n");
                  VEC_pop (operand_entry_t, *ops);
                  VEC_pop (operand_entry_t, *ops);
                  reassociate_stats.ops_eliminated++;
                  reassociate_stats.ops_eliminated++;
                  return;
                  return;
                }
                }
            }
            }
          break;
          break;
        case BIT_XOR_EXPR:
        case BIT_XOR_EXPR:
        case PLUS_EXPR:
        case PLUS_EXPR:
        case MINUS_EXPR:
        case MINUS_EXPR:
          if (integer_zerop (oelast->op))
          if (integer_zerop (oelast->op))
            {
            {
              if (VEC_length (operand_entry_t, *ops) != 1)
              if (VEC_length (operand_entry_t, *ops) != 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    fprintf (dump_file, "Found [|^+] 0, removing\n");
                    fprintf (dump_file, "Found [|^+] 0, removing\n");
                  VEC_pop (operand_entry_t, *ops);
                  VEC_pop (operand_entry_t, *ops);
                  reassociate_stats.ops_eliminated++;
                  reassociate_stats.ops_eliminated++;
                  return;
                  return;
                }
                }
            }
            }
          break;
          break;
        default:
        default:
          break;
          break;
        }
        }
    }
    }
}
}
 
 
/* Perform various identities and other optimizations on the list of
/* Perform various identities and other optimizations on the list of
   operand entries, stored in OPS.  The tree code for the binary
   operand entries, stored in OPS.  The tree code for the binary
   operation between all the operands is OPCODE.  */
   operation between all the operands is OPCODE.  */
 
 
static void
static void
optimize_ops_list (enum tree_code opcode,
optimize_ops_list (enum tree_code opcode,
                   VEC (operand_entry_t, heap) **ops)
                   VEC (operand_entry_t, heap) **ops)
{
{
  unsigned int length = VEC_length (operand_entry_t, *ops);
  unsigned int length = VEC_length (operand_entry_t, *ops);
  unsigned int i;
  unsigned int i;
  operand_entry_t oe;
  operand_entry_t oe;
  operand_entry_t oelast = NULL;
  operand_entry_t oelast = NULL;
  bool iterate = false;
  bool iterate = false;
 
 
  if (length == 1)
  if (length == 1)
    return;
    return;
 
 
  oelast = VEC_last (operand_entry_t, *ops);
  oelast = VEC_last (operand_entry_t, *ops);
 
 
  /* If the last two are constants, pop the constants off, merge them
  /* If the last two are constants, pop the constants off, merge them
     and try the next two.  */
     and try the next two.  */
  if (oelast->rank == 0 && is_gimple_min_invariant (oelast->op))
  if (oelast->rank == 0 && is_gimple_min_invariant (oelast->op))
    {
    {
      operand_entry_t oelm1 = VEC_index (operand_entry_t, *ops, length - 2);
      operand_entry_t oelm1 = VEC_index (operand_entry_t, *ops, length - 2);
 
 
      if (oelm1->rank == 0
      if (oelm1->rank == 0
          && is_gimple_min_invariant (oelm1->op)
          && is_gimple_min_invariant (oelm1->op)
          && lang_hooks.types_compatible_p (TREE_TYPE (oelm1->op),
          && lang_hooks.types_compatible_p (TREE_TYPE (oelm1->op),
                                            TREE_TYPE (oelast->op)))
                                            TREE_TYPE (oelast->op)))
        {
        {
          tree folded = fold_binary (opcode, TREE_TYPE (oelm1->op),
          tree folded = fold_binary (opcode, TREE_TYPE (oelm1->op),
                                     oelm1->op, oelast->op);
                                     oelm1->op, oelast->op);
 
 
          if (folded && is_gimple_min_invariant (folded))
          if (folded && is_gimple_min_invariant (folded))
            {
            {
              if (dump_file && (dump_flags & TDF_DETAILS))
              if (dump_file && (dump_flags & TDF_DETAILS))
                fprintf (dump_file, "Merging constants\n");
                fprintf (dump_file, "Merging constants\n");
 
 
              VEC_pop (operand_entry_t, *ops);
              VEC_pop (operand_entry_t, *ops);
              VEC_pop (operand_entry_t, *ops);
              VEC_pop (operand_entry_t, *ops);
 
 
              add_to_ops_vec (ops, folded);
              add_to_ops_vec (ops, folded);
              reassociate_stats.constants_eliminated++;
              reassociate_stats.constants_eliminated++;
 
 
              optimize_ops_list (opcode, ops);
              optimize_ops_list (opcode, ops);
              return;
              return;
            }
            }
        }
        }
    }
    }
 
 
  eliminate_using_constants (opcode, ops);
  eliminate_using_constants (opcode, ops);
  oelast = NULL;
  oelast = NULL;
 
 
  for (i = 0; VEC_iterate (operand_entry_t, *ops, i, oe);)
  for (i = 0; VEC_iterate (operand_entry_t, *ops, i, oe);)
    {
    {
      bool done = false;
      bool done = false;
 
 
      if (eliminate_not_pairs (opcode, ops, i, oe))
      if (eliminate_not_pairs (opcode, ops, i, oe))
        return;
        return;
      if (eliminate_duplicate_pair (opcode, ops, &done, i, oe, oelast)
      if (eliminate_duplicate_pair (opcode, ops, &done, i, oe, oelast)
          || (!done && eliminate_plus_minus_pair (opcode, ops, i, oe)))
          || (!done && eliminate_plus_minus_pair (opcode, ops, i, oe)))
        {
        {
          if (done)
          if (done)
            return;
            return;
          iterate = true;
          iterate = true;
          oelast = NULL;
          oelast = NULL;
          continue;
          continue;
        }
        }
      oelast = oe;
      oelast = oe;
      i++;
      i++;
    }
    }
 
 
  length  = VEC_length (operand_entry_t, *ops);
  length  = VEC_length (operand_entry_t, *ops);
  oelast = VEC_last (operand_entry_t, *ops);
  oelast = VEC_last (operand_entry_t, *ops);
 
 
  if (iterate)
  if (iterate)
    optimize_ops_list (opcode, ops);
    optimize_ops_list (opcode, ops);
}
}
 
 
/* Return true if OPERAND is defined by a PHI node which uses the LHS
/* Return true if OPERAND is defined by a PHI node which uses the LHS
   of STMT in it's operands.  This is also known as a "destructive
   of STMT in it's operands.  This is also known as a "destructive
   update" operation.  */
   update" operation.  */
 
 
static bool
static bool
is_phi_for_stmt (tree stmt, tree operand)
is_phi_for_stmt (tree stmt, tree operand)
{
{
  tree def_stmt;
  tree def_stmt;
  tree lhs = TREE_OPERAND (stmt, 0);
  tree lhs = TREE_OPERAND (stmt, 0);
  use_operand_p arg_p;
  use_operand_p arg_p;
  ssa_op_iter i;
  ssa_op_iter i;
 
 
  if (TREE_CODE (operand) != SSA_NAME)
  if (TREE_CODE (operand) != SSA_NAME)
    return false;
    return false;
 
 
  def_stmt = SSA_NAME_DEF_STMT (operand);
  def_stmt = SSA_NAME_DEF_STMT (operand);
  if (TREE_CODE (def_stmt) != PHI_NODE)
  if (TREE_CODE (def_stmt) != PHI_NODE)
    return false;
    return false;
 
 
  FOR_EACH_PHI_ARG (arg_p, def_stmt, i, SSA_OP_USE)
  FOR_EACH_PHI_ARG (arg_p, def_stmt, i, SSA_OP_USE)
    if (lhs == USE_FROM_PTR (arg_p))
    if (lhs == USE_FROM_PTR (arg_p))
      return true;
      return true;
  return false;
  return false;
}
}
 
 
/* Recursively rewrite our linearized statements so that the operators
/* Recursively rewrite our linearized statements so that the operators
   match those in OPS[OPINDEX], putting the computation in rank
   match those in OPS[OPINDEX], putting the computation in rank
   order.  */
   order.  */
 
 
static void
static void
rewrite_expr_tree (tree stmt, unsigned int opindex,
rewrite_expr_tree (tree stmt, unsigned int opindex,
                   VEC(operand_entry_t, heap) * ops)
                   VEC(operand_entry_t, heap) * ops)
{
{
  tree rhs = TREE_OPERAND (stmt, 1);
  tree rhs = TREE_OPERAND (stmt, 1);
  operand_entry_t oe;
  operand_entry_t oe;
 
 
  /* If we have three operands left, then we want to make sure the one
  /* If we have three operands left, then we want to make sure the one
     that gets the double binary op are the ones with the same rank.
     that gets the double binary op are the ones with the same rank.
 
 
     The alternative we try is to see if this is a destructive
     The alternative we try is to see if this is a destructive
     update style statement, which is like:
     update style statement, which is like:
     b = phi (a, ...)
     b = phi (a, ...)
     a = c + b;
     a = c + b;
     In that case, we want to use the destructive update form to
     In that case, we want to use the destructive update form to
     expose the possible vectorizer sum reduction opportunity.
     expose the possible vectorizer sum reduction opportunity.
     In that case, the third operand will be the phi node.
     In that case, the third operand will be the phi node.
 
 
     We could, of course, try to be better as noted above, and do a
     We could, of course, try to be better as noted above, and do a
     lot of work to try to find these opportunities in >3 operand
     lot of work to try to find these opportunities in >3 operand
     cases, but it is unlikely to be worth it.  */
     cases, but it is unlikely to be worth it.  */
  if (opindex + 3 == VEC_length (operand_entry_t, ops))
  if (opindex + 3 == VEC_length (operand_entry_t, ops))
    {
    {
      operand_entry_t oe1, oe2, oe3;
      operand_entry_t oe1, oe2, oe3;
 
 
      oe1 = VEC_index (operand_entry_t, ops, opindex);
      oe1 = VEC_index (operand_entry_t, ops, opindex);
      oe2 = VEC_index (operand_entry_t, ops, opindex + 1);
      oe2 = VEC_index (operand_entry_t, ops, opindex + 1);
      oe3 = VEC_index (operand_entry_t, ops, opindex + 2);
      oe3 = VEC_index (operand_entry_t, ops, opindex + 2);
 
 
      if ((oe1->rank == oe2->rank
      if ((oe1->rank == oe2->rank
           && oe2->rank != oe3->rank)
           && oe2->rank != oe3->rank)
          || (is_phi_for_stmt (stmt, oe3->op)
          || (is_phi_for_stmt (stmt, oe3->op)
              && !is_phi_for_stmt (stmt, oe1->op)
              && !is_phi_for_stmt (stmt, oe1->op)
              && !is_phi_for_stmt (stmt, oe2->op)))
              && !is_phi_for_stmt (stmt, oe2->op)))
        {
        {
          struct operand_entry temp = *oe3;
          struct operand_entry temp = *oe3;
          oe3->op = oe1->op;
          oe3->op = oe1->op;
          oe3->rank = oe1->rank;
          oe3->rank = oe1->rank;
          oe1->op = temp.op;
          oe1->op = temp.op;
          oe1->rank= temp.rank;
          oe1->rank= temp.rank;
        }
        }
    }
    }
 
 
  /* The final recursion case for this function is that you have
  /* The final recursion case for this function is that you have
     exactly two operations left.
     exactly two operations left.
     If we had one exactly one op in the entire list to start with, we
     If we had one exactly one op in the entire list to start with, we
     would have never called this function, and the tail recursion
     would have never called this function, and the tail recursion
     rewrites them one at a time.  */
     rewrites them one at a time.  */
  if (opindex + 2 == VEC_length (operand_entry_t, ops))
  if (opindex + 2 == VEC_length (operand_entry_t, ops))
    {
    {
      operand_entry_t oe1, oe2;
      operand_entry_t oe1, oe2;
 
 
      oe1 = VEC_index (operand_entry_t, ops, opindex);
      oe1 = VEC_index (operand_entry_t, ops, opindex);
      oe2 = VEC_index (operand_entry_t, ops, opindex + 1);
      oe2 = VEC_index (operand_entry_t, ops, opindex + 1);
 
 
      if (TREE_OPERAND (rhs, 0) != oe1->op
      if (TREE_OPERAND (rhs, 0) != oe1->op
          || TREE_OPERAND (rhs, 1) != oe2->op)
          || TREE_OPERAND (rhs, 1) != oe2->op)
        {
        {
 
 
          if (dump_file && (dump_flags & TDF_DETAILS))
          if (dump_file && (dump_flags & TDF_DETAILS))
            {
            {
              fprintf (dump_file, "Transforming ");
              fprintf (dump_file, "Transforming ");
              print_generic_expr (dump_file, rhs, 0);
              print_generic_expr (dump_file, rhs, 0);
            }
            }
 
 
          TREE_OPERAND (rhs, 0) = oe1->op;
          TREE_OPERAND (rhs, 0) = oe1->op;
          TREE_OPERAND (rhs, 1) = oe2->op;
          TREE_OPERAND (rhs, 1) = oe2->op;
          update_stmt (stmt);
          update_stmt (stmt);
 
 
          if (dump_file && (dump_flags & TDF_DETAILS))
          if (dump_file && (dump_flags & TDF_DETAILS))
            {
            {
              fprintf (dump_file, " into ");
              fprintf (dump_file, " into ");
              print_generic_stmt (dump_file, rhs, 0);
              print_generic_stmt (dump_file, rhs, 0);
            }
            }
 
 
        }
        }
      return;
      return;
    }
    }
 
 
  /* If we hit here, we should have 3 or more ops left.  */
  /* If we hit here, we should have 3 or more ops left.  */
  gcc_assert (opindex + 2 < VEC_length (operand_entry_t, ops));
  gcc_assert (opindex + 2 < VEC_length (operand_entry_t, ops));
 
 
  /* Rewrite the next operator.  */
  /* Rewrite the next operator.  */
  oe = VEC_index (operand_entry_t, ops, opindex);
  oe = VEC_index (operand_entry_t, ops, opindex);
 
 
  if (oe->op != TREE_OPERAND (rhs, 1))
  if (oe->op != TREE_OPERAND (rhs, 1))
    {
    {
 
 
      if (dump_file && (dump_flags & TDF_DETAILS))
      if (dump_file && (dump_flags & TDF_DETAILS))
        {
        {
          fprintf (dump_file, "Transforming ");
          fprintf (dump_file, "Transforming ");
          print_generic_expr (dump_file, rhs, 0);
          print_generic_expr (dump_file, rhs, 0);
        }
        }
 
 
      TREE_OPERAND (rhs, 1) = oe->op;
      TREE_OPERAND (rhs, 1) = oe->op;
      update_stmt (stmt);
      update_stmt (stmt);
 
 
      if (dump_file && (dump_flags & TDF_DETAILS))
      if (dump_file && (dump_flags & TDF_DETAILS))
        {
        {
          fprintf (dump_file, " into ");
          fprintf (dump_file, " into ");
          print_generic_stmt (dump_file, rhs, 0);
          print_generic_stmt (dump_file, rhs, 0);
        }
        }
    }
    }
  /* Recurse on the LHS of the binary operator, which is guaranteed to
  /* Recurse on the LHS of the binary operator, which is guaranteed to
     be the non-leaf side.  */
     be the non-leaf side.  */
  rewrite_expr_tree (SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 0)),
  rewrite_expr_tree (SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 0)),
                     opindex + 1, ops);
                     opindex + 1, ops);
}
}
 
 
/* Transform STMT, which is really (A +B) + (C + D) into the left
/* Transform STMT, which is really (A +B) + (C + D) into the left
   linear form, ((A+B)+C)+D.
   linear form, ((A+B)+C)+D.
   Recurse on D if necessary.  */
   Recurse on D if necessary.  */
 
 
static void
static void
linearize_expr (tree stmt)
linearize_expr (tree stmt)
{
{
  block_stmt_iterator bsinow, bsirhs;
  block_stmt_iterator bsinow, bsirhs;
  tree rhs = TREE_OPERAND (stmt, 1);
  tree rhs = TREE_OPERAND (stmt, 1);
  enum tree_code rhscode = TREE_CODE (rhs);
  enum tree_code rhscode = TREE_CODE (rhs);
  tree binrhs = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 1));
  tree binrhs = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 1));
  tree binlhs = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 0));
  tree binlhs = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 0));
  tree newbinrhs = NULL_TREE;
  tree newbinrhs = NULL_TREE;
 
 
  gcc_assert (is_reassociable_op (binlhs, TREE_CODE (rhs))
  gcc_assert (is_reassociable_op (binlhs, TREE_CODE (rhs))
              && is_reassociable_op (binrhs, TREE_CODE (rhs)));
              && is_reassociable_op (binrhs, TREE_CODE (rhs)));
 
 
  bsinow = bsi_for_stmt (stmt);
  bsinow = bsi_for_stmt (stmt);
  bsirhs = bsi_for_stmt (binrhs);
  bsirhs = bsi_for_stmt (binrhs);
  bsi_move_before (&bsirhs, &bsinow);
  bsi_move_before (&bsirhs, &bsinow);
 
 
  TREE_OPERAND (rhs, 1) = TREE_OPERAND (TREE_OPERAND (binrhs, 1), 0);
  TREE_OPERAND (rhs, 1) = TREE_OPERAND (TREE_OPERAND (binrhs, 1), 0);
  if (TREE_CODE (TREE_OPERAND (rhs, 1)) == SSA_NAME)
  if (TREE_CODE (TREE_OPERAND (rhs, 1)) == SSA_NAME)
    newbinrhs = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 1));
    newbinrhs = SSA_NAME_DEF_STMT (TREE_OPERAND (rhs, 1));
  TREE_OPERAND (TREE_OPERAND (binrhs, 1), 0) = TREE_OPERAND (binlhs, 0);
  TREE_OPERAND (TREE_OPERAND (binrhs, 1), 0) = TREE_OPERAND (binlhs, 0);
  TREE_OPERAND (rhs, 0) = TREE_OPERAND (binrhs, 0);
  TREE_OPERAND (rhs, 0) = TREE_OPERAND (binrhs, 0);
 
 
  if (dump_file && (dump_flags & TDF_DETAILS))
  if (dump_file && (dump_flags & TDF_DETAILS))
    {
    {
      fprintf (dump_file, "Linearized: ");
      fprintf (dump_file, "Linearized: ");
      print_generic_stmt (dump_file, rhs, 0);
      print_generic_stmt (dump_file, rhs, 0);
    }
    }
 
 
  reassociate_stats.linearized++;
  reassociate_stats.linearized++;
  update_stmt (binrhs);
  update_stmt (binrhs);
  update_stmt (binlhs);
  update_stmt (binlhs);
  update_stmt (stmt);
  update_stmt (stmt);
  TREE_VISITED (binrhs) = 1;
  TREE_VISITED (binrhs) = 1;
  TREE_VISITED (binlhs) = 1;
  TREE_VISITED (binlhs) = 1;
  TREE_VISITED (stmt) = 1;
  TREE_VISITED (stmt) = 1;
 
 
  /* Tail recurse on the new rhs if it still needs reassociation.  */
  /* Tail recurse on the new rhs if it still needs reassociation.  */
  if (newbinrhs && is_reassociable_op (newbinrhs, rhscode))
  if (newbinrhs && is_reassociable_op (newbinrhs, rhscode))
    linearize_expr (stmt);
    linearize_expr (stmt);
 
 
}
}
 
 
/* If LHS has a single immediate use that is a MODIFY_EXPR, return
/* If LHS has a single immediate use that is a MODIFY_EXPR, return
   it.  Otherwise, return NULL.  */
   it.  Otherwise, return NULL.  */
 
 
static tree
static tree
get_single_immediate_use (tree lhs)
get_single_immediate_use (tree lhs)
{
{
  use_operand_p immuse;
  use_operand_p immuse;
  tree immusestmt;
  tree immusestmt;
 
 
  if (TREE_CODE (lhs) == SSA_NAME
  if (TREE_CODE (lhs) == SSA_NAME
      && single_imm_use (lhs, &immuse, &immusestmt))
      && single_imm_use (lhs, &immuse, &immusestmt))
    {
    {
      if (TREE_CODE (immusestmt) == RETURN_EXPR)
      if (TREE_CODE (immusestmt) == RETURN_EXPR)
        immusestmt = TREE_OPERAND (immusestmt, 0);
        immusestmt = TREE_OPERAND (immusestmt, 0);
      if (TREE_CODE (immusestmt) == MODIFY_EXPR)
      if (TREE_CODE (immusestmt) == MODIFY_EXPR)
        return immusestmt;
        return immusestmt;
    }
    }
  return NULL_TREE;
  return NULL_TREE;
}
}
static VEC(tree, heap) *broken_up_subtracts;
static VEC(tree, heap) *broken_up_subtracts;
 
 
 
 
/* Recursively negate the value of TONEGATE, and return the SSA_NAME
/* Recursively negate the value of TONEGATE, and return the SSA_NAME
   representing the negated value.  Insertions of any necessary
   representing the negated value.  Insertions of any necessary
   instructions go before BSI.
   instructions go before BSI.
   This function is recursive in that, if you hand it "a_5" as the
   This function is recursive in that, if you hand it "a_5" as the
   value to negate, and a_5 is defined by "a_5 = b_3 + b_4", it will
   value to negate, and a_5 is defined by "a_5 = b_3 + b_4", it will
   transform b_3 + b_4 into a_5 = -b_3 + -b_4.  */
   transform b_3 + b_4 into a_5 = -b_3 + -b_4.  */
 
 
static tree
static tree
negate_value (tree tonegate, block_stmt_iterator *bsi)
negate_value (tree tonegate, block_stmt_iterator *bsi)
{
{
  tree negatedef = tonegate;
  tree negatedef = tonegate;
  tree resultofnegate;
  tree resultofnegate;
 
 
  if (TREE_CODE (tonegate) == SSA_NAME)
  if (TREE_CODE (tonegate) == SSA_NAME)
    negatedef = SSA_NAME_DEF_STMT (tonegate);
    negatedef = SSA_NAME_DEF_STMT (tonegate);
 
 
  /* If we are trying to negate a name, defined by an add, negate the
  /* If we are trying to negate a name, defined by an add, negate the
     add operands instead.  */
     add operands instead.  */
  if (TREE_CODE (tonegate) == SSA_NAME
  if (TREE_CODE (tonegate) == SSA_NAME
      && TREE_CODE (negatedef) == MODIFY_EXPR
      && TREE_CODE (negatedef) == MODIFY_EXPR
      && TREE_CODE (TREE_OPERAND (negatedef, 0)) == SSA_NAME
      && TREE_CODE (TREE_OPERAND (negatedef, 0)) == SSA_NAME
      && has_single_use (TREE_OPERAND (negatedef, 0))
      && has_single_use (TREE_OPERAND (negatedef, 0))
      && TREE_CODE (TREE_OPERAND (negatedef, 1)) == PLUS_EXPR)
      && TREE_CODE (TREE_OPERAND (negatedef, 1)) == PLUS_EXPR)
    {
    {
      block_stmt_iterator bsi;
      block_stmt_iterator bsi;
      tree binop = TREE_OPERAND (negatedef, 1);
      tree binop = TREE_OPERAND (negatedef, 1);
 
 
      bsi = bsi_for_stmt (negatedef);
      bsi = bsi_for_stmt (negatedef);
      TREE_OPERAND (binop, 0) = negate_value (TREE_OPERAND (binop, 0),
      TREE_OPERAND (binop, 0) = negate_value (TREE_OPERAND (binop, 0),
                                              &bsi);
                                              &bsi);
      bsi = bsi_for_stmt (negatedef);
      bsi = bsi_for_stmt (negatedef);
      TREE_OPERAND (binop, 1) = negate_value (TREE_OPERAND (binop, 1),
      TREE_OPERAND (binop, 1) = negate_value (TREE_OPERAND (binop, 1),
                                              &bsi);
                                              &bsi);
      update_stmt (negatedef);
      update_stmt (negatedef);
      return TREE_OPERAND (negatedef, 0);
      return TREE_OPERAND (negatedef, 0);
    }
    }
 
 
  tonegate = fold_build1 (NEGATE_EXPR, TREE_TYPE (tonegate), tonegate);
  tonegate = fold_build1 (NEGATE_EXPR, TREE_TYPE (tonegate), tonegate);
  resultofnegate = force_gimple_operand_bsi (bsi, tonegate, true,
  resultofnegate = force_gimple_operand_bsi (bsi, tonegate, true,
                                             NULL_TREE);
                                             NULL_TREE);
  VEC_safe_push (tree, heap, broken_up_subtracts, resultofnegate);
  VEC_safe_push (tree, heap, broken_up_subtracts, resultofnegate);
  return resultofnegate;
  return resultofnegate;
 
 
}
}
 
 
/* Return true if we should break up the subtract in STMT into an add
/* Return true if we should break up the subtract in STMT into an add
   with negate.  This is true when we the subtract operands are really
   with negate.  This is true when we the subtract operands are really
   adds, or the subtract itself is used in an add expression.  In
   adds, or the subtract itself is used in an add expression.  In
   either case, breaking up the subtract into an add with negate
   either case, breaking up the subtract into an add with negate
   exposes the adds to reassociation.  */
   exposes the adds to reassociation.  */
 
 
static bool
static bool
should_break_up_subtract (tree stmt)
should_break_up_subtract (tree stmt)
{
{
 
 
  tree lhs = TREE_OPERAND (stmt, 0);
  tree lhs = TREE_OPERAND (stmt, 0);
  tree rhs = TREE_OPERAND (stmt, 1);
  tree rhs = TREE_OPERAND (stmt, 1);
  tree binlhs = TREE_OPERAND (rhs, 0);
  tree binlhs = TREE_OPERAND (rhs, 0);
  tree binrhs = TREE_OPERAND (rhs, 1);
  tree binrhs = TREE_OPERAND (rhs, 1);
  tree immusestmt;
  tree immusestmt;
 
 
  if (TREE_CODE (binlhs) == SSA_NAME
  if (TREE_CODE (binlhs) == SSA_NAME
      && is_reassociable_op (SSA_NAME_DEF_STMT (binlhs), PLUS_EXPR))
      && is_reassociable_op (SSA_NAME_DEF_STMT (binlhs), PLUS_EXPR))
    return true;
    return true;
 
 
  if (TREE_CODE (binrhs) == SSA_NAME
  if (TREE_CODE (binrhs) == SSA_NAME
      && is_reassociable_op (SSA_NAME_DEF_STMT (binrhs), PLUS_EXPR))
      && is_reassociable_op (SSA_NAME_DEF_STMT (binrhs), PLUS_EXPR))
    return true;
    return true;
 
 
  if (TREE_CODE (lhs) == SSA_NAME
  if (TREE_CODE (lhs) == SSA_NAME
      && (immusestmt = get_single_immediate_use (lhs))
      && (immusestmt = get_single_immediate_use (lhs))
      && TREE_CODE (TREE_OPERAND (immusestmt, 1)) == PLUS_EXPR)
      && TREE_CODE (TREE_OPERAND (immusestmt, 1)) == PLUS_EXPR)
    return true;
    return true;
  return false;
  return false;
 
 
}
}
 
 
/* Transform STMT from A - B into A + -B.  */
/* Transform STMT from A - B into A + -B.  */
 
 
static void
static void
break_up_subtract (tree stmt, block_stmt_iterator *bsi)
break_up_subtract (tree stmt, block_stmt_iterator *bsi)
{
{
  tree rhs = TREE_OPERAND (stmt, 1);
  tree rhs = TREE_OPERAND (stmt, 1);
 
 
  if (dump_file && (dump_flags & TDF_DETAILS))
  if (dump_file && (dump_flags & TDF_DETAILS))
    {
    {
      fprintf (dump_file, "Breaking up subtract ");
      fprintf (dump_file, "Breaking up subtract ");
      print_generic_stmt (dump_file, stmt, 0);
      print_generic_stmt (dump_file, stmt, 0);
    }
    }
 
 
  TREE_SET_CODE (TREE_OPERAND (stmt, 1), PLUS_EXPR);
  TREE_SET_CODE (TREE_OPERAND (stmt, 1), PLUS_EXPR);
  TREE_OPERAND (rhs, 1) = negate_value (TREE_OPERAND (rhs, 1), bsi);
  TREE_OPERAND (rhs, 1) = negate_value (TREE_OPERAND (rhs, 1), bsi);
 
 
  update_stmt (stmt);
  update_stmt (stmt);
}
}
 
 
/* Recursively linearize a binary expression that is the RHS of STMT.
/* Recursively linearize a binary expression that is the RHS of STMT.
   Place the operands of the expression tree in the vector named OPS.  */
   Place the operands of the expression tree in the vector named OPS.  */
 
 
static void
static void
linearize_expr_tree (VEC(operand_entry_t, heap) **ops, tree stmt)
linearize_expr_tree (VEC(operand_entry_t, heap) **ops, tree stmt)
{
{
  block_stmt_iterator bsinow, bsilhs;
  block_stmt_iterator bsinow, bsilhs;
  tree rhs = TREE_OPERAND (stmt, 1);
  tree rhs = TREE_OPERAND (stmt, 1);
  tree binrhs = TREE_OPERAND (rhs, 1);
  tree binrhs = TREE_OPERAND (rhs, 1);
  tree binlhs = TREE_OPERAND (rhs, 0);
  tree binlhs = TREE_OPERAND (rhs, 0);
  tree binlhsdef, binrhsdef;
  tree binlhsdef, binrhsdef;
  bool binlhsisreassoc = false;
  bool binlhsisreassoc = false;
  bool binrhsisreassoc = false;
  bool binrhsisreassoc = false;
  enum tree_code rhscode = TREE_CODE (rhs);
  enum tree_code rhscode = TREE_CODE (rhs);
 
 
  TREE_VISITED (stmt) = 1;
  TREE_VISITED (stmt) = 1;
 
 
  if (TREE_CODE (binlhs) == SSA_NAME)
  if (TREE_CODE (binlhs) == SSA_NAME)
    {
    {
      binlhsdef = SSA_NAME_DEF_STMT (binlhs);
      binlhsdef = SSA_NAME_DEF_STMT (binlhs);
      binlhsisreassoc = is_reassociable_op (binlhsdef, rhscode);
      binlhsisreassoc = is_reassociable_op (binlhsdef, rhscode);
    }
    }
 
 
  if (TREE_CODE (binrhs) == SSA_NAME)
  if (TREE_CODE (binrhs) == SSA_NAME)
    {
    {
      binrhsdef = SSA_NAME_DEF_STMT (binrhs);
      binrhsdef = SSA_NAME_DEF_STMT (binrhs);
      binrhsisreassoc = is_reassociable_op (binrhsdef, rhscode);
      binrhsisreassoc = is_reassociable_op (binrhsdef, rhscode);
    }
    }
 
 
  /* If the LHS is not reassociable, but the RHS is, we need to swap
  /* If the LHS is not reassociable, but the RHS is, we need to swap
     them.  If neither is reassociable, there is nothing we can do, so
     them.  If neither is reassociable, there is nothing we can do, so
     just put them in the ops vector.  If the LHS is reassociable,
     just put them in the ops vector.  If the LHS is reassociable,
     linearize it.  If both are reassociable, then linearize the RHS
     linearize it.  If both are reassociable, then linearize the RHS
     and the LHS.  */
     and the LHS.  */
 
 
  if (!binlhsisreassoc)
  if (!binlhsisreassoc)
    {
    {
      tree temp;
      tree temp;
 
 
      if (!binrhsisreassoc)
      if (!binrhsisreassoc)
        {
        {
          add_to_ops_vec (ops, binrhs);
          add_to_ops_vec (ops, binrhs);
          add_to_ops_vec (ops, binlhs);
          add_to_ops_vec (ops, binlhs);
          return;
          return;
        }
        }
 
 
      if (dump_file && (dump_flags & TDF_DETAILS))
      if (dump_file && (dump_flags & TDF_DETAILS))
        {
        {
          fprintf (dump_file, "swapping operands of ");
          fprintf (dump_file, "swapping operands of ");
          print_generic_expr (dump_file, stmt, 0);
          print_generic_expr (dump_file, stmt, 0);
        }
        }
 
 
      swap_tree_operands (stmt, &TREE_OPERAND (rhs, 0),
      swap_tree_operands (stmt, &TREE_OPERAND (rhs, 0),
                          &TREE_OPERAND (rhs, 1));
                          &TREE_OPERAND (rhs, 1));
      update_stmt (stmt);
      update_stmt (stmt);
 
 
      if (dump_file && (dump_flags & TDF_DETAILS))
      if (dump_file && (dump_flags & TDF_DETAILS))
        {
        {
          fprintf (dump_file, " is now ");
          fprintf (dump_file, " is now ");
          print_generic_stmt (dump_file, stmt, 0);
          print_generic_stmt (dump_file, stmt, 0);
        }
        }
 
 
      /* We want to make it so the lhs is always the reassociative op,
      /* We want to make it so the lhs is always the reassociative op,
         so swap.  */
         so swap.  */
      temp = binlhs;
      temp = binlhs;
      binlhs = binrhs;
      binlhs = binrhs;
      binrhs = temp;
      binrhs = temp;
    }
    }
  else if (binrhsisreassoc)
  else if (binrhsisreassoc)
    {
    {
      linearize_expr (stmt);
      linearize_expr (stmt);
      gcc_assert (rhs == TREE_OPERAND (stmt, 1));
      gcc_assert (rhs == TREE_OPERAND (stmt, 1));
      binlhs = TREE_OPERAND (rhs, 0);
      binlhs = TREE_OPERAND (rhs, 0);
      binrhs = TREE_OPERAND (rhs, 1);
      binrhs = TREE_OPERAND (rhs, 1);
    }
    }
 
 
  gcc_assert (TREE_CODE (binrhs) != SSA_NAME
  gcc_assert (TREE_CODE (binrhs) != SSA_NAME
              || !is_reassociable_op (SSA_NAME_DEF_STMT (binrhs), rhscode));
              || !is_reassociable_op (SSA_NAME_DEF_STMT (binrhs), rhscode));
  bsinow = bsi_for_stmt (stmt);
  bsinow = bsi_for_stmt (stmt);
  bsilhs = bsi_for_stmt (SSA_NAME_DEF_STMT (binlhs));
  bsilhs = bsi_for_stmt (SSA_NAME_DEF_STMT (binlhs));
  bsi_move_before (&bsilhs, &bsinow);
  bsi_move_before (&bsilhs, &bsinow);
  linearize_expr_tree (ops, SSA_NAME_DEF_STMT (binlhs));
  linearize_expr_tree (ops, SSA_NAME_DEF_STMT (binlhs));
  add_to_ops_vec (ops, binrhs);
  add_to_ops_vec (ops, binrhs);
}
}
 
 
/* Repropagate the negates back into subtracts, since no other pass
/* Repropagate the negates back into subtracts, since no other pass
   currently does it.  */
   currently does it.  */
 
 
static void
static void
repropagate_negates (void)
repropagate_negates (void)
{
{
  unsigned int i = 0;
  unsigned int i = 0;
  tree negate;
  tree negate;
 
 
  for (i = 0; VEC_iterate (tree, broken_up_subtracts, i, negate); i++)
  for (i = 0; VEC_iterate (tree, broken_up_subtracts, i, negate); i++)
    {
    {
      tree user = get_single_immediate_use (negate);
      tree user = get_single_immediate_use (negate);
 
 
      /* The negate operand can be either operand of a PLUS_EXPR
      /* The negate operand can be either operand of a PLUS_EXPR
         (it can be the LHS if the RHS is a constant for example).
         (it can be the LHS if the RHS is a constant for example).
 
 
         Force the negate operand to the RHS of the PLUS_EXPR, then
         Force the negate operand to the RHS of the PLUS_EXPR, then
         transform the PLUS_EXPR into a MINUS_EXPR.  */
         transform the PLUS_EXPR into a MINUS_EXPR.  */
      if (user
      if (user
          && TREE_CODE (user) == MODIFY_EXPR
          && TREE_CODE (user) == MODIFY_EXPR
          && TREE_CODE (TREE_OPERAND (user, 1)) == PLUS_EXPR)
          && TREE_CODE (TREE_OPERAND (user, 1)) == PLUS_EXPR)
        {
        {
          tree rhs = TREE_OPERAND (user, 1);
          tree rhs = TREE_OPERAND (user, 1);
 
 
          /* If the negated operand appears on the LHS of the
          /* If the negated operand appears on the LHS of the
             PLUS_EXPR, exchange the operands of the PLUS_EXPR
             PLUS_EXPR, exchange the operands of the PLUS_EXPR
             to force the negated operand to the RHS of the PLUS_EXPR.  */
             to force the negated operand to the RHS of the PLUS_EXPR.  */
          if (TREE_OPERAND (TREE_OPERAND (user, 1), 0) == negate)
          if (TREE_OPERAND (TREE_OPERAND (user, 1), 0) == negate)
            {
            {
              tree temp = TREE_OPERAND (rhs, 0);
              tree temp = TREE_OPERAND (rhs, 0);
              TREE_OPERAND (rhs, 0) = TREE_OPERAND (rhs, 1);
              TREE_OPERAND (rhs, 0) = TREE_OPERAND (rhs, 1);
              TREE_OPERAND (rhs, 1) = temp;
              TREE_OPERAND (rhs, 1) = temp;
            }
            }
 
 
          /* Now transform the PLUS_EXPR into a MINUS_EXPR and replace
          /* Now transform the PLUS_EXPR into a MINUS_EXPR and replace
             the RHS of the PLUS_EXPR with the operand of the NEGATE_EXPR.  */
             the RHS of the PLUS_EXPR with the operand of the NEGATE_EXPR.  */
          if (TREE_OPERAND (TREE_OPERAND (user, 1), 1) == negate)
          if (TREE_OPERAND (TREE_OPERAND (user, 1), 1) == negate)
            {
            {
              TREE_SET_CODE (rhs, MINUS_EXPR);
              TREE_SET_CODE (rhs, MINUS_EXPR);
              TREE_OPERAND (rhs, 1) = get_unary_op (negate, NEGATE_EXPR);
              TREE_OPERAND (rhs, 1) = get_unary_op (negate, NEGATE_EXPR);
              update_stmt (user);
              update_stmt (user);
            }
            }
        }
        }
    }
    }
}
}
 
 
/* Break up subtract operations in block BB.
/* Break up subtract operations in block BB.
 
 
   We do this top down because we don't know whether the subtract is
   We do this top down because we don't know whether the subtract is
   part of a possible chain of reassociation except at the top.
   part of a possible chain of reassociation except at the top.
 
 
   IE given
   IE given
   d = f + g
   d = f + g
   c = a + e
   c = a + e
   b = c - d
   b = c - d
   q = b - r
   q = b - r
   k = t - q
   k = t - q
 
 
   we want to break up k = t - q, but we won't until we've transformed q
   we want to break up k = t - q, but we won't until we've transformed q
   = b - r, which won't be broken up until we transform b = c - d.  */
   = b - r, which won't be broken up until we transform b = c - d.  */
 
 
static void
static void
break_up_subtract_bb (basic_block bb)
break_up_subtract_bb (basic_block bb)
{
{
  block_stmt_iterator bsi;
  block_stmt_iterator bsi;
  basic_block son;
  basic_block son;
 
 
  for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
  for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
    {
    {
      tree stmt = bsi_stmt (bsi);
      tree stmt = bsi_stmt (bsi);
 
 
      if (TREE_CODE (stmt) == MODIFY_EXPR)
      if (TREE_CODE (stmt) == MODIFY_EXPR)
        {
        {
          tree lhs = TREE_OPERAND (stmt, 0);
          tree lhs = TREE_OPERAND (stmt, 0);
          tree rhs = TREE_OPERAND (stmt, 1);
          tree rhs = TREE_OPERAND (stmt, 1);
 
 
          TREE_VISITED (stmt) = 0;
          TREE_VISITED (stmt) = 0;
          /* If unsafe math optimizations we can do reassociation for
          /* If unsafe math optimizations we can do reassociation for
             non-integral types.  */
             non-integral types.  */
          if ((!INTEGRAL_TYPE_P (TREE_TYPE (lhs))
          if ((!INTEGRAL_TYPE_P (TREE_TYPE (lhs))
               || !INTEGRAL_TYPE_P (TREE_TYPE (rhs)))
               || !INTEGRAL_TYPE_P (TREE_TYPE (rhs)))
              && (!SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs))
              && (!SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs))
                  || !SCALAR_FLOAT_TYPE_P (TREE_TYPE(lhs))
                  || !SCALAR_FLOAT_TYPE_P (TREE_TYPE(lhs))
                  || !flag_unsafe_math_optimizations))
                  || !flag_unsafe_math_optimizations))
            continue;
            continue;
 
 
          /* Check for a subtract used only in an addition.  If this
          /* Check for a subtract used only in an addition.  If this
             is the case, transform it into add of a negate for better
             is the case, transform it into add of a negate for better
             reassociation.  IE transform C = A-B into C = A + -B if C
             reassociation.  IE transform C = A-B into C = A + -B if C
             is only used in an addition.  */
             is only used in an addition.  */
          if (TREE_CODE (rhs) == MINUS_EXPR)
          if (TREE_CODE (rhs) == MINUS_EXPR)
            if (should_break_up_subtract (stmt))
            if (should_break_up_subtract (stmt))
              break_up_subtract (stmt, &bsi);
              break_up_subtract (stmt, &bsi);
        }
        }
    }
    }
  for (son = first_dom_son (CDI_DOMINATORS, bb);
  for (son = first_dom_son (CDI_DOMINATORS, bb);
       son;
       son;
       son = next_dom_son (CDI_DOMINATORS, son))
       son = next_dom_son (CDI_DOMINATORS, son))
    break_up_subtract_bb (son);
    break_up_subtract_bb (son);
}
}
 
 
/* Reassociate expressions in basic block BB and its post-dominator as
/* Reassociate expressions in basic block BB and its post-dominator as
   children.  */
   children.  */
 
 
static void
static void
reassociate_bb (basic_block bb)
reassociate_bb (basic_block bb)
{
{
  block_stmt_iterator bsi;
  block_stmt_iterator bsi;
  basic_block son;
  basic_block son;
 
 
  for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
  for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
    {
    {
      tree stmt = bsi_stmt (bsi);
      tree stmt = bsi_stmt (bsi);
 
 
      if (TREE_CODE (stmt) == MODIFY_EXPR)
      if (TREE_CODE (stmt) == MODIFY_EXPR)
        {
        {
          tree lhs = TREE_OPERAND (stmt, 0);
          tree lhs = TREE_OPERAND (stmt, 0);
          tree rhs = TREE_OPERAND (stmt, 1);
          tree rhs = TREE_OPERAND (stmt, 1);
 
 
          /* If this was part of an already processed tree, we don't
          /* If this was part of an already processed tree, we don't
             need to touch it again. */
             need to touch it again. */
          if (TREE_VISITED (stmt))
          if (TREE_VISITED (stmt))
            continue;
            continue;
 
 
          /* If unsafe math optimizations we can do reassociation for
          /* If unsafe math optimizations we can do reassociation for
             non-integral types.  */
             non-integral types.  */
          if ((!INTEGRAL_TYPE_P (TREE_TYPE (lhs))
          if ((!INTEGRAL_TYPE_P (TREE_TYPE (lhs))
               || !INTEGRAL_TYPE_P (TREE_TYPE (rhs)))
               || !INTEGRAL_TYPE_P (TREE_TYPE (rhs)))
              && (!SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs))
              && (!SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs))
                  || !SCALAR_FLOAT_TYPE_P (TREE_TYPE(lhs))
                  || !SCALAR_FLOAT_TYPE_P (TREE_TYPE(lhs))
                  || !flag_unsafe_math_optimizations))
                  || !flag_unsafe_math_optimizations))
            continue;
            continue;
 
 
          if (associative_tree_code (TREE_CODE (rhs)))
          if (associative_tree_code (TREE_CODE (rhs)))
            {
            {
              VEC(operand_entry_t, heap) *ops = NULL;
              VEC(operand_entry_t, heap) *ops = NULL;
 
 
              /* There may be no immediate uses left by the time we
              /* There may be no immediate uses left by the time we
                 get here because we may have eliminated them all.  */
                 get here because we may have eliminated them all.  */
              if (TREE_CODE (lhs) == SSA_NAME && has_zero_uses (lhs))
              if (TREE_CODE (lhs) == SSA_NAME && has_zero_uses (lhs))
                continue;
                continue;
 
 
              TREE_VISITED (stmt) = 1;
              TREE_VISITED (stmt) = 1;
              linearize_expr_tree (&ops, stmt);
              linearize_expr_tree (&ops, stmt);
              qsort (VEC_address (operand_entry_t, ops),
              qsort (VEC_address (operand_entry_t, ops),
                     VEC_length (operand_entry_t, ops),
                     VEC_length (operand_entry_t, ops),
                     sizeof (operand_entry_t),
                     sizeof (operand_entry_t),
                     sort_by_operand_rank);
                     sort_by_operand_rank);
              optimize_ops_list (TREE_CODE (rhs), &ops);
              optimize_ops_list (TREE_CODE (rhs), &ops);
 
 
              if (VEC_length (operand_entry_t, ops) == 1)
              if (VEC_length (operand_entry_t, ops) == 1)
                {
                {
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    {
                    {
                      fprintf (dump_file, "Transforming ");
                      fprintf (dump_file, "Transforming ");
                      print_generic_expr (dump_file, rhs, 0);
                      print_generic_expr (dump_file, rhs, 0);
                    }
                    }
                  TREE_OPERAND (stmt, 1) = VEC_last (operand_entry_t, ops)->op;
                  TREE_OPERAND (stmt, 1) = VEC_last (operand_entry_t, ops)->op;
                  update_stmt (stmt);
                  update_stmt (stmt);
 
 
                  if (dump_file && (dump_flags & TDF_DETAILS))
                  if (dump_file && (dump_flags & TDF_DETAILS))
                    {
                    {
                      fprintf (dump_file, " into ");
                      fprintf (dump_file, " into ");
                      print_generic_stmt (dump_file,
                      print_generic_stmt (dump_file,
                                          TREE_OPERAND (stmt, 1), 0);
                                          TREE_OPERAND (stmt, 1), 0);
                    }
                    }
                }
                }
              else
              else
                {
                {
                  rewrite_expr_tree (stmt, 0, ops);
                  rewrite_expr_tree (stmt, 0, ops);
                }
                }
 
 
              VEC_free (operand_entry_t, heap, ops);
              VEC_free (operand_entry_t, heap, ops);
            }
            }
        }
        }
    }
    }
  for (son = first_dom_son (CDI_POST_DOMINATORS, bb);
  for (son = first_dom_son (CDI_POST_DOMINATORS, bb);
       son;
       son;
       son = next_dom_son (CDI_POST_DOMINATORS, son))
       son = next_dom_son (CDI_POST_DOMINATORS, son))
    reassociate_bb (son);
    reassociate_bb (son);
}
}
 
 
void dump_ops_vector (FILE *file, VEC (operand_entry_t, heap) *ops);
void dump_ops_vector (FILE *file, VEC (operand_entry_t, heap) *ops);
void debug_ops_vector (VEC (operand_entry_t, heap) *ops);
void debug_ops_vector (VEC (operand_entry_t, heap) *ops);
 
 
/* Dump the operand entry vector OPS to FILE.  */
/* Dump the operand entry vector OPS to FILE.  */
 
 
void
void
dump_ops_vector (FILE *file, VEC (operand_entry_t, heap) *ops)
dump_ops_vector (FILE *file, VEC (operand_entry_t, heap) *ops)
{
{
  operand_entry_t oe;
  operand_entry_t oe;
  unsigned int i;
  unsigned int i;
 
 
  for (i = 0; VEC_iterate (operand_entry_t, ops, i, oe); i++)
  for (i = 0; VEC_iterate (operand_entry_t, ops, i, oe); i++)
    {
    {
      fprintf (file, "Op %d -> rank: %d, tree: ", i, oe->rank);
      fprintf (file, "Op %d -> rank: %d, tree: ", i, oe->rank);
      print_generic_stmt (file, oe->op, 0);
      print_generic_stmt (file, oe->op, 0);
    }
    }
}
}
 
 
/* Dump the operand entry vector OPS to STDERR.  */
/* Dump the operand entry vector OPS to STDERR.  */
 
 
void
void
debug_ops_vector (VEC (operand_entry_t, heap) *ops)
debug_ops_vector (VEC (operand_entry_t, heap) *ops)
{
{
  dump_ops_vector (stderr, ops);
  dump_ops_vector (stderr, ops);
}
}
 
 
static void
static void
do_reassoc (void)
do_reassoc (void)
{
{
  break_up_subtract_bb (ENTRY_BLOCK_PTR);
  break_up_subtract_bb (ENTRY_BLOCK_PTR);
  reassociate_bb (EXIT_BLOCK_PTR);
  reassociate_bb (EXIT_BLOCK_PTR);
}
}
 
 
/* Initialize the reassociation pass.  */
/* Initialize the reassociation pass.  */
 
 
static void
static void
init_reassoc (void)
init_reassoc (void)
{
{
  int i;
  int i;
  unsigned int rank = 2;
  unsigned int rank = 2;
  tree param;
  tree param;
  int *bbs = XNEWVEC (int, last_basic_block + 1);
  int *bbs = XNEWVEC (int, last_basic_block + 1);
 
 
  memset (&reassociate_stats, 0, sizeof (reassociate_stats));
  memset (&reassociate_stats, 0, sizeof (reassociate_stats));
 
 
  operand_entry_pool = create_alloc_pool ("operand entry pool",
  operand_entry_pool = create_alloc_pool ("operand entry pool",
                                          sizeof (struct operand_entry), 30);
                                          sizeof (struct operand_entry), 30);
 
 
  /* Reverse RPO (Reverse Post Order) will give us something where
  /* Reverse RPO (Reverse Post Order) will give us something where
     deeper loops come later.  */
     deeper loops come later.  */
  pre_and_rev_post_order_compute (NULL, bbs, false);
  pre_and_rev_post_order_compute (NULL, bbs, false);
  bb_rank = XCNEWVEC (unsigned int, last_basic_block + 1);
  bb_rank = XCNEWVEC (unsigned int, last_basic_block + 1);
 
 
  operand_rank = htab_create (511, operand_entry_hash,
  operand_rank = htab_create (511, operand_entry_hash,
                              operand_entry_eq, 0);
                              operand_entry_eq, 0);
 
 
  /* Give each argument a distinct rank.   */
  /* Give each argument a distinct rank.   */
  for (param = DECL_ARGUMENTS (current_function_decl);
  for (param = DECL_ARGUMENTS (current_function_decl);
       param;
       param;
       param = TREE_CHAIN (param))
       param = TREE_CHAIN (param))
    {
    {
      if (default_def (param) != NULL)
      if (default_def (param) != NULL)
        {
        {
          tree def = default_def (param);
          tree def = default_def (param);
          insert_operand_rank (def, ++rank);
          insert_operand_rank (def, ++rank);
        }
        }
    }
    }
 
 
  /* Give the chain decl a distinct rank. */
  /* Give the chain decl a distinct rank. */
  if (cfun->static_chain_decl != NULL)
  if (cfun->static_chain_decl != NULL)
    {
    {
      tree def = default_def (cfun->static_chain_decl);
      tree def = default_def (cfun->static_chain_decl);
      if (def != NULL)
      if (def != NULL)
        insert_operand_rank (def, ++rank);
        insert_operand_rank (def, ++rank);
    }
    }
 
 
  /* Set up rank for each BB  */
  /* Set up rank for each BB  */
  for (i = 0; i < n_basic_blocks - NUM_FIXED_BLOCKS; i++)
  for (i = 0; i < n_basic_blocks - NUM_FIXED_BLOCKS; i++)
    bb_rank[bbs[i]] = ++rank  << 16;
    bb_rank[bbs[i]] = ++rank  << 16;
 
 
  free (bbs);
  free (bbs);
  calculate_dominance_info (CDI_DOMINATORS);
  calculate_dominance_info (CDI_DOMINATORS);
  calculate_dominance_info (CDI_POST_DOMINATORS);
  calculate_dominance_info (CDI_POST_DOMINATORS);
  broken_up_subtracts = NULL;
  broken_up_subtracts = NULL;
}
}
 
 
/* Cleanup after the reassociation pass, and print stats if
/* Cleanup after the reassociation pass, and print stats if
   requested.  */
   requested.  */
 
 
static void
static void
fini_reassoc (void)
fini_reassoc (void)
{
{
 
 
  if (dump_file && (dump_flags & TDF_STATS))
  if (dump_file && (dump_flags & TDF_STATS))
    {
    {
      fprintf (dump_file, "Reassociation stats:\n");
      fprintf (dump_file, "Reassociation stats:\n");
      fprintf (dump_file, "Linearized: %d\n",
      fprintf (dump_file, "Linearized: %d\n",
               reassociate_stats.linearized);
               reassociate_stats.linearized);
      fprintf (dump_file, "Constants eliminated: %d\n",
      fprintf (dump_file, "Constants eliminated: %d\n",
               reassociate_stats.constants_eliminated);
               reassociate_stats.constants_eliminated);
      fprintf (dump_file, "Ops eliminated: %d\n",
      fprintf (dump_file, "Ops eliminated: %d\n",
               reassociate_stats.ops_eliminated);
               reassociate_stats.ops_eliminated);
      fprintf (dump_file, "Statements rewritten: %d\n",
      fprintf (dump_file, "Statements rewritten: %d\n",
               reassociate_stats.rewritten);
               reassociate_stats.rewritten);
    }
    }
  htab_delete (operand_rank);
  htab_delete (operand_rank);
 
 
  free_alloc_pool (operand_entry_pool);
  free_alloc_pool (operand_entry_pool);
  free (bb_rank);
  free (bb_rank);
  VEC_free (tree, heap, broken_up_subtracts);
  VEC_free (tree, heap, broken_up_subtracts);
  free_dominance_info (CDI_POST_DOMINATORS);
  free_dominance_info (CDI_POST_DOMINATORS);
}
}
 
 
/* Gate and execute functions for Reassociation.  */
/* Gate and execute functions for Reassociation.  */
 
 
static unsigned int
static unsigned int
execute_reassoc (void)
execute_reassoc (void)
{
{
  init_reassoc ();
  init_reassoc ();
 
 
  do_reassoc ();
  do_reassoc ();
  repropagate_negates ();
  repropagate_negates ();
 
 
  fini_reassoc ();
  fini_reassoc ();
  return 0;
  return 0;
}
}
 
 
struct tree_opt_pass pass_reassoc =
struct tree_opt_pass pass_reassoc =
{
{
  "reassoc",                            /* name */
  "reassoc",                            /* name */
  NULL,                         /* gate */
  NULL,                         /* gate */
  execute_reassoc,                              /* execute */
  execute_reassoc,                              /* execute */
  NULL,                                 /* sub */
  NULL,                                 /* sub */
  NULL,                                 /* next */
  NULL,                                 /* next */
  0,                                     /* static_pass_number */
  0,                                     /* static_pass_number */
  TV_TREE_REASSOC,                              /* tv_id */
  TV_TREE_REASSOC,                              /* tv_id */
  PROP_cfg | PROP_ssa | PROP_alias,     /* properties_required */
  PROP_cfg | PROP_ssa | PROP_alias,     /* properties_required */
  0,                                     /* properties_provided */
  0,                                     /* properties_provided */
  0,                                     /* properties_destroyed */
  0,                                     /* properties_destroyed */
  0,                                     /* todo_flags_start */
  0,                                     /* todo_flags_start */
  TODO_dump_func | TODO_ggc_collect | TODO_verify_ssa, /* todo_flags_finish */
  TODO_dump_func | TODO_ggc_collect | TODO_verify_ssa, /* todo_flags_finish */
  0                                      /* letter */
  0                                      /* letter */
};
};
 
 

powered by: WebSVN 2.1.0

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