| 1 |
38 |
julius |
/* Common subexpression elimination for GNU compiler.
|
| 2 |
|
|
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
| 3 |
|
|
1999, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
|
| 4 |
|
|
|
| 5 |
|
|
This file is part of GCC.
|
| 6 |
|
|
|
| 7 |
|
|
GCC is free software; you can redistribute it and/or modify it under
|
| 8 |
|
|
the terms of the GNU General Public License as published by the Free
|
| 9 |
|
|
Software Foundation; either version 3, or (at your option) any later
|
| 10 |
|
|
version.
|
| 11 |
|
|
|
| 12 |
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
| 13 |
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
| 14 |
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
| 15 |
|
|
for more details.
|
| 16 |
|
|
|
| 17 |
|
|
You should have received a copy of the GNU General Public License
|
| 18 |
|
|
along with GCC; see the file COPYING3. If not see
|
| 19 |
|
|
<http://www.gnu.org/licenses/>. */
|
| 20 |
|
|
|
| 21 |
|
|
/* Describe a value. */
|
| 22 |
|
|
typedef struct cselib_val_struct GTY(())
|
| 23 |
|
|
{
|
| 24 |
|
|
/* The hash value. */
|
| 25 |
|
|
unsigned int value;
|
| 26 |
|
|
union cselib_val_u
|
| 27 |
|
|
{
|
| 28 |
|
|
/* A VALUE rtx that points back to this structure. */
|
| 29 |
|
|
rtx GTY ((tag ("1"))) val_rtx;
|
| 30 |
|
|
/* Used to keep a list of free cselib_val structures. */
|
| 31 |
|
|
struct cselib_val_struct * GTY ((skip)) next_free;
|
| 32 |
|
|
} GTY ((desc ("1"))) u;
|
| 33 |
|
|
|
| 34 |
|
|
/* All rtl expressions that hold this value at the current time during a
|
| 35 |
|
|
scan. */
|
| 36 |
|
|
struct elt_loc_list *locs;
|
| 37 |
|
|
/* If this value is used as an address, points to a list of values that
|
| 38 |
|
|
use it as an address in a MEM. */
|
| 39 |
|
|
struct elt_list *addr_list;
|
| 40 |
|
|
|
| 41 |
|
|
struct cselib_val_struct *next_containing_mem;
|
| 42 |
|
|
} cselib_val;
|
| 43 |
|
|
|
| 44 |
|
|
/* A list of rtl expressions that hold the same value. */
|
| 45 |
|
|
struct elt_loc_list GTY(())
|
| 46 |
|
|
{
|
| 47 |
|
|
/* Next element in the list. */
|
| 48 |
|
|
struct elt_loc_list *next;
|
| 49 |
|
|
/* An rtl expression that holds the value. */
|
| 50 |
|
|
rtx loc;
|
| 51 |
|
|
/* The insn that made the equivalence. */
|
| 52 |
|
|
rtx setting_insn;
|
| 53 |
|
|
/* True when setting insn is inside libcall. */
|
| 54 |
|
|
bool in_libcall;
|
| 55 |
|
|
};
|
| 56 |
|
|
|
| 57 |
|
|
/* A list of cselib_val structures. */
|
| 58 |
|
|
struct elt_list GTY(())
|
| 59 |
|
|
{
|
| 60 |
|
|
struct elt_list *next;
|
| 61 |
|
|
cselib_val *elt;
|
| 62 |
|
|
};
|
| 63 |
|
|
|
| 64 |
|
|
extern cselib_val *cselib_lookup (rtx, enum machine_mode, int);
|
| 65 |
|
|
extern void cselib_init (bool record_memory);
|
| 66 |
|
|
extern void cselib_clear_table (void);
|
| 67 |
|
|
extern void cselib_finish (void);
|
| 68 |
|
|
extern void cselib_process_insn (rtx);
|
| 69 |
|
|
extern enum machine_mode cselib_reg_set_mode (rtx);
|
| 70 |
|
|
extern int rtx_equal_for_cselib_p (rtx, rtx);
|
| 71 |
|
|
extern int references_value_p (rtx, int);
|
| 72 |
|
|
extern rtx cselib_subst_to_values (rtx);
|
| 73 |
|
|
extern void cselib_invalidate_rtx (rtx);
|