/* Post reload partially redundant load elimination
|
/* Post reload partially redundant load elimination
|
Copyright (C) 2004, 2005, 2007
|
Copyright (C) 2004, 2005, 2007
|
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
|
|
This file is part of GCC.
|
This file is part of GCC.
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
GCC is free software; you can redistribute it and/or modify it under
|
the terms of the GNU General Public License as published by the Free
|
the terms of the GNU General Public License as published by the Free
|
Software Foundation; either version 3, or (at your option) any later
|
Software Foundation; either version 3, or (at your option) any later
|
version.
|
version.
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
for more details.
|
for more details.
|
|
|
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
along with GCC; see the file COPYING3. If not see
|
along with GCC; see the file COPYING3. If not see
|
<http://www.gnu.org/licenses/>. */
|
<http://www.gnu.org/licenses/>. */
|
|
|
#include "config.h"
|
#include "config.h"
|
#include "system.h"
|
#include "system.h"
|
#include "coretypes.h"
|
#include "coretypes.h"
|
#include "tm.h"
|
#include "tm.h"
|
#include "toplev.h"
|
#include "toplev.h"
|
|
|
#include "rtl.h"
|
#include "rtl.h"
|
#include "tree.h"
|
#include "tree.h"
|
#include "tm_p.h"
|
#include "tm_p.h"
|
#include "regs.h"
|
#include "regs.h"
|
#include "hard-reg-set.h"
|
#include "hard-reg-set.h"
|
#include "flags.h"
|
#include "flags.h"
|
#include "real.h"
|
#include "real.h"
|
#include "insn-config.h"
|
#include "insn-config.h"
|
#include "recog.h"
|
#include "recog.h"
|
#include "basic-block.h"
|
#include "basic-block.h"
|
#include "output.h"
|
#include "output.h"
|
#include "function.h"
|
#include "function.h"
|
#include "expr.h"
|
#include "expr.h"
|
#include "except.h"
|
#include "except.h"
|
#include "intl.h"
|
#include "intl.h"
|
#include "obstack.h"
|
#include "obstack.h"
|
#include "hashtab.h"
|
#include "hashtab.h"
|
#include "params.h"
|
#include "params.h"
|
#include "target.h"
|
#include "target.h"
|
#include "timevar.h"
|
#include "timevar.h"
|
#include "tree-pass.h"
|
#include "tree-pass.h"
|
|
|
/* The following code implements gcse after reload, the purpose of this
|
/* The following code implements gcse after reload, the purpose of this
|
pass is to cleanup redundant loads generated by reload and other
|
pass is to cleanup redundant loads generated by reload and other
|
optimizations that come after gcse. It searches for simple inter-block
|
optimizations that come after gcse. It searches for simple inter-block
|
redundancies and tries to eliminate them by adding moves and loads
|
redundancies and tries to eliminate them by adding moves and loads
|
in cold places.
|
in cold places.
|
|
|
Perform partially redundant load elimination, try to eliminate redundant
|
Perform partially redundant load elimination, try to eliminate redundant
|
loads created by the reload pass. We try to look for full or partial
|
loads created by the reload pass. We try to look for full or partial
|
redundant loads fed by one or more loads/stores in predecessor BBs,
|
redundant loads fed by one or more loads/stores in predecessor BBs,
|
and try adding loads to make them fully redundant. We also check if
|
and try adding loads to make them fully redundant. We also check if
|
it's worth adding loads to be able to delete the redundant load.
|
it's worth adding loads to be able to delete the redundant load.
|
|
|
Algorithm:
|
Algorithm:
|
1. Build available expressions hash table:
|
1. Build available expressions hash table:
|
For each load/store instruction, if the loaded/stored memory didn't
|
For each load/store instruction, if the loaded/stored memory didn't
|
change until the end of the basic block add this memory expression to
|
change until the end of the basic block add this memory expression to
|
the hash table.
|
the hash table.
|
2. Perform Redundancy elimination:
|
2. Perform Redundancy elimination:
|
For each load instruction do the following:
|
For each load instruction do the following:
|
perform partial redundancy elimination, check if it's worth adding
|
perform partial redundancy elimination, check if it's worth adding
|
loads to make the load fully redundant. If so add loads and
|
loads to make the load fully redundant. If so add loads and
|
register copies and delete the load.
|
register copies and delete the load.
|
3. Delete instructions made redundant in step 2.
|
3. Delete instructions made redundant in step 2.
|
|
|
Future enhancement:
|
Future enhancement:
|
If the loaded register is used/defined between load and some store,
|
If the loaded register is used/defined between load and some store,
|
look for some other free register between load and all its stores,
|
look for some other free register between load and all its stores,
|
and replace the load with a copy from this register to the loaded
|
and replace the load with a copy from this register to the loaded
|
register.
|
register.
|
*/
|
*/
|
|
|
|
|
/* Keep statistics of this pass. */
|
/* Keep statistics of this pass. */
|
static struct
|
static struct
|
{
|
{
|
int moves_inserted;
|
int moves_inserted;
|
int copies_inserted;
|
int copies_inserted;
|
int insns_deleted;
|
int insns_deleted;
|
} stats;
|
} stats;
|
|
|
/* We need to keep a hash table of expressions. The table entries are of
|
/* We need to keep a hash table of expressions. The table entries are of
|
type 'struct expr', and for each expression there is a single linked
|
type 'struct expr', and for each expression there is a single linked
|
list of occurrences. */
|
list of occurrences. */
|
|
|
/* The table itself. */
|
/* The table itself. */
|
static htab_t expr_table;
|
static htab_t expr_table;
|
|
|
/* Expression elements in the hash table. */
|
/* Expression elements in the hash table. */
|
struct expr
|
struct expr
|
{
|
{
|
/* The expression (SET_SRC for expressions, PATTERN for assignments). */
|
/* The expression (SET_SRC for expressions, PATTERN for assignments). */
|
rtx expr;
|
rtx expr;
|
|
|
/* The same hash for this entry. */
|
/* The same hash for this entry. */
|
hashval_t hash;
|
hashval_t hash;
|
|
|
/* List of available occurrence in basic blocks in the function. */
|
/* List of available occurrence in basic blocks in the function. */
|
struct occr *avail_occr;
|
struct occr *avail_occr;
|
};
|
};
|
|
|
static struct obstack expr_obstack;
|
static struct obstack expr_obstack;
|
|
|
/* Occurrence of an expression.
|
/* Occurrence of an expression.
|
There is at most one occurrence per basic block. If a pattern appears
|
There is at most one occurrence per basic block. If a pattern appears
|
more than once, the last appearance is used. */
|
more than once, the last appearance is used. */
|
|
|
struct occr
|
struct occr
|
{
|
{
|
/* Next occurrence of this expression. */
|
/* Next occurrence of this expression. */
|
struct occr *next;
|
struct occr *next;
|
/* The insn that computes the expression. */
|
/* The insn that computes the expression. */
|
rtx insn;
|
rtx insn;
|
/* Nonzero if this [anticipatable] occurrence has been deleted. */
|
/* Nonzero if this [anticipatable] occurrence has been deleted. */
|
char deleted_p;
|
char deleted_p;
|
};
|
};
|
|
|
static struct obstack occr_obstack;
|
static struct obstack occr_obstack;
|
|
|
/* The following structure holds the information about the occurrences of
|
/* The following structure holds the information about the occurrences of
|
the redundant instructions. */
|
the redundant instructions. */
|
struct unoccr
|
struct unoccr
|
{
|
{
|
struct unoccr *next;
|
struct unoccr *next;
|
edge pred;
|
edge pred;
|
rtx insn;
|
rtx insn;
|
};
|
};
|
|
|
static struct obstack unoccr_obstack;
|
static struct obstack unoccr_obstack;
|
|
|
/* Array where each element is the CUID if the insn that last set the hard
|
/* Array where each element is the CUID if the insn that last set the hard
|
register with the number of the element, since the start of the current
|
register with the number of the element, since the start of the current
|
basic block.
|
basic block.
|
|
|
This array is used during the building of the hash table (step 1) to
|
This array is used during the building of the hash table (step 1) to
|
determine if a reg is killed before the end of a basic block.
|
determine if a reg is killed before the end of a basic block.
|
|
|
It is also used when eliminating partial redundancies (step 2) to see
|
It is also used when eliminating partial redundancies (step 2) to see
|
if a reg was modified since the start of a basic block. */
|
if a reg was modified since the start of a basic block. */
|
static int *reg_avail_info;
|
static int *reg_avail_info;
|
|
|
/* A list of insns that may modify memory within the current basic block. */
|
/* A list of insns that may modify memory within the current basic block. */
|
struct modifies_mem
|
struct modifies_mem
|
{
|
{
|
rtx insn;
|
rtx insn;
|
struct modifies_mem *next;
|
struct modifies_mem *next;
|
};
|
};
|
static struct modifies_mem *modifies_mem_list;
|
static struct modifies_mem *modifies_mem_list;
|
|
|
/* The modifies_mem structs also go on an obstack, only this obstack is
|
/* The modifies_mem structs also go on an obstack, only this obstack is
|
freed each time after completing the analysis or transformations on
|
freed each time after completing the analysis or transformations on
|
a basic block. So we allocate a dummy modifies_mem_obstack_bottom
|
a basic block. So we allocate a dummy modifies_mem_obstack_bottom
|
object on the obstack to keep track of the bottom of the obstack. */
|
object on the obstack to keep track of the bottom of the obstack. */
|
static struct obstack modifies_mem_obstack;
|
static struct obstack modifies_mem_obstack;
|
static struct modifies_mem *modifies_mem_obstack_bottom;
|
static struct modifies_mem *modifies_mem_obstack_bottom;
|
|
|
/* Mapping of insn UIDs to CUIDs.
|
/* Mapping of insn UIDs to CUIDs.
|
CUIDs are like UIDs except they increase monotonically in each basic
|
CUIDs are like UIDs except they increase monotonically in each basic
|
block, have no gaps, and only apply to real insns. */
|
block, have no gaps, and only apply to real insns. */
|
static int *uid_cuid;
|
static int *uid_cuid;
|
#define INSN_CUID(INSN) (uid_cuid[INSN_UID (INSN)])
|
#define INSN_CUID(INSN) (uid_cuid[INSN_UID (INSN)])
|
|
|
|
|
/* Helpers for memory allocation/freeing. */
|
/* Helpers for memory allocation/freeing. */
|
static void alloc_mem (void);
|
static void alloc_mem (void);
|
static void free_mem (void);
|
static void free_mem (void);
|
|
|
/* Support for hash table construction and transformations. */
|
/* Support for hash table construction and transformations. */
|
static bool oprs_unchanged_p (rtx, rtx, bool);
|
static bool oprs_unchanged_p (rtx, rtx, bool);
|
static void record_last_reg_set_info (rtx, int);
|
static void record_last_reg_set_info (rtx, int);
|
static void record_last_mem_set_info (rtx);
|
static void record_last_mem_set_info (rtx);
|
static void record_last_set_info (rtx, rtx, void *);
|
static void record_last_set_info (rtx, rtx, void *);
|
static void record_opr_changes (rtx);
|
static void record_opr_changes (rtx);
|
|
|
static void find_mem_conflicts (rtx, rtx, void *);
|
static void find_mem_conflicts (rtx, rtx, void *);
|
static int load_killed_in_block_p (int, rtx, bool);
|
static int load_killed_in_block_p (int, rtx, bool);
|
static void reset_opr_set_tables (void);
|
static void reset_opr_set_tables (void);
|
|
|
/* Hash table support. */
|
/* Hash table support. */
|
static hashval_t hash_expr (rtx, int *);
|
static hashval_t hash_expr (rtx, int *);
|
static hashval_t hash_expr_for_htab (const void *);
|
static hashval_t hash_expr_for_htab (const void *);
|
static int expr_equiv_p (const void *, const void *);
|
static int expr_equiv_p (const void *, const void *);
|
static void insert_expr_in_table (rtx, rtx);
|
static void insert_expr_in_table (rtx, rtx);
|
static struct expr *lookup_expr_in_table (rtx);
|
static struct expr *lookup_expr_in_table (rtx);
|
static int dump_hash_table_entry (void **, void *);
|
static int dump_hash_table_entry (void **, void *);
|
static void dump_hash_table (FILE *);
|
static void dump_hash_table (FILE *);
|
|
|
/* Helpers for eliminate_partially_redundant_load. */
|
/* Helpers for eliminate_partially_redundant_load. */
|
static bool reg_killed_on_edge (rtx, edge);
|
static bool reg_killed_on_edge (rtx, edge);
|
static bool reg_used_on_edge (rtx, edge);
|
static bool reg_used_on_edge (rtx, edge);
|
|
|
static rtx reg_set_between_after_reload_p (rtx, rtx, rtx);
|
static rtx reg_set_between_after_reload_p (rtx, rtx, rtx);
|
static rtx reg_used_between_after_reload_p (rtx, rtx, rtx);
|
static rtx reg_used_between_after_reload_p (rtx, rtx, rtx);
|
static rtx get_avail_load_store_reg (rtx);
|
static rtx get_avail_load_store_reg (rtx);
|
|
|
static bool bb_has_well_behaved_predecessors (basic_block);
|
static bool bb_has_well_behaved_predecessors (basic_block);
|
static struct occr* get_bb_avail_insn (basic_block, struct occr *);
|
static struct occr* get_bb_avail_insn (basic_block, struct occr *);
|
static void hash_scan_set (rtx);
|
static void hash_scan_set (rtx);
|
static void compute_hash_table (void);
|
static void compute_hash_table (void);
|
|
|
/* The work horses of this pass. */
|
/* The work horses of this pass. */
|
static void eliminate_partially_redundant_load (basic_block,
|
static void eliminate_partially_redundant_load (basic_block,
|
rtx,
|
rtx,
|
struct expr *);
|
struct expr *);
|
static void eliminate_partially_redundant_loads (void);
|
static void eliminate_partially_redundant_loads (void);
|
|
|
|
|
/* Allocate memory for the CUID mapping array and register/memory
|
/* Allocate memory for the CUID mapping array and register/memory
|
tracking tables. */
|
tracking tables. */
|
|
|
static void
|
static void
|
alloc_mem (void)
|
alloc_mem (void)
|
{
|
{
|
int i;
|
int i;
|
basic_block bb;
|
basic_block bb;
|
rtx insn;
|
rtx insn;
|
|
|
/* Find the largest UID and create a mapping from UIDs to CUIDs. */
|
/* Find the largest UID and create a mapping from UIDs to CUIDs. */
|
uid_cuid = XCNEWVEC (int, get_max_uid () + 1);
|
uid_cuid = XCNEWVEC (int, get_max_uid () + 1);
|
i = 1;
|
i = 1;
|
FOR_EACH_BB (bb)
|
FOR_EACH_BB (bb)
|
FOR_BB_INSNS (bb, insn)
|
FOR_BB_INSNS (bb, insn)
|
{
|
{
|
if (INSN_P (insn))
|
if (INSN_P (insn))
|
uid_cuid[INSN_UID (insn)] = i++;
|
uid_cuid[INSN_UID (insn)] = i++;
|
else
|
else
|
uid_cuid[INSN_UID (insn)] = i;
|
uid_cuid[INSN_UID (insn)] = i;
|
}
|
}
|
|
|
/* Allocate the available expressions hash table. We don't want to
|
/* Allocate the available expressions hash table. We don't want to
|
make the hash table too small, but unnecessarily making it too large
|
make the hash table too small, but unnecessarily making it too large
|
also doesn't help. The i/4 is a gcse.c relic, and seems like a
|
also doesn't help. The i/4 is a gcse.c relic, and seems like a
|
reasonable choice. */
|
reasonable choice. */
|
expr_table = htab_create (MAX (i / 4, 13),
|
expr_table = htab_create (MAX (i / 4, 13),
|
hash_expr_for_htab, expr_equiv_p, NULL);
|
hash_expr_for_htab, expr_equiv_p, NULL);
|
|
|
/* We allocate everything on obstacks because we often can roll back
|
/* We allocate everything on obstacks because we often can roll back
|
the whole obstack to some point. Freeing obstacks is very fast. */
|
the whole obstack to some point. Freeing obstacks is very fast. */
|
gcc_obstack_init (&expr_obstack);
|
gcc_obstack_init (&expr_obstack);
|
gcc_obstack_init (&occr_obstack);
|
gcc_obstack_init (&occr_obstack);
|
gcc_obstack_init (&unoccr_obstack);
|
gcc_obstack_init (&unoccr_obstack);
|
gcc_obstack_init (&modifies_mem_obstack);
|
gcc_obstack_init (&modifies_mem_obstack);
|
|
|
/* Working array used to track the last set for each register
|
/* Working array used to track the last set for each register
|
in the current block. */
|
in the current block. */
|
reg_avail_info = (int *) xmalloc (FIRST_PSEUDO_REGISTER * sizeof (int));
|
reg_avail_info = (int *) xmalloc (FIRST_PSEUDO_REGISTER * sizeof (int));
|
|
|
/* Put a dummy modifies_mem object on the modifies_mem_obstack, so we
|
/* Put a dummy modifies_mem object on the modifies_mem_obstack, so we
|
can roll it back in reset_opr_set_tables. */
|
can roll it back in reset_opr_set_tables. */
|
modifies_mem_obstack_bottom =
|
modifies_mem_obstack_bottom =
|
(struct modifies_mem *) obstack_alloc (&modifies_mem_obstack,
|
(struct modifies_mem *) obstack_alloc (&modifies_mem_obstack,
|
sizeof (struct modifies_mem));
|
sizeof (struct modifies_mem));
|
}
|
}
|
|
|
/* Free memory allocated by alloc_mem. */
|
/* Free memory allocated by alloc_mem. */
|
|
|
static void
|
static void
|
free_mem (void)
|
free_mem (void)
|
{
|
{
|
free (uid_cuid);
|
free (uid_cuid);
|
|
|
htab_delete (expr_table);
|
htab_delete (expr_table);
|
|
|
obstack_free (&expr_obstack, NULL);
|
obstack_free (&expr_obstack, NULL);
|
obstack_free (&occr_obstack, NULL);
|
obstack_free (&occr_obstack, NULL);
|
obstack_free (&unoccr_obstack, NULL);
|
obstack_free (&unoccr_obstack, NULL);
|
obstack_free (&modifies_mem_obstack, NULL);
|
obstack_free (&modifies_mem_obstack, NULL);
|
|
|
free (reg_avail_info);
|
free (reg_avail_info);
|
}
|
}
|
|
|
|
|
/* Hash expression X.
|
/* Hash expression X.
|
DO_NOT_RECORD_P is a boolean indicating if a volatile operand is found
|
DO_NOT_RECORD_P is a boolean indicating if a volatile operand is found
|
or if the expression contains something we don't want to insert in the
|
or if the expression contains something we don't want to insert in the
|
table. */
|
table. */
|
|
|
static hashval_t
|
static hashval_t
|
hash_expr (rtx x, int *do_not_record_p)
|
hash_expr (rtx x, int *do_not_record_p)
|
{
|
{
|
*do_not_record_p = 0;
|
*do_not_record_p = 0;
|
return hash_rtx (x, GET_MODE (x), do_not_record_p,
|
return hash_rtx (x, GET_MODE (x), do_not_record_p,
|
NULL, /*have_reg_qty=*/false);
|
NULL, /*have_reg_qty=*/false);
|
}
|
}
|
|
|
/* Callback for hashtab.
|
/* Callback for hashtab.
|
Return the hash value for expression EXP. We don't actually hash
|
Return the hash value for expression EXP. We don't actually hash
|
here, we just return the cached hash value. */
|
here, we just return the cached hash value. */
|
|
|
static hashval_t
|
static hashval_t
|
hash_expr_for_htab (const void *expp)
|
hash_expr_for_htab (const void *expp)
|
{
|
{
|
struct expr *exp = (struct expr *) expp;
|
struct expr *exp = (struct expr *) expp;
|
return exp->hash;
|
return exp->hash;
|
}
|
}
|
|
|
/* Callback for hashtab.
|
/* Callback for hashtab.
|
Return nonzero if exp1 is equivalent to exp2. */
|
Return nonzero if exp1 is equivalent to exp2. */
|
|
|
static int
|
static int
|
expr_equiv_p (const void *exp1p, const void *exp2p)
|
expr_equiv_p (const void *exp1p, const void *exp2p)
|
{
|
{
|
struct expr *exp1 = (struct expr *) exp1p;
|
struct expr *exp1 = (struct expr *) exp1p;
|
struct expr *exp2 = (struct expr *) exp2p;
|
struct expr *exp2 = (struct expr *) exp2p;
|
int equiv_p = exp_equiv_p (exp1->expr, exp2->expr, 0, true);
|
int equiv_p = exp_equiv_p (exp1->expr, exp2->expr, 0, true);
|
|
|
gcc_assert (!equiv_p || exp1->hash == exp2->hash);
|
gcc_assert (!equiv_p || exp1->hash == exp2->hash);
|
return equiv_p;
|
return equiv_p;
|
}
|
}
|
|
|
|
|
/* Insert expression X in INSN in the hash TABLE.
|
/* Insert expression X in INSN in the hash TABLE.
|
If it is already present, record it as the last occurrence in INSN's
|
If it is already present, record it as the last occurrence in INSN's
|
basic block. */
|
basic block. */
|
|
|
static void
|
static void
|
insert_expr_in_table (rtx x, rtx insn)
|
insert_expr_in_table (rtx x, rtx insn)
|
{
|
{
|
int do_not_record_p;
|
int do_not_record_p;
|
hashval_t hash;
|
hashval_t hash;
|
struct expr *cur_expr, **slot;
|
struct expr *cur_expr, **slot;
|
struct occr *avail_occr, *last_occr = NULL;
|
struct occr *avail_occr, *last_occr = NULL;
|
|
|
hash = hash_expr (x, &do_not_record_p);
|
hash = hash_expr (x, &do_not_record_p);
|
|
|
/* Do not insert expression in the table if it contains volatile operands,
|
/* Do not insert expression in the table if it contains volatile operands,
|
or if hash_expr determines the expression is something we don't want
|
or if hash_expr determines the expression is something we don't want
|
to or can't handle. */
|
to or can't handle. */
|
if (do_not_record_p)
|
if (do_not_record_p)
|
return;
|
return;
|
|
|
/* We anticipate that redundant expressions are rare, so for convenience
|
/* We anticipate that redundant expressions are rare, so for convenience
|
allocate a new hash table element here already and set its fields.
|
allocate a new hash table element here already and set its fields.
|
If we don't do this, we need a hack with a static struct expr. Anyway,
|
If we don't do this, we need a hack with a static struct expr. Anyway,
|
obstack_free is really fast and one more obstack_alloc doesn't hurt if
|
obstack_free is really fast and one more obstack_alloc doesn't hurt if
|
we're going to see more expressions later on. */
|
we're going to see more expressions later on. */
|
cur_expr = (struct expr *) obstack_alloc (&expr_obstack,
|
cur_expr = (struct expr *) obstack_alloc (&expr_obstack,
|
sizeof (struct expr));
|
sizeof (struct expr));
|
cur_expr->expr = x;
|
cur_expr->expr = x;
|
cur_expr->hash = hash;
|
cur_expr->hash = hash;
|
cur_expr->avail_occr = NULL;
|
cur_expr->avail_occr = NULL;
|
|
|
slot = (struct expr **) htab_find_slot_with_hash (expr_table, cur_expr,
|
slot = (struct expr **) htab_find_slot_with_hash (expr_table, cur_expr,
|
hash, INSERT);
|
hash, INSERT);
|
|
|
if (! (*slot))
|
if (! (*slot))
|
/* The expression isn't found, so insert it. */
|
/* The expression isn't found, so insert it. */
|
*slot = cur_expr;
|
*slot = cur_expr;
|
else
|
else
|
{
|
{
|
/* The expression is already in the table, so roll back the
|
/* The expression is already in the table, so roll back the
|
obstack and use the existing table entry. */
|
obstack and use the existing table entry. */
|
obstack_free (&expr_obstack, cur_expr);
|
obstack_free (&expr_obstack, cur_expr);
|
cur_expr = *slot;
|
cur_expr = *slot;
|
}
|
}
|
|
|
/* Search for another occurrence in the same basic block. */
|
/* Search for another occurrence in the same basic block. */
|
avail_occr = cur_expr->avail_occr;
|
avail_occr = cur_expr->avail_occr;
|
while (avail_occr && BLOCK_NUM (avail_occr->insn) != BLOCK_NUM (insn))
|
while (avail_occr && BLOCK_NUM (avail_occr->insn) != BLOCK_NUM (insn))
|
{
|
{
|
/* If an occurrence isn't found, save a pointer to the end of
|
/* If an occurrence isn't found, save a pointer to the end of
|
the list. */
|
the list. */
|
last_occr = avail_occr;
|
last_occr = avail_occr;
|
avail_occr = avail_occr->next;
|
avail_occr = avail_occr->next;
|
}
|
}
|
|
|
if (avail_occr)
|
if (avail_occr)
|
/* Found another instance of the expression in the same basic block.
|
/* Found another instance of the expression in the same basic block.
|
Prefer this occurrence to the currently recorded one. We want
|
Prefer this occurrence to the currently recorded one. We want
|
the last one in the block and the block is scanned from start
|
the last one in the block and the block is scanned from start
|
to end. */
|
to end. */
|
avail_occr->insn = insn;
|
avail_occr->insn = insn;
|
else
|
else
|
{
|
{
|
/* First occurrence of this expression in this basic block. */
|
/* First occurrence of this expression in this basic block. */
|
avail_occr = (struct occr *) obstack_alloc (&occr_obstack,
|
avail_occr = (struct occr *) obstack_alloc (&occr_obstack,
|
sizeof (struct occr));
|
sizeof (struct occr));
|
|
|
/* First occurrence of this expression in any block? */
|
/* First occurrence of this expression in any block? */
|
if (cur_expr->avail_occr == NULL)
|
if (cur_expr->avail_occr == NULL)
|
cur_expr->avail_occr = avail_occr;
|
cur_expr->avail_occr = avail_occr;
|
else
|
else
|
last_occr->next = avail_occr;
|
last_occr->next = avail_occr;
|
|
|
avail_occr->insn = insn;
|
avail_occr->insn = insn;
|
avail_occr->next = NULL;
|
avail_occr->next = NULL;
|
avail_occr->deleted_p = 0;
|
avail_occr->deleted_p = 0;
|
}
|
}
|
}
|
}
|
|
|
|
|
/* Lookup pattern PAT in the expression hash table.
|
/* Lookup pattern PAT in the expression hash table.
|
The result is a pointer to the table entry, or NULL if not found. */
|
The result is a pointer to the table entry, or NULL if not found. */
|
|
|
static struct expr *
|
static struct expr *
|
lookup_expr_in_table (rtx pat)
|
lookup_expr_in_table (rtx pat)
|
{
|
{
|
int do_not_record_p;
|
int do_not_record_p;
|
struct expr **slot, *tmp_expr;
|
struct expr **slot, *tmp_expr;
|
hashval_t hash = hash_expr (pat, &do_not_record_p);
|
hashval_t hash = hash_expr (pat, &do_not_record_p);
|
|
|
if (do_not_record_p)
|
if (do_not_record_p)
|
return NULL;
|
return NULL;
|
|
|
tmp_expr = (struct expr *) obstack_alloc (&expr_obstack,
|
tmp_expr = (struct expr *) obstack_alloc (&expr_obstack,
|
sizeof (struct expr));
|
sizeof (struct expr));
|
tmp_expr->expr = pat;
|
tmp_expr->expr = pat;
|
tmp_expr->hash = hash;
|
tmp_expr->hash = hash;
|
tmp_expr->avail_occr = NULL;
|
tmp_expr->avail_occr = NULL;
|
|
|
slot = (struct expr **) htab_find_slot_with_hash (expr_table, tmp_expr,
|
slot = (struct expr **) htab_find_slot_with_hash (expr_table, tmp_expr,
|
hash, INSERT);
|
hash, INSERT);
|
obstack_free (&expr_obstack, tmp_expr);
|
obstack_free (&expr_obstack, tmp_expr);
|
|
|
if (!slot)
|
if (!slot)
|
return NULL;
|
return NULL;
|
else
|
else
|
return (*slot);
|
return (*slot);
|
}
|
}
|
|
|
|
|
/* Dump all expressions and occurrences that are currently in the
|
/* Dump all expressions and occurrences that are currently in the
|
expression hash table to FILE. */
|
expression hash table to FILE. */
|
|
|
/* This helper is called via htab_traverse. */
|
/* This helper is called via htab_traverse. */
|
static int
|
static int
|
dump_hash_table_entry (void **slot, void *filep)
|
dump_hash_table_entry (void **slot, void *filep)
|
{
|
{
|
struct expr *expr = (struct expr *) *slot;
|
struct expr *expr = (struct expr *) *slot;
|
FILE *file = (FILE *) filep;
|
FILE *file = (FILE *) filep;
|
struct occr *occr;
|
struct occr *occr;
|
|
|
fprintf (file, "expr: ");
|
fprintf (file, "expr: ");
|
print_rtl (file, expr->expr);
|
print_rtl (file, expr->expr);
|
fprintf (file,"\nhashcode: %u\n", expr->hash);
|
fprintf (file,"\nhashcode: %u\n", expr->hash);
|
fprintf (file,"list of occurrences:\n");
|
fprintf (file,"list of occurrences:\n");
|
occr = expr->avail_occr;
|
occr = expr->avail_occr;
|
while (occr)
|
while (occr)
|
{
|
{
|
rtx insn = occr->insn;
|
rtx insn = occr->insn;
|
print_rtl_single (file, insn);
|
print_rtl_single (file, insn);
|
fprintf (file, "\n");
|
fprintf (file, "\n");
|
occr = occr->next;
|
occr = occr->next;
|
}
|
}
|
fprintf (file, "\n");
|
fprintf (file, "\n");
|
return 1;
|
return 1;
|
}
|
}
|
|
|
static void
|
static void
|
dump_hash_table (FILE *file)
|
dump_hash_table (FILE *file)
|
{
|
{
|
fprintf (file, "\n\nexpression hash table\n");
|
fprintf (file, "\n\nexpression hash table\n");
|
fprintf (file, "size %ld, %ld elements, %f collision/search ratio\n",
|
fprintf (file, "size %ld, %ld elements, %f collision/search ratio\n",
|
(long) htab_size (expr_table),
|
(long) htab_size (expr_table),
|
(long) htab_elements (expr_table),
|
(long) htab_elements (expr_table),
|
htab_collisions (expr_table));
|
htab_collisions (expr_table));
|
if (htab_elements (expr_table) > 0)
|
if (htab_elements (expr_table) > 0)
|
{
|
{
|
fprintf (file, "\n\ntable entries:\n");
|
fprintf (file, "\n\ntable entries:\n");
|
htab_traverse (expr_table, dump_hash_table_entry, file);
|
htab_traverse (expr_table, dump_hash_table_entry, file);
|
}
|
}
|
fprintf (file, "\n");
|
fprintf (file, "\n");
|
}
|
}
|
|
|
|
|
/* Return nonzero if the operands of expression X are unchanged
|
/* Return nonzero if the operands of expression X are unchanged
|
1) from the start of INSN's basic block up to but not including INSN
|
1) from the start of INSN's basic block up to but not including INSN
|
if AFTER_INSN is false, or
|
if AFTER_INSN is false, or
|
2) from INSN to the end of INSN's basic block if AFTER_INSN is true. */
|
2) from INSN to the end of INSN's basic block if AFTER_INSN is true. */
|
|
|
static bool
|
static bool
|
oprs_unchanged_p (rtx x, rtx insn, bool after_insn)
|
oprs_unchanged_p (rtx x, rtx insn, bool after_insn)
|
{
|
{
|
int i, j;
|
int i, j;
|
enum rtx_code code;
|
enum rtx_code code;
|
const char *fmt;
|
const char *fmt;
|
|
|
if (x == 0)
|
if (x == 0)
|
return 1;
|
return 1;
|
|
|
code = GET_CODE (x);
|
code = GET_CODE (x);
|
switch (code)
|
switch (code)
|
{
|
{
|
case REG:
|
case REG:
|
/* We are called after register allocation. */
|
/* We are called after register allocation. */
|
gcc_assert (REGNO (x) < FIRST_PSEUDO_REGISTER);
|
gcc_assert (REGNO (x) < FIRST_PSEUDO_REGISTER);
|
if (after_insn)
|
if (after_insn)
|
/* If the last CUID setting the insn is less than the CUID of
|
/* If the last CUID setting the insn is less than the CUID of
|
INSN, then reg X is not changed in or after INSN. */
|
INSN, then reg X is not changed in or after INSN. */
|
return reg_avail_info[REGNO (x)] < INSN_CUID (insn);
|
return reg_avail_info[REGNO (x)] < INSN_CUID (insn);
|
else
|
else
|
/* Reg X is not set before INSN in the current basic block if
|
/* Reg X is not set before INSN in the current basic block if
|
we have not yet recorded the CUID of an insn that touches
|
we have not yet recorded the CUID of an insn that touches
|
the reg. */
|
the reg. */
|
return reg_avail_info[REGNO (x)] == 0;
|
return reg_avail_info[REGNO (x)] == 0;
|
|
|
case MEM:
|
case MEM:
|
if (load_killed_in_block_p (INSN_CUID (insn), x, after_insn))
|
if (load_killed_in_block_p (INSN_CUID (insn), x, after_insn))
|
return 0;
|
return 0;
|
else
|
else
|
return oprs_unchanged_p (XEXP (x, 0), insn, after_insn);
|
return oprs_unchanged_p (XEXP (x, 0), insn, after_insn);
|
|
|
case PC:
|
case PC:
|
case CC0: /*FIXME*/
|
case CC0: /*FIXME*/
|
case CONST:
|
case CONST:
|
case CONST_INT:
|
case CONST_INT:
|
case CONST_DOUBLE:
|
case CONST_DOUBLE:
|
case CONST_VECTOR:
|
case CONST_VECTOR:
|
case SYMBOL_REF:
|
case SYMBOL_REF:
|
case LABEL_REF:
|
case LABEL_REF:
|
case ADDR_VEC:
|
case ADDR_VEC:
|
case ADDR_DIFF_VEC:
|
case ADDR_DIFF_VEC:
|
return 1;
|
return 1;
|
|
|
case PRE_DEC:
|
case PRE_DEC:
|
case PRE_INC:
|
case PRE_INC:
|
case POST_DEC:
|
case POST_DEC:
|
case POST_INC:
|
case POST_INC:
|
case PRE_MODIFY:
|
case PRE_MODIFY:
|
case POST_MODIFY:
|
case POST_MODIFY:
|
if (after_insn)
|
if (after_insn)
|
return 0;
|
return 0;
|
break;
|
break;
|
|
|
default:
|
default:
|
break;
|
break;
|
}
|
}
|
|
|
for (i = GET_RTX_LENGTH (code) - 1, fmt = GET_RTX_FORMAT (code); i >= 0; i--)
|
for (i = GET_RTX_LENGTH (code) - 1, fmt = GET_RTX_FORMAT (code); i >= 0; i--)
|
{
|
{
|
if (fmt[i] == 'e')
|
if (fmt[i] == 'e')
|
{
|
{
|
if (! oprs_unchanged_p (XEXP (x, i), insn, after_insn))
|
if (! oprs_unchanged_p (XEXP (x, i), insn, after_insn))
|
return 0;
|
return 0;
|
}
|
}
|
else if (fmt[i] == 'E')
|
else if (fmt[i] == 'E')
|
for (j = 0; j < XVECLEN (x, i); j++)
|
for (j = 0; j < XVECLEN (x, i); j++)
|
if (! oprs_unchanged_p (XVECEXP (x, i, j), insn, after_insn))
|
if (! oprs_unchanged_p (XVECEXP (x, i, j), insn, after_insn))
|
return 0;
|
return 0;
|
}
|
}
|
|
|
return 1;
|
return 1;
|
}
|
}
|
|
|
|
|
/* Used for communication between find_mem_conflicts and
|
/* Used for communication between find_mem_conflicts and
|
load_killed_in_block_p. Nonzero if find_mem_conflicts finds a
|
load_killed_in_block_p. Nonzero if find_mem_conflicts finds a
|
conflict between two memory references.
|
conflict between two memory references.
|
This is a bit of a hack to work around the limitations of note_stores. */
|
This is a bit of a hack to work around the limitations of note_stores. */
|
static int mems_conflict_p;
|
static int mems_conflict_p;
|
|
|
/* DEST is the output of an instruction. If it is a memory reference, and
|
/* DEST is the output of an instruction. If it is a memory reference, and
|
possibly conflicts with the load found in DATA, then set mems_conflict_p
|
possibly conflicts with the load found in DATA, then set mems_conflict_p
|
to a nonzero value. */
|
to a nonzero value. */
|
|
|
static void
|
static void
|
find_mem_conflicts (rtx dest, rtx setter ATTRIBUTE_UNUSED,
|
find_mem_conflicts (rtx dest, rtx setter ATTRIBUTE_UNUSED,
|
void *data)
|
void *data)
|
{
|
{
|
rtx mem_op = (rtx) data;
|
rtx mem_op = (rtx) data;
|
|
|
while (GET_CODE (dest) == SUBREG
|
while (GET_CODE (dest) == SUBREG
|
|| GET_CODE (dest) == ZERO_EXTRACT
|
|| GET_CODE (dest) == ZERO_EXTRACT
|
|| GET_CODE (dest) == STRICT_LOW_PART)
|
|| GET_CODE (dest) == STRICT_LOW_PART)
|
dest = XEXP (dest, 0);
|
dest = XEXP (dest, 0);
|
|
|
/* If DEST is not a MEM, then it will not conflict with the load. Note
|
/* If DEST is not a MEM, then it will not conflict with the load. Note
|
that function calls are assumed to clobber memory, but are handled
|
that function calls are assumed to clobber memory, but are handled
|
elsewhere. */
|
elsewhere. */
|
if (! MEM_P (dest))
|
if (! MEM_P (dest))
|
return;
|
return;
|
|
|
if (true_dependence (dest, GET_MODE (dest), mem_op,
|
if (true_dependence (dest, GET_MODE (dest), mem_op,
|
rtx_addr_varies_p))
|
rtx_addr_varies_p))
|
mems_conflict_p = 1;
|
mems_conflict_p = 1;
|
}
|
}
|
|
|
|
|
/* Return nonzero if the expression in X (a memory reference) is killed
|
/* Return nonzero if the expression in X (a memory reference) is killed
|
in the current basic block before (if AFTER_INSN is false) or after
|
in the current basic block before (if AFTER_INSN is false) or after
|
(if AFTER_INSN is true) the insn with the CUID in UID_LIMIT.
|
(if AFTER_INSN is true) the insn with the CUID in UID_LIMIT.
|
|
|
This function assumes that the modifies_mem table is flushed when
|
This function assumes that the modifies_mem table is flushed when
|
the hash table construction or redundancy elimination phases start
|
the hash table construction or redundancy elimination phases start
|
processing a new basic block. */
|
processing a new basic block. */
|
|
|
static int
|
static int
|
load_killed_in_block_p (int uid_limit, rtx x, bool after_insn)
|
load_killed_in_block_p (int uid_limit, rtx x, bool after_insn)
|
{
|
{
|
struct modifies_mem *list_entry = modifies_mem_list;
|
struct modifies_mem *list_entry = modifies_mem_list;
|
|
|
while (list_entry)
|
while (list_entry)
|
{
|
{
|
rtx setter = list_entry->insn;
|
rtx setter = list_entry->insn;
|
|
|
/* Ignore entries in the list that do not apply. */
|
/* Ignore entries in the list that do not apply. */
|
if ((after_insn
|
if ((after_insn
|
&& INSN_CUID (setter) < uid_limit)
|
&& INSN_CUID (setter) < uid_limit)
|
|| (! after_insn
|
|| (! after_insn
|
&& INSN_CUID (setter) > uid_limit))
|
&& INSN_CUID (setter) > uid_limit))
|
{
|
{
|
list_entry = list_entry->next;
|
list_entry = list_entry->next;
|
continue;
|
continue;
|
}
|
}
|
|
|
/* If SETTER is a call everything is clobbered. Note that calls
|
/* If SETTER is a call everything is clobbered. Note that calls
|
to pure functions are never put on the list, so we need not
|
to pure functions are never put on the list, so we need not
|
worry about them. */
|
worry about them. */
|
if (CALL_P (setter))
|
if (CALL_P (setter))
|
return 1;
|
return 1;
|
|
|
/* SETTER must be an insn of some kind that sets memory. Call
|
/* SETTER must be an insn of some kind that sets memory. Call
|
note_stores to examine each hunk of memory that is modified.
|
note_stores to examine each hunk of memory that is modified.
|
It will set mems_conflict_p to nonzero if there may be a
|
It will set mems_conflict_p to nonzero if there may be a
|
conflict between X and SETTER. */
|
conflict between X and SETTER. */
|
mems_conflict_p = 0;
|
mems_conflict_p = 0;
|
note_stores (PATTERN (setter), find_mem_conflicts, x);
|
note_stores (PATTERN (setter), find_mem_conflicts, x);
|
if (mems_conflict_p)
|
if (mems_conflict_p)
|
return 1;
|
return 1;
|
|
|
list_entry = list_entry->next;
|
list_entry = list_entry->next;
|
}
|
}
|
return 0;
|
return 0;
|
}
|
}
|
|
|
|
|
/* Record register first/last/block set information for REGNO in INSN. */
|
/* Record register first/last/block set information for REGNO in INSN. */
|
|
|
static inline void
|
static inline void
|
record_last_reg_set_info (rtx insn, int regno)
|
record_last_reg_set_info (rtx insn, int regno)
|
{
|
{
|
reg_avail_info[regno] = INSN_CUID (insn);
|
reg_avail_info[regno] = INSN_CUID (insn);
|
}
|
}
|
|
|
|
|
/* Record memory modification information for INSN. We do not actually care
|
/* Record memory modification information for INSN. We do not actually care
|
about the memory location(s) that are set, or even how they are set (consider
|
about the memory location(s) that are set, or even how they are set (consider
|
a CALL_INSN). We merely need to record which insns modify memory. */
|
a CALL_INSN). We merely need to record which insns modify memory. */
|
|
|
static void
|
static void
|
record_last_mem_set_info (rtx insn)
|
record_last_mem_set_info (rtx insn)
|
{
|
{
|
struct modifies_mem *list_entry;
|
struct modifies_mem *list_entry;
|
|
|
list_entry = (struct modifies_mem *) obstack_alloc (&modifies_mem_obstack,
|
list_entry = (struct modifies_mem *) obstack_alloc (&modifies_mem_obstack,
|
sizeof (struct modifies_mem));
|
sizeof (struct modifies_mem));
|
list_entry->insn = insn;
|
list_entry->insn = insn;
|
list_entry->next = modifies_mem_list;
|
list_entry->next = modifies_mem_list;
|
modifies_mem_list = list_entry;
|
modifies_mem_list = list_entry;
|
}
|
}
|
|
|
/* Called from compute_hash_table via note_stores to handle one
|
/* Called from compute_hash_table via note_stores to handle one
|
SET or CLOBBER in an insn. DATA is really the instruction in which
|
SET or CLOBBER in an insn. DATA is really the instruction in which
|
the SET is taking place. */
|
the SET is taking place. */
|
|
|
static void
|
static void
|
record_last_set_info (rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data)
|
record_last_set_info (rtx dest, rtx setter ATTRIBUTE_UNUSED, void *data)
|
{
|
{
|
rtx last_set_insn = (rtx) data;
|
rtx last_set_insn = (rtx) data;
|
|
|
if (GET_CODE (dest) == SUBREG)
|
if (GET_CODE (dest) == SUBREG)
|
dest = SUBREG_REG (dest);
|
dest = SUBREG_REG (dest);
|
|
|
if (REG_P (dest))
|
if (REG_P (dest))
|
record_last_reg_set_info (last_set_insn, REGNO (dest));
|
record_last_reg_set_info (last_set_insn, REGNO (dest));
|
else if (MEM_P (dest))
|
else if (MEM_P (dest))
|
{
|
{
|
/* Ignore pushes, they don't clobber memory. They may still
|
/* Ignore pushes, they don't clobber memory. They may still
|
clobber the stack pointer though. Some targets do argument
|
clobber the stack pointer though. Some targets do argument
|
pushes without adding REG_INC notes. See e.g. PR25196,
|
pushes without adding REG_INC notes. See e.g. PR25196,
|
where a pushsi2 on i386 doesn't have REG_INC notes. Note
|
where a pushsi2 on i386 doesn't have REG_INC notes. Note
|
such changes here too. */
|
such changes here too. */
|
if (! push_operand (dest, GET_MODE (dest)))
|
if (! push_operand (dest, GET_MODE (dest)))
|
record_last_mem_set_info (last_set_insn);
|
record_last_mem_set_info (last_set_insn);
|
else
|
else
|
record_last_reg_set_info (last_set_insn, STACK_POINTER_REGNUM);
|
record_last_reg_set_info (last_set_insn, STACK_POINTER_REGNUM);
|
}
|
}
|
}
|
}
|
|
|
|
|
/* Reset tables used to keep track of what's still available since the
|
/* Reset tables used to keep track of what's still available since the
|
start of the block. */
|
start of the block. */
|
|
|
static void
|
static void
|
reset_opr_set_tables (void)
|
reset_opr_set_tables (void)
|
{
|
{
|
memset (reg_avail_info, 0, FIRST_PSEUDO_REGISTER * sizeof (int));
|
memset (reg_avail_info, 0, FIRST_PSEUDO_REGISTER * sizeof (int));
|
obstack_free (&modifies_mem_obstack, modifies_mem_obstack_bottom);
|
obstack_free (&modifies_mem_obstack, modifies_mem_obstack_bottom);
|
modifies_mem_list = NULL;
|
modifies_mem_list = NULL;
|
}
|
}
|
|
|
|
|
/* Record things set by INSN.
|
/* Record things set by INSN.
|
This data is used by oprs_unchanged_p. */
|
This data is used by oprs_unchanged_p. */
|
|
|
static void
|
static void
|
record_opr_changes (rtx insn)
|
record_opr_changes (rtx insn)
|
{
|
{
|
rtx note;
|
rtx note;
|
|
|
/* Find all stores and record them. */
|
/* Find all stores and record them. */
|
note_stores (PATTERN (insn), record_last_set_info, insn);
|
note_stores (PATTERN (insn), record_last_set_info, insn);
|
|
|
/* Also record autoincremented REGs for this insn as changed. */
|
/* Also record autoincremented REGs for this insn as changed. */
|
for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
|
for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
|
if (REG_NOTE_KIND (note) == REG_INC)
|
if (REG_NOTE_KIND (note) == REG_INC)
|
record_last_reg_set_info (insn, REGNO (XEXP (note, 0)));
|
record_last_reg_set_info (insn, REGNO (XEXP (note, 0)));
|
|
|
/* Finally, if this is a call, record all call clobbers. */
|
/* Finally, if this is a call, record all call clobbers. */
|
if (CALL_P (insn))
|
if (CALL_P (insn))
|
{
|
{
|
unsigned int regno;
|
unsigned int regno;
|
|
|
for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
|
for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
|
if (TEST_HARD_REG_BIT (regs_invalidated_by_call, regno))
|
if (TEST_HARD_REG_BIT (regs_invalidated_by_call, regno))
|
record_last_reg_set_info (insn, regno);
|
record_last_reg_set_info (insn, regno);
|
|
|
if (! CONST_OR_PURE_CALL_P (insn))
|
if (! CONST_OR_PURE_CALL_P (insn))
|
record_last_mem_set_info (insn);
|
record_last_mem_set_info (insn);
|
}
|
}
|
}
|
}
|
|
|
|
|
/* Scan the pattern of INSN and add an entry to the hash TABLE.
|
/* Scan the pattern of INSN and add an entry to the hash TABLE.
|
After reload we are interested in loads/stores only. */
|
After reload we are interested in loads/stores only. */
|
|
|
static void
|
static void
|
hash_scan_set (rtx insn)
|
hash_scan_set (rtx insn)
|
{
|
{
|
rtx pat = PATTERN (insn);
|
rtx pat = PATTERN (insn);
|
rtx src = SET_SRC (pat);
|
rtx src = SET_SRC (pat);
|
rtx dest = SET_DEST (pat);
|
rtx dest = SET_DEST (pat);
|
|
|
/* We are only interested in loads and stores. */
|
/* We are only interested in loads and stores. */
|
if (! MEM_P (src) && ! MEM_P (dest))
|
if (! MEM_P (src) && ! MEM_P (dest))
|
return;
|
return;
|
|
|
/* Don't mess with jumps and nops. */
|
/* Don't mess with jumps and nops. */
|
if (JUMP_P (insn) || set_noop_p (pat))
|
if (JUMP_P (insn) || set_noop_p (pat))
|
return;
|
return;
|
|
|
if (REG_P (dest))
|
if (REG_P (dest))
|
{
|
{
|
if (/* Don't CSE something if we can't do a reg/reg copy. */
|
if (/* Don't CSE something if we can't do a reg/reg copy. */
|
can_copy_p (GET_MODE (dest))
|
can_copy_p (GET_MODE (dest))
|
/* Is SET_SRC something we want to gcse? */
|
/* Is SET_SRC something we want to gcse? */
|
&& general_operand (src, GET_MODE (src))
|
&& general_operand (src, GET_MODE (src))
|
#ifdef STACK_REGS
|
#ifdef STACK_REGS
|
/* Never consider insns touching the register stack. It may
|
/* Never consider insns touching the register stack. It may
|
create situations that reg-stack cannot handle (e.g. a stack
|
create situations that reg-stack cannot handle (e.g. a stack
|
register live across an abnormal edge). */
|
register live across an abnormal edge). */
|
&& (REGNO (dest) < FIRST_STACK_REG || REGNO (dest) > LAST_STACK_REG)
|
&& (REGNO (dest) < FIRST_STACK_REG || REGNO (dest) > LAST_STACK_REG)
|
#endif
|
#endif
|
/* An expression is not available if its operands are
|
/* An expression is not available if its operands are
|
subsequently modified, including this insn. */
|
subsequently modified, including this insn. */
|
&& oprs_unchanged_p (src, insn, true))
|
&& oprs_unchanged_p (src, insn, true))
|
{
|
{
|
insert_expr_in_table (src, insn);
|
insert_expr_in_table (src, insn);
|
}
|
}
|
}
|
}
|
else if (REG_P (src))
|
else if (REG_P (src))
|
{
|
{
|
/* Only record sets of pseudo-regs in the hash table. */
|
/* Only record sets of pseudo-regs in the hash table. */
|
if (/* Don't CSE something if we can't do a reg/reg copy. */
|
if (/* Don't CSE something if we can't do a reg/reg copy. */
|
can_copy_p (GET_MODE (src))
|
can_copy_p (GET_MODE (src))
|
/* Is SET_DEST something we want to gcse? */
|
/* Is SET_DEST something we want to gcse? */
|
&& general_operand (dest, GET_MODE (dest))
|
&& general_operand (dest, GET_MODE (dest))
|
#ifdef STACK_REGS
|
#ifdef STACK_REGS
|
/* As above for STACK_REGS. */
|
/* As above for STACK_REGS. */
|
&& (REGNO (src) < FIRST_STACK_REG || REGNO (src) > LAST_STACK_REG)
|
&& (REGNO (src) < FIRST_STACK_REG || REGNO (src) > LAST_STACK_REG)
|
#endif
|
#endif
|
&& ! (flag_float_store && FLOAT_MODE_P (GET_MODE (dest)))
|
&& ! (flag_float_store && FLOAT_MODE_P (GET_MODE (dest)))
|
/* Check if the memory expression is killed after insn. */
|
/* Check if the memory expression is killed after insn. */
|
&& ! load_killed_in_block_p (INSN_CUID (insn) + 1, dest, true)
|
&& ! load_killed_in_block_p (INSN_CUID (insn) + 1, dest, true)
|
&& oprs_unchanged_p (XEXP (dest, 0), insn, true))
|
&& oprs_unchanged_p (XEXP (dest, 0), insn, true))
|
{
|
{
|
insert_expr_in_table (dest, insn);
|
insert_expr_in_table (dest, insn);
|
}
|
}
|
}
|
}
|
}
|
}
|
|
|
|
|
/* Create hash table of memory expressions available at end of basic
|
/* Create hash table of memory expressions available at end of basic
|
blocks. Basically you should think of this hash table as the
|
blocks. Basically you should think of this hash table as the
|
representation of AVAIL_OUT. This is the set of expressions that
|
representation of AVAIL_OUT. This is the set of expressions that
|
is generated in a basic block and not killed before the end of the
|
is generated in a basic block and not killed before the end of the
|
same basic block. Notice that this is really a local computation. */
|
same basic block. Notice that this is really a local computation. */
|
|
|
static void
|
static void
|
compute_hash_table (void)
|
compute_hash_table (void)
|
{
|
{
|
basic_block bb;
|
basic_block bb;
|
|
|
FOR_EACH_BB (bb)
|
FOR_EACH_BB (bb)
|
{
|
{
|
rtx insn;
|
rtx insn;
|
|
|
/* First pass over the instructions records information used to
|
/* First pass over the instructions records information used to
|
determine when registers and memory are last set.
|
determine when registers and memory are last set.
|
Since we compute a "local" AVAIL_OUT, reset the tables that
|
Since we compute a "local" AVAIL_OUT, reset the tables that
|
help us keep track of what has been modified since the start
|
help us keep track of what has been modified since the start
|
of the block. */
|
of the block. */
|
reset_opr_set_tables ();
|
reset_opr_set_tables ();
|
FOR_BB_INSNS (bb, insn)
|
FOR_BB_INSNS (bb, insn)
|
{
|
{
|
if (INSN_P (insn))
|
if (INSN_P (insn))
|
record_opr_changes (insn);
|
record_opr_changes (insn);
|
}
|
}
|
|
|
/* The next pass actually builds the hash table. */
|
/* The next pass actually builds the hash table. */
|
FOR_BB_INSNS (bb, insn)
|
FOR_BB_INSNS (bb, insn)
|
if (INSN_P (insn) && GET_CODE (PATTERN (insn)) == SET)
|
if (INSN_P (insn) && GET_CODE (PATTERN (insn)) == SET)
|
hash_scan_set (insn);
|
hash_scan_set (insn);
|
}
|
}
|
}
|
}
|
|
|
|
|
/* Check if register REG is killed in any insn waiting to be inserted on
|
/* Check if register REG is killed in any insn waiting to be inserted on
|
edge E. This function is required to check that our data flow analysis
|
edge E. This function is required to check that our data flow analysis
|
is still valid prior to commit_edge_insertions. */
|
is still valid prior to commit_edge_insertions. */
|
|
|
static bool
|
static bool
|
reg_killed_on_edge (rtx reg, edge e)
|
reg_killed_on_edge (rtx reg, edge e)
|
{
|
{
|
rtx insn;
|
rtx insn;
|
|
|
for (insn = e->insns.r; insn; insn = NEXT_INSN (insn))
|
for (insn = e->insns.r; insn; insn = NEXT_INSN (insn))
|
if (INSN_P (insn) && reg_set_p (reg, insn))
|
if (INSN_P (insn) && reg_set_p (reg, insn))
|
return true;
|
return true;
|
|
|
return false;
|
return false;
|
}
|
}
|
|
|
/* Similar to above - check if register REG is used in any insn waiting
|
/* Similar to above - check if register REG is used in any insn waiting
|
to be inserted on edge E.
|
to be inserted on edge E.
|
Assumes no such insn can be a CALL_INSN; if so call reg_used_between_p
|
Assumes no such insn can be a CALL_INSN; if so call reg_used_between_p
|
with PREV(insn),NEXT(insn) instead of calling reg_overlap_mentioned_p. */
|
with PREV(insn),NEXT(insn) instead of calling reg_overlap_mentioned_p. */
|
|
|
static bool
|
static bool
|
reg_used_on_edge (rtx reg, edge e)
|
reg_used_on_edge (rtx reg, edge e)
|
{
|
{
|
rtx insn;
|
rtx insn;
|
|
|
for (insn = e->insns.r; insn; insn = NEXT_INSN (insn))
|
for (insn = e->insns.r; insn; insn = NEXT_INSN (insn))
|
if (INSN_P (insn) && reg_overlap_mentioned_p (reg, PATTERN (insn)))
|
if (INSN_P (insn) && reg_overlap_mentioned_p (reg, PATTERN (insn)))
|
return true;
|
return true;
|
|
|
return false;
|
return false;
|
}
|
}
|
|
|
|
|
/* Return the insn that sets register REG or clobbers it in between
|
/* Return the insn that sets register REG or clobbers it in between
|
FROM_INSN and TO_INSN (exclusive of those two).
|
FROM_INSN and TO_INSN (exclusive of those two).
|
Just like reg_set_between but for hard registers and not pseudos. */
|
Just like reg_set_between but for hard registers and not pseudos. */
|
|
|
static rtx
|
static rtx
|
reg_set_between_after_reload_p (rtx reg, rtx from_insn, rtx to_insn)
|
reg_set_between_after_reload_p (rtx reg, rtx from_insn, rtx to_insn)
|
{
|
{
|
rtx insn;
|
rtx insn;
|
|
|
/* We are called after register allocation. */
|
/* We are called after register allocation. */
|
gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
|
gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
|
|
|
if (from_insn == to_insn)
|
if (from_insn == to_insn)
|
return NULL_RTX;
|
return NULL_RTX;
|
|
|
for (insn = NEXT_INSN (from_insn);
|
for (insn = NEXT_INSN (from_insn);
|
insn != to_insn;
|
insn != to_insn;
|
insn = NEXT_INSN (insn))
|
insn = NEXT_INSN (insn))
|
if (INSN_P (insn))
|
if (INSN_P (insn))
|
{
|
{
|
if (set_of (reg, insn) != NULL_RTX)
|
if (set_of (reg, insn) != NULL_RTX)
|
return insn;
|
return insn;
|
if ((CALL_P (insn)
|
if ((CALL_P (insn)
|
&& call_used_regs[REGNO (reg)])
|
&& call_used_regs[REGNO (reg)])
|
|| find_reg_fusage (insn, CLOBBER, reg))
|
|| find_reg_fusage (insn, CLOBBER, reg))
|
return insn;
|
return insn;
|
|
|
if (FIND_REG_INC_NOTE (insn, reg))
|
if (FIND_REG_INC_NOTE (insn, reg))
|
return insn;
|
return insn;
|
}
|
}
|
|
|
return NULL_RTX;
|
return NULL_RTX;
|
}
|
}
|
|
|
/* Return the insn that uses register REG in between FROM_INSN and TO_INSN
|
/* Return the insn that uses register REG in between FROM_INSN and TO_INSN
|
(exclusive of those two). Similar to reg_used_between but for hard
|
(exclusive of those two). Similar to reg_used_between but for hard
|
registers and not pseudos. */
|
registers and not pseudos. */
|
|
|
static rtx
|
static rtx
|
reg_used_between_after_reload_p (rtx reg, rtx from_insn, rtx to_insn)
|
reg_used_between_after_reload_p (rtx reg, rtx from_insn, rtx to_insn)
|
{
|
{
|
rtx insn;
|
rtx insn;
|
|
|
/* We are called after register allocation. */
|
/* We are called after register allocation. */
|
gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
|
gcc_assert (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER);
|
|
|
if (from_insn == to_insn)
|
if (from_insn == to_insn)
|
return NULL_RTX;
|
return NULL_RTX;
|
|
|
for (insn = NEXT_INSN (from_insn);
|
for (insn = NEXT_INSN (from_insn);
|
insn != to_insn;
|
insn != to_insn;
|
insn = NEXT_INSN (insn))
|
insn = NEXT_INSN (insn))
|
if (INSN_P (insn))
|
if (INSN_P (insn))
|
{
|
{
|
if (reg_overlap_mentioned_p (reg, PATTERN (insn))
|
if (reg_overlap_mentioned_p (reg, PATTERN (insn))
|
|| (CALL_P (insn)
|
|| (CALL_P (insn)
|
&& call_used_regs[REGNO (reg)])
|
&& call_used_regs[REGNO (reg)])
|
|| find_reg_fusage (insn, USE, reg)
|
|| find_reg_fusage (insn, USE, reg)
|
|| find_reg_fusage (insn, CLOBBER, reg))
|
|| find_reg_fusage (insn, CLOBBER, reg))
|
return insn;
|
return insn;
|
|
|
if (FIND_REG_INC_NOTE (insn, reg))
|
if (FIND_REG_INC_NOTE (insn, reg))
|
return insn;
|
return insn;
|
}
|
}
|
|
|
return NULL_RTX;
|
return NULL_RTX;
|
}
|
}
|
|
|
/* Return true if REG is used, set, or killed between the beginning of
|
/* Return true if REG is used, set, or killed between the beginning of
|
basic block BB and UP_TO_INSN. Caches the result in reg_avail_info. */
|
basic block BB and UP_TO_INSN. Caches the result in reg_avail_info. */
|
|
|
static bool
|
static bool
|
reg_set_or_used_since_bb_start (rtx reg, basic_block bb, rtx up_to_insn)
|
reg_set_or_used_since_bb_start (rtx reg, basic_block bb, rtx up_to_insn)
|
{
|
{
|
rtx insn, start = PREV_INSN (BB_HEAD (bb));
|
rtx insn, start = PREV_INSN (BB_HEAD (bb));
|
|
|
if (reg_avail_info[REGNO (reg)] != 0)
|
if (reg_avail_info[REGNO (reg)] != 0)
|
return true;
|
return true;
|
|
|
insn = reg_used_between_after_reload_p (reg, start, up_to_insn);
|
insn = reg_used_between_after_reload_p (reg, start, up_to_insn);
|
if (! insn)
|
if (! insn)
|
insn = reg_set_between_after_reload_p (reg, start, up_to_insn);
|
insn = reg_set_between_after_reload_p (reg, start, up_to_insn);
|
|
|
if (insn)
|
if (insn)
|
reg_avail_info[REGNO (reg)] = INSN_CUID (insn);
|
reg_avail_info[REGNO (reg)] = INSN_CUID (insn);
|
|
|
return insn != NULL_RTX;
|
return insn != NULL_RTX;
|
}
|
}
|
|
|
/* Return the loaded/stored register of a load/store instruction. */
|
/* Return the loaded/stored register of a load/store instruction. */
|
|
|
static rtx
|
static rtx
|
get_avail_load_store_reg (rtx insn)
|
get_avail_load_store_reg (rtx insn)
|
{
|
{
|
if (REG_P (SET_DEST (PATTERN (insn))))
|
if (REG_P (SET_DEST (PATTERN (insn))))
|
/* A load. */
|
/* A load. */
|
return SET_DEST(PATTERN(insn));
|
return SET_DEST(PATTERN(insn));
|
else
|
else
|
{
|
{
|
/* A store. */
|
/* A store. */
|
gcc_assert (REG_P (SET_SRC (PATTERN (insn))));
|
gcc_assert (REG_P (SET_SRC (PATTERN (insn))));
|
return SET_SRC (PATTERN (insn));
|
return SET_SRC (PATTERN (insn));
|
}
|
}
|
}
|
}
|
|
|
/* Return nonzero if the predecessors of BB are "well behaved". */
|
/* Return nonzero if the predecessors of BB are "well behaved". */
|
|
|
static bool
|
static bool
|
bb_has_well_behaved_predecessors (basic_block bb)
|
bb_has_well_behaved_predecessors (basic_block bb)
|
{
|
{
|
edge pred;
|
edge pred;
|
edge_iterator ei;
|
edge_iterator ei;
|
|
|
if (EDGE_COUNT (bb->preds) == 0)
|
if (EDGE_COUNT (bb->preds) == 0)
|
return false;
|
return false;
|
|
|
FOR_EACH_EDGE (pred, ei, bb->preds)
|
FOR_EACH_EDGE (pred, ei, bb->preds)
|
{
|
{
|
if ((pred->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (pred))
|
if ((pred->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (pred))
|
return false;
|
return false;
|
|
|
if (JUMP_TABLE_DATA_P (BB_END (pred->src)))
|
if (JUMP_TABLE_DATA_P (BB_END (pred->src)))
|
return false;
|
return false;
|
}
|
}
|
return true;
|
return true;
|
}
|
}
|
|
|
|
|
/* Search for the occurrences of expression in BB. */
|
/* Search for the occurrences of expression in BB. */
|
|
|
static struct occr*
|
static struct occr*
|
get_bb_avail_insn (basic_block bb, struct occr *occr)
|
get_bb_avail_insn (basic_block bb, struct occr *occr)
|
{
|
{
|
for (; occr != NULL; occr = occr->next)
|
for (; occr != NULL; occr = occr->next)
|
if (BLOCK_FOR_INSN (occr->insn) == bb)
|
if (BLOCK_FOR_INSN (occr->insn) == bb)
|
return occr;
|
return occr;
|
return NULL;
|
return NULL;
|
}
|
}
|
|
|
|
|
/* This handles the case where several stores feed a partially redundant
|
/* This handles the case where several stores feed a partially redundant
|
load. It checks if the redundancy elimination is possible and if it's
|
load. It checks if the redundancy elimination is possible and if it's
|
worth it.
|
worth it.
|
|
|
Redundancy elimination is possible if,
|
Redundancy elimination is possible if,
|
1) None of the operands of an insn have been modified since the start
|
1) None of the operands of an insn have been modified since the start
|
of the current basic block.
|
of the current basic block.
|
2) In any predecessor of the current basic block, the same expression
|
2) In any predecessor of the current basic block, the same expression
|
is generated.
|
is generated.
|
|
|
See the function body for the heuristics that determine if eliminating
|
See the function body for the heuristics that determine if eliminating
|
a redundancy is also worth doing, assuming it is possible. */
|
a redundancy is also worth doing, assuming it is possible. */
|
|
|
static void
|
static void
|
eliminate_partially_redundant_load (basic_block bb, rtx insn,
|
eliminate_partially_redundant_load (basic_block bb, rtx insn,
|
struct expr *expr)
|
struct expr *expr)
|
{
|
{
|
edge pred;
|
edge pred;
|
rtx avail_insn = NULL_RTX;
|
rtx avail_insn = NULL_RTX;
|
rtx avail_reg;
|
rtx avail_reg;
|
rtx dest, pat;
|
rtx dest, pat;
|
struct occr *a_occr;
|
struct occr *a_occr;
|
struct unoccr *occr, *avail_occrs = NULL;
|
struct unoccr *occr, *avail_occrs = NULL;
|
struct unoccr *unoccr, *unavail_occrs = NULL, *rollback_unoccr = NULL;
|
struct unoccr *unoccr, *unavail_occrs = NULL, *rollback_unoccr = NULL;
|
int npred_ok = 0;
|
int npred_ok = 0;
|
gcov_type ok_count = 0; /* Redundant load execution count. */
|
gcov_type ok_count = 0; /* Redundant load execution count. */
|
gcov_type critical_count = 0; /* Execution count of critical edges. */
|
gcov_type critical_count = 0; /* Execution count of critical edges. */
|
edge_iterator ei;
|
edge_iterator ei;
|
bool critical_edge_split = false;
|
bool critical_edge_split = false;
|
|
|
/* The execution count of the loads to be added to make the
|
/* The execution count of the loads to be added to make the
|
load fully redundant. */
|
load fully redundant. */
|
gcov_type not_ok_count = 0;
|
gcov_type not_ok_count = 0;
|
basic_block pred_bb;
|
basic_block pred_bb;
|
|
|
pat = PATTERN (insn);
|
pat = PATTERN (insn);
|
dest = SET_DEST (pat);
|
dest = SET_DEST (pat);
|
|
|
/* Check that the loaded register is not used, set, or killed from the
|
/* Check that the loaded register is not used, set, or killed from the
|
beginning of the block. */
|
beginning of the block. */
|
if (reg_set_or_used_since_bb_start (dest, bb, insn))
|
if (reg_set_or_used_since_bb_start (dest, bb, insn))
|
return;
|
return;
|
|
|
/* Check potential for replacing load with copy for predecessors. */
|
/* Check potential for replacing load with copy for predecessors. */
|
FOR_EACH_EDGE (pred, ei, bb->preds)
|
FOR_EACH_EDGE (pred, ei, bb->preds)
|
{
|
{
|
rtx next_pred_bb_end;
|
rtx next_pred_bb_end;
|
|
|
avail_insn = NULL_RTX;
|
avail_insn = NULL_RTX;
|
avail_reg = NULL_RTX;
|
avail_reg = NULL_RTX;
|
pred_bb = pred->src;
|
pred_bb = pred->src;
|
next_pred_bb_end = NEXT_INSN (BB_END (pred_bb));
|
next_pred_bb_end = NEXT_INSN (BB_END (pred_bb));
|
for (a_occr = get_bb_avail_insn (pred_bb, expr->avail_occr); a_occr;
|
for (a_occr = get_bb_avail_insn (pred_bb, expr->avail_occr); a_occr;
|
a_occr = get_bb_avail_insn (pred_bb, a_occr->next))
|
a_occr = get_bb_avail_insn (pred_bb, a_occr->next))
|
{
|
{
|
/* Check if the loaded register is not used. */
|
/* Check if the loaded register is not used. */
|
avail_insn = a_occr->insn;
|
avail_insn = a_occr->insn;
|
avail_reg = get_avail_load_store_reg (avail_insn);
|
avail_reg = get_avail_load_store_reg (avail_insn);
|
gcc_assert (avail_reg);
|
gcc_assert (avail_reg);
|
|
|
/* Make sure we can generate a move from register avail_reg to
|
/* Make sure we can generate a move from register avail_reg to
|
dest. */
|
dest. */
|
extract_insn (gen_move_insn (copy_rtx (dest),
|
extract_insn (gen_move_insn (copy_rtx (dest),
|
copy_rtx (avail_reg)));
|
copy_rtx (avail_reg)));
|
if (! constrain_operands (1)
|
if (! constrain_operands (1)
|
|| reg_killed_on_edge (avail_reg, pred)
|
|| reg_killed_on_edge (avail_reg, pred)
|
|| reg_used_on_edge (dest, pred))
|
|| reg_used_on_edge (dest, pred))
|
{
|
{
|
avail_insn = NULL;
|
avail_insn = NULL;
|
continue;
|
continue;
|
}
|
}
|
if (! reg_set_between_after_reload_p (avail_reg, avail_insn,
|
if (! reg_set_between_after_reload_p (avail_reg, avail_insn,
|
next_pred_bb_end))
|
next_pred_bb_end))
|
/* AVAIL_INSN remains non-null. */
|
/* AVAIL_INSN remains non-null. */
|
break;
|
break;
|
else
|
else
|
avail_insn = NULL;
|
avail_insn = NULL;
|
}
|
}
|
|
|
if (EDGE_CRITICAL_P (pred))
|
if (EDGE_CRITICAL_P (pred))
|
critical_count += pred->count;
|
critical_count += pred->count;
|
|
|
if (avail_insn != NULL_RTX)
|
if (avail_insn != NULL_RTX)
|
{
|
{
|
npred_ok++;
|
npred_ok++;
|
ok_count += pred->count;
|
ok_count += pred->count;
|
if (! set_noop_p (PATTERN (gen_move_insn (copy_rtx (dest),
|
if (! set_noop_p (PATTERN (gen_move_insn (copy_rtx (dest),
|
copy_rtx (avail_reg)))))
|
copy_rtx (avail_reg)))))
|
{
|
{
|
/* Check if there is going to be a split. */
|
/* Check if there is going to be a split. */
|
if (EDGE_CRITICAL_P (pred))
|
if (EDGE_CRITICAL_P (pred))
|
critical_edge_split = true;
|
critical_edge_split = true;
|
}
|
}
|
else /* Its a dead move no need to generate. */
|
else /* Its a dead move no need to generate. */
|
continue;
|
continue;
|
occr = (struct unoccr *) obstack_alloc (&unoccr_obstack,
|
occr = (struct unoccr *) obstack_alloc (&unoccr_obstack,
|
sizeof (struct unoccr));
|
sizeof (struct unoccr));
|
occr->insn = avail_insn;
|
occr->insn = avail_insn;
|
occr->pred = pred;
|
occr->pred = pred;
|
occr->next = avail_occrs;
|
occr->next = avail_occrs;
|
avail_occrs = occr;
|
avail_occrs = occr;
|
if (! rollback_unoccr)
|
if (! rollback_unoccr)
|
rollback_unoccr = occr;
|
rollback_unoccr = occr;
|
}
|
}
|
else
|
else
|
{
|
{
|
/* Adding a load on a critical edge will cause a split. */
|
/* Adding a load on a critical edge will cause a split. */
|
if (EDGE_CRITICAL_P (pred))
|
if (EDGE_CRITICAL_P (pred))
|
critical_edge_split = true;
|
critical_edge_split = true;
|
not_ok_count += pred->count;
|
not_ok_count += pred->count;
|
unoccr = (struct unoccr *) obstack_alloc (&unoccr_obstack,
|
unoccr = (struct unoccr *) obstack_alloc (&unoccr_obstack,
|
sizeof (struct unoccr));
|
sizeof (struct unoccr));
|
unoccr->insn = NULL_RTX;
|
unoccr->insn = NULL_RTX;
|
unoccr->pred = pred;
|
unoccr->pred = pred;
|
unoccr->next = unavail_occrs;
|
unoccr->next = unavail_occrs;
|
unavail_occrs = unoccr;
|
unavail_occrs = unoccr;
|
if (! rollback_unoccr)
|
if (! rollback_unoccr)
|
rollback_unoccr = unoccr;
|
rollback_unoccr = unoccr;
|
}
|
}
|
}
|
}
|
|
|
if (/* No load can be replaced by copy. */
|
if (/* No load can be replaced by copy. */
|
npred_ok == 0
|
npred_ok == 0
|
/* Prevent exploding the code. */
|
/* Prevent exploding the code. */
|
|| (optimize_size && npred_ok > 1)
|
|| (optimize_size && npred_ok > 1)
|
/* If we don't have profile information we cannot tell if splitting
|
/* If we don't have profile information we cannot tell if splitting
|
a critical edge is profitable or not so don't do it. */
|
a critical edge is profitable or not so don't do it. */
|
|| ((! profile_info || ! flag_branch_probabilities
|
|| ((! profile_info || ! flag_branch_probabilities
|
|| targetm.cannot_modify_jumps_p ())
|
|| targetm.cannot_modify_jumps_p ())
|
&& critical_edge_split))
|
&& critical_edge_split))
|
goto cleanup;
|
goto cleanup;
|
|
|
/* Check if it's worth applying the partial redundancy elimination. */
|
/* Check if it's worth applying the partial redundancy elimination. */
|
if (ok_count < GCSE_AFTER_RELOAD_PARTIAL_FRACTION * not_ok_count)
|
if (ok_count < GCSE_AFTER_RELOAD_PARTIAL_FRACTION * not_ok_count)
|
goto cleanup;
|
goto cleanup;
|
if (ok_count < GCSE_AFTER_RELOAD_CRITICAL_FRACTION * critical_count)
|
if (ok_count < GCSE_AFTER_RELOAD_CRITICAL_FRACTION * critical_count)
|
goto cleanup;
|
goto cleanup;
|
|
|
/* Generate moves to the loaded register from where
|
/* Generate moves to the loaded register from where
|
the memory is available. */
|
the memory is available. */
|
for (occr = avail_occrs; occr; occr = occr->next)
|
for (occr = avail_occrs; occr; occr = occr->next)
|
{
|
{
|
avail_insn = occr->insn;
|
avail_insn = occr->insn;
|
pred = occr->pred;
|
pred = occr->pred;
|
/* Set avail_reg to be the register having the value of the
|
/* Set avail_reg to be the register having the value of the
|
memory. */
|
memory. */
|
avail_reg = get_avail_load_store_reg (avail_insn);
|
avail_reg = get_avail_load_store_reg (avail_insn);
|
gcc_assert (avail_reg);
|
gcc_assert (avail_reg);
|
|
|
insert_insn_on_edge (gen_move_insn (copy_rtx (dest),
|
insert_insn_on_edge (gen_move_insn (copy_rtx (dest),
|
copy_rtx (avail_reg)),
|
copy_rtx (avail_reg)),
|
pred);
|
pred);
|
stats.moves_inserted++;
|
stats.moves_inserted++;
|
|
|
if (dump_file)
|
if (dump_file)
|
fprintf (dump_file,
|
fprintf (dump_file,
|
"generating move from %d to %d on edge from %d to %d\n",
|
"generating move from %d to %d on edge from %d to %d\n",
|
REGNO (avail_reg),
|
REGNO (avail_reg),
|
REGNO (dest),
|
REGNO (dest),
|
pred->src->index,
|
pred->src->index,
|
pred->dest->index);
|
pred->dest->index);
|
}
|
}
|
|
|
/* Regenerate loads where the memory is unavailable. */
|
/* Regenerate loads where the memory is unavailable. */
|
for (unoccr = unavail_occrs; unoccr; unoccr = unoccr->next)
|
for (unoccr = unavail_occrs; unoccr; unoccr = unoccr->next)
|
{
|
{
|
pred = unoccr->pred;
|
pred = unoccr->pred;
|
insert_insn_on_edge (copy_insn (PATTERN (insn)), pred);
|
insert_insn_on_edge (copy_insn (PATTERN (insn)), pred);
|
stats.copies_inserted++;
|
stats.copies_inserted++;
|
|
|
if (dump_file)
|
if (dump_file)
|
{
|
{
|
fprintf (dump_file,
|
fprintf (dump_file,
|
"generating on edge from %d to %d a copy of load: ",
|
"generating on edge from %d to %d a copy of load: ",
|
pred->src->index,
|
pred->src->index,
|
pred->dest->index);
|
pred->dest->index);
|
print_rtl (dump_file, PATTERN (insn));
|
print_rtl (dump_file, PATTERN (insn));
|
fprintf (dump_file, "\n");
|
fprintf (dump_file, "\n");
|
}
|
}
|
}
|
}
|
|
|
/* Delete the insn if it is not available in this block and mark it
|
/* Delete the insn if it is not available in this block and mark it
|
for deletion if it is available. If insn is available it may help
|
for deletion if it is available. If insn is available it may help
|
discover additional redundancies, so mark it for later deletion. */
|
discover additional redundancies, so mark it for later deletion. */
|
for (a_occr = get_bb_avail_insn (bb, expr->avail_occr);
|
for (a_occr = get_bb_avail_insn (bb, expr->avail_occr);
|
a_occr && (a_occr->insn != insn);
|
a_occr && (a_occr->insn != insn);
|
a_occr = get_bb_avail_insn (bb, a_occr->next));
|
a_occr = get_bb_avail_insn (bb, a_occr->next));
|
|
|
if (!a_occr)
|
if (!a_occr)
|
{
|
{
|
stats.insns_deleted++;
|
stats.insns_deleted++;
|
|
|
if (dump_file)
|
if (dump_file)
|
{
|
{
|
fprintf (dump_file, "deleting insn:\n");
|
fprintf (dump_file, "deleting insn:\n");
|
print_rtl_single (dump_file, insn);
|
print_rtl_single (dump_file, insn);
|
fprintf (dump_file, "\n");
|
fprintf (dump_file, "\n");
|
}
|
}
|
delete_insn (insn);
|
delete_insn (insn);
|
}
|
}
|
else
|
else
|
a_occr->deleted_p = 1;
|
a_occr->deleted_p = 1;
|
|
|
cleanup:
|
cleanup:
|
if (rollback_unoccr)
|
if (rollback_unoccr)
|
obstack_free (&unoccr_obstack, rollback_unoccr);
|
obstack_free (&unoccr_obstack, rollback_unoccr);
|
}
|
}
|
|
|
/* Performing the redundancy elimination as described before. */
|
/* Performing the redundancy elimination as described before. */
|
|
|
static void
|
static void
|
eliminate_partially_redundant_loads (void)
|
eliminate_partially_redundant_loads (void)
|
{
|
{
|
rtx insn;
|
rtx insn;
|
basic_block bb;
|
basic_block bb;
|
|
|
/* Note we start at block 1. */
|
/* Note we start at block 1. */
|
|
|
if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
|
if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
|
return;
|
return;
|
|
|
FOR_BB_BETWEEN (bb,
|
FOR_BB_BETWEEN (bb,
|
ENTRY_BLOCK_PTR->next_bb->next_bb,
|
ENTRY_BLOCK_PTR->next_bb->next_bb,
|
EXIT_BLOCK_PTR,
|
EXIT_BLOCK_PTR,
|
next_bb)
|
next_bb)
|
{
|
{
|
/* Don't try anything on basic blocks with strange predecessors. */
|
/* Don't try anything on basic blocks with strange predecessors. */
|
if (! bb_has_well_behaved_predecessors (bb))
|
if (! bb_has_well_behaved_predecessors (bb))
|
continue;
|
continue;
|
|
|
/* Do not try anything on cold basic blocks. */
|
/* Do not try anything on cold basic blocks. */
|
if (probably_cold_bb_p (bb))
|
if (probably_cold_bb_p (bb))
|
continue;
|
continue;
|
|
|
/* Reset the table of things changed since the start of the current
|
/* Reset the table of things changed since the start of the current
|
basic block. */
|
basic block. */
|
reset_opr_set_tables ();
|
reset_opr_set_tables ();
|
|
|
/* Look at all insns in the current basic block and see if there are
|
/* Look at all insns in the current basic block and see if there are
|
any loads in it that we can record. */
|
any loads in it that we can record. */
|
FOR_BB_INSNS (bb, insn)
|
FOR_BB_INSNS (bb, insn)
|
{
|
{
|
/* Is it a load - of the form (set (reg) (mem))? */
|
/* Is it a load - of the form (set (reg) (mem))? */
|
if (NONJUMP_INSN_P (insn)
|
if (NONJUMP_INSN_P (insn)
|
&& GET_CODE (PATTERN (insn)) == SET
|
&& GET_CODE (PATTERN (insn)) == SET
|
&& REG_P (SET_DEST (PATTERN (insn)))
|
&& REG_P (SET_DEST (PATTERN (insn)))
|
&& MEM_P (SET_SRC (PATTERN (insn))))
|
&& MEM_P (SET_SRC (PATTERN (insn))))
|
{
|
{
|
rtx pat = PATTERN (insn);
|
rtx pat = PATTERN (insn);
|
rtx src = SET_SRC (pat);
|
rtx src = SET_SRC (pat);
|
struct expr *expr;
|
struct expr *expr;
|
|
|
if (!MEM_VOLATILE_P (src)
|
if (!MEM_VOLATILE_P (src)
|
&& GET_MODE (src) != BLKmode
|
&& GET_MODE (src) != BLKmode
|
&& general_operand (src, GET_MODE (src))
|
&& general_operand (src, GET_MODE (src))
|
/* Are the operands unchanged since the start of the
|
/* Are the operands unchanged since the start of the
|
block? */
|
block? */
|
&& oprs_unchanged_p (src, insn, false)
|
&& oprs_unchanged_p (src, insn, false)
|
&& !(flag_non_call_exceptions && may_trap_p (src))
|
&& !(flag_non_call_exceptions && may_trap_p (src))
|
&& !side_effects_p (src)
|
&& !side_effects_p (src)
|
/* Is the expression recorded? */
|
/* Is the expression recorded? */
|
&& (expr = lookup_expr_in_table (src)) != NULL)
|
&& (expr = lookup_expr_in_table (src)) != NULL)
|
{
|
{
|
/* We now have a load (insn) and an available memory at
|
/* We now have a load (insn) and an available memory at
|
its BB start (expr). Try to remove the loads if it is
|
its BB start (expr). Try to remove the loads if it is
|
redundant. */
|
redundant. */
|
eliminate_partially_redundant_load (bb, insn, expr);
|
eliminate_partially_redundant_load (bb, insn, expr);
|
}
|
}
|
}
|
}
|
|
|
/* Keep track of everything modified by this insn, so that we
|
/* Keep track of everything modified by this insn, so that we
|
know what has been modified since the start of the current
|
know what has been modified since the start of the current
|
basic block. */
|
basic block. */
|
if (INSN_P (insn))
|
if (INSN_P (insn))
|
record_opr_changes (insn);
|
record_opr_changes (insn);
|
}
|
}
|
}
|
}
|
|
|
commit_edge_insertions ();
|
commit_edge_insertions ();
|
}
|
}
|
|
|
/* Go over the expression hash table and delete insns that were
|
/* Go over the expression hash table and delete insns that were
|
marked for later deletion. */
|
marked for later deletion. */
|
|
|
/* This helper is called via htab_traverse. */
|
/* This helper is called via htab_traverse. */
|
static int
|
static int
|
delete_redundant_insns_1 (void **slot, void *data ATTRIBUTE_UNUSED)
|
delete_redundant_insns_1 (void **slot, void *data ATTRIBUTE_UNUSED)
|
{
|
{
|
struct expr *expr = (struct expr *) *slot;
|
struct expr *expr = (struct expr *) *slot;
|
struct occr *occr;
|
struct occr *occr;
|
|
|
for (occr = expr->avail_occr; occr != NULL; occr = occr->next)
|
for (occr = expr->avail_occr; occr != NULL; occr = occr->next)
|
{
|
{
|
if (occr->deleted_p)
|
if (occr->deleted_p)
|
{
|
{
|
delete_insn (occr->insn);
|
delete_insn (occr->insn);
|
stats.insns_deleted++;
|
stats.insns_deleted++;
|
|
|
if (dump_file)
|
if (dump_file)
|
{
|
{
|
fprintf (dump_file, "deleting insn:\n");
|
fprintf (dump_file, "deleting insn:\n");
|
print_rtl_single (dump_file, occr->insn);
|
print_rtl_single (dump_file, occr->insn);
|
fprintf (dump_file, "\n");
|
fprintf (dump_file, "\n");
|
}
|
}
|
}
|
}
|
}
|
}
|
|
|
return 1;
|
return 1;
|
}
|
}
|
|
|
static void
|
static void
|
delete_redundant_insns (void)
|
delete_redundant_insns (void)
|
{
|
{
|
htab_traverse (expr_table, delete_redundant_insns_1, NULL);
|
htab_traverse (expr_table, delete_redundant_insns_1, NULL);
|
if (dump_file)
|
if (dump_file)
|
fprintf (dump_file, "\n");
|
fprintf (dump_file, "\n");
|
}
|
}
|
|
|
/* Main entry point of the GCSE after reload - clean some redundant loads
|
/* Main entry point of the GCSE after reload - clean some redundant loads
|
due to spilling. */
|
due to spilling. */
|
|
|
static void
|
static void
|
gcse_after_reload_main (rtx f ATTRIBUTE_UNUSED)
|
gcse_after_reload_main (rtx f ATTRIBUTE_UNUSED)
|
{
|
{
|
|
|
memset (&stats, 0, sizeof (stats));
|
memset (&stats, 0, sizeof (stats));
|
|
|
/* Allocate ememory for this pass.
|
/* Allocate ememory for this pass.
|
Also computes and initializes the insns' CUIDs. */
|
Also computes and initializes the insns' CUIDs. */
|
alloc_mem ();
|
alloc_mem ();
|
|
|
/* We need alias analysis. */
|
/* We need alias analysis. */
|
init_alias_analysis ();
|
init_alias_analysis ();
|
|
|
compute_hash_table ();
|
compute_hash_table ();
|
|
|
if (dump_file)
|
if (dump_file)
|
dump_hash_table (dump_file);
|
dump_hash_table (dump_file);
|
|
|
if (htab_elements (expr_table) > 0)
|
if (htab_elements (expr_table) > 0)
|
{
|
{
|
eliminate_partially_redundant_loads ();
|
eliminate_partially_redundant_loads ();
|
delete_redundant_insns ();
|
delete_redundant_insns ();
|
|
|
if (dump_file)
|
if (dump_file)
|
{
|
{
|
fprintf (dump_file, "GCSE AFTER RELOAD stats:\n");
|
fprintf (dump_file, "GCSE AFTER RELOAD stats:\n");
|
fprintf (dump_file, "copies inserted: %d\n", stats.copies_inserted);
|
fprintf (dump_file, "copies inserted: %d\n", stats.copies_inserted);
|
fprintf (dump_file, "moves inserted: %d\n", stats.moves_inserted);
|
fprintf (dump_file, "moves inserted: %d\n", stats.moves_inserted);
|
fprintf (dump_file, "insns deleted: %d\n", stats.insns_deleted);
|
fprintf (dump_file, "insns deleted: %d\n", stats.insns_deleted);
|
fprintf (dump_file, "\n\n");
|
fprintf (dump_file, "\n\n");
|
}
|
}
|
}
|
}
|
|
|
/* We are finished with alias. */
|
/* We are finished with alias. */
|
end_alias_analysis ();
|
end_alias_analysis ();
|
|
|
free_mem ();
|
free_mem ();
|
}
|
}
|
|
|
|
|
static bool
|
static bool
|
gate_handle_gcse2 (void)
|
gate_handle_gcse2 (void)
|
{
|
{
|
return (optimize > 0 && flag_gcse_after_reload);
|
return (optimize > 0 && flag_gcse_after_reload);
|
}
|
}
|
|
|
|
|
static unsigned int
|
static unsigned int
|
rest_of_handle_gcse2 (void)
|
rest_of_handle_gcse2 (void)
|
{
|
{
|
gcse_after_reload_main (get_insns ());
|
gcse_after_reload_main (get_insns ());
|
rebuild_jump_labels (get_insns ());
|
rebuild_jump_labels (get_insns ());
|
delete_trivially_dead_insns (get_insns (), max_reg_num ());
|
delete_trivially_dead_insns (get_insns (), max_reg_num ());
|
return 0;
|
return 0;
|
}
|
}
|
|
|
struct tree_opt_pass pass_gcse2 =
|
struct tree_opt_pass pass_gcse2 =
|
{
|
{
|
"gcse2", /* name */
|
"gcse2", /* name */
|
gate_handle_gcse2, /* gate */
|
gate_handle_gcse2, /* gate */
|
rest_of_handle_gcse2, /* execute */
|
rest_of_handle_gcse2, /* execute */
|
NULL, /* sub */
|
NULL, /* sub */
|
NULL, /* next */
|
NULL, /* next */
|
0, /* static_pass_number */
|
0, /* static_pass_number */
|
TV_GCSE_AFTER_RELOAD, /* tv_id */
|
TV_GCSE_AFTER_RELOAD, /* tv_id */
|
0, /* properties_required */
|
0, /* 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_dump_func |
|
TODO_verify_flow | TODO_ggc_collect, /* todo_flags_finish */
|
TODO_verify_flow | TODO_ggc_collect, /* todo_flags_finish */
|
'J' /* letter */
|
'J' /* letter */
|
};
|
};
|
|
|
|
|