1 /* Common subexpression elimination library for GNU compiler.
2 Copyright (C) 1987-2019 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
36 /* A list of cselib_val structures. */
39 struct elt_list
*next
;
43 static bool cselib_record_memory
;
44 static bool cselib_preserve_constants
;
45 static bool cselib_any_perm_equivs
;
46 static inline void promote_debug_loc (struct elt_loc_list
*l
);
47 static struct elt_list
*new_elt_list (struct elt_list
*, cselib_val
*);
48 static void new_elt_loc_list (cselib_val
*, rtx
);
49 static void unchain_one_value (cselib_val
*);
50 static void unchain_one_elt_list (struct elt_list
**);
51 static void unchain_one_elt_loc_list (struct elt_loc_list
**);
52 static void remove_useless_values (void);
53 static unsigned int cselib_hash_rtx (rtx
, int, machine_mode
);
54 static cselib_val
*new_cselib_val (unsigned int, machine_mode
, rtx
);
55 static void add_mem_for_addr (cselib_val
*, cselib_val
*, rtx
);
56 static cselib_val
*cselib_lookup_mem (rtx
, int);
57 static void cselib_invalidate_regno (unsigned int, machine_mode
,
59 static void cselib_invalidate_mem (rtx
);
60 static void cselib_record_set (rtx
, cselib_val
*, cselib_val
*);
61 static void cselib_record_sets (rtx_insn
*);
63 struct expand_value_data
66 cselib_expand_callback callback
;
71 static rtx
cselib_expand_value_rtx_1 (rtx
, struct expand_value_data
*, int);
73 /* There are three ways in which cselib can look up an rtx:
74 - for a REG, the reg_values table (which is indexed by regno) is used
75 - for a MEM, we recursively look up its address and then follow the
76 addr_list of that value
77 - for everything else, we compute a hash value and go through the hash
78 table. Since different rtx's can still have the same hash value,
79 this involves walking the table entries for a given value and comparing
80 the locations of the entries with the rtx we are looking up. */
82 struct cselib_hasher
: nofree_ptr_hash
<cselib_val
>
85 /* The rtx value and its mode (needed separately for constant
89 /* The mode of the contaning MEM, if any, otherwise VOIDmode. */
92 typedef key
*compare_type
;
93 static inline hashval_t
hash (const cselib_val
*);
94 static inline bool equal (const cselib_val
*, const key
*);
97 /* The hash function for our hash table. The value is always computed with
98 cselib_hash_rtx when adding an element; this function just extracts the
99 hash value from a cselib_val structure. */
102 cselib_hasher::hash (const cselib_val
*v
)
107 /* The equality test for our hash table. The first argument V is a table
108 element (i.e. a cselib_val), while the second arg X is an rtx. We know
109 that all callers of htab_find_slot_with_hash will wrap CONST_INTs into a
110 CONST of an appropriate mode. */
113 cselib_hasher::equal (const cselib_val
*v
, const key
*x_arg
)
115 struct elt_loc_list
*l
;
117 machine_mode mode
= x_arg
->mode
;
118 machine_mode memmode
= x_arg
->memmode
;
120 if (mode
!= GET_MODE (v
->val_rtx
))
123 if (GET_CODE (x
) == VALUE
)
124 return x
== v
->val_rtx
;
126 /* We don't guarantee that distinct rtx's have different hash values,
127 so we need to do a comparison. */
128 for (l
= v
->locs
; l
; l
= l
->next
)
129 if (rtx_equal_for_cselib_1 (l
->loc
, x
, memmode
, 0))
131 promote_debug_loc (l
);
138 /* A table that enables us to look up elts by their value. */
139 static hash_table
<cselib_hasher
> *cselib_hash_table
;
141 /* A table to hold preserved values. */
142 static hash_table
<cselib_hasher
> *cselib_preserved_hash_table
;
144 /* This is a global so we don't have to pass this through every function.
145 It is used in new_elt_loc_list to set SETTING_INSN. */
146 static rtx_insn
*cselib_current_insn
;
148 /* The unique id that the next create value will take. */
149 static unsigned int next_uid
;
151 /* The number of registers we had when the varrays were last resized. */
152 static unsigned int cselib_nregs
;
154 /* Count values without known locations, or with only locations that
155 wouldn't have been known except for debug insns. Whenever this
156 grows too big, we remove these useless values from the table.
158 Counting values with only debug values is a bit tricky. We don't
159 want to increment n_useless_values when we create a value for a
160 debug insn, for this would get n_useless_values out of sync, but we
161 want increment it if all locs in the list that were ever referenced
162 in nondebug insns are removed from the list.
164 In the general case, once we do that, we'd have to stop accepting
165 nondebug expressions in the loc list, to avoid having two values
166 equivalent that, without debug insns, would have been made into
167 separate values. However, because debug insns never introduce
168 equivalences themselves (no assignments), the only means for
169 growing loc lists is through nondebug assignments. If the locs
170 also happen to be referenced in debug insns, it will work just fine.
172 A consequence of this is that there's at most one debug-only loc in
173 each loc list. If we keep it in the first entry, testing whether
174 we have a debug-only loc list takes O(1).
176 Furthermore, since any additional entry in a loc list containing a
177 debug loc would have to come from an assignment (nondebug) that
178 references both the initial debug loc and the newly-equivalent loc,
179 the initial debug loc would be promoted to a nondebug loc, and the
180 loc list would not contain debug locs any more.
182 So the only case we have to be careful with in order to keep
183 n_useless_values in sync between debug and nondebug compilations is
184 to avoid incrementing n_useless_values when removing the single loc
185 from a value that turns out to not appear outside debug values. We
186 increment n_useless_debug_values instead, and leave such values
187 alone until, for other reasons, we garbage-collect useless
189 static int n_useless_values
;
190 static int n_useless_debug_values
;
192 /* Count values whose locs have been taken exclusively from debug
193 insns for the entire life of the value. */
194 static int n_debug_values
;
196 /* Number of useless values before we remove them from the hash table. */
197 #define MAX_USELESS_VALUES 32
199 /* This table maps from register number to values. It does not
200 contain pointers to cselib_val structures, but rather elt_lists.
201 The purpose is to be able to refer to the same register in
202 different modes. The first element of the list defines the mode in
203 which the register was set; if the mode is unknown or the value is
204 no longer valid in that mode, ELT will be NULL for the first
206 static struct elt_list
**reg_values
;
207 static unsigned int reg_values_size
;
208 #define REG_VALUES(i) reg_values[i]
210 /* The largest number of hard regs used by any entry added to the
211 REG_VALUES table. Cleared on each cselib_clear_table() invocation. */
212 static unsigned int max_value_regs
;
214 /* Here the set of indices I with REG_VALUES(I) != 0 is saved. This is used
215 in cselib_clear_table() for fast emptying. */
216 static unsigned int *used_regs
;
217 static unsigned int n_used_regs
;
219 /* We pass this to cselib_invalidate_mem to invalidate all of
220 memory for a non-const call instruction. */
221 static GTY(()) rtx callmem
;
223 /* Set by discard_useless_locs if it deleted the last location of any
225 static int values_became_useless
;
227 /* Used as stop element of the containing_mem list so we can check
228 presence in the list by checking the next pointer. */
229 static cselib_val dummy_val
;
231 /* If non-NULL, value of the eliminated arg_pointer_rtx or frame_pointer_rtx
232 that is constant through the whole function and should never be
234 static cselib_val
*cfa_base_preserved_val
;
235 static unsigned int cfa_base_preserved_regno
= INVALID_REGNUM
;
237 /* Used to list all values that contain memory reference.
238 May or may not contain the useless values - the list is compacted
239 each time memory is invalidated. */
240 static cselib_val
*first_containing_mem
= &dummy_val
;
242 static object_allocator
<elt_list
> elt_list_pool ("elt_list");
243 static object_allocator
<elt_loc_list
> elt_loc_list_pool ("elt_loc_list");
244 static object_allocator
<cselib_val
> cselib_val_pool ("cselib_val_list");
246 static pool_allocator
value_pool ("value", RTX_CODE_SIZE (VALUE
));
248 /* If nonnull, cselib will call this function before freeing useless
249 VALUEs. A VALUE is deemed useless if its "locs" field is null. */
250 void (*cselib_discard_hook
) (cselib_val
*);
252 /* If nonnull, cselib will call this function before recording sets or
253 even clobbering outputs of INSN. All the recorded sets will be
254 represented in the array sets[n_sets]. new_val_min can be used to
255 tell whether values present in sets are introduced by this
257 void (*cselib_record_sets_hook
) (rtx_insn
*insn
, struct cselib_set
*sets
,
260 #define PRESERVED_VALUE_P(RTX) \
261 (RTL_FLAG_CHECK1 ("PRESERVED_VALUE_P", (RTX), VALUE)->unchanging)
263 #define SP_BASED_VALUE_P(RTX) \
264 (RTL_FLAG_CHECK1 ("SP_BASED_VALUE_P", (RTX), VALUE)->jump)
268 /* Allocate a struct elt_list and fill in its two elements with the
271 static inline struct elt_list
*
272 new_elt_list (struct elt_list
*next
, cselib_val
*elt
)
274 elt_list
*el
= elt_list_pool
.allocate ();
280 /* Allocate a struct elt_loc_list with LOC and prepend it to VAL's loc
284 new_elt_loc_list (cselib_val
*val
, rtx loc
)
286 struct elt_loc_list
*el
, *next
= val
->locs
;
288 gcc_checking_assert (!next
|| !next
->setting_insn
289 || !DEBUG_INSN_P (next
->setting_insn
)
290 || cselib_current_insn
== next
->setting_insn
);
292 /* If we're creating the first loc in a debug insn context, we've
293 just created a debug value. Count it. */
294 if (!next
&& cselib_current_insn
&& DEBUG_INSN_P (cselib_current_insn
))
297 val
= canonical_cselib_val (val
);
300 if (GET_CODE (loc
) == VALUE
)
302 loc
= canonical_cselib_val (CSELIB_VAL_PTR (loc
))->val_rtx
;
304 gcc_checking_assert (PRESERVED_VALUE_P (loc
)
305 == PRESERVED_VALUE_P (val
->val_rtx
));
307 if (val
->val_rtx
== loc
)
309 else if (val
->uid
> CSELIB_VAL_PTR (loc
)->uid
)
311 /* Reverse the insertion. */
312 new_elt_loc_list (CSELIB_VAL_PTR (loc
), val
->val_rtx
);
316 gcc_checking_assert (val
->uid
< CSELIB_VAL_PTR (loc
)->uid
);
318 if (CSELIB_VAL_PTR (loc
)->locs
)
320 /* Bring all locs from LOC to VAL. */
321 for (el
= CSELIB_VAL_PTR (loc
)->locs
; el
->next
; el
= el
->next
)
323 /* Adjust values that have LOC as canonical so that VAL
324 becomes their canonical. */
325 if (el
->loc
&& GET_CODE (el
->loc
) == VALUE
)
327 gcc_checking_assert (CSELIB_VAL_PTR (el
->loc
)->locs
->loc
329 CSELIB_VAL_PTR (el
->loc
)->locs
->loc
= val
->val_rtx
;
332 el
->next
= val
->locs
;
333 next
= val
->locs
= CSELIB_VAL_PTR (loc
)->locs
;
336 if (CSELIB_VAL_PTR (loc
)->addr_list
)
338 /* Bring in addr_list into canonical node. */
339 struct elt_list
*last
= CSELIB_VAL_PTR (loc
)->addr_list
;
342 last
->next
= val
->addr_list
;
343 val
->addr_list
= CSELIB_VAL_PTR (loc
)->addr_list
;
344 CSELIB_VAL_PTR (loc
)->addr_list
= NULL
;
347 if (CSELIB_VAL_PTR (loc
)->next_containing_mem
!= NULL
348 && val
->next_containing_mem
== NULL
)
350 /* Add VAL to the containing_mem list after LOC. LOC will
351 be removed when we notice it doesn't contain any
353 val
->next_containing_mem
= CSELIB_VAL_PTR (loc
)->next_containing_mem
;
354 CSELIB_VAL_PTR (loc
)->next_containing_mem
= val
;
357 /* Chain LOC back to VAL. */
358 el
= elt_loc_list_pool
.allocate ();
359 el
->loc
= val
->val_rtx
;
360 el
->setting_insn
= cselib_current_insn
;
362 CSELIB_VAL_PTR (loc
)->locs
= el
;
365 el
= elt_loc_list_pool
.allocate ();
367 el
->setting_insn
= cselib_current_insn
;
372 /* Promote loc L to a nondebug cselib_current_insn if L is marked as
373 originating from a debug insn, maintaining the debug values
377 promote_debug_loc (struct elt_loc_list
*l
)
379 if (l
&& l
->setting_insn
&& DEBUG_INSN_P (l
->setting_insn
)
380 && (!cselib_current_insn
|| !DEBUG_INSN_P (cselib_current_insn
)))
383 l
->setting_insn
= cselib_current_insn
;
384 if (cselib_preserve_constants
&& l
->next
)
386 gcc_assert (l
->next
->setting_insn
387 && DEBUG_INSN_P (l
->next
->setting_insn
)
389 l
->next
->setting_insn
= cselib_current_insn
;
392 gcc_assert (!l
->next
);
396 /* The elt_list at *PL is no longer needed. Unchain it and free its
400 unchain_one_elt_list (struct elt_list
**pl
)
402 struct elt_list
*l
= *pl
;
405 elt_list_pool
.remove (l
);
408 /* Likewise for elt_loc_lists. */
411 unchain_one_elt_loc_list (struct elt_loc_list
**pl
)
413 struct elt_loc_list
*l
= *pl
;
416 elt_loc_list_pool
.remove (l
);
419 /* Likewise for cselib_vals. This also frees the addr_list associated with
423 unchain_one_value (cselib_val
*v
)
426 unchain_one_elt_list (&v
->addr_list
);
428 cselib_val_pool
.remove (v
);
431 /* Remove all entries from the hash table. Also used during
435 cselib_clear_table (void)
437 cselib_reset_table (1);
440 /* Return TRUE if V is a constant, a function invariant or a VALUE
441 equivalence; FALSE otherwise. */
444 invariant_or_equiv_p (cselib_val
*v
)
446 struct elt_loc_list
*l
;
448 if (v
== cfa_base_preserved_val
)
451 /* Keep VALUE equivalences around. */
452 for (l
= v
->locs
; l
; l
= l
->next
)
453 if (GET_CODE (l
->loc
) == VALUE
)
457 && v
->locs
->next
== NULL
)
459 if (CONSTANT_P (v
->locs
->loc
)
460 && (GET_CODE (v
->locs
->loc
) != CONST
461 || !references_value_p (v
->locs
->loc
, 0)))
463 /* Although a debug expr may be bound to different expressions,
464 we can preserve it as if it was constant, to get unification
465 and proper merging within var-tracking. */
466 if (GET_CODE (v
->locs
->loc
) == DEBUG_EXPR
467 || GET_CODE (v
->locs
->loc
) == DEBUG_IMPLICIT_PTR
468 || GET_CODE (v
->locs
->loc
) == ENTRY_VALUE
469 || GET_CODE (v
->locs
->loc
) == DEBUG_PARAMETER_REF
)
472 /* (plus (value V) (const_int C)) is invariant iff V is invariant. */
473 if (GET_CODE (v
->locs
->loc
) == PLUS
474 && CONST_INT_P (XEXP (v
->locs
->loc
, 1))
475 && GET_CODE (XEXP (v
->locs
->loc
, 0)) == VALUE
476 && invariant_or_equiv_p (CSELIB_VAL_PTR (XEXP (v
->locs
->loc
, 0))))
483 /* Remove from hash table all VALUEs except constants, function
484 invariants and VALUE equivalences. */
487 preserve_constants_and_equivs (cselib_val
**x
, void *info ATTRIBUTE_UNUSED
)
491 if (invariant_or_equiv_p (v
))
493 cselib_hasher::key lookup
= {
494 GET_MODE (v
->val_rtx
), v
->val_rtx
, VOIDmode
497 = cselib_preserved_hash_table
->find_slot_with_hash (&lookup
,
503 cselib_hash_table
->clear_slot (x
);
508 /* Remove all entries from the hash table, arranging for the next
509 value to be numbered NUM. */
512 cselib_reset_table (unsigned int num
)
518 if (cfa_base_preserved_val
)
520 unsigned int regno
= cfa_base_preserved_regno
;
521 unsigned int new_used_regs
= 0;
522 for (i
= 0; i
< n_used_regs
; i
++)
523 if (used_regs
[i
] == regno
)
529 REG_VALUES (used_regs
[i
]) = 0;
530 gcc_assert (new_used_regs
== 1);
531 n_used_regs
= new_used_regs
;
532 used_regs
[0] = regno
;
534 = hard_regno_nregs (regno
,
535 GET_MODE (cfa_base_preserved_val
->locs
->loc
));
539 for (i
= 0; i
< n_used_regs
; i
++)
540 REG_VALUES (used_regs
[i
]) = 0;
544 if (cselib_preserve_constants
)
545 cselib_hash_table
->traverse
<void *, preserve_constants_and_equivs
>
549 cselib_hash_table
->empty ();
550 gcc_checking_assert (!cselib_any_perm_equivs
);
553 n_useless_values
= 0;
554 n_useless_debug_values
= 0;
559 first_containing_mem
= &dummy_val
;
562 /* Return the number of the next value that will be generated. */
565 cselib_get_next_uid (void)
570 /* Search for X, whose hashcode is HASH, in CSELIB_HASH_TABLE,
571 INSERTing if requested. When X is part of the address of a MEM,
572 MEMMODE should specify the mode of the MEM. */
575 cselib_find_slot (machine_mode mode
, rtx x
, hashval_t hash
,
576 enum insert_option insert
, machine_mode memmode
)
578 cselib_val
**slot
= NULL
;
579 cselib_hasher::key lookup
= { mode
, x
, memmode
};
580 if (cselib_preserve_constants
)
581 slot
= cselib_preserved_hash_table
->find_slot_with_hash (&lookup
, hash
,
584 slot
= cselib_hash_table
->find_slot_with_hash (&lookup
, hash
, insert
);
588 /* Return true if X contains a VALUE rtx. If ONLY_USELESS is set, we
589 only return true for values which point to a cselib_val whose value
590 element has been set to zero, which implies the cselib_val will be
594 references_value_p (const_rtx x
, int only_useless
)
596 const enum rtx_code code
= GET_CODE (x
);
597 const char *fmt
= GET_RTX_FORMAT (code
);
600 if (GET_CODE (x
) == VALUE
601 && (! only_useless
||
602 (CSELIB_VAL_PTR (x
)->locs
== 0 && !PRESERVED_VALUE_P (x
))))
605 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
607 if (fmt
[i
] == 'e' && references_value_p (XEXP (x
, i
), only_useless
))
609 else if (fmt
[i
] == 'E')
610 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
611 if (references_value_p (XVECEXP (x
, i
, j
), only_useless
))
618 /* For all locations found in X, delete locations that reference useless
619 values (i.e. values without any location). Called through
623 discard_useless_locs (cselib_val
**x
, void *info ATTRIBUTE_UNUSED
)
626 struct elt_loc_list
**p
= &v
->locs
;
627 bool had_locs
= v
->locs
!= NULL
;
628 rtx_insn
*setting_insn
= v
->locs
? v
->locs
->setting_insn
: NULL
;
632 if (references_value_p ((*p
)->loc
, 1))
633 unchain_one_elt_loc_list (p
);
638 if (had_locs
&& v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
640 if (setting_insn
&& DEBUG_INSN_P (setting_insn
))
641 n_useless_debug_values
++;
644 values_became_useless
= 1;
649 /* If X is a value with no locations, remove it from the hashtable. */
652 discard_useless_values (cselib_val
**x
, void *info ATTRIBUTE_UNUSED
)
656 if (v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
658 if (cselib_discard_hook
)
659 cselib_discard_hook (v
);
661 CSELIB_VAL_PTR (v
->val_rtx
) = NULL
;
662 cselib_hash_table
->clear_slot (x
);
663 unchain_one_value (v
);
670 /* Clean out useless values (i.e. those which no longer have locations
671 associated with them) from the hash table. */
674 remove_useless_values (void)
678 /* First pass: eliminate locations that reference the value. That in
679 turn can make more values useless. */
682 values_became_useless
= 0;
683 cselib_hash_table
->traverse
<void *, discard_useless_locs
> (NULL
);
685 while (values_became_useless
);
687 /* Second pass: actually remove the values. */
689 p
= &first_containing_mem
;
690 for (v
= *p
; v
!= &dummy_val
; v
= v
->next_containing_mem
)
691 if (v
->locs
&& v
== canonical_cselib_val (v
))
694 p
= &(*p
)->next_containing_mem
;
698 n_useless_values
+= n_useless_debug_values
;
699 n_debug_values
-= n_useless_debug_values
;
700 n_useless_debug_values
= 0;
702 cselib_hash_table
->traverse
<void *, discard_useless_values
> (NULL
);
704 gcc_assert (!n_useless_values
);
707 /* Arrange for a value to not be removed from the hash table even if
708 it becomes useless. */
711 cselib_preserve_value (cselib_val
*v
)
713 PRESERVED_VALUE_P (v
->val_rtx
) = 1;
716 /* Test whether a value is preserved. */
719 cselib_preserved_value_p (cselib_val
*v
)
721 return PRESERVED_VALUE_P (v
->val_rtx
);
724 /* Arrange for a REG value to be assumed constant through the whole function,
725 never invalidated and preserved across cselib_reset_table calls. */
728 cselib_preserve_cfa_base_value (cselib_val
*v
, unsigned int regno
)
730 if (cselib_preserve_constants
732 && REG_P (v
->locs
->loc
))
734 cfa_base_preserved_val
= v
;
735 cfa_base_preserved_regno
= regno
;
739 /* Clean all non-constant expressions in the hash table, but retain
743 cselib_preserve_only_values (void)
747 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
748 cselib_invalidate_regno (i
, reg_raw_mode
[i
]);
750 cselib_invalidate_mem (callmem
);
752 remove_useless_values ();
754 gcc_assert (first_containing_mem
== &dummy_val
);
757 /* Arrange for a value to be marked as based on stack pointer
758 for find_base_term purposes. */
761 cselib_set_value_sp_based (cselib_val
*v
)
763 SP_BASED_VALUE_P (v
->val_rtx
) = 1;
766 /* Test whether a value is based on stack pointer for
767 find_base_term purposes. */
770 cselib_sp_based_value_p (cselib_val
*v
)
772 return SP_BASED_VALUE_P (v
->val_rtx
);
775 /* Return the mode in which a register was last set. If X is not a
776 register, return its mode. If the mode in which the register was
777 set is not known, or the value was already clobbered, return
781 cselib_reg_set_mode (const_rtx x
)
786 if (REG_VALUES (REGNO (x
)) == NULL
787 || REG_VALUES (REGNO (x
))->elt
== NULL
)
790 return GET_MODE (REG_VALUES (REGNO (x
))->elt
->val_rtx
);
793 /* If x is a PLUS or an autoinc operation, expand the operation,
794 storing the offset, if any, in *OFF. */
797 autoinc_split (rtx x
, rtx
*off
, machine_mode memmode
)
799 switch (GET_CODE (x
))
806 if (memmode
== VOIDmode
)
809 *off
= gen_int_mode (-GET_MODE_SIZE (memmode
), GET_MODE (x
));
813 if (memmode
== VOIDmode
)
816 *off
= gen_int_mode (GET_MODE_SIZE (memmode
), GET_MODE (x
));
832 /* Return nonzero if we can prove that X and Y contain the same value,
833 taking our gathered information into account. MEMMODE holds the
834 mode of the enclosing MEM, if any, as required to deal with autoinc
835 addressing modes. If X and Y are not (known to be) part of
836 addresses, MEMMODE should be VOIDmode. */
839 rtx_equal_for_cselib_1 (rtx x
, rtx y
, machine_mode memmode
, int depth
)
845 if (REG_P (x
) || MEM_P (x
))
847 cselib_val
*e
= cselib_lookup (x
, GET_MODE (x
), 0, memmode
);
853 if (REG_P (y
) || MEM_P (y
))
855 cselib_val
*e
= cselib_lookup (y
, GET_MODE (y
), 0, memmode
);
864 if (GET_CODE (x
) == VALUE
)
866 cselib_val
*e
= canonical_cselib_val (CSELIB_VAL_PTR (x
));
867 struct elt_loc_list
*l
;
869 if (GET_CODE (y
) == VALUE
)
870 return e
== canonical_cselib_val (CSELIB_VAL_PTR (y
));
875 for (l
= e
->locs
; l
; l
= l
->next
)
879 /* Avoid infinite recursion. We know we have the canonical
880 value, so we can just skip any values in the equivalence
882 if (REG_P (t
) || MEM_P (t
) || GET_CODE (t
) == VALUE
)
884 else if (rtx_equal_for_cselib_1 (t
, y
, memmode
, depth
+ 1))
890 else if (GET_CODE (y
) == VALUE
)
892 cselib_val
*e
= canonical_cselib_val (CSELIB_VAL_PTR (y
));
893 struct elt_loc_list
*l
;
898 for (l
= e
->locs
; l
; l
= l
->next
)
902 if (REG_P (t
) || MEM_P (t
) || GET_CODE (t
) == VALUE
)
904 else if (rtx_equal_for_cselib_1 (x
, t
, memmode
, depth
+ 1))
911 if (GET_MODE (x
) != GET_MODE (y
))
914 if (GET_CODE (x
) != GET_CODE (y
))
916 rtx xorig
= x
, yorig
= y
;
917 rtx xoff
= NULL
, yoff
= NULL
;
919 x
= autoinc_split (x
, &xoff
, memmode
);
920 y
= autoinc_split (y
, &yoff
, memmode
);
925 if (xoff
&& !rtx_equal_for_cselib_1 (xoff
, yoff
, memmode
, depth
))
928 /* Don't recurse if nothing changed. */
929 if (x
!= xorig
|| y
!= yorig
)
930 return rtx_equal_for_cselib_1 (x
, y
, memmode
, depth
);
935 /* These won't be handled correctly by the code below. */
936 switch (GET_CODE (x
))
942 case DEBUG_IMPLICIT_PTR
:
943 return DEBUG_IMPLICIT_PTR_DECL (x
)
944 == DEBUG_IMPLICIT_PTR_DECL (y
);
946 case DEBUG_PARAMETER_REF
:
947 return DEBUG_PARAMETER_REF_DECL (x
)
948 == DEBUG_PARAMETER_REF_DECL (y
);
951 /* ENTRY_VALUEs are function invariant, it is thus undesirable to
952 use rtx_equal_for_cselib_1 to compare the operands. */
953 return rtx_equal_p (ENTRY_VALUE_EXP (x
), ENTRY_VALUE_EXP (y
));
956 return label_ref_label (x
) == label_ref_label (y
);
959 return REGNO (x
) == REGNO (y
);
962 /* We have to compare any autoinc operations in the addresses
963 using this MEM's mode. */
964 return rtx_equal_for_cselib_1 (XEXP (x
, 0), XEXP (y
, 0), GET_MODE (x
),
972 fmt
= GET_RTX_FORMAT (code
);
974 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
981 if (XWINT (x
, i
) != XWINT (y
, i
))
987 if (XINT (x
, i
) != XINT (y
, i
))
992 if (maybe_ne (SUBREG_BYTE (x
), SUBREG_BYTE (y
)))
998 /* Two vectors must have the same length. */
999 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
1002 /* And the corresponding elements must match. */
1003 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1004 if (! rtx_equal_for_cselib_1 (XVECEXP (x
, i
, j
),
1005 XVECEXP (y
, i
, j
), memmode
, depth
))
1011 && targetm
.commutative_p (x
, UNKNOWN
)
1012 && rtx_equal_for_cselib_1 (XEXP (x
, 1), XEXP (y
, 0), memmode
,
1014 && rtx_equal_for_cselib_1 (XEXP (x
, 0), XEXP (y
, 1), memmode
,
1017 if (! rtx_equal_for_cselib_1 (XEXP (x
, i
), XEXP (y
, i
), memmode
,
1024 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
1029 /* These are just backpointers, so they don't matter. */
1036 /* It is believed that rtx's at this level will never
1037 contain anything but integers and other rtx's,
1038 except for within LABEL_REFs and SYMBOL_REFs. */
1046 /* Hash an rtx. Return 0 if we couldn't hash the rtx.
1047 For registers and memory locations, we look up their cselib_val structure
1048 and return its VALUE element.
1049 Possible reasons for return 0 are: the object is volatile, or we couldn't
1050 find a register or memory location in the table and CREATE is zero. If
1051 CREATE is nonzero, table elts are created for regs and mem.
1052 N.B. this hash function returns the same hash value for RTXes that
1053 differ only in the order of operands, thus it is suitable for comparisons
1054 that take commutativity into account.
1055 If we wanted to also support associative rules, we'd have to use a different
1056 strategy to avoid returning spurious 0, e.g. return ~(~0U >> 1) .
1057 MEMMODE indicates the mode of an enclosing MEM, and it's only
1058 used to compute autoinc values.
1059 We used to have a MODE argument for hashing for CONST_INTs, but that
1060 didn't make sense, since it caused spurious hash differences between
1061 (set (reg:SI 1) (const_int))
1062 (plus:SI (reg:SI 2) (reg:SI 1))
1064 (plus:SI (reg:SI 2) (const_int))
1065 If the mode is important in any context, it must be checked specifically
1066 in a comparison anyway, since relying on hash differences is unsafe. */
1069 cselib_hash_rtx (rtx x
, int create
, machine_mode memmode
)
1076 unsigned int hash
= 0;
1078 code
= GET_CODE (x
);
1079 hash
+= (unsigned) code
+ (unsigned) GET_MODE (x
);
1084 e
= CSELIB_VAL_PTR (x
);
1089 e
= cselib_lookup (x
, GET_MODE (x
), create
, memmode
);
1096 hash
+= ((unsigned) DEBUG_EXPR
<< 7)
1097 + DEBUG_TEMP_UID (DEBUG_EXPR_TREE_DECL (x
));
1098 return hash
? hash
: (unsigned int) DEBUG_EXPR
;
1100 case DEBUG_IMPLICIT_PTR
:
1101 hash
+= ((unsigned) DEBUG_IMPLICIT_PTR
<< 7)
1102 + DECL_UID (DEBUG_IMPLICIT_PTR_DECL (x
));
1103 return hash
? hash
: (unsigned int) DEBUG_IMPLICIT_PTR
;
1105 case DEBUG_PARAMETER_REF
:
1106 hash
+= ((unsigned) DEBUG_PARAMETER_REF
<< 7)
1107 + DECL_UID (DEBUG_PARAMETER_REF_DECL (x
));
1108 return hash
? hash
: (unsigned int) DEBUG_PARAMETER_REF
;
1111 /* ENTRY_VALUEs are function invariant, thus try to avoid
1112 recursing on argument if ENTRY_VALUE is one of the
1113 forms emitted by expand_debug_expr, otherwise
1114 ENTRY_VALUE hash would depend on the current value
1115 in some register or memory. */
1116 if (REG_P (ENTRY_VALUE_EXP (x
)))
1117 hash
+= (unsigned int) REG
1118 + (unsigned int) GET_MODE (ENTRY_VALUE_EXP (x
))
1119 + (unsigned int) REGNO (ENTRY_VALUE_EXP (x
));
1120 else if (MEM_P (ENTRY_VALUE_EXP (x
))
1121 && REG_P (XEXP (ENTRY_VALUE_EXP (x
), 0)))
1122 hash
+= (unsigned int) MEM
1123 + (unsigned int) GET_MODE (XEXP (ENTRY_VALUE_EXP (x
), 0))
1124 + (unsigned int) REGNO (XEXP (ENTRY_VALUE_EXP (x
), 0));
1126 hash
+= cselib_hash_rtx (ENTRY_VALUE_EXP (x
), create
, memmode
);
1127 return hash
? hash
: (unsigned int) ENTRY_VALUE
;
1130 hash
+= ((unsigned) CONST_INT
<< 7) + UINTVAL (x
);
1131 return hash
? hash
: (unsigned int) CONST_INT
;
1133 case CONST_WIDE_INT
:
1134 for (i
= 0; i
< CONST_WIDE_INT_NUNITS (x
); i
++)
1135 hash
+= CONST_WIDE_INT_ELT (x
, i
);
1138 case CONST_POLY_INT
:
1142 for (unsigned int i
= 0; i
< NUM_POLY_INT_COEFFS
; ++i
)
1143 h
.add_wide_int (CONST_POLY_INT_COEFFS (x
)[i
]);
1148 /* This is like the general case, except that it only counts
1149 the integers representing the constant. */
1150 hash
+= (unsigned) code
+ (unsigned) GET_MODE (x
);
1151 if (TARGET_SUPPORTS_WIDE_INT
== 0 && GET_MODE (x
) == VOIDmode
)
1152 hash
+= ((unsigned) CONST_DOUBLE_LOW (x
)
1153 + (unsigned) CONST_DOUBLE_HIGH (x
));
1155 hash
+= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
1156 return hash
? hash
: (unsigned int) CONST_DOUBLE
;
1159 hash
+= (unsigned int) code
+ (unsigned int) GET_MODE (x
);
1160 hash
+= fixed_hash (CONST_FIXED_VALUE (x
));
1161 return hash
? hash
: (unsigned int) CONST_FIXED
;
1168 units
= const_vector_encoded_nelts (x
);
1170 for (i
= 0; i
< units
; ++i
)
1172 elt
= CONST_VECTOR_ENCODED_ELT (x
, i
);
1173 hash
+= cselib_hash_rtx (elt
, 0, memmode
);
1179 /* Assume there is only one rtx object for any given label. */
1181 /* We don't hash on the address of the CODE_LABEL to avoid bootstrap
1182 differences and differences between each stage's debugging dumps. */
1183 hash
+= (((unsigned int) LABEL_REF
<< 7)
1184 + CODE_LABEL_NUMBER (label_ref_label (x
)));
1185 return hash
? hash
: (unsigned int) LABEL_REF
;
1189 /* Don't hash on the symbol's address to avoid bootstrap differences.
1190 Different hash values may cause expressions to be recorded in
1191 different orders and thus different registers to be used in the
1192 final assembler. This also avoids differences in the dump files
1193 between various stages. */
1195 const unsigned char *p
= (const unsigned char *) XSTR (x
, 0);
1198 h
+= (h
<< 7) + *p
++; /* ??? revisit */
1200 hash
+= ((unsigned int) SYMBOL_REF
<< 7) + h
;
1201 return hash
? hash
: (unsigned int) SYMBOL_REF
;
1206 /* We can't compute these without knowing the MEM mode. */
1207 gcc_assert (memmode
!= VOIDmode
);
1208 offset
= GET_MODE_SIZE (memmode
);
1209 if (code
== PRE_DEC
)
1211 /* Adjust the hash so that (mem:MEMMODE (pre_* (reg))) hashes
1212 like (mem:MEMMODE (plus (reg) (const_int I))). */
1213 hash
+= (unsigned) PLUS
- (unsigned)code
1214 + cselib_hash_rtx (XEXP (x
, 0), create
, memmode
)
1215 + cselib_hash_rtx (gen_int_mode (offset
, GET_MODE (x
)),
1217 return hash
? hash
: 1 + (unsigned) PLUS
;
1220 gcc_assert (memmode
!= VOIDmode
);
1221 return cselib_hash_rtx (XEXP (x
, 1), create
, memmode
);
1226 gcc_assert (memmode
!= VOIDmode
);
1227 return cselib_hash_rtx (XEXP (x
, 0), create
, memmode
);
1232 case UNSPEC_VOLATILE
:
1236 if (MEM_VOLATILE_P (x
))
1245 i
= GET_RTX_LENGTH (code
) - 1;
1246 fmt
= GET_RTX_FORMAT (code
);
1253 rtx tem
= XEXP (x
, i
);
1254 unsigned int tem_hash
= cselib_hash_rtx (tem
, create
, memmode
);
1263 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1265 unsigned int tem_hash
1266 = cselib_hash_rtx (XVECEXP (x
, i
, j
), create
, memmode
);
1277 const unsigned char *p
= (const unsigned char *) XSTR (x
, i
);
1286 hash
+= XINT (x
, i
);
1290 hash
+= constant_lower_bound (SUBREG_BYTE (x
));
1303 return hash
? hash
: 1 + (unsigned int) GET_CODE (x
);
1306 /* Create a new value structure for VALUE and initialize it. The mode of the
1309 static inline cselib_val
*
1310 new_cselib_val (unsigned int hash
, machine_mode mode
, rtx x
)
1312 cselib_val
*e
= cselib_val_pool
.allocate ();
1315 gcc_assert (next_uid
);
1318 e
->uid
= next_uid
++;
1319 /* We use an alloc pool to allocate this RTL construct because it
1320 accounts for about 8% of the overall memory usage. We know
1321 precisely when we can have VALUE RTXen (when cselib is active)
1322 so we don't need to put them in garbage collected memory.
1323 ??? Why should a VALUE be an RTX in the first place? */
1324 e
->val_rtx
= (rtx_def
*) value_pool
.allocate ();
1325 memset (e
->val_rtx
, 0, RTX_HDR_SIZE
);
1326 PUT_CODE (e
->val_rtx
, VALUE
);
1327 PUT_MODE (e
->val_rtx
, mode
);
1328 CSELIB_VAL_PTR (e
->val_rtx
) = e
;
1331 e
->next_containing_mem
= 0;
1333 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1335 fprintf (dump_file
, "cselib value %u:%u ", e
->uid
, hash
);
1336 if (flag_dump_noaddr
|| flag_dump_unnumbered
)
1337 fputs ("# ", dump_file
);
1339 fprintf (dump_file
, "%p ", (void*)e
);
1340 print_rtl_single (dump_file
, x
);
1341 fputc ('\n', dump_file
);
1347 /* ADDR_ELT is a value that is used as address. MEM_ELT is the value that
1348 contains the data at this address. X is a MEM that represents the
1349 value. Update the two value structures to represent this situation. */
1352 add_mem_for_addr (cselib_val
*addr_elt
, cselib_val
*mem_elt
, rtx x
)
1354 addr_elt
= canonical_cselib_val (addr_elt
);
1355 mem_elt
= canonical_cselib_val (mem_elt
);
1357 /* Avoid duplicates. */
1358 addr_space_t as
= MEM_ADDR_SPACE (x
);
1359 for (elt_loc_list
*l
= mem_elt
->locs
; l
; l
= l
->next
)
1361 && CSELIB_VAL_PTR (XEXP (l
->loc
, 0)) == addr_elt
1362 && MEM_ADDR_SPACE (l
->loc
) == as
)
1364 promote_debug_loc (l
);
1368 addr_elt
->addr_list
= new_elt_list (addr_elt
->addr_list
, mem_elt
);
1369 new_elt_loc_list (mem_elt
,
1370 replace_equiv_address_nv (x
, addr_elt
->val_rtx
));
1371 if (mem_elt
->next_containing_mem
== NULL
)
1373 mem_elt
->next_containing_mem
= first_containing_mem
;
1374 first_containing_mem
= mem_elt
;
1378 /* Subroutine of cselib_lookup. Return a value for X, which is a MEM rtx.
1379 If CREATE, make a new one if we haven't seen it before. */
1382 cselib_lookup_mem (rtx x
, int create
)
1384 machine_mode mode
= GET_MODE (x
);
1385 machine_mode addr_mode
;
1388 cselib_val
*mem_elt
;
1390 if (MEM_VOLATILE_P (x
) || mode
== BLKmode
1391 || !cselib_record_memory
1392 || (FLOAT_MODE_P (mode
) && flag_float_store
))
1395 addr_mode
= GET_MODE (XEXP (x
, 0));
1396 if (addr_mode
== VOIDmode
)
1399 /* Look up the value for the address. */
1400 addr
= cselib_lookup (XEXP (x
, 0), addr_mode
, create
, mode
);
1403 addr
= canonical_cselib_val (addr
);
1405 /* Find a value that describes a value of our mode at that address. */
1406 addr_space_t as
= MEM_ADDR_SPACE (x
);
1407 for (elt_list
*l
= addr
->addr_list
; l
; l
= l
->next
)
1408 if (GET_MODE (l
->elt
->val_rtx
) == mode
)
1410 for (elt_loc_list
*l2
= l
->elt
->locs
; l2
; l2
= l2
->next
)
1411 if (MEM_P (l2
->loc
) && MEM_ADDR_SPACE (l2
->loc
) == as
)
1413 promote_debug_loc (l
->elt
->locs
);
1421 mem_elt
= new_cselib_val (next_uid
, mode
, x
);
1422 add_mem_for_addr (addr
, mem_elt
, x
);
1423 slot
= cselib_find_slot (mode
, x
, mem_elt
->hash
, INSERT
, VOIDmode
);
1428 /* Search through the possible substitutions in P. We prefer a non reg
1429 substitution because this allows us to expand the tree further. If
1430 we find, just a reg, take the lowest regno. There may be several
1431 non-reg results, we just take the first one because they will all
1432 expand to the same place. */
1435 expand_loc (struct elt_loc_list
*p
, struct expand_value_data
*evd
,
1438 rtx reg_result
= NULL
;
1439 unsigned int regno
= UINT_MAX
;
1440 struct elt_loc_list
*p_in
= p
;
1442 for (; p
; p
= p
->next
)
1444 /* Return these right away to avoid returning stack pointer based
1445 expressions for frame pointer and vice versa, which is something
1446 that would confuse DSE. See the comment in cselib_expand_value_rtx_1
1447 for more details. */
1449 && (REGNO (p
->loc
) == STACK_POINTER_REGNUM
1450 || REGNO (p
->loc
) == FRAME_POINTER_REGNUM
1451 || REGNO (p
->loc
) == HARD_FRAME_POINTER_REGNUM
1452 || REGNO (p
->loc
) == cfa_base_preserved_regno
))
1454 /* Avoid infinite recursion trying to expand a reg into a
1456 if ((REG_P (p
->loc
))
1457 && (REGNO (p
->loc
) < regno
)
1458 && !bitmap_bit_p (evd
->regs_active
, REGNO (p
->loc
)))
1460 reg_result
= p
->loc
;
1461 regno
= REGNO (p
->loc
);
1463 /* Avoid infinite recursion and do not try to expand the
1465 else if (GET_CODE (p
->loc
) == VALUE
1466 && CSELIB_VAL_PTR (p
->loc
)->locs
== p_in
)
1468 else if (!REG_P (p
->loc
))
1471 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1473 print_inline_rtx (dump_file
, p
->loc
, 0);
1474 fprintf (dump_file
, "\n");
1476 if (GET_CODE (p
->loc
) == LO_SUM
1477 && GET_CODE (XEXP (p
->loc
, 1)) == SYMBOL_REF
1479 && (note
= find_reg_note (p
->setting_insn
, REG_EQUAL
, NULL_RTX
))
1480 && XEXP (note
, 0) == XEXP (p
->loc
, 1))
1481 return XEXP (p
->loc
, 1);
1482 result
= cselib_expand_value_rtx_1 (p
->loc
, evd
, max_depth
- 1);
1489 if (regno
!= UINT_MAX
)
1492 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1493 fprintf (dump_file
, "r%d\n", regno
);
1495 result
= cselib_expand_value_rtx_1 (reg_result
, evd
, max_depth
- 1);
1500 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1504 print_inline_rtx (dump_file
, reg_result
, 0);
1505 fprintf (dump_file
, "\n");
1508 fprintf (dump_file
, "NULL\n");
1514 /* Forward substitute and expand an expression out to its roots.
1515 This is the opposite of common subexpression. Because local value
1516 numbering is such a weak optimization, the expanded expression is
1517 pretty much unique (not from a pointer equals point of view but
1518 from a tree shape point of view.
1520 This function returns NULL if the expansion fails. The expansion
1521 will fail if there is no value number for one of the operands or if
1522 one of the operands has been overwritten between the current insn
1523 and the beginning of the basic block. For instance x has no
1529 REGS_ACTIVE is a scratch bitmap that should be clear when passing in.
1530 It is clear on return. */
1533 cselib_expand_value_rtx (rtx orig
, bitmap regs_active
, int max_depth
)
1535 struct expand_value_data evd
;
1537 evd
.regs_active
= regs_active
;
1538 evd
.callback
= NULL
;
1539 evd
.callback_arg
= NULL
;
1542 return cselib_expand_value_rtx_1 (orig
, &evd
, max_depth
);
1545 /* Same as cselib_expand_value_rtx, but using a callback to try to
1546 resolve some expressions. The CB function should return ORIG if it
1547 can't or does not want to deal with a certain RTX. Any other
1548 return value, including NULL, will be used as the expansion for
1549 VALUE, without any further changes. */
1552 cselib_expand_value_rtx_cb (rtx orig
, bitmap regs_active
, int max_depth
,
1553 cselib_expand_callback cb
, void *data
)
1555 struct expand_value_data evd
;
1557 evd
.regs_active
= regs_active
;
1559 evd
.callback_arg
= data
;
1562 return cselib_expand_value_rtx_1 (orig
, &evd
, max_depth
);
1565 /* Similar to cselib_expand_value_rtx_cb, but no rtxs are actually copied
1566 or simplified. Useful to find out whether cselib_expand_value_rtx_cb
1567 would return NULL or non-NULL, without allocating new rtx. */
1570 cselib_dummy_expand_value_rtx_cb (rtx orig
, bitmap regs_active
, int max_depth
,
1571 cselib_expand_callback cb
, void *data
)
1573 struct expand_value_data evd
;
1575 evd
.regs_active
= regs_active
;
1577 evd
.callback_arg
= data
;
1580 return cselib_expand_value_rtx_1 (orig
, &evd
, max_depth
) != NULL
;
1583 /* Internal implementation of cselib_expand_value_rtx and
1584 cselib_expand_value_rtx_cb. */
1587 cselib_expand_value_rtx_1 (rtx orig
, struct expand_value_data
*evd
,
1593 const char *format_ptr
;
1596 code
= GET_CODE (orig
);
1598 /* For the context of dse, if we end up expand into a huge tree, we
1599 will not have a useful address, so we might as well just give up
1608 struct elt_list
*l
= REG_VALUES (REGNO (orig
));
1610 if (l
&& l
->elt
== NULL
)
1612 for (; l
; l
= l
->next
)
1613 if (GET_MODE (l
->elt
->val_rtx
) == GET_MODE (orig
))
1616 unsigned regno
= REGNO (orig
);
1618 /* The only thing that we are not willing to do (this
1619 is requirement of dse and if others potential uses
1620 need this function we should add a parm to control
1621 it) is that we will not substitute the
1622 STACK_POINTER_REGNUM, FRAME_POINTER or the
1625 These expansions confuses the code that notices that
1626 stores into the frame go dead at the end of the
1627 function and that the frame is not effected by calls
1628 to subroutines. If you allow the
1629 STACK_POINTER_REGNUM substitution, then dse will
1630 think that parameter pushing also goes dead which is
1631 wrong. If you allow the FRAME_POINTER or the
1632 HARD_FRAME_POINTER then you lose the opportunity to
1633 make the frame assumptions. */
1634 if (regno
== STACK_POINTER_REGNUM
1635 || regno
== FRAME_POINTER_REGNUM
1636 || regno
== HARD_FRAME_POINTER_REGNUM
1637 || regno
== cfa_base_preserved_regno
)
1640 bitmap_set_bit (evd
->regs_active
, regno
);
1642 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1643 fprintf (dump_file
, "expanding: r%d into: ", regno
);
1645 result
= expand_loc (l
->elt
->locs
, evd
, max_depth
);
1646 bitmap_clear_bit (evd
->regs_active
, regno
);
1662 /* SCRATCH must be shared because they represent distinct values. */
1666 if (REG_P (XEXP (orig
, 0)) && HARD_REGISTER_NUM_P (REGNO (XEXP (orig
, 0))))
1671 if (shared_const_p (orig
))
1681 subreg
= evd
->callback (orig
, evd
->regs_active
, max_depth
,
1687 subreg
= cselib_expand_value_rtx_1 (SUBREG_REG (orig
), evd
,
1691 scopy
= simplify_gen_subreg (GET_MODE (orig
), subreg
,
1692 GET_MODE (SUBREG_REG (orig
)),
1693 SUBREG_BYTE (orig
));
1695 || (GET_CODE (scopy
) == SUBREG
1696 && !REG_P (SUBREG_REG (scopy
))
1697 && !MEM_P (SUBREG_REG (scopy
))))
1707 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1709 fputs ("\nexpanding ", dump_file
);
1710 print_rtl_single (dump_file
, orig
);
1711 fputs (" into...", dump_file
);
1716 result
= evd
->callback (orig
, evd
->regs_active
, max_depth
,
1723 result
= expand_loc (CSELIB_VAL_PTR (orig
)->locs
, evd
, max_depth
);
1729 return evd
->callback (orig
, evd
->regs_active
, max_depth
,
1737 /* Copy the various flags, fields, and other information. We assume
1738 that all fields need copying, and then clear the fields that should
1739 not be copied. That is the sensible default behavior, and forces
1740 us to explicitly document why we are *not* copying a flag. */
1744 copy
= shallow_copy_rtx (orig
);
1746 format_ptr
= GET_RTX_FORMAT (code
);
1748 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
1749 switch (*format_ptr
++)
1752 if (XEXP (orig
, i
) != NULL
)
1754 rtx result
= cselib_expand_value_rtx_1 (XEXP (orig
, i
), evd
,
1759 XEXP (copy
, i
) = result
;
1765 if (XVEC (orig
, i
) != NULL
)
1768 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
1769 for (j
= 0; j
< XVECLEN (orig
, i
); j
++)
1771 rtx result
= cselib_expand_value_rtx_1 (XVECEXP (orig
, i
, j
),
1772 evd
, max_depth
- 1);
1776 XVECEXP (copy
, i
, j
) = result
;
1790 /* These are left unchanged. */
1800 mode
= GET_MODE (copy
);
1801 /* If an operand has been simplified into CONST_INT, which doesn't
1802 have a mode and the mode isn't derivable from whole rtx's mode,
1803 try simplify_*_operation first with mode from original's operand
1804 and as a fallback wrap CONST_INT into gen_rtx_CONST. */
1806 switch (GET_RTX_CLASS (code
))
1809 if (CONST_INT_P (XEXP (copy
, 0))
1810 && GET_MODE (XEXP (orig
, 0)) != VOIDmode
)
1812 scopy
= simplify_unary_operation (code
, mode
, XEXP (copy
, 0),
1813 GET_MODE (XEXP (orig
, 0)));
1818 case RTX_COMM_ARITH
:
1820 /* These expressions can derive operand modes from the whole rtx's mode. */
1823 case RTX_BITFIELD_OPS
:
1824 if (CONST_INT_P (XEXP (copy
, 0))
1825 && GET_MODE (XEXP (orig
, 0)) != VOIDmode
)
1827 scopy
= simplify_ternary_operation (code
, mode
,
1828 GET_MODE (XEXP (orig
, 0)),
1829 XEXP (copy
, 0), XEXP (copy
, 1),
1836 case RTX_COMM_COMPARE
:
1837 if (CONST_INT_P (XEXP (copy
, 0))
1838 && GET_MODE (XEXP (copy
, 1)) == VOIDmode
1839 && (GET_MODE (XEXP (orig
, 0)) != VOIDmode
1840 || GET_MODE (XEXP (orig
, 1)) != VOIDmode
))
1842 scopy
= simplify_relational_operation (code
, mode
,
1843 (GET_MODE (XEXP (orig
, 0))
1845 ? GET_MODE (XEXP (orig
, 0))
1846 : GET_MODE (XEXP (orig
, 1)),
1856 scopy
= simplify_rtx (copy
);
1862 /* Walk rtx X and replace all occurrences of REG and MEM subexpressions
1863 with VALUE expressions. This way, it becomes independent of changes
1864 to registers and memory.
1865 X isn't actually modified; if modifications are needed, new rtl is
1866 allocated. However, the return value can share rtl with X.
1867 If X is within a MEM, MEMMODE must be the mode of the MEM. */
1870 cselib_subst_to_values (rtx x
, machine_mode memmode
)
1872 enum rtx_code code
= GET_CODE (x
);
1873 const char *fmt
= GET_RTX_FORMAT (code
);
1883 l
= REG_VALUES (REGNO (x
));
1884 if (l
&& l
->elt
== NULL
)
1886 for (; l
; l
= l
->next
)
1887 if (GET_MODE (l
->elt
->val_rtx
) == GET_MODE (x
))
1888 return l
->elt
->val_rtx
;
1893 e
= cselib_lookup_mem (x
, 0);
1894 /* This used to happen for autoincrements, but we deal with them
1895 properly now. Remove the if stmt for the next release. */
1898 /* Assign a value that doesn't match any other. */
1899 e
= new_cselib_val (next_uid
, GET_MODE (x
), x
);
1904 e
= cselib_lookup (x
, GET_MODE (x
), 0, memmode
);
1914 gcc_assert (memmode
!= VOIDmode
);
1915 offset
= GET_MODE_SIZE (memmode
);
1916 if (code
== PRE_DEC
)
1918 return cselib_subst_to_values (plus_constant (GET_MODE (x
),
1919 XEXP (x
, 0), offset
),
1923 gcc_assert (memmode
!= VOIDmode
);
1924 return cselib_subst_to_values (XEXP (x
, 1), memmode
);
1929 gcc_assert (memmode
!= VOIDmode
);
1930 return cselib_subst_to_values (XEXP (x
, 0), memmode
);
1936 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1940 rtx t
= cselib_subst_to_values (XEXP (x
, i
), memmode
);
1942 if (t
!= XEXP (x
, i
))
1945 copy
= shallow_copy_rtx (x
);
1949 else if (fmt
[i
] == 'E')
1953 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1955 rtx t
= cselib_subst_to_values (XVECEXP (x
, i
, j
), memmode
);
1957 if (t
!= XVECEXP (x
, i
, j
))
1959 if (XVEC (x
, i
) == XVEC (copy
, i
))
1962 copy
= shallow_copy_rtx (x
);
1963 XVEC (copy
, i
) = shallow_copy_rtvec (XVEC (x
, i
));
1965 XVECEXP (copy
, i
, j
) = t
;
1974 /* Wrapper for cselib_subst_to_values, that indicates X is in INSN. */
1977 cselib_subst_to_values_from_insn (rtx x
, machine_mode memmode
, rtx_insn
*insn
)
1980 gcc_assert (!cselib_current_insn
);
1981 cselib_current_insn
= insn
;
1982 ret
= cselib_subst_to_values (x
, memmode
);
1983 cselib_current_insn
= NULL
;
1987 /* Look up the rtl expression X in our tables and return the value it
1988 has. If CREATE is zero, we return NULL if we don't know the value.
1989 Otherwise, we create a new one if possible, using mode MODE if X
1990 doesn't have a mode (i.e. because it's a constant). When X is part
1991 of an address, MEMMODE should be the mode of the enclosing MEM if
1992 we're tracking autoinc expressions. */
1995 cselib_lookup_1 (rtx x
, machine_mode mode
,
1996 int create
, machine_mode memmode
)
2000 unsigned int hashval
;
2002 if (GET_MODE (x
) != VOIDmode
)
2003 mode
= GET_MODE (x
);
2005 if (GET_CODE (x
) == VALUE
)
2006 return CSELIB_VAL_PTR (x
);
2011 unsigned int i
= REGNO (x
);
2014 if (l
&& l
->elt
== NULL
)
2016 for (; l
; l
= l
->next
)
2017 if (mode
== GET_MODE (l
->elt
->val_rtx
))
2019 promote_debug_loc (l
->elt
->locs
);
2026 if (i
< FIRST_PSEUDO_REGISTER
)
2028 unsigned int n
= hard_regno_nregs (i
, mode
);
2030 if (n
> max_value_regs
)
2034 e
= new_cselib_val (next_uid
, GET_MODE (x
), x
);
2035 new_elt_loc_list (e
, x
);
2037 scalar_int_mode int_mode
;
2038 if (REG_VALUES (i
) == 0)
2040 /* Maintain the invariant that the first entry of
2041 REG_VALUES, if present, must be the value used to set the
2042 register, or NULL. */
2043 used_regs
[n_used_regs
++] = i
;
2044 REG_VALUES (i
) = new_elt_list (REG_VALUES (i
), NULL
);
2046 else if (cselib_preserve_constants
2047 && is_int_mode (mode
, &int_mode
))
2049 /* During var-tracking, try harder to find equivalences
2050 for SUBREGs. If a setter sets say a DImode register
2051 and user uses that register only in SImode, add a lowpart
2053 struct elt_list
*lwider
= NULL
;
2054 scalar_int_mode lmode
;
2056 if (l
&& l
->elt
== NULL
)
2058 for (; l
; l
= l
->next
)
2059 if (is_int_mode (GET_MODE (l
->elt
->val_rtx
), &lmode
)
2060 && GET_MODE_SIZE (lmode
) > GET_MODE_SIZE (int_mode
)
2062 || partial_subreg_p (lmode
,
2063 GET_MODE (lwider
->elt
->val_rtx
))))
2065 struct elt_loc_list
*el
;
2066 if (i
< FIRST_PSEUDO_REGISTER
2067 && hard_regno_nregs (i
, lmode
) != 1)
2069 for (el
= l
->elt
->locs
; el
; el
= el
->next
)
2070 if (!REG_P (el
->loc
))
2077 rtx sub
= lowpart_subreg (int_mode
, lwider
->elt
->val_rtx
,
2078 GET_MODE (lwider
->elt
->val_rtx
));
2080 new_elt_loc_list (e
, sub
);
2083 REG_VALUES (i
)->next
= new_elt_list (REG_VALUES (i
)->next
, e
);
2084 slot
= cselib_find_slot (mode
, x
, e
->hash
, INSERT
, memmode
);
2090 return cselib_lookup_mem (x
, create
);
2092 hashval
= cselib_hash_rtx (x
, create
, memmode
);
2093 /* Can't even create if hashing is not possible. */
2097 slot
= cselib_find_slot (mode
, x
, hashval
,
2098 create
? INSERT
: NO_INSERT
, memmode
);
2102 e
= (cselib_val
*) *slot
;
2106 e
= new_cselib_val (hashval
, mode
, x
);
2108 /* We have to fill the slot before calling cselib_subst_to_values:
2109 the hash table is inconsistent until we do so, and
2110 cselib_subst_to_values will need to do lookups. */
2112 new_elt_loc_list (e
, cselib_subst_to_values (x
, memmode
));
2116 /* Wrapper for cselib_lookup, that indicates X is in INSN. */
2119 cselib_lookup_from_insn (rtx x
, machine_mode mode
,
2120 int create
, machine_mode memmode
, rtx_insn
*insn
)
2124 gcc_assert (!cselib_current_insn
);
2125 cselib_current_insn
= insn
;
2127 ret
= cselib_lookup (x
, mode
, create
, memmode
);
2129 cselib_current_insn
= NULL
;
2134 /* Wrapper for cselib_lookup_1, that logs the lookup result and
2135 maintains invariants related with debug insns. */
2138 cselib_lookup (rtx x
, machine_mode mode
,
2139 int create
, machine_mode memmode
)
2141 cselib_val
*ret
= cselib_lookup_1 (x
, mode
, create
, memmode
);
2143 /* ??? Should we return NULL if we're not to create an entry, the
2144 found loc is a debug loc and cselib_current_insn is not DEBUG?
2145 If so, we should also avoid converting val to non-DEBUG; probably
2146 easiest setting cselib_current_insn to NULL before the call
2149 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
2151 fputs ("cselib lookup ", dump_file
);
2152 print_inline_rtx (dump_file
, x
, 2);
2153 fprintf (dump_file
, " => %u:%u\n",
2155 ret
? ret
->hash
: 0);
2161 /* Invalidate any entries in reg_values that overlap REGNO. This is called
2162 if REGNO is changing. MODE is the mode of the assignment to REGNO, which
2163 is used to determine how many hard registers are being changed. If MODE
2164 is VOIDmode, then only REGNO is being changed; this is used when
2165 invalidating call clobbered registers across a call. */
2168 cselib_invalidate_regno (unsigned int regno
, machine_mode mode
,
2171 unsigned int endregno
;
2174 /* If we see pseudos after reload, something is _wrong_. */
2175 gcc_assert (!reload_completed
|| regno
< FIRST_PSEUDO_REGISTER
2176 || reg_renumber
[regno
] < 0);
2178 /* Determine the range of registers that must be invalidated. For
2179 pseudos, only REGNO is affected. For hard regs, we must take MODE
2180 into account, and we must also invalidate lower register numbers
2181 if they contain values that overlap REGNO. */
2182 if (regno
< FIRST_PSEUDO_REGISTER
)
2184 gcc_assert (mode
!= VOIDmode
);
2186 if (regno
< max_value_regs
)
2189 i
= regno
- max_value_regs
;
2191 endregno
= end_hard_regno (mode
, regno
);
2193 if (setter
&& GET_CODE (setter
) == CLOBBER_HIGH
)
2194 gcc_assert (endregno
== regno
+ 1);
2199 endregno
= regno
+ 1;
2202 for (; i
< endregno
; i
++)
2204 struct elt_list
**l
= ®_VALUES (i
);
2206 /* Go through all known values for this reg; if it overlaps the range
2207 we're invalidating, remove the value. */
2210 cselib_val
*v
= (*l
)->elt
;
2212 rtx_insn
*setting_insn
;
2213 struct elt_loc_list
**p
;
2214 unsigned int this_last
= i
;
2216 if (i
< FIRST_PSEUDO_REGISTER
&& v
!= NULL
)
2217 this_last
= end_hard_regno (GET_MODE (v
->val_rtx
), i
) - 1;
2219 if (this_last
< regno
|| v
== NULL
2220 || (v
== cfa_base_preserved_val
2221 && i
== cfa_base_preserved_regno
))
2227 /* Ignore if clobber high and the register isn't clobbered. */
2228 if (setter
&& GET_CODE (setter
) == CLOBBER_HIGH
)
2230 gcc_assert (endregno
== regno
+ 1);
2231 const_rtx x
= XEXP (setter
, 0);
2232 if (!reg_is_clobbered_by_clobber_high (i
, GET_MODE (v
->val_rtx
),
2240 /* We have an overlap. */
2241 if (*l
== REG_VALUES (i
))
2243 /* Maintain the invariant that the first entry of
2244 REG_VALUES, if present, must be the value used to set
2245 the register, or NULL. This is also nice because
2246 then we won't push the same regno onto user_regs
2252 unchain_one_elt_list (l
);
2254 v
= canonical_cselib_val (v
);
2256 had_locs
= v
->locs
!= NULL
;
2257 setting_insn
= v
->locs
? v
->locs
->setting_insn
: NULL
;
2259 /* Now, we clear the mapping from value to reg. It must exist, so
2260 this code will crash intentionally if it doesn't. */
2261 for (p
= &v
->locs
; ; p
= &(*p
)->next
)
2265 if (REG_P (x
) && REGNO (x
) == i
)
2267 unchain_one_elt_loc_list (p
);
2272 if (had_locs
&& v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
2274 if (setting_insn
&& DEBUG_INSN_P (setting_insn
))
2275 n_useless_debug_values
++;
2283 /* Invalidate any locations in the table which are changed because of a
2284 store to MEM_RTX. If this is called because of a non-const call
2285 instruction, MEM_RTX is (mem:BLK const0_rtx). */
2288 cselib_invalidate_mem (rtx mem_rtx
)
2290 cselib_val
**vp
, *v
, *next
;
2294 mem_addr
= canon_rtx (get_addr (XEXP (mem_rtx
, 0)));
2295 mem_rtx
= canon_rtx (mem_rtx
);
2297 vp
= &first_containing_mem
;
2298 for (v
= *vp
; v
!= &dummy_val
; v
= next
)
2300 bool has_mem
= false;
2301 struct elt_loc_list
**p
= &v
->locs
;
2302 bool had_locs
= v
->locs
!= NULL
;
2303 rtx_insn
*setting_insn
= v
->locs
? v
->locs
->setting_insn
: NULL
;
2309 struct elt_list
**mem_chain
;
2311 /* MEMs may occur in locations only at the top level; below
2312 that every MEM or REG is substituted by its VALUE. */
2318 if (num_mems
< PARAM_VALUE (PARAM_MAX_CSELIB_MEMORY_LOCATIONS
)
2319 && ! canon_anti_dependence (x
, false, mem_rtx
,
2320 GET_MODE (mem_rtx
), mem_addr
))
2328 /* This one overlaps. */
2329 /* We must have a mapping from this MEM's address to the
2330 value (E). Remove that, too. */
2331 addr
= cselib_lookup (XEXP (x
, 0), VOIDmode
, 0, GET_MODE (x
));
2332 addr
= canonical_cselib_val (addr
);
2333 gcc_checking_assert (v
== canonical_cselib_val (v
));
2334 mem_chain
= &addr
->addr_list
;
2337 cselib_val
*canon
= canonical_cselib_val ((*mem_chain
)->elt
);
2341 unchain_one_elt_list (mem_chain
);
2345 /* Record canonicalized elt. */
2346 (*mem_chain
)->elt
= canon
;
2348 mem_chain
= &(*mem_chain
)->next
;
2351 unchain_one_elt_loc_list (p
);
2354 if (had_locs
&& v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
2356 if (setting_insn
&& DEBUG_INSN_P (setting_insn
))
2357 n_useless_debug_values
++;
2362 next
= v
->next_containing_mem
;
2366 vp
= &(*vp
)->next_containing_mem
;
2369 v
->next_containing_mem
= NULL
;
2374 /* Invalidate DEST, which is being assigned to or clobbered by SETTER. */
2377 cselib_invalidate_rtx (rtx dest
, const_rtx setter
)
2379 while (GET_CODE (dest
) == SUBREG
2380 || GET_CODE (dest
) == ZERO_EXTRACT
2381 || GET_CODE (dest
) == STRICT_LOW_PART
)
2382 dest
= XEXP (dest
, 0);
2385 cselib_invalidate_regno (REGNO (dest
), GET_MODE (dest
), setter
);
2386 else if (MEM_P (dest
))
2387 cselib_invalidate_mem (dest
);
2390 /* A wrapper for cselib_invalidate_rtx to be called via note_stores. */
2393 cselib_invalidate_rtx_note_stores (rtx dest
, const_rtx setter
,
2394 void *data ATTRIBUTE_UNUSED
)
2396 cselib_invalidate_rtx (dest
, setter
);
2399 /* Record the result of a SET instruction. DEST is being set; the source
2400 contains the value described by SRC_ELT. If DEST is a MEM, DEST_ADDR_ELT
2401 describes its address. */
2404 cselib_record_set (rtx dest
, cselib_val
*src_elt
, cselib_val
*dest_addr_elt
)
2406 if (src_elt
== 0 || side_effects_p (dest
))
2411 unsigned int dreg
= REGNO (dest
);
2412 if (dreg
< FIRST_PSEUDO_REGISTER
)
2414 unsigned int n
= REG_NREGS (dest
);
2416 if (n
> max_value_regs
)
2420 if (REG_VALUES (dreg
) == 0)
2422 used_regs
[n_used_regs
++] = dreg
;
2423 REG_VALUES (dreg
) = new_elt_list (REG_VALUES (dreg
), src_elt
);
2427 /* The register should have been invalidated. */
2428 gcc_assert (REG_VALUES (dreg
)->elt
== 0);
2429 REG_VALUES (dreg
)->elt
= src_elt
;
2432 if (src_elt
->locs
== 0 && !PRESERVED_VALUE_P (src_elt
->val_rtx
))
2434 new_elt_loc_list (src_elt
, dest
);
2436 else if (MEM_P (dest
) && dest_addr_elt
!= 0
2437 && cselib_record_memory
)
2439 if (src_elt
->locs
== 0 && !PRESERVED_VALUE_P (src_elt
->val_rtx
))
2441 add_mem_for_addr (dest_addr_elt
, src_elt
, dest
);
2445 /* Make ELT and X's VALUE equivalent to each other at INSN. */
2448 cselib_add_permanent_equiv (cselib_val
*elt
, rtx x
, rtx_insn
*insn
)
2451 rtx_insn
*save_cselib_current_insn
= cselib_current_insn
;
2453 gcc_checking_assert (elt
);
2454 gcc_checking_assert (PRESERVED_VALUE_P (elt
->val_rtx
));
2455 gcc_checking_assert (!side_effects_p (x
));
2457 cselib_current_insn
= insn
;
2459 nelt
= cselib_lookup (x
, GET_MODE (elt
->val_rtx
), 1, VOIDmode
);
2463 cselib_any_perm_equivs
= true;
2465 if (!PRESERVED_VALUE_P (nelt
->val_rtx
))
2466 cselib_preserve_value (nelt
);
2468 new_elt_loc_list (nelt
, elt
->val_rtx
);
2471 cselib_current_insn
= save_cselib_current_insn
;
2474 /* Return TRUE if any permanent equivalences have been recorded since
2475 the table was last initialized. */
2477 cselib_have_permanent_equivalences (void)
2479 return cselib_any_perm_equivs
;
2482 /* There is no good way to determine how many elements there can be
2483 in a PARALLEL. Since it's fairly cheap, use a really large number. */
2484 #define MAX_SETS (FIRST_PSEUDO_REGISTER * 2)
2486 struct cselib_record_autoinc_data
2488 struct cselib_set
*sets
;
2492 /* Callback for for_each_inc_dec. Records in ARG the SETs implied by
2493 autoinc RTXs: SRC plus SRCOFF if non-NULL is stored in DEST. */
2496 cselib_record_autoinc_cb (rtx mem ATTRIBUTE_UNUSED
, rtx op ATTRIBUTE_UNUSED
,
2497 rtx dest
, rtx src
, rtx srcoff
, void *arg
)
2499 struct cselib_record_autoinc_data
*data
;
2500 data
= (struct cselib_record_autoinc_data
*)arg
;
2502 data
->sets
[data
->n_sets
].dest
= dest
;
2505 data
->sets
[data
->n_sets
].src
= gen_rtx_PLUS (GET_MODE (src
), src
, srcoff
);
2507 data
->sets
[data
->n_sets
].src
= src
;
2514 /* Record the effects of any sets and autoincs in INSN. */
2516 cselib_record_sets (rtx_insn
*insn
)
2520 struct cselib_set sets
[MAX_SETS
];
2522 int n_sets_before_autoinc
;
2523 int n_strict_low_parts
= 0;
2524 struct cselib_record_autoinc_data data
;
2526 rtx body
= PATTERN (insn
);
2527 if (GET_CODE (body
) == COND_EXEC
)
2529 cond
= COND_EXEC_TEST (body
);
2530 body
= COND_EXEC_CODE (body
);
2533 /* Find all sets. */
2534 if (GET_CODE (body
) == SET
)
2536 sets
[0].src
= SET_SRC (body
);
2537 sets
[0].dest
= SET_DEST (body
);
2540 else if (GET_CODE (body
) == PARALLEL
)
2542 /* Look through the PARALLEL and record the values being
2543 set, if possible. Also handle any CLOBBERs. */
2544 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; --i
)
2546 rtx x
= XVECEXP (body
, 0, i
);
2548 if (GET_CODE (x
) == SET
)
2550 sets
[n_sets
].src
= SET_SRC (x
);
2551 sets
[n_sets
].dest
= SET_DEST (x
);
2558 && MEM_P (sets
[0].src
)
2559 && !cselib_record_memory
2560 && MEM_READONLY_P (sets
[0].src
))
2562 rtx note
= find_reg_equal_equiv_note (insn
);
2564 if (note
&& CONSTANT_P (XEXP (note
, 0)))
2565 sets
[0].src
= XEXP (note
, 0);
2569 data
.n_sets
= n_sets_before_autoinc
= n_sets
;
2570 for_each_inc_dec (PATTERN (insn
), cselib_record_autoinc_cb
, &data
);
2571 n_sets
= data
.n_sets
;
2573 /* Look up the values that are read. Do this before invalidating the
2574 locations that are written. */
2575 for (i
= 0; i
< n_sets
; i
++)
2577 rtx dest
= sets
[i
].dest
;
2580 /* A STRICT_LOW_PART can be ignored; we'll record the equivalence for
2581 the low part after invalidating any knowledge about larger modes. */
2582 if (GET_CODE (sets
[i
].dest
) == STRICT_LOW_PART
)
2583 sets
[i
].dest
= dest
= XEXP (dest
, 0);
2585 /* We don't know how to record anything but REG or MEM. */
2587 || (MEM_P (dest
) && cselib_record_memory
))
2589 rtx src
= sets
[i
].src
;
2591 src
= gen_rtx_IF_THEN_ELSE (GET_MODE (dest
), cond
, src
, dest
);
2592 sets
[i
].src_elt
= cselib_lookup (src
, GET_MODE (dest
), 1, VOIDmode
);
2595 machine_mode address_mode
= get_address_mode (dest
);
2597 sets
[i
].dest_addr_elt
= cselib_lookup (XEXP (dest
, 0),
2602 sets
[i
].dest_addr_elt
= 0;
2605 /* Improve handling of STRICT_LOW_PART if the current value is known
2606 to be const0_rtx, then the low bits will be set to dest and higher
2607 bits will remain zero. Used in code like:
2609 {di:SI=0;clobber flags:CC;}
2610 flags:CCNO=cmp(bx:SI,0)
2611 strict_low_part(di:QI)=flags:CCNO<=0
2613 where we can note both that di:QI=flags:CCNO<=0 and
2614 also that because di:SI is known to be 0 and strict_low_part(di:QI)
2615 preserves the upper bits that di:SI=zero_extend(flags:CCNO<=0). */
2616 scalar_int_mode mode
;
2618 && cselib_record_sets_hook
2620 && HARD_REGISTER_P (dest
)
2622 && is_a
<scalar_int_mode
> (GET_MODE (dest
), &mode
)
2623 && n_sets
+ n_strict_low_parts
< MAX_SETS
)
2625 opt_scalar_int_mode wider_mode_iter
;
2626 FOR_EACH_WIDER_MODE (wider_mode_iter
, mode
)
2628 scalar_int_mode wider_mode
= wider_mode_iter
.require ();
2629 if (GET_MODE_PRECISION (wider_mode
) > BITS_PER_WORD
)
2632 rtx reg
= gen_lowpart (wider_mode
, dest
);
2636 cselib_val
*v
= cselib_lookup (reg
, wider_mode
, 0, VOIDmode
);
2640 struct elt_loc_list
*l
;
2641 for (l
= v
->locs
; l
; l
= l
->next
)
2642 if (l
->loc
== const0_rtx
)
2648 sets
[n_sets
+ n_strict_low_parts
].dest
= reg
;
2649 sets
[n_sets
+ n_strict_low_parts
].src
= dest
;
2650 sets
[n_sets
+ n_strict_low_parts
++].src_elt
= sets
[i
].src_elt
;
2656 if (cselib_record_sets_hook
)
2657 cselib_record_sets_hook (insn
, sets
, n_sets
);
2659 /* Invalidate all locations written by this insn. Note that the elts we
2660 looked up in the previous loop aren't affected, just some of their
2661 locations may go away. */
2662 note_stores (body
, cselib_invalidate_rtx_note_stores
, NULL
);
2664 for (i
= n_sets_before_autoinc
; i
< n_sets
; i
++)
2665 cselib_invalidate_rtx (sets
[i
].dest
);
2667 /* If this is an asm, look for duplicate sets. This can happen when the
2668 user uses the same value as an output multiple times. This is valid
2669 if the outputs are not actually used thereafter. Treat this case as
2670 if the value isn't actually set. We do this by smashing the destination
2671 to pc_rtx, so that we won't record the value later. */
2672 if (n_sets
>= 2 && asm_noperands (body
) >= 0)
2674 for (i
= 0; i
< n_sets
; i
++)
2676 rtx dest
= sets
[i
].dest
;
2677 if (REG_P (dest
) || MEM_P (dest
))
2680 for (j
= i
+ 1; j
< n_sets
; j
++)
2681 if (rtx_equal_p (dest
, sets
[j
].dest
))
2683 sets
[i
].dest
= pc_rtx
;
2684 sets
[j
].dest
= pc_rtx
;
2690 /* Now enter the equivalences in our tables. */
2691 for (i
= 0; i
< n_sets
; i
++)
2693 rtx dest
= sets
[i
].dest
;
2695 || (MEM_P (dest
) && cselib_record_memory
))
2696 cselib_record_set (dest
, sets
[i
].src_elt
, sets
[i
].dest_addr_elt
);
2699 /* And deal with STRICT_LOW_PART. */
2700 for (i
= 0; i
< n_strict_low_parts
; i
++)
2702 if (! PRESERVED_VALUE_P (sets
[n_sets
+ i
].src_elt
->val_rtx
))
2704 machine_mode dest_mode
= GET_MODE (sets
[n_sets
+ i
].dest
);
2706 = cselib_lookup (sets
[n_sets
+ i
].dest
, dest_mode
, 1, VOIDmode
);
2707 cselib_preserve_value (v
);
2708 rtx r
= gen_rtx_ZERO_EXTEND (dest_mode
,
2709 sets
[n_sets
+ i
].src_elt
->val_rtx
);
2710 cselib_add_permanent_equiv (v
, r
, insn
);
2714 /* Return true if INSN in the prologue initializes hard_frame_pointer_rtx. */
2717 fp_setter_insn (rtx_insn
*insn
)
2719 rtx expr
, pat
= NULL_RTX
;
2721 if (!RTX_FRAME_RELATED_P (insn
))
2724 expr
= find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
);
2726 pat
= XEXP (expr
, 0);
2727 if (!modified_in_p (hard_frame_pointer_rtx
, pat
? pat
: insn
))
2730 /* Don't return true for frame pointer restores in the epilogue. */
2731 if (find_reg_note (insn
, REG_CFA_RESTORE
, hard_frame_pointer_rtx
))
2736 /* Record the effects of INSN. */
2739 cselib_process_insn (rtx_insn
*insn
)
2744 cselib_current_insn
= insn
;
2746 /* Forget everything at a CODE_LABEL or a setjmp. */
2749 && find_reg_note (insn
, REG_SETJMP
, NULL
)))
2750 && !cselib_preserve_constants
)
2752 cselib_reset_table (next_uid
);
2753 cselib_current_insn
= NULL
;
2757 if (! INSN_P (insn
))
2759 cselib_current_insn
= NULL
;
2763 /* If this is a call instruction, forget anything stored in a
2764 call clobbered register, or, if this is not a const call, in
2768 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
2769 if (call_used_regs
[i
]
2770 || (REG_VALUES (i
) && REG_VALUES (i
)->elt
2771 && (targetm
.hard_regno_call_part_clobbered
2772 (insn
, i
, GET_MODE (REG_VALUES (i
)->elt
->val_rtx
)))))
2773 cselib_invalidate_regno (i
, reg_raw_mode
[i
]);
2775 /* Since it is not clear how cselib is going to be used, be
2776 conservative here and treat looping pure or const functions
2777 as if they were regular functions. */
2778 if (RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
)
2779 || !(RTL_CONST_OR_PURE_CALL_P (insn
)))
2780 cselib_invalidate_mem (callmem
);
2782 /* For const/pure calls, invalidate any argument slots because
2783 they are owned by the callee. */
2784 for (x
= CALL_INSN_FUNCTION_USAGE (insn
); x
; x
= XEXP (x
, 1))
2785 if (GET_CODE (XEXP (x
, 0)) == USE
2786 && MEM_P (XEXP (XEXP (x
, 0), 0)))
2787 cselib_invalidate_mem (XEXP (XEXP (x
, 0), 0));
2790 cselib_record_sets (insn
);
2792 /* Look for any CLOBBERs in CALL_INSN_FUNCTION_USAGE, but only
2793 after we have processed the insn. */
2796 for (x
= CALL_INSN_FUNCTION_USAGE (insn
); x
; x
= XEXP (x
, 1))
2798 gcc_assert (GET_CODE (XEXP (x
, 0)) != CLOBBER_HIGH
);
2799 if (GET_CODE (XEXP (x
, 0)) == CLOBBER
)
2800 cselib_invalidate_rtx (XEXP (XEXP (x
, 0), 0));
2802 /* Flush everything on setjmp. */
2803 if (cselib_preserve_constants
2804 && find_reg_note (insn
, REG_SETJMP
, NULL
))
2806 cselib_preserve_only_values ();
2807 cselib_reset_table (next_uid
);
2811 /* On setter of the hard frame pointer if frame_pointer_needed,
2812 invalidate stack_pointer_rtx, so that sp and {,h}fp based
2813 VALUEs are distinct. */
2814 if (reload_completed
2815 && frame_pointer_needed
2816 && fp_setter_insn (insn
))
2817 cselib_invalidate_rtx (stack_pointer_rtx
);
2819 cselib_current_insn
= NULL
;
2821 if (n_useless_values
> MAX_USELESS_VALUES
2822 /* remove_useless_values is linear in the hash table size. Avoid
2823 quadratic behavior for very large hashtables with very few
2824 useless elements. */
2825 && ((unsigned int)n_useless_values
2826 > (cselib_hash_table
->elements () - n_debug_values
) / 4))
2827 remove_useless_values ();
2830 /* Initialize cselib for one pass. The caller must also call
2831 init_alias_analysis. */
2834 cselib_init (int record_what
)
2836 cselib_record_memory
= record_what
& CSELIB_RECORD_MEMORY
;
2837 cselib_preserve_constants
= record_what
& CSELIB_PRESERVE_CONSTANTS
;
2838 cselib_any_perm_equivs
= false;
2840 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything,
2841 see canon_true_dependence. This is only created once. */
2843 callmem
= gen_rtx_MEM (BLKmode
, gen_rtx_SCRATCH (VOIDmode
));
2845 cselib_nregs
= max_reg_num ();
2847 /* We preserve reg_values to allow expensive clearing of the whole thing.
2848 Reallocate it however if it happens to be too large. */
2849 if (!reg_values
|| reg_values_size
< cselib_nregs
2850 || (reg_values_size
> 10 && reg_values_size
> cselib_nregs
* 4))
2853 /* Some space for newly emit instructions so we don't end up
2854 reallocating in between passes. */
2855 reg_values_size
= cselib_nregs
+ (63 + cselib_nregs
) / 16;
2856 reg_values
= XCNEWVEC (struct elt_list
*, reg_values_size
);
2858 used_regs
= XNEWVEC (unsigned int, cselib_nregs
);
2860 /* FIXME: enable sanitization (PR87845) */
2862 = new hash_table
<cselib_hasher
> (31, /* ggc */ false,
2863 /* sanitize_eq_and_hash */ false);
2864 if (cselib_preserve_constants
)
2865 cselib_preserved_hash_table
2866 = new hash_table
<cselib_hasher
> (31, /* ggc */ false,
2867 /* sanitize_eq_and_hash */ false);
2871 /* Called when the current user is done with cselib. */
2874 cselib_finish (void)
2876 bool preserved
= cselib_preserve_constants
;
2877 cselib_discard_hook
= NULL
;
2878 cselib_preserve_constants
= false;
2879 cselib_any_perm_equivs
= false;
2880 cfa_base_preserved_val
= NULL
;
2881 cfa_base_preserved_regno
= INVALID_REGNUM
;
2882 elt_list_pool
.release ();
2883 elt_loc_list_pool
.release ();
2884 cselib_val_pool
.release ();
2885 value_pool
.release ();
2886 cselib_clear_table ();
2887 delete cselib_hash_table
;
2888 cselib_hash_table
= NULL
;
2890 delete cselib_preserved_hash_table
;
2891 cselib_preserved_hash_table
= NULL
;
2894 n_useless_values
= 0;
2895 n_useless_debug_values
= 0;
2900 /* Dump the cselib_val *X to FILE *OUT. */
2903 dump_cselib_val (cselib_val
**x
, FILE *out
)
2906 bool need_lf
= true;
2908 print_inline_rtx (out
, v
->val_rtx
, 0);
2912 struct elt_loc_list
*l
= v
->locs
;
2918 fputs (" locs:", out
);
2921 if (l
->setting_insn
)
2922 fprintf (out
, "\n from insn %i ",
2923 INSN_UID (l
->setting_insn
));
2925 fprintf (out
, "\n ");
2926 print_inline_rtx (out
, l
->loc
, 4);
2928 while ((l
= l
->next
));
2933 fputs (" no locs", out
);
2939 struct elt_list
*e
= v
->addr_list
;
2945 fputs (" addr list:", out
);
2949 print_inline_rtx (out
, e
->elt
->val_rtx
, 2);
2951 while ((e
= e
->next
));
2956 fputs (" no addrs", out
);
2960 if (v
->next_containing_mem
== &dummy_val
)
2961 fputs (" last mem\n", out
);
2962 else if (v
->next_containing_mem
)
2964 fputs (" next mem ", out
);
2965 print_inline_rtx (out
, v
->next_containing_mem
->val_rtx
, 2);
2974 /* Dump to OUT everything in the CSELIB table. */
2977 dump_cselib_table (FILE *out
)
2979 fprintf (out
, "cselib hash table:\n");
2980 cselib_hash_table
->traverse
<FILE *, dump_cselib_val
> (out
);
2981 fprintf (out
, "cselib preserved hash table:\n");
2982 cselib_preserved_hash_table
->traverse
<FILE *, dump_cselib_val
> (out
);
2983 if (first_containing_mem
!= &dummy_val
)
2985 fputs ("first mem ", out
);
2986 print_inline_rtx (out
, first_containing_mem
->val_rtx
, 2);
2989 fprintf (out
, "next uid %i\n", next_uid
);
2992 #include "gt-cselib.h"