1 /* Common subexpression elimination library for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
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 2, or (at your option) any later
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "coretypes.h"
30 #include "hard-reg-set.h"
33 #include "insn-config.h"
43 static int entry_and_rtx_equal_p
PARAMS ((const void *, const void *));
44 static hashval_t get_value_hash
PARAMS ((const void *));
45 static struct elt_list
*new_elt_list
PARAMS ((struct elt_list
*,
47 static struct elt_loc_list
*new_elt_loc_list
PARAMS ((struct elt_loc_list
*,
49 static void unchain_one_value
PARAMS ((cselib_val
*));
50 static void unchain_one_elt_list
PARAMS ((struct elt_list
**));
51 static void unchain_one_elt_loc_list
PARAMS ((struct elt_loc_list
**));
52 static void clear_table
PARAMS ((void));
53 static int discard_useless_locs
PARAMS ((void **, void *));
54 static int discard_useless_values
PARAMS ((void **, void *));
55 static void remove_useless_values
PARAMS ((void));
56 static rtx wrap_constant
PARAMS ((enum machine_mode
, rtx
));
57 static unsigned int hash_rtx
PARAMS ((rtx
, enum machine_mode
, int));
58 static cselib_val
*new_cselib_val
PARAMS ((unsigned int,
60 static void add_mem_for_addr
PARAMS ((cselib_val
*, cselib_val
*,
62 static cselib_val
*cselib_lookup_mem
PARAMS ((rtx
, int));
63 static void cselib_invalidate_regno
PARAMS ((unsigned int,
65 static int cselib_mem_conflict_p
PARAMS ((rtx
, rtx
));
66 static void cselib_invalidate_mem
PARAMS ((rtx
));
67 static void cselib_invalidate_rtx
PARAMS ((rtx
, rtx
, void *));
68 static void cselib_record_set
PARAMS ((rtx
, cselib_val
*,
70 static void cselib_record_sets
PARAMS ((rtx
));
72 /* There are three ways in which cselib can look up an rtx:
73 - for a REG, the reg_values table (which is indexed by regno) is used
74 - for a MEM, we recursively look up its address and then follow the
75 addr_list of that value
76 - for everything else, we compute a hash value and go through the hash
77 table. Since different rtx's can still have the same hash value,
78 this involves walking the table entries for a given value and comparing
79 the locations of the entries with the rtx we are looking up. */
81 /* A table that enables us to look up elts by their value. */
82 static GTY((param_is (cselib_val
))) htab_t hash_table
;
84 /* This is a global so we don't have to pass this through every function.
85 It is used in new_elt_loc_list to set SETTING_INSN. */
86 static rtx cselib_current_insn
;
87 static bool cselib_current_insn_in_libcall
;
89 /* Every new unknown value gets a unique number. */
90 static unsigned int next_unknown_value
;
92 /* The number of registers we had when the varrays were last resized. */
93 static unsigned int cselib_nregs
;
95 /* Count values without known locations. Whenever this grows too big, we
96 remove these useless values from the table. */
97 static int n_useless_values
;
99 /* Number of useless values before we remove them from the hash table. */
100 #define MAX_USELESS_VALUES 32
102 /* This table maps from register number to values. It does not contain
103 pointers to cselib_val structures, but rather elt_lists. The purpose is
104 to be able to refer to the same register in different modes. */
105 static GTY(()) varray_type reg_values
;
106 static GTY((deletable (""))) varray_type reg_values_old
;
107 #define REG_VALUES(I) VARRAY_ELT_LIST (reg_values, (I))
109 /* The largest number of hard regs used by any entry added to the
110 REG_VALUES table. Cleared on each clear_table() invocation. */
111 static unsigned int max_value_regs
;
113 /* Here the set of indices I with REG_VALUES(I) != 0 is saved. This is used
114 in clear_table() for fast emptying. */
115 static GTY(()) varray_type used_regs
;
116 static GTY((deletable (""))) varray_type used_regs_old
;
118 /* We pass this to cselib_invalidate_mem to invalidate all of
119 memory for a non-const call instruction. */
120 static GTY(()) rtx callmem
;
122 /* Caches for unused structures. */
123 static GTY((deletable (""))) cselib_val
*empty_vals
;
124 static GTY((deletable (""))) struct elt_list
*empty_elt_lists
;
125 static GTY((deletable (""))) struct elt_loc_list
*empty_elt_loc_lists
;
127 /* Set by discard_useless_locs if it deleted the last location of any
129 static int values_became_useless
;
131 /* Used as stop element of the containing_mem list so we can check
132 presence in the list by checking the next pointer. */
133 static cselib_val dummy_val
;
135 /* Used to list all values that contain memory reference.
136 May or may not contain the useless values - the list is compacted
137 each time memory is invalidated. */
138 static cselib_val
*first_containing_mem
= &dummy_val
;
141 /* Allocate a struct elt_list and fill in its two elements with the
144 static struct elt_list
*
145 new_elt_list (next
, elt
)
146 struct elt_list
*next
;
149 struct elt_list
*el
= empty_elt_lists
;
152 empty_elt_lists
= el
->next
;
154 el
= (struct elt_list
*) ggc_alloc (sizeof (struct elt_list
));
160 /* Allocate a struct elt_loc_list and fill in its two elements with the
163 static struct elt_loc_list
*
164 new_elt_loc_list (next
, loc
)
165 struct elt_loc_list
*next
;
168 struct elt_loc_list
*el
= empty_elt_loc_lists
;
171 empty_elt_loc_lists
= el
->next
;
173 el
= (struct elt_loc_list
*) ggc_alloc (sizeof (struct elt_loc_list
));
176 el
->setting_insn
= cselib_current_insn
;
177 el
->in_libcall
= cselib_current_insn_in_libcall
;
181 /* The elt_list at *PL is no longer needed. Unchain it and free its
185 unchain_one_elt_list (pl
)
186 struct elt_list
**pl
;
188 struct elt_list
*l
= *pl
;
191 l
->next
= empty_elt_lists
;
195 /* Likewise for elt_loc_lists. */
198 unchain_one_elt_loc_list (pl
)
199 struct elt_loc_list
**pl
;
201 struct elt_loc_list
*l
= *pl
;
204 l
->next
= empty_elt_loc_lists
;
205 empty_elt_loc_lists
= l
;
208 /* Likewise for cselib_vals. This also frees the addr_list associated with
212 unchain_one_value (v
)
216 unchain_one_elt_list (&v
->addr_list
);
218 v
->u
.next_free
= empty_vals
;
222 /* Remove all entries from the hash table. Also used during
223 initialization. If CLEAR_ALL isn't set, then only clear the entries
224 which are known to have been used. */
231 for (i
= 0; i
< VARRAY_ACTIVE_SIZE (used_regs
); i
++)
232 REG_VALUES (VARRAY_UINT (used_regs
, i
)) = 0;
236 VARRAY_POP_ALL (used_regs
);
238 htab_empty (hash_table
);
240 n_useless_values
= 0;
242 next_unknown_value
= 0;
244 first_containing_mem
= &dummy_val
;
247 /* The equality test for our hash table. The first argument ENTRY is a table
248 element (i.e. a cselib_val), while the second arg X is an rtx. We know
249 that all callers of htab_find_slot_with_hash will wrap CONST_INTs into a
250 CONST of an appropriate mode. */
253 entry_and_rtx_equal_p (entry
, x_arg
)
254 const void *entry
, *x_arg
;
256 struct elt_loc_list
*l
;
257 const cselib_val
*v
= (const cselib_val
*) entry
;
259 enum machine_mode mode
= GET_MODE (x
);
261 if (GET_CODE (x
) == CONST_INT
262 || (mode
== VOIDmode
&& GET_CODE (x
) == CONST_DOUBLE
))
264 if (mode
!= GET_MODE (v
->u
.val_rtx
))
267 /* Unwrap X if necessary. */
268 if (GET_CODE (x
) == CONST
269 && (GET_CODE (XEXP (x
, 0)) == CONST_INT
270 || GET_CODE (XEXP (x
, 0)) == CONST_DOUBLE
))
273 /* We don't guarantee that distinct rtx's have different hash values,
274 so we need to do a comparison. */
275 for (l
= v
->locs
; l
; l
= l
->next
)
276 if (rtx_equal_for_cselib_p (l
->loc
, x
))
282 /* The hash function for our hash table. The value is always computed with
283 hash_rtx when adding an element; this function just extracts the hash
284 value from a cselib_val structure. */
287 get_value_hash (entry
)
290 const cselib_val
*v
= (const cselib_val
*) entry
;
294 /* Return true if X contains a VALUE rtx. If ONLY_USELESS is set, we
295 only return true for values which point to a cselib_val whose value
296 element has been set to zero, which implies the cselib_val will be
300 references_value_p (x
, only_useless
)
304 enum rtx_code code
= GET_CODE (x
);
305 const char *fmt
= GET_RTX_FORMAT (code
);
308 if (GET_CODE (x
) == VALUE
309 && (! only_useless
|| CSELIB_VAL_PTR (x
)->locs
== 0))
312 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
314 if (fmt
[i
] == 'e' && references_value_p (XEXP (x
, i
), only_useless
))
316 else if (fmt
[i
] == 'E')
317 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
318 if (references_value_p (XVECEXP (x
, i
, j
), only_useless
))
325 /* For all locations found in X, delete locations that reference useless
326 values (i.e. values without any location). Called through
330 discard_useless_locs (x
, info
)
332 void *info ATTRIBUTE_UNUSED
;
334 cselib_val
*v
= (cselib_val
*)*x
;
335 struct elt_loc_list
**p
= &v
->locs
;
336 int had_locs
= v
->locs
!= 0;
340 if (references_value_p ((*p
)->loc
, 1))
341 unchain_one_elt_loc_list (p
);
346 if (had_locs
&& v
->locs
== 0)
349 values_became_useless
= 1;
354 /* If X is a value with no locations, remove it from the hashtable. */
357 discard_useless_values (x
, info
)
359 void *info ATTRIBUTE_UNUSED
;
361 cselib_val
*v
= (cselib_val
*)*x
;
365 htab_clear_slot (hash_table
, x
);
366 unchain_one_value (v
);
373 /* Clean out useless values (i.e. those which no longer have locations
374 associated with them) from the hash table. */
377 remove_useless_values ()
380 /* First pass: eliminate locations that reference the value. That in
381 turn can make more values useless. */
384 values_became_useless
= 0;
385 htab_traverse (hash_table
, discard_useless_locs
, 0);
387 while (values_became_useless
);
389 /* Second pass: actually remove the values. */
390 htab_traverse (hash_table
, discard_useless_values
, 0);
392 p
= &first_containing_mem
;
393 for (v
= *p
; v
!= &dummy_val
; v
= v
->next_containing_mem
)
397 p
= &(*p
)->next_containing_mem
;
401 if (n_useless_values
!= 0)
405 /* Return nonzero if we can prove that X and Y contain the same value, taking
406 our gathered information into account. */
409 rtx_equal_for_cselib_p (x
, y
)
416 if (GET_CODE (x
) == REG
|| GET_CODE (x
) == MEM
)
418 cselib_val
*e
= cselib_lookup (x
, GET_MODE (x
), 0);
424 if (GET_CODE (y
) == REG
|| GET_CODE (y
) == MEM
)
426 cselib_val
*e
= cselib_lookup (y
, GET_MODE (y
), 0);
435 if (GET_CODE (x
) == VALUE
&& GET_CODE (y
) == VALUE
)
436 return CSELIB_VAL_PTR (x
) == CSELIB_VAL_PTR (y
);
438 if (GET_CODE (x
) == VALUE
)
440 cselib_val
*e
= CSELIB_VAL_PTR (x
);
441 struct elt_loc_list
*l
;
443 for (l
= e
->locs
; l
; l
= l
->next
)
447 /* Avoid infinite recursion. */
448 if (GET_CODE (t
) == REG
|| GET_CODE (t
) == MEM
)
450 else if (rtx_equal_for_cselib_p (t
, y
))
457 if (GET_CODE (y
) == VALUE
)
459 cselib_val
*e
= CSELIB_VAL_PTR (y
);
460 struct elt_loc_list
*l
;
462 for (l
= e
->locs
; l
; l
= l
->next
)
466 if (GET_CODE (t
) == REG
|| GET_CODE (t
) == MEM
)
468 else if (rtx_equal_for_cselib_p (x
, t
))
475 if (GET_CODE (x
) != GET_CODE (y
) || GET_MODE (x
) != GET_MODE (y
))
478 /* This won't be handled correctly by the code below. */
479 if (GET_CODE (x
) == LABEL_REF
)
480 return XEXP (x
, 0) == XEXP (y
, 0);
483 fmt
= GET_RTX_FORMAT (code
);
485 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
492 if (XWINT (x
, i
) != XWINT (y
, i
))
498 if (XINT (x
, i
) != XINT (y
, i
))
504 /* Two vectors must have the same length. */
505 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
508 /* And the corresponding elements must match. */
509 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
510 if (! rtx_equal_for_cselib_p (XVECEXP (x
, i
, j
),
516 if (! rtx_equal_for_cselib_p (XEXP (x
, i
), XEXP (y
, i
)))
522 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
527 /* These are just backpointers, so they don't matter. */
534 /* It is believed that rtx's at this level will never
535 contain anything but integers and other rtx's,
536 except for within LABEL_REFs and SYMBOL_REFs. */
544 /* We need to pass down the mode of constants through the hash table
545 functions. For that purpose, wrap them in a CONST of the appropriate
548 wrap_constant (mode
, x
)
549 enum machine_mode mode
;
552 if (GET_CODE (x
) != CONST_INT
553 && (GET_CODE (x
) != CONST_DOUBLE
|| GET_MODE (x
) != VOIDmode
))
555 if (mode
== VOIDmode
)
557 return gen_rtx_CONST (mode
, x
);
560 /* Hash an rtx. Return 0 if we couldn't hash the rtx.
561 For registers and memory locations, we look up their cselib_val structure
562 and return its VALUE element.
563 Possible reasons for return 0 are: the object is volatile, or we couldn't
564 find a register or memory location in the table and CREATE is zero. If
565 CREATE is nonzero, table elts are created for regs and mem.
566 MODE is used in hashing for CONST_INTs only;
567 otherwise the mode of X is used. */
570 hash_rtx (x
, mode
, create
)
572 enum machine_mode mode
;
579 unsigned int hash
= 0;
582 hash
+= (unsigned) code
+ (unsigned) GET_MODE (x
);
588 e
= cselib_lookup (x
, GET_MODE (x
), create
);
595 hash
+= ((unsigned) CONST_INT
<< 7) + (unsigned) mode
+ INTVAL (x
);
596 return hash
? hash
: (unsigned int) CONST_INT
;
599 /* This is like the general case, except that it only counts
600 the integers representing the constant. */
601 hash
+= (unsigned) code
+ (unsigned) GET_MODE (x
);
602 if (GET_MODE (x
) != VOIDmode
)
603 hash
+= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
605 hash
+= ((unsigned) CONST_DOUBLE_LOW (x
)
606 + (unsigned) CONST_DOUBLE_HIGH (x
));
607 return hash
? hash
: (unsigned int) CONST_DOUBLE
;
614 units
= CONST_VECTOR_NUNITS (x
);
616 for (i
= 0; i
< units
; ++i
)
618 elt
= CONST_VECTOR_ELT (x
, i
);
619 hash
+= hash_rtx (elt
, GET_MODE (elt
), 0);
625 /* Assume there is only one rtx object for any given label. */
628 += ((unsigned) LABEL_REF
<< 7) + (unsigned long) XEXP (x
, 0);
629 return hash
? hash
: (unsigned int) LABEL_REF
;
633 += ((unsigned) SYMBOL_REF
<< 7) + (unsigned long) XSTR (x
, 0);
634 return hash
? hash
: (unsigned int) SYMBOL_REF
;
645 case UNSPEC_VOLATILE
:
649 if (MEM_VOLATILE_P (x
))
658 i
= GET_RTX_LENGTH (code
) - 1;
659 fmt
= GET_RTX_FORMAT (code
);
664 rtx tem
= XEXP (x
, i
);
665 unsigned int tem_hash
= hash_rtx (tem
, 0, create
);
672 else if (fmt
[i
] == 'E')
673 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
675 unsigned int tem_hash
= hash_rtx (XVECEXP (x
, i
, j
), 0, create
);
682 else if (fmt
[i
] == 's')
684 const unsigned char *p
= (const unsigned char *) XSTR (x
, i
);
690 else if (fmt
[i
] == 'i')
692 else if (fmt
[i
] == '0' || fmt
[i
] == 't')
698 return hash
? hash
: 1 + (unsigned int) GET_CODE (x
);
701 /* Create a new value structure for VALUE and initialize it. The mode of the
705 new_cselib_val (value
, mode
)
707 enum machine_mode mode
;
709 cselib_val
*e
= empty_vals
;
712 empty_vals
= e
->u
.next_free
;
714 e
= (cselib_val
*) ggc_alloc (sizeof (cselib_val
));
720 e
->u
.val_rtx
= gen_rtx_VALUE (mode
);
721 CSELIB_VAL_PTR (e
->u
.val_rtx
) = e
;
724 e
->next_containing_mem
= 0;
728 /* ADDR_ELT is a value that is used as address. MEM_ELT is the value that
729 contains the data at this address. X is a MEM that represents the
730 value. Update the two value structures to represent this situation. */
733 add_mem_for_addr (addr_elt
, mem_elt
, x
)
734 cselib_val
*addr_elt
, *mem_elt
;
737 struct elt_loc_list
*l
;
739 /* Avoid duplicates. */
740 for (l
= mem_elt
->locs
; l
; l
= l
->next
)
741 if (GET_CODE (l
->loc
) == MEM
742 && CSELIB_VAL_PTR (XEXP (l
->loc
, 0)) == addr_elt
)
745 addr_elt
->addr_list
= new_elt_list (addr_elt
->addr_list
, mem_elt
);
747 = new_elt_loc_list (mem_elt
->locs
,
748 replace_equiv_address_nv (x
, addr_elt
->u
.val_rtx
));
749 if (mem_elt
->next_containing_mem
== NULL
)
751 mem_elt
->next_containing_mem
= first_containing_mem
;
752 first_containing_mem
= mem_elt
;
756 /* Subroutine of cselib_lookup. Return a value for X, which is a MEM rtx.
757 If CREATE, make a new one if we haven't seen it before. */
760 cselib_lookup_mem (x
, create
)
764 enum machine_mode mode
= GET_MODE (x
);
770 if (MEM_VOLATILE_P (x
) || mode
== BLKmode
771 || (FLOAT_MODE_P (mode
) && flag_float_store
))
774 /* Look up the value for the address. */
775 addr
= cselib_lookup (XEXP (x
, 0), mode
, create
);
779 /* Find a value that describes a value of our mode at that address. */
780 for (l
= addr
->addr_list
; l
; l
= l
->next
)
781 if (GET_MODE (l
->elt
->u
.val_rtx
) == mode
)
787 mem_elt
= new_cselib_val (++next_unknown_value
, mode
);
788 add_mem_for_addr (addr
, mem_elt
, x
);
789 slot
= htab_find_slot_with_hash (hash_table
, wrap_constant (mode
, x
),
790 mem_elt
->value
, INSERT
);
795 /* Walk rtx X and replace all occurrences of REG and MEM subexpressions
796 with VALUE expressions. This way, it becomes independent of changes
797 to registers and memory.
798 X isn't actually modified; if modifications are needed, new rtl is
799 allocated. However, the return value can share rtl with X. */
802 cselib_subst_to_values (x
)
805 enum rtx_code code
= GET_CODE (x
);
806 const char *fmt
= GET_RTX_FORMAT (code
);
815 for (l
= REG_VALUES (REGNO (x
)); l
; l
= l
->next
)
816 if (GET_MODE (l
->elt
->u
.val_rtx
) == GET_MODE (x
))
817 return l
->elt
->u
.val_rtx
;
822 e
= cselib_lookup_mem (x
, 0);
825 /* This happens for autoincrements. Assign a value that doesn't
827 e
= new_cselib_val (++next_unknown_value
, GET_MODE (x
));
842 e
= new_cselib_val (++next_unknown_value
, GET_MODE (x
));
849 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
853 rtx t
= cselib_subst_to_values (XEXP (x
, i
));
855 if (t
!= XEXP (x
, i
) && x
== copy
)
856 copy
= shallow_copy_rtx (x
);
860 else if (fmt
[i
] == 'E')
864 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
866 rtx t
= cselib_subst_to_values (XVECEXP (x
, i
, j
));
868 if (t
!= XVECEXP (x
, i
, j
) && XVEC (x
, i
) == XVEC (copy
, i
))
871 copy
= shallow_copy_rtx (x
);
873 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (x
, i
));
874 for (k
= 0; k
< j
; k
++)
875 XVECEXP (copy
, i
, k
) = XVECEXP (x
, i
, k
);
878 XVECEXP (copy
, i
, j
) = t
;
886 /* Look up the rtl expression X in our tables and return the value it has.
887 If CREATE is zero, we return NULL if we don't know the value. Otherwise,
888 we create a new one if possible, using mode MODE if X doesn't have a mode
889 (i.e. because it's a constant). */
892 cselib_lookup (x
, mode
, create
)
894 enum machine_mode mode
;
899 unsigned int hashval
;
901 if (GET_MODE (x
) != VOIDmode
)
904 if (GET_CODE (x
) == VALUE
)
905 return CSELIB_VAL_PTR (x
);
907 if (GET_CODE (x
) == REG
)
910 unsigned int i
= REGNO (x
);
912 for (l
= REG_VALUES (i
); l
; l
= l
->next
)
913 if (mode
== GET_MODE (l
->elt
->u
.val_rtx
))
919 if (i
< FIRST_PSEUDO_REGISTER
)
921 unsigned int n
= HARD_REGNO_NREGS (i
, mode
);
923 if (n
> max_value_regs
)
927 e
= new_cselib_val (++next_unknown_value
, GET_MODE (x
));
928 e
->locs
= new_elt_loc_list (e
->locs
, x
);
929 if (REG_VALUES (i
) == 0)
930 VARRAY_PUSH_UINT (used_regs
, i
);
931 REG_VALUES (i
) = new_elt_list (REG_VALUES (i
), e
);
932 slot
= htab_find_slot_with_hash (hash_table
, x
, e
->value
, INSERT
);
937 if (GET_CODE (x
) == MEM
)
938 return cselib_lookup_mem (x
, create
);
940 hashval
= hash_rtx (x
, mode
, create
);
941 /* Can't even create if hashing is not possible. */
945 slot
= htab_find_slot_with_hash (hash_table
, wrap_constant (mode
, x
),
946 hashval
, create
? INSERT
: NO_INSERT
);
950 e
= (cselib_val
*) *slot
;
954 e
= new_cselib_val (hashval
, mode
);
956 /* We have to fill the slot before calling cselib_subst_to_values:
957 the hash table is inconsistent until we do so, and
958 cselib_subst_to_values will need to do lookups. */
960 e
->locs
= new_elt_loc_list (e
->locs
, cselib_subst_to_values (x
));
964 /* Invalidate any entries in reg_values that overlap REGNO. This is called
965 if REGNO is changing. MODE is the mode of the assignment to REGNO, which
966 is used to determine how many hard registers are being changed. If MODE
967 is VOIDmode, then only REGNO is being changed; this is used when
968 invalidating call clobbered registers across a call. */
971 cselib_invalidate_regno (regno
, mode
)
973 enum machine_mode mode
;
975 unsigned int endregno
;
978 /* If we see pseudos after reload, something is _wrong_. */
979 if (reload_completed
&& regno
>= FIRST_PSEUDO_REGISTER
980 && reg_renumber
[regno
] >= 0)
983 /* Determine the range of registers that must be invalidated. For
984 pseudos, only REGNO is affected. For hard regs, we must take MODE
985 into account, and we must also invalidate lower register numbers
986 if they contain values that overlap REGNO. */
987 if (regno
< FIRST_PSEUDO_REGISTER
&& mode
!= VOIDmode
)
989 if (regno
< max_value_regs
)
992 i
= regno
- max_value_regs
;
994 endregno
= regno
+ HARD_REGNO_NREGS (regno
, mode
);
999 endregno
= regno
+ 1;
1002 for (; i
< endregno
; i
++)
1004 struct elt_list
**l
= ®_VALUES (i
);
1006 /* Go through all known values for this reg; if it overlaps the range
1007 we're invalidating, remove the value. */
1010 cselib_val
*v
= (*l
)->elt
;
1011 struct elt_loc_list
**p
;
1012 unsigned int this_last
= i
;
1014 if (i
< FIRST_PSEUDO_REGISTER
)
1015 this_last
+= HARD_REGNO_NREGS (i
, GET_MODE (v
->u
.val_rtx
)) - 1;
1017 if (this_last
< regno
)
1023 /* We have an overlap. */
1024 unchain_one_elt_list (l
);
1026 /* Now, we clear the mapping from value to reg. It must exist, so
1027 this code will crash intentionally if it doesn't. */
1028 for (p
= &v
->locs
; ; p
= &(*p
)->next
)
1032 if (GET_CODE (x
) == REG
&& REGNO (x
) == i
)
1034 unchain_one_elt_loc_list (p
);
1044 /* The memory at address MEM_BASE is being changed.
1045 Return whether this change will invalidate VAL. */
1048 cselib_mem_conflict_p (mem_base
, val
)
1056 code
= GET_CODE (val
);
1059 /* Get rid of a few simple cases quickly. */
1073 if (GET_MODE (mem_base
) == BLKmode
1074 || GET_MODE (val
) == BLKmode
1075 || anti_dependence (val
, mem_base
))
1078 /* The address may contain nested MEMs. */
1085 fmt
= GET_RTX_FORMAT (code
);
1086 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1090 if (cselib_mem_conflict_p (mem_base
, XEXP (val
, i
)))
1093 else if (fmt
[i
] == 'E')
1094 for (j
= 0; j
< XVECLEN (val
, i
); j
++)
1095 if (cselib_mem_conflict_p (mem_base
, XVECEXP (val
, i
, j
)))
1102 /* Invalidate any locations in the table which are changed because of a
1103 store to MEM_RTX. If this is called because of a non-const call
1104 instruction, MEM_RTX is (mem:BLK const0_rtx). */
1107 cselib_invalidate_mem (mem_rtx
)
1110 cselib_val
**vp
, *v
, *next
;
1112 vp
= &first_containing_mem
;
1113 for (v
= *vp
; v
!= &dummy_val
; v
= next
)
1115 bool has_mem
= false;
1116 struct elt_loc_list
**p
= &v
->locs
;
1117 int had_locs
= v
->locs
!= 0;
1123 struct elt_list
**mem_chain
;
1125 /* MEMs may occur in locations only at the top level; below
1126 that every MEM or REG is substituted by its VALUE. */
1127 if (GET_CODE (x
) != MEM
)
1132 if (! cselib_mem_conflict_p (mem_rtx
, x
))
1139 /* This one overlaps. */
1140 /* We must have a mapping from this MEM's address to the
1141 value (E). Remove that, too. */
1142 addr
= cselib_lookup (XEXP (x
, 0), VOIDmode
, 0);
1143 mem_chain
= &addr
->addr_list
;
1146 if ((*mem_chain
)->elt
== v
)
1148 unchain_one_elt_list (mem_chain
);
1152 mem_chain
= &(*mem_chain
)->next
;
1155 unchain_one_elt_loc_list (p
);
1158 if (had_locs
&& v
->locs
== 0)
1161 next
= v
->next_containing_mem
;
1165 vp
= &(*vp
)->next_containing_mem
;
1168 v
->next_containing_mem
= NULL
;
1173 /* Invalidate DEST, which is being assigned to or clobbered. The second and
1174 the third parameter exist so that this function can be passed to
1175 note_stores; they are ignored. */
1178 cselib_invalidate_rtx (dest
, ignore
, data
)
1180 rtx ignore ATTRIBUTE_UNUSED
;
1181 void *data ATTRIBUTE_UNUSED
;
1183 while (GET_CODE (dest
) == STRICT_LOW_PART
|| GET_CODE (dest
) == SIGN_EXTRACT
1184 || GET_CODE (dest
) == ZERO_EXTRACT
|| GET_CODE (dest
) == SUBREG
)
1185 dest
= XEXP (dest
, 0);
1187 if (GET_CODE (dest
) == REG
)
1188 cselib_invalidate_regno (REGNO (dest
), GET_MODE (dest
));
1189 else if (GET_CODE (dest
) == MEM
)
1190 cselib_invalidate_mem (dest
);
1192 /* Some machines don't define AUTO_INC_DEC, but they still use push
1193 instructions. We need to catch that case here in order to
1194 invalidate the stack pointer correctly. Note that invalidating
1195 the stack pointer is different from invalidating DEST. */
1196 if (push_operand (dest
, GET_MODE (dest
)))
1197 cselib_invalidate_rtx (stack_pointer_rtx
, NULL_RTX
, NULL
);
1200 /* Record the result of a SET instruction. DEST is being set; the source
1201 contains the value described by SRC_ELT. If DEST is a MEM, DEST_ADDR_ELT
1202 describes its address. */
1205 cselib_record_set (dest
, src_elt
, dest_addr_elt
)
1207 cselib_val
*src_elt
, *dest_addr_elt
;
1209 int dreg
= GET_CODE (dest
) == REG
? (int) REGNO (dest
) : -1;
1211 if (src_elt
== 0 || side_effects_p (dest
))
1216 if (REG_VALUES (dreg
) == 0)
1217 VARRAY_PUSH_UINT (used_regs
, dreg
);
1219 if (dreg
< FIRST_PSEUDO_REGISTER
)
1221 unsigned int n
= HARD_REGNO_NREGS (dreg
, GET_MODE (dest
));
1223 if (n
> max_value_regs
)
1227 REG_VALUES (dreg
) = new_elt_list (REG_VALUES (dreg
), src_elt
);
1228 if (src_elt
->locs
== 0)
1230 src_elt
->locs
= new_elt_loc_list (src_elt
->locs
, dest
);
1232 else if (GET_CODE (dest
) == MEM
&& dest_addr_elt
!= 0)
1234 if (src_elt
->locs
== 0)
1236 add_mem_for_addr (dest_addr_elt
, src_elt
, dest
);
1240 /* Describe a single set that is part of an insn. */
1245 cselib_val
*src_elt
;
1246 cselib_val
*dest_addr_elt
;
1249 /* There is no good way to determine how many elements there can be
1250 in a PARALLEL. Since it's fairly cheap, use a really large number. */
1251 #define MAX_SETS (FIRST_PSEUDO_REGISTER * 2)
1253 /* Record the effects of any sets in INSN. */
1255 cselib_record_sets (insn
)
1260 struct set sets
[MAX_SETS
];
1261 rtx body
= PATTERN (insn
);
1264 body
= PATTERN (insn
);
1265 if (GET_CODE (body
) == COND_EXEC
)
1267 cond
= COND_EXEC_TEST (body
);
1268 body
= COND_EXEC_CODE (body
);
1271 /* Find all sets. */
1272 if (GET_CODE (body
) == SET
)
1274 sets
[0].src
= SET_SRC (body
);
1275 sets
[0].dest
= SET_DEST (body
);
1278 else if (GET_CODE (body
) == PARALLEL
)
1280 /* Look through the PARALLEL and record the values being
1281 set, if possible. Also handle any CLOBBERs. */
1282 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; --i
)
1284 rtx x
= XVECEXP (body
, 0, i
);
1286 if (GET_CODE (x
) == SET
)
1288 sets
[n_sets
].src
= SET_SRC (x
);
1289 sets
[n_sets
].dest
= SET_DEST (x
);
1295 /* Look up the values that are read. Do this before invalidating the
1296 locations that are written. */
1297 for (i
= 0; i
< n_sets
; i
++)
1299 rtx dest
= sets
[i
].dest
;
1301 /* A STRICT_LOW_PART can be ignored; we'll record the equivalence for
1302 the low part after invalidating any knowledge about larger modes. */
1303 if (GET_CODE (sets
[i
].dest
) == STRICT_LOW_PART
)
1304 sets
[i
].dest
= dest
= XEXP (dest
, 0);
1306 /* We don't know how to record anything but REG or MEM. */
1307 if (GET_CODE (dest
) == REG
|| GET_CODE (dest
) == MEM
)
1309 rtx src
= sets
[i
].src
;
1311 src
= gen_rtx_IF_THEN_ELSE (GET_MODE (src
), cond
, src
, dest
);
1312 sets
[i
].src_elt
= cselib_lookup (src
, GET_MODE (dest
), 1);
1313 if (GET_CODE (dest
) == MEM
)
1314 sets
[i
].dest_addr_elt
= cselib_lookup (XEXP (dest
, 0), Pmode
, 1);
1316 sets
[i
].dest_addr_elt
= 0;
1320 /* Invalidate all locations written by this insn. Note that the elts we
1321 looked up in the previous loop aren't affected, just some of their
1322 locations may go away. */
1323 note_stores (body
, cselib_invalidate_rtx
, NULL
);
1325 /* Now enter the equivalences in our tables. */
1326 for (i
= 0; i
< n_sets
; i
++)
1328 rtx dest
= sets
[i
].dest
;
1329 if (GET_CODE (dest
) == REG
|| GET_CODE (dest
) == MEM
)
1330 cselib_record_set (dest
, sets
[i
].src_elt
, sets
[i
].dest_addr_elt
);
1334 /* Record the effects of INSN. */
1337 cselib_process_insn (insn
)
1343 if (find_reg_note (insn
, REG_LIBCALL
, NULL
))
1344 cselib_current_insn_in_libcall
= true;
1345 if (find_reg_note (insn
, REG_RETVAL
, NULL
))
1346 cselib_current_insn_in_libcall
= false;
1347 cselib_current_insn
= insn
;
1349 /* Forget everything at a CODE_LABEL, a volatile asm, or a setjmp. */
1350 if (GET_CODE (insn
) == CODE_LABEL
1351 || (GET_CODE (insn
) == CALL_INSN
1352 && find_reg_note (insn
, REG_SETJMP
, NULL
))
1353 || (GET_CODE (insn
) == INSN
1354 && GET_CODE (PATTERN (insn
)) == ASM_OPERANDS
1355 && MEM_VOLATILE_P (PATTERN (insn
))))
1361 if (! INSN_P (insn
))
1363 cselib_current_insn
= 0;
1367 /* If this is a call instruction, forget anything stored in a
1368 call clobbered register, or, if this is not a const call, in
1370 if (GET_CODE (insn
) == CALL_INSN
)
1372 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1373 if (call_used_regs
[i
])
1374 cselib_invalidate_regno (i
, VOIDmode
);
1376 if (! CONST_OR_PURE_CALL_P (insn
))
1377 cselib_invalidate_mem (callmem
);
1380 cselib_record_sets (insn
);
1383 /* Clobber any registers which appear in REG_INC notes. We
1384 could keep track of the changes to their values, but it is
1385 unlikely to help. */
1386 for (x
= REG_NOTES (insn
); x
; x
= XEXP (x
, 1))
1387 if (REG_NOTE_KIND (x
) == REG_INC
)
1388 cselib_invalidate_rtx (XEXP (x
, 0), NULL_RTX
, NULL
);
1391 /* Look for any CLOBBERs in CALL_INSN_FUNCTION_USAGE, but only
1392 after we have processed the insn. */
1393 if (GET_CODE (insn
) == CALL_INSN
)
1394 for (x
= CALL_INSN_FUNCTION_USAGE (insn
); x
; x
= XEXP (x
, 1))
1395 if (GET_CODE (XEXP (x
, 0)) == CLOBBER
)
1396 cselib_invalidate_rtx (XEXP (XEXP (x
, 0), 0), NULL_RTX
, NULL
);
1398 cselib_current_insn
= 0;
1400 if (n_useless_values
> MAX_USELESS_VALUES
)
1401 remove_useless_values ();
1404 /* Make sure our varrays are big enough. Not called from any cselib routines;
1405 it must be called by the user if it allocated new registers. */
1408 cselib_update_varray_sizes ()
1410 unsigned int nregs
= max_reg_num ();
1412 if (nregs
== cselib_nregs
)
1415 cselib_nregs
= nregs
;
1416 VARRAY_GROW (reg_values
, nregs
);
1417 VARRAY_GROW (used_regs
, nregs
);
1420 /* Initialize cselib for one pass. The caller must also call
1421 init_alias_analysis. */
1426 /* This is only created once. */
1428 callmem
= gen_rtx_MEM (BLKmode
, const0_rtx
);
1430 cselib_nregs
= max_reg_num ();
1431 if (reg_values_old
!= NULL
&& VARRAY_SIZE (reg_values_old
) >= cselib_nregs
)
1433 reg_values
= reg_values_old
;
1434 used_regs
= used_regs_old
;
1438 VARRAY_ELT_LIST_INIT (reg_values
, cselib_nregs
, "reg_values");
1439 VARRAY_UINT_INIT (used_regs
, cselib_nregs
, "used_regs");
1441 hash_table
= htab_create_ggc (31, get_value_hash
, entry_and_rtx_equal_p
,
1443 cselib_current_insn_in_libcall
= false;
1446 /* Called when the current user is done with cselib. */
1452 reg_values_old
= reg_values
;
1454 used_regs_old
= used_regs
;
1457 n_useless_values
= 0;
1458 next_unknown_value
= 0;
1461 #include "gt-cselib.h"