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, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
30 #include "hard-reg-set.h"
32 #include "insn-config.h"
36 #include "diagnostic-core.h"
40 #include "tree-pass.h"
43 #include "alloc-pool.h"
47 /* A list of cselib_val structures. */
49 struct elt_list
*next
;
53 static bool cselib_record_memory
;
54 static bool cselib_preserve_constants
;
55 static int entry_and_rtx_equal_p (const void *, const void *);
56 static hashval_t
get_value_hash (const void *);
57 static struct elt_list
*new_elt_list (struct elt_list
*, cselib_val
*);
58 static struct elt_loc_list
*new_elt_loc_list (struct elt_loc_list
*, rtx
);
59 static void unchain_one_value (cselib_val
*);
60 static void unchain_one_elt_list (struct elt_list
**);
61 static void unchain_one_elt_loc_list (struct elt_loc_list
**);
62 static int discard_useless_locs (void **, void *);
63 static int discard_useless_values (void **, void *);
64 static void remove_useless_values (void);
65 static int rtx_equal_for_cselib_1 (rtx
, rtx
, enum machine_mode
);
66 static unsigned int cselib_hash_rtx (rtx
, int, enum machine_mode
);
67 static cselib_val
*new_cselib_val (unsigned int, enum machine_mode
, rtx
);
68 static void add_mem_for_addr (cselib_val
*, cselib_val
*, rtx
);
69 static cselib_val
*cselib_lookup_mem (rtx
, int);
70 static void cselib_invalidate_regno (unsigned int, enum machine_mode
);
71 static void cselib_invalidate_mem (rtx
);
72 static void cselib_record_set (rtx
, cselib_val
*, cselib_val
*);
73 static void cselib_record_sets (rtx
);
75 struct expand_value_data
78 cselib_expand_callback callback
;
83 static rtx
cselib_expand_value_rtx_1 (rtx
, struct expand_value_data
*, int);
85 /* There are three ways in which cselib can look up an rtx:
86 - for a REG, the reg_values table (which is indexed by regno) is used
87 - for a MEM, we recursively look up its address and then follow the
88 addr_list of that value
89 - for everything else, we compute a hash value and go through the hash
90 table. Since different rtx's can still have the same hash value,
91 this involves walking the table entries for a given value and comparing
92 the locations of the entries with the rtx we are looking up. */
94 /* A table that enables us to look up elts by their value. */
95 static htab_t cselib_hash_table
;
97 /* This is a global so we don't have to pass this through every function.
98 It is used in new_elt_loc_list to set SETTING_INSN. */
99 static rtx cselib_current_insn
;
101 /* The unique id that the next create value will take. */
102 static unsigned int next_uid
;
104 /* The number of registers we had when the varrays were last resized. */
105 static unsigned int cselib_nregs
;
107 /* Count values without known locations, or with only locations that
108 wouldn't have been known except for debug insns. Whenever this
109 grows too big, we remove these useless values from the table.
111 Counting values with only debug values is a bit tricky. We don't
112 want to increment n_useless_values when we create a value for a
113 debug insn, for this would get n_useless_values out of sync, but we
114 want increment it if all locs in the list that were ever referenced
115 in nondebug insns are removed from the list.
117 In the general case, once we do that, we'd have to stop accepting
118 nondebug expressions in the loc list, to avoid having two values
119 equivalent that, without debug insns, would have been made into
120 separate values. However, because debug insns never introduce
121 equivalences themselves (no assignments), the only means for
122 growing loc lists is through nondebug assignments. If the locs
123 also happen to be referenced in debug insns, it will work just fine.
125 A consequence of this is that there's at most one debug-only loc in
126 each loc list. If we keep it in the first entry, testing whether
127 we have a debug-only loc list takes O(1).
129 Furthermore, since any additional entry in a loc list containing a
130 debug loc would have to come from an assignment (nondebug) that
131 references both the initial debug loc and the newly-equivalent loc,
132 the initial debug loc would be promoted to a nondebug loc, and the
133 loc list would not contain debug locs any more.
135 So the only case we have to be careful with in order to keep
136 n_useless_values in sync between debug and nondebug compilations is
137 to avoid incrementing n_useless_values when removing the single loc
138 from a value that turns out to not appear outside debug values. We
139 increment n_useless_debug_values instead, and leave such values
140 alone until, for other reasons, we garbage-collect useless
142 static int n_useless_values
;
143 static int n_useless_debug_values
;
145 /* Count values whose locs have been taken exclusively from debug
146 insns for the entire life of the value. */
147 static int n_debug_values
;
149 /* Number of useless values before we remove them from the hash table. */
150 #define MAX_USELESS_VALUES 32
152 /* This table maps from register number to values. It does not
153 contain pointers to cselib_val structures, but rather elt_lists.
154 The purpose is to be able to refer to the same register in
155 different modes. The first element of the list defines the mode in
156 which the register was set; if the mode is unknown or the value is
157 no longer valid in that mode, ELT will be NULL for the first
159 static struct elt_list
**reg_values
;
160 static unsigned int reg_values_size
;
161 #define REG_VALUES(i) reg_values[i]
163 /* The largest number of hard regs used by any entry added to the
164 REG_VALUES table. Cleared on each cselib_clear_table() invocation. */
165 static unsigned int max_value_regs
;
167 /* Here the set of indices I with REG_VALUES(I) != 0 is saved. This is used
168 in cselib_clear_table() for fast emptying. */
169 static unsigned int *used_regs
;
170 static unsigned int n_used_regs
;
172 /* We pass this to cselib_invalidate_mem to invalidate all of
173 memory for a non-const call instruction. */
174 static GTY(()) rtx callmem
;
176 /* Set by discard_useless_locs if it deleted the last location of any
178 static int values_became_useless
;
180 /* Used as stop element of the containing_mem list so we can check
181 presence in the list by checking the next pointer. */
182 static cselib_val dummy_val
;
184 /* If non-NULL, value of the eliminated arg_pointer_rtx or frame_pointer_rtx
185 that is constant through the whole function and should never be
187 static cselib_val
*cfa_base_preserved_val
;
188 static unsigned int cfa_base_preserved_regno
;
190 /* Used to list all values that contain memory reference.
191 May or may not contain the useless values - the list is compacted
192 each time memory is invalidated. */
193 static cselib_val
*first_containing_mem
= &dummy_val
;
194 static alloc_pool elt_loc_list_pool
, elt_list_pool
, cselib_val_pool
, value_pool
;
196 /* If nonnull, cselib will call this function before freeing useless
197 VALUEs. A VALUE is deemed useless if its "locs" field is null. */
198 void (*cselib_discard_hook
) (cselib_val
*);
200 /* If nonnull, cselib will call this function before recording sets or
201 even clobbering outputs of INSN. All the recorded sets will be
202 represented in the array sets[n_sets]. new_val_min can be used to
203 tell whether values present in sets are introduced by this
205 void (*cselib_record_sets_hook
) (rtx insn
, struct cselib_set
*sets
,
208 #define PRESERVED_VALUE_P(RTX) \
209 (RTL_FLAG_CHECK1("PRESERVED_VALUE_P", (RTX), VALUE)->unchanging)
213 /* Allocate a struct elt_list and fill in its two elements with the
216 static inline struct elt_list
*
217 new_elt_list (struct elt_list
*next
, cselib_val
*elt
)
220 el
= (struct elt_list
*) pool_alloc (elt_list_pool
);
226 /* Allocate a struct elt_loc_list and fill in its two elements with the
229 static inline struct elt_loc_list
*
230 new_elt_loc_list (struct elt_loc_list
*next
, rtx loc
)
232 struct elt_loc_list
*el
;
233 el
= (struct elt_loc_list
*) pool_alloc (elt_loc_list_pool
);
236 el
->setting_insn
= cselib_current_insn
;
237 gcc_assert (!next
|| !next
->setting_insn
238 || !DEBUG_INSN_P (next
->setting_insn
));
240 /* If we're creating the first loc in a debug insn context, we've
241 just created a debug value. Count it. */
242 if (!next
&& cselib_current_insn
&& DEBUG_INSN_P (cselib_current_insn
))
248 /* Promote loc L to a nondebug cselib_current_insn if L is marked as
249 originating from a debug insn, maintaining the debug values
253 promote_debug_loc (struct elt_loc_list
*l
)
255 if (l
->setting_insn
&& DEBUG_INSN_P (l
->setting_insn
)
256 && (!cselib_current_insn
|| !DEBUG_INSN_P (cselib_current_insn
)))
259 l
->setting_insn
= cselib_current_insn
;
260 if (cselib_preserve_constants
&& l
->next
)
262 gcc_assert (l
->next
->setting_insn
263 && DEBUG_INSN_P (l
->next
->setting_insn
)
265 l
->next
->setting_insn
= cselib_current_insn
;
268 gcc_assert (!l
->next
);
272 /* The elt_list at *PL is no longer needed. Unchain it and free its
276 unchain_one_elt_list (struct elt_list
**pl
)
278 struct elt_list
*l
= *pl
;
281 pool_free (elt_list_pool
, l
);
284 /* Likewise for elt_loc_lists. */
287 unchain_one_elt_loc_list (struct elt_loc_list
**pl
)
289 struct elt_loc_list
*l
= *pl
;
292 pool_free (elt_loc_list_pool
, l
);
295 /* Likewise for cselib_vals. This also frees the addr_list associated with
299 unchain_one_value (cselib_val
*v
)
302 unchain_one_elt_list (&v
->addr_list
);
304 pool_free (cselib_val_pool
, v
);
307 /* Remove all entries from the hash table. Also used during
311 cselib_clear_table (void)
313 cselib_reset_table (1);
316 /* Remove from hash table all VALUEs except constants
317 and function invariants. */
320 preserve_only_constants (void **x
, void *info ATTRIBUTE_UNUSED
)
322 cselib_val
*v
= (cselib_val
*)*x
;
325 && v
->locs
->next
== NULL
)
327 if (CONSTANT_P (v
->locs
->loc
)
328 && (GET_CODE (v
->locs
->loc
) != CONST
329 || !references_value_p (v
->locs
->loc
, 0)))
331 if (cfa_base_preserved_val
)
333 if (v
== cfa_base_preserved_val
)
335 if (GET_CODE (v
->locs
->loc
) == PLUS
336 && CONST_INT_P (XEXP (v
->locs
->loc
, 1))
337 && XEXP (v
->locs
->loc
, 0) == cfa_base_preserved_val
->val_rtx
)
341 /* Keep around VALUEs that forward function invariant ENTRY_VALUEs
342 to corresponding parameter VALUEs. */
344 && v
->locs
->next
!= NULL
345 && v
->locs
->next
->next
== NULL
346 && GET_CODE (v
->locs
->next
->loc
) == ENTRY_VALUE
347 && GET_CODE (v
->locs
->loc
) == VALUE
)
350 htab_clear_slot (cselib_hash_table
, x
);
354 /* Remove all entries from the hash table, arranging for the next
355 value to be numbered NUM. */
358 cselib_reset_table (unsigned int num
)
364 if (cfa_base_preserved_val
)
366 unsigned int regno
= cfa_base_preserved_regno
;
367 unsigned int new_used_regs
= 0;
368 for (i
= 0; i
< n_used_regs
; i
++)
369 if (used_regs
[i
] == regno
)
375 REG_VALUES (used_regs
[i
]) = 0;
376 gcc_assert (new_used_regs
== 1);
377 n_used_regs
= new_used_regs
;
378 used_regs
[0] = regno
;
380 = hard_regno_nregs
[regno
][GET_MODE (cfa_base_preserved_val
->locs
->loc
)];
384 for (i
= 0; i
< n_used_regs
; i
++)
385 REG_VALUES (used_regs
[i
]) = 0;
389 if (cselib_preserve_constants
)
390 htab_traverse (cselib_hash_table
, preserve_only_constants
, NULL
);
392 htab_empty (cselib_hash_table
);
394 n_useless_values
= 0;
395 n_useless_debug_values
= 0;
400 first_containing_mem
= &dummy_val
;
403 /* Return the number of the next value that will be generated. */
406 cselib_get_next_uid (void)
411 /* See the documentation of cselib_find_slot below. */
412 static enum machine_mode find_slot_memmode
;
414 /* Search for X, whose hashcode is HASH, in CSELIB_HASH_TABLE,
415 INSERTing if requested. When X is part of the address of a MEM,
416 MEMMODE should specify the mode of the MEM. While searching the
417 table, MEMMODE is held in FIND_SLOT_MEMMODE, so that autoinc RTXs
418 in X can be resolved. */
421 cselib_find_slot (rtx x
, hashval_t hash
, enum insert_option insert
,
422 enum machine_mode memmode
)
425 find_slot_memmode
= memmode
;
426 slot
= htab_find_slot_with_hash (cselib_hash_table
, x
, hash
, insert
);
427 find_slot_memmode
= VOIDmode
;
431 /* The equality test for our hash table. The first argument ENTRY is a table
432 element (i.e. a cselib_val), while the second arg X is an rtx. We know
433 that all callers of htab_find_slot_with_hash will wrap CONST_INTs into a
434 CONST of an appropriate mode. */
437 entry_and_rtx_equal_p (const void *entry
, const void *x_arg
)
439 struct elt_loc_list
*l
;
440 const cselib_val
*const v
= (const cselib_val
*) entry
;
441 rtx x
= CONST_CAST_RTX ((const_rtx
)x_arg
);
442 enum machine_mode mode
= GET_MODE (x
);
444 gcc_assert (!CONST_INT_P (x
) && GET_CODE (x
) != CONST_FIXED
445 && (mode
!= VOIDmode
|| GET_CODE (x
) != CONST_DOUBLE
));
447 if (mode
!= GET_MODE (v
->val_rtx
))
450 /* Unwrap X if necessary. */
451 if (GET_CODE (x
) == CONST
452 && (CONST_INT_P (XEXP (x
, 0))
453 || GET_CODE (XEXP (x
, 0)) == CONST_FIXED
454 || GET_CODE (XEXP (x
, 0)) == CONST_DOUBLE
))
457 /* We don't guarantee that distinct rtx's have different hash values,
458 so we need to do a comparison. */
459 for (l
= v
->locs
; l
; l
= l
->next
)
460 if (rtx_equal_for_cselib_1 (l
->loc
, x
, find_slot_memmode
))
462 promote_debug_loc (l
);
469 /* The hash function for our hash table. The value is always computed with
470 cselib_hash_rtx when adding an element; this function just extracts the
471 hash value from a cselib_val structure. */
474 get_value_hash (const void *entry
)
476 const cselib_val
*const v
= (const cselib_val
*) entry
;
480 /* Return true if X contains a VALUE rtx. If ONLY_USELESS is set, we
481 only return true for values which point to a cselib_val whose value
482 element has been set to zero, which implies the cselib_val will be
486 references_value_p (const_rtx x
, int only_useless
)
488 const enum rtx_code code
= GET_CODE (x
);
489 const char *fmt
= GET_RTX_FORMAT (code
);
492 if (GET_CODE (x
) == VALUE
493 && (! only_useless
|| CSELIB_VAL_PTR (x
)->locs
== 0))
496 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
498 if (fmt
[i
] == 'e' && references_value_p (XEXP (x
, i
), only_useless
))
500 else if (fmt
[i
] == 'E')
501 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
502 if (references_value_p (XVECEXP (x
, i
, j
), only_useless
))
509 /* For all locations found in X, delete locations that reference useless
510 values (i.e. values without any location). Called through
514 discard_useless_locs (void **x
, void *info ATTRIBUTE_UNUSED
)
516 cselib_val
*v
= (cselib_val
*)*x
;
517 struct elt_loc_list
**p
= &v
->locs
;
518 bool had_locs
= v
->locs
!= NULL
;
519 rtx setting_insn
= v
->locs
? v
->locs
->setting_insn
: NULL
;
523 if (references_value_p ((*p
)->loc
, 1))
524 unchain_one_elt_loc_list (p
);
529 if (had_locs
&& v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
531 if (setting_insn
&& DEBUG_INSN_P (setting_insn
))
532 n_useless_debug_values
++;
535 values_became_useless
= 1;
540 /* If X is a value with no locations, remove it from the hashtable. */
543 discard_useless_values (void **x
, void *info ATTRIBUTE_UNUSED
)
545 cselib_val
*v
= (cselib_val
*)*x
;
547 if (v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
549 if (cselib_discard_hook
)
550 cselib_discard_hook (v
);
552 CSELIB_VAL_PTR (v
->val_rtx
) = NULL
;
553 htab_clear_slot (cselib_hash_table
, x
);
554 unchain_one_value (v
);
561 /* Clean out useless values (i.e. those which no longer have locations
562 associated with them) from the hash table. */
565 remove_useless_values (void)
569 /* First pass: eliminate locations that reference the value. That in
570 turn can make more values useless. */
573 values_became_useless
= 0;
574 htab_traverse (cselib_hash_table
, discard_useless_locs
, 0);
576 while (values_became_useless
);
578 /* Second pass: actually remove the values. */
580 p
= &first_containing_mem
;
581 for (v
= *p
; v
!= &dummy_val
; v
= v
->next_containing_mem
)
585 p
= &(*p
)->next_containing_mem
;
589 n_useless_values
+= n_useless_debug_values
;
590 n_debug_values
-= n_useless_debug_values
;
591 n_useless_debug_values
= 0;
593 htab_traverse (cselib_hash_table
, discard_useless_values
, 0);
595 gcc_assert (!n_useless_values
);
598 /* Arrange for a value to not be removed from the hash table even if
599 it becomes useless. */
602 cselib_preserve_value (cselib_val
*v
)
604 PRESERVED_VALUE_P (v
->val_rtx
) = 1;
607 /* Test whether a value is preserved. */
610 cselib_preserved_value_p (cselib_val
*v
)
612 return PRESERVED_VALUE_P (v
->val_rtx
);
615 /* Arrange for a REG value to be assumed constant through the whole function,
616 never invalidated and preserved across cselib_reset_table calls. */
619 cselib_preserve_cfa_base_value (cselib_val
*v
, unsigned int regno
)
621 if (cselib_preserve_constants
623 && REG_P (v
->locs
->loc
))
625 cfa_base_preserved_val
= v
;
626 cfa_base_preserved_regno
= regno
;
630 /* Clean all non-constant expressions in the hash table, but retain
634 cselib_preserve_only_values (void)
638 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
639 cselib_invalidate_regno (i
, reg_raw_mode
[i
]);
641 cselib_invalidate_mem (callmem
);
643 remove_useless_values ();
645 gcc_assert (first_containing_mem
== &dummy_val
);
648 /* Return the mode in which a register was last set. If X is not a
649 register, return its mode. If the mode in which the register was
650 set is not known, or the value was already clobbered, return
654 cselib_reg_set_mode (const_rtx x
)
659 if (REG_VALUES (REGNO (x
)) == NULL
660 || REG_VALUES (REGNO (x
))->elt
== NULL
)
663 return GET_MODE (REG_VALUES (REGNO (x
))->elt
->val_rtx
);
666 /* Return nonzero if we can prove that X and Y contain the same value, taking
667 our gathered information into account. */
670 rtx_equal_for_cselib_p (rtx x
, rtx y
)
672 return rtx_equal_for_cselib_1 (x
, y
, VOIDmode
);
675 /* If x is a PLUS or an autoinc operation, expand the operation,
676 storing the offset, if any, in *OFF. */
679 autoinc_split (rtx x
, rtx
*off
, enum machine_mode memmode
)
681 switch (GET_CODE (x
))
688 if (memmode
== VOIDmode
)
691 *off
= GEN_INT (-GET_MODE_SIZE (memmode
));
696 if (memmode
== VOIDmode
)
699 *off
= GEN_INT (GET_MODE_SIZE (memmode
));
715 /* Return nonzero if we can prove that X and Y contain the same value,
716 taking our gathered information into account. MEMMODE holds the
717 mode of the enclosing MEM, if any, as required to deal with autoinc
718 addressing modes. If X and Y are not (known to be) part of
719 addresses, MEMMODE should be VOIDmode. */
722 rtx_equal_for_cselib_1 (rtx x
, rtx y
, enum machine_mode memmode
)
728 if (REG_P (x
) || MEM_P (x
))
730 cselib_val
*e
= cselib_lookup (x
, GET_MODE (x
), 0, memmode
);
736 if (REG_P (y
) || MEM_P (y
))
738 cselib_val
*e
= cselib_lookup (y
, GET_MODE (y
), 0, memmode
);
747 if (GET_CODE (x
) == VALUE
&& GET_CODE (y
) == VALUE
)
748 return CSELIB_VAL_PTR (x
) == CSELIB_VAL_PTR (y
);
750 if (GET_CODE (x
) == VALUE
)
752 cselib_val
*e
= CSELIB_VAL_PTR (x
);
753 struct elt_loc_list
*l
;
755 for (l
= e
->locs
; l
; l
= l
->next
)
759 /* Avoid infinite recursion. */
760 if (REG_P (t
) || MEM_P (t
))
762 else if (rtx_equal_for_cselib_1 (t
, y
, memmode
))
769 if (GET_CODE (y
) == VALUE
)
771 cselib_val
*e
= CSELIB_VAL_PTR (y
);
772 struct elt_loc_list
*l
;
774 for (l
= e
->locs
; l
; l
= l
->next
)
778 if (REG_P (t
) || MEM_P (t
))
780 else if (rtx_equal_for_cselib_1 (x
, t
, memmode
))
787 if (GET_MODE (x
) != GET_MODE (y
))
790 if (GET_CODE (x
) != GET_CODE (y
))
792 rtx xorig
= x
, yorig
= y
;
793 rtx xoff
= NULL
, yoff
= NULL
;
795 x
= autoinc_split (x
, &xoff
, memmode
);
796 y
= autoinc_split (y
, &yoff
, memmode
);
801 if (xoff
&& !rtx_equal_for_cselib_1 (xoff
, yoff
, memmode
))
804 /* Don't recurse if nothing changed. */
805 if (x
!= xorig
|| y
!= yorig
)
806 return rtx_equal_for_cselib_1 (x
, y
, memmode
);
811 /* These won't be handled correctly by the code below. */
812 switch (GET_CODE (x
))
819 case DEBUG_IMPLICIT_PTR
:
820 return DEBUG_IMPLICIT_PTR_DECL (x
)
821 == DEBUG_IMPLICIT_PTR_DECL (y
);
823 case DEBUG_PARAMETER_REF
:
824 return DEBUG_PARAMETER_REF_DECL (x
)
825 == DEBUG_PARAMETER_REF_DECL (y
);
828 /* ENTRY_VALUEs are function invariant, it is thus undesirable to
829 use rtx_equal_for_cselib_1 to compare the operands. */
830 return rtx_equal_p (ENTRY_VALUE_EXP (x
), ENTRY_VALUE_EXP (y
));
833 return XEXP (x
, 0) == XEXP (y
, 0);
836 /* We have to compare any autoinc operations in the addresses
837 using this MEM's mode. */
838 return rtx_equal_for_cselib_1 (XEXP (x
, 0), XEXP (y
, 0), GET_MODE (x
));
845 fmt
= GET_RTX_FORMAT (code
);
847 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
854 if (XWINT (x
, i
) != XWINT (y
, i
))
860 if (XINT (x
, i
) != XINT (y
, i
))
866 /* Two vectors must have the same length. */
867 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
870 /* And the corresponding elements must match. */
871 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
872 if (! rtx_equal_for_cselib_1 (XVECEXP (x
, i
, j
),
873 XVECEXP (y
, i
, j
), memmode
))
879 && targetm
.commutative_p (x
, UNKNOWN
)
880 && rtx_equal_for_cselib_1 (XEXP (x
, 1), XEXP (y
, 0), memmode
)
881 && rtx_equal_for_cselib_1 (XEXP (x
, 0), XEXP (y
, 1), memmode
))
883 if (! rtx_equal_for_cselib_1 (XEXP (x
, i
), XEXP (y
, i
), memmode
))
889 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
894 /* These are just backpointers, so they don't matter. */
901 /* It is believed that rtx's at this level will never
902 contain anything but integers and other rtx's,
903 except for within LABEL_REFs and SYMBOL_REFs. */
911 /* We need to pass down the mode of constants through the hash table
912 functions. For that purpose, wrap them in a CONST of the appropriate
915 wrap_constant (enum machine_mode mode
, rtx x
)
917 if (!CONST_INT_P (x
) && GET_CODE (x
) != CONST_FIXED
918 && (GET_CODE (x
) != CONST_DOUBLE
|| GET_MODE (x
) != VOIDmode
))
920 gcc_assert (mode
!= VOIDmode
);
921 return gen_rtx_CONST (mode
, x
);
924 /* Hash an rtx. Return 0 if we couldn't hash the rtx.
925 For registers and memory locations, we look up their cselib_val structure
926 and return its VALUE element.
927 Possible reasons for return 0 are: the object is volatile, or we couldn't
928 find a register or memory location in the table and CREATE is zero. If
929 CREATE is nonzero, table elts are created for regs and mem.
930 N.B. this hash function returns the same hash value for RTXes that
931 differ only in the order of operands, thus it is suitable for comparisons
932 that take commutativity into account.
933 If we wanted to also support associative rules, we'd have to use a different
934 strategy to avoid returning spurious 0, e.g. return ~(~0U >> 1) .
935 MEMMODE indicates the mode of an enclosing MEM, and it's only
936 used to compute autoinc values.
937 We used to have a MODE argument for hashing for CONST_INTs, but that
938 didn't make sense, since it caused spurious hash differences between
939 (set (reg:SI 1) (const_int))
940 (plus:SI (reg:SI 2) (reg:SI 1))
942 (plus:SI (reg:SI 2) (const_int))
943 If the mode is important in any context, it must be checked specifically
944 in a comparison anyway, since relying on hash differences is unsafe. */
947 cselib_hash_rtx (rtx x
, int create
, enum machine_mode memmode
)
953 unsigned int hash
= 0;
956 hash
+= (unsigned) code
+ (unsigned) GET_MODE (x
);
962 e
= cselib_lookup (x
, GET_MODE (x
), create
, memmode
);
969 hash
+= ((unsigned) DEBUG_EXPR
<< 7)
970 + DEBUG_TEMP_UID (DEBUG_EXPR_TREE_DECL (x
));
971 return hash
? hash
: (unsigned int) DEBUG_EXPR
;
973 case DEBUG_IMPLICIT_PTR
:
974 hash
+= ((unsigned) DEBUG_IMPLICIT_PTR
<< 7)
975 + DECL_UID (DEBUG_IMPLICIT_PTR_DECL (x
));
976 return hash
? hash
: (unsigned int) DEBUG_IMPLICIT_PTR
;
978 case DEBUG_PARAMETER_REF
:
979 hash
+= ((unsigned) DEBUG_PARAMETER_REF
<< 7)
980 + DECL_UID (DEBUG_PARAMETER_REF_DECL (x
));
981 return hash
? hash
: (unsigned int) DEBUG_PARAMETER_REF
;
984 /* ENTRY_VALUEs are function invariant, thus try to avoid
985 recursing on argument if ENTRY_VALUE is one of the
986 forms emitted by expand_debug_expr, otherwise
987 ENTRY_VALUE hash would depend on the current value
988 in some register or memory. */
989 if (REG_P (ENTRY_VALUE_EXP (x
)))
990 hash
+= (unsigned int) REG
991 + (unsigned int) GET_MODE (ENTRY_VALUE_EXP (x
))
992 + (unsigned int) REGNO (ENTRY_VALUE_EXP (x
));
993 else if (MEM_P (ENTRY_VALUE_EXP (x
))
994 && REG_P (XEXP (ENTRY_VALUE_EXP (x
), 0)))
995 hash
+= (unsigned int) MEM
996 + (unsigned int) GET_MODE (XEXP (ENTRY_VALUE_EXP (x
), 0))
997 + (unsigned int) REGNO (XEXP (ENTRY_VALUE_EXP (x
), 0));
999 hash
+= cselib_hash_rtx (ENTRY_VALUE_EXP (x
), create
, memmode
);
1000 return hash
? hash
: (unsigned int) ENTRY_VALUE
;
1003 hash
+= ((unsigned) CONST_INT
<< 7) + INTVAL (x
);
1004 return hash
? hash
: (unsigned int) CONST_INT
;
1007 /* This is like the general case, except that it only counts
1008 the integers representing the constant. */
1009 hash
+= (unsigned) code
+ (unsigned) GET_MODE (x
);
1010 if (GET_MODE (x
) != VOIDmode
)
1011 hash
+= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
1013 hash
+= ((unsigned) CONST_DOUBLE_LOW (x
)
1014 + (unsigned) CONST_DOUBLE_HIGH (x
));
1015 return hash
? hash
: (unsigned int) CONST_DOUBLE
;
1018 hash
+= (unsigned int) code
+ (unsigned int) GET_MODE (x
);
1019 hash
+= fixed_hash (CONST_FIXED_VALUE (x
));
1020 return hash
? hash
: (unsigned int) CONST_FIXED
;
1027 units
= CONST_VECTOR_NUNITS (x
);
1029 for (i
= 0; i
< units
; ++i
)
1031 elt
= CONST_VECTOR_ELT (x
, i
);
1032 hash
+= cselib_hash_rtx (elt
, 0, memmode
);
1038 /* Assume there is only one rtx object for any given label. */
1040 /* We don't hash on the address of the CODE_LABEL to avoid bootstrap
1041 differences and differences between each stage's debugging dumps. */
1042 hash
+= (((unsigned int) LABEL_REF
<< 7)
1043 + CODE_LABEL_NUMBER (XEXP (x
, 0)));
1044 return hash
? hash
: (unsigned int) LABEL_REF
;
1048 /* Don't hash on the symbol's address to avoid bootstrap differences.
1049 Different hash values may cause expressions to be recorded in
1050 different orders and thus different registers to be used in the
1051 final assembler. This also avoids differences in the dump files
1052 between various stages. */
1054 const unsigned char *p
= (const unsigned char *) XSTR (x
, 0);
1057 h
+= (h
<< 7) + *p
++; /* ??? revisit */
1059 hash
+= ((unsigned int) SYMBOL_REF
<< 7) + h
;
1060 return hash
? hash
: (unsigned int) SYMBOL_REF
;
1065 /* We can't compute these without knowing the MEM mode. */
1066 gcc_assert (memmode
!= VOIDmode
);
1067 i
= GET_MODE_SIZE (memmode
);
1068 if (code
== PRE_DEC
)
1070 /* Adjust the hash so that (mem:MEMMODE (pre_* (reg))) hashes
1071 like (mem:MEMMODE (plus (reg) (const_int I))). */
1072 hash
+= (unsigned) PLUS
- (unsigned)code
1073 + cselib_hash_rtx (XEXP (x
, 0), create
, memmode
)
1074 + cselib_hash_rtx (GEN_INT (i
), create
, memmode
);
1075 return hash
? hash
: 1 + (unsigned) PLUS
;
1078 gcc_assert (memmode
!= VOIDmode
);
1079 return cselib_hash_rtx (XEXP (x
, 1), create
, memmode
);
1084 gcc_assert (memmode
!= VOIDmode
);
1085 return cselib_hash_rtx (XEXP (x
, 0), create
, memmode
);
1090 case UNSPEC_VOLATILE
:
1094 if (MEM_VOLATILE_P (x
))
1103 i
= GET_RTX_LENGTH (code
) - 1;
1104 fmt
= GET_RTX_FORMAT (code
);
1111 rtx tem
= XEXP (x
, i
);
1112 unsigned int tem_hash
= cselib_hash_rtx (tem
, create
, memmode
);
1121 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1123 unsigned int tem_hash
1124 = cselib_hash_rtx (XVECEXP (x
, i
, j
), create
, memmode
);
1135 const unsigned char *p
= (const unsigned char *) XSTR (x
, i
);
1144 hash
+= XINT (x
, i
);
1157 return hash
? hash
: 1 + (unsigned int) GET_CODE (x
);
1160 /* Create a new value structure for VALUE and initialize it. The mode of the
1163 static inline cselib_val
*
1164 new_cselib_val (unsigned int hash
, enum machine_mode mode
, rtx x
)
1166 cselib_val
*e
= (cselib_val
*) pool_alloc (cselib_val_pool
);
1169 gcc_assert (next_uid
);
1172 e
->uid
= next_uid
++;
1173 /* We use an alloc pool to allocate this RTL construct because it
1174 accounts for about 8% of the overall memory usage. We know
1175 precisely when we can have VALUE RTXen (when cselib is active)
1176 so we don't need to put them in garbage collected memory.
1177 ??? Why should a VALUE be an RTX in the first place? */
1178 e
->val_rtx
= (rtx
) pool_alloc (value_pool
);
1179 memset (e
->val_rtx
, 0, RTX_HDR_SIZE
);
1180 PUT_CODE (e
->val_rtx
, VALUE
);
1181 PUT_MODE (e
->val_rtx
, mode
);
1182 CSELIB_VAL_PTR (e
->val_rtx
) = e
;
1185 e
->next_containing_mem
= 0;
1187 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1189 fprintf (dump_file
, "cselib value %u:%u ", e
->uid
, hash
);
1190 if (flag_dump_noaddr
|| flag_dump_unnumbered
)
1191 fputs ("# ", dump_file
);
1193 fprintf (dump_file
, "%p ", (void*)e
);
1194 print_rtl_single (dump_file
, x
);
1195 fputc ('\n', dump_file
);
1201 /* ADDR_ELT is a value that is used as address. MEM_ELT is the value that
1202 contains the data at this address. X is a MEM that represents the
1203 value. Update the two value structures to represent this situation. */
1206 add_mem_for_addr (cselib_val
*addr_elt
, cselib_val
*mem_elt
, rtx x
)
1208 struct elt_loc_list
*l
;
1210 /* Avoid duplicates. */
1211 for (l
= mem_elt
->locs
; l
; l
= l
->next
)
1213 && CSELIB_VAL_PTR (XEXP (l
->loc
, 0)) == addr_elt
)
1215 promote_debug_loc (l
);
1219 addr_elt
->addr_list
= new_elt_list (addr_elt
->addr_list
, mem_elt
);
1221 = new_elt_loc_list (mem_elt
->locs
,
1222 replace_equiv_address_nv (x
, addr_elt
->val_rtx
));
1223 if (mem_elt
->next_containing_mem
== NULL
)
1225 mem_elt
->next_containing_mem
= first_containing_mem
;
1226 first_containing_mem
= mem_elt
;
1230 /* Subroutine of cselib_lookup. Return a value for X, which is a MEM rtx.
1231 If CREATE, make a new one if we haven't seen it before. */
1234 cselib_lookup_mem (rtx x
, int create
)
1236 enum machine_mode mode
= GET_MODE (x
);
1237 enum machine_mode addr_mode
;
1240 cselib_val
*mem_elt
;
1243 if (MEM_VOLATILE_P (x
) || mode
== BLKmode
1244 || !cselib_record_memory
1245 || (FLOAT_MODE_P (mode
) && flag_float_store
))
1248 addr_mode
= GET_MODE (XEXP (x
, 0));
1249 if (addr_mode
== VOIDmode
)
1252 /* Look up the value for the address. */
1253 addr
= cselib_lookup (XEXP (x
, 0), addr_mode
, create
, mode
);
1257 /* Find a value that describes a value of our mode at that address. */
1258 for (l
= addr
->addr_list
; l
; l
= l
->next
)
1259 if (GET_MODE (l
->elt
->val_rtx
) == mode
)
1261 promote_debug_loc (l
->elt
->locs
);
1268 mem_elt
= new_cselib_val (next_uid
, mode
, x
);
1269 add_mem_for_addr (addr
, mem_elt
, x
);
1270 slot
= cselib_find_slot (wrap_constant (mode
, x
), mem_elt
->hash
,
1276 /* Search thru the possible substitutions in P. We prefer a non reg
1277 substitution because this allows us to expand the tree further. If
1278 we find, just a reg, take the lowest regno. There may be several
1279 non-reg results, we just take the first one because they will all
1280 expand to the same place. */
1283 expand_loc (struct elt_loc_list
*p
, struct expand_value_data
*evd
,
1286 rtx reg_result
= NULL
;
1287 unsigned int regno
= UINT_MAX
;
1288 struct elt_loc_list
*p_in
= p
;
1290 for (; p
; p
= p
-> next
)
1292 /* Avoid infinite recursion trying to expand a reg into a
1294 if ((REG_P (p
->loc
))
1295 && (REGNO (p
->loc
) < regno
)
1296 && !bitmap_bit_p (evd
->regs_active
, REGNO (p
->loc
)))
1298 reg_result
= p
->loc
;
1299 regno
= REGNO (p
->loc
);
1301 /* Avoid infinite recursion and do not try to expand the
1303 else if (GET_CODE (p
->loc
) == VALUE
1304 && CSELIB_VAL_PTR (p
->loc
)->locs
== p_in
)
1306 else if (!REG_P (p
->loc
))
1309 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1311 print_inline_rtx (dump_file
, p
->loc
, 0);
1312 fprintf (dump_file
, "\n");
1314 if (GET_CODE (p
->loc
) == LO_SUM
1315 && GET_CODE (XEXP (p
->loc
, 1)) == SYMBOL_REF
1317 && (note
= find_reg_note (p
->setting_insn
, REG_EQUAL
, NULL_RTX
))
1318 && XEXP (note
, 0) == XEXP (p
->loc
, 1))
1319 return XEXP (p
->loc
, 1);
1320 result
= cselib_expand_value_rtx_1 (p
->loc
, evd
, max_depth
- 1);
1327 if (regno
!= UINT_MAX
)
1330 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1331 fprintf (dump_file
, "r%d\n", regno
);
1333 result
= cselib_expand_value_rtx_1 (reg_result
, evd
, max_depth
- 1);
1338 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1342 print_inline_rtx (dump_file
, reg_result
, 0);
1343 fprintf (dump_file
, "\n");
1346 fprintf (dump_file
, "NULL\n");
1352 /* Forward substitute and expand an expression out to its roots.
1353 This is the opposite of common subexpression. Because local value
1354 numbering is such a weak optimization, the expanded expression is
1355 pretty much unique (not from a pointer equals point of view but
1356 from a tree shape point of view.
1358 This function returns NULL if the expansion fails. The expansion
1359 will fail if there is no value number for one of the operands or if
1360 one of the operands has been overwritten between the current insn
1361 and the beginning of the basic block. For instance x has no
1367 REGS_ACTIVE is a scratch bitmap that should be clear when passing in.
1368 It is clear on return. */
1371 cselib_expand_value_rtx (rtx orig
, bitmap regs_active
, int max_depth
)
1373 struct expand_value_data evd
;
1375 evd
.regs_active
= regs_active
;
1376 evd
.callback
= NULL
;
1377 evd
.callback_arg
= NULL
;
1380 return cselib_expand_value_rtx_1 (orig
, &evd
, max_depth
);
1383 /* Same as cselib_expand_value_rtx, but using a callback to try to
1384 resolve some expressions. The CB function should return ORIG if it
1385 can't or does not want to deal with a certain RTX. Any other
1386 return value, including NULL, will be used as the expansion for
1387 VALUE, without any further changes. */
1390 cselib_expand_value_rtx_cb (rtx orig
, bitmap regs_active
, int max_depth
,
1391 cselib_expand_callback cb
, void *data
)
1393 struct expand_value_data evd
;
1395 evd
.regs_active
= regs_active
;
1397 evd
.callback_arg
= data
;
1400 return cselib_expand_value_rtx_1 (orig
, &evd
, max_depth
);
1403 /* Similar to cselib_expand_value_rtx_cb, but no rtxs are actually copied
1404 or simplified. Useful to find out whether cselib_expand_value_rtx_cb
1405 would return NULL or non-NULL, without allocating new rtx. */
1408 cselib_dummy_expand_value_rtx_cb (rtx orig
, bitmap regs_active
, int max_depth
,
1409 cselib_expand_callback cb
, void *data
)
1411 struct expand_value_data evd
;
1413 evd
.regs_active
= regs_active
;
1415 evd
.callback_arg
= data
;
1418 return cselib_expand_value_rtx_1 (orig
, &evd
, max_depth
) != NULL
;
1421 /* Internal implementation of cselib_expand_value_rtx and
1422 cselib_expand_value_rtx_cb. */
1425 cselib_expand_value_rtx_1 (rtx orig
, struct expand_value_data
*evd
,
1431 const char *format_ptr
;
1432 enum machine_mode mode
;
1434 code
= GET_CODE (orig
);
1436 /* For the context of dse, if we end up expand into a huge tree, we
1437 will not have a useful address, so we might as well just give up
1446 struct elt_list
*l
= REG_VALUES (REGNO (orig
));
1448 if (l
&& l
->elt
== NULL
)
1450 for (; l
; l
= l
->next
)
1451 if (GET_MODE (l
->elt
->val_rtx
) == GET_MODE (orig
))
1454 int regno
= REGNO (orig
);
1456 /* The only thing that we are not willing to do (this
1457 is requirement of dse and if others potential uses
1458 need this function we should add a parm to control
1459 it) is that we will not substitute the
1460 STACK_POINTER_REGNUM, FRAME_POINTER or the
1463 These expansions confuses the code that notices that
1464 stores into the frame go dead at the end of the
1465 function and that the frame is not effected by calls
1466 to subroutines. If you allow the
1467 STACK_POINTER_REGNUM substitution, then dse will
1468 think that parameter pushing also goes dead which is
1469 wrong. If you allow the FRAME_POINTER or the
1470 HARD_FRAME_POINTER then you lose the opportunity to
1471 make the frame assumptions. */
1472 if (regno
== STACK_POINTER_REGNUM
1473 || regno
== FRAME_POINTER_REGNUM
1474 || regno
== HARD_FRAME_POINTER_REGNUM
)
1477 bitmap_set_bit (evd
->regs_active
, regno
);
1479 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1480 fprintf (dump_file
, "expanding: r%d into: ", regno
);
1482 result
= expand_loc (l
->elt
->locs
, evd
, max_depth
);
1483 bitmap_clear_bit (evd
->regs_active
, regno
);
1500 /* SCRATCH must be shared because they represent distinct values. */
1503 if (REG_P (XEXP (orig
, 0)) && HARD_REGISTER_NUM_P (REGNO (XEXP (orig
, 0))))
1508 if (shared_const_p (orig
))
1518 subreg
= evd
->callback (orig
, evd
->regs_active
, max_depth
,
1524 subreg
= cselib_expand_value_rtx_1 (SUBREG_REG (orig
), evd
,
1528 scopy
= simplify_gen_subreg (GET_MODE (orig
), subreg
,
1529 GET_MODE (SUBREG_REG (orig
)),
1530 SUBREG_BYTE (orig
));
1532 || (GET_CODE (scopy
) == SUBREG
1533 && !REG_P (SUBREG_REG (scopy
))
1534 && !MEM_P (SUBREG_REG (scopy
))))
1544 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1546 fputs ("\nexpanding ", dump_file
);
1547 print_rtl_single (dump_file
, orig
);
1548 fputs (" into...", dump_file
);
1553 result
= evd
->callback (orig
, evd
->regs_active
, max_depth
,
1560 result
= expand_loc (CSELIB_VAL_PTR (orig
)->locs
, evd
, max_depth
);
1566 return evd
->callback (orig
, evd
->regs_active
, max_depth
,
1574 /* Copy the various flags, fields, and other information. We assume
1575 that all fields need copying, and then clear the fields that should
1576 not be copied. That is the sensible default behavior, and forces
1577 us to explicitly document why we are *not* copying a flag. */
1581 copy
= shallow_copy_rtx (orig
);
1583 format_ptr
= GET_RTX_FORMAT (code
);
1585 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
1586 switch (*format_ptr
++)
1589 if (XEXP (orig
, i
) != NULL
)
1591 rtx result
= cselib_expand_value_rtx_1 (XEXP (orig
, i
), evd
,
1596 XEXP (copy
, i
) = result
;
1602 if (XVEC (orig
, i
) != NULL
)
1605 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
1606 for (j
= 0; j
< XVECLEN (orig
, i
); j
++)
1608 rtx result
= cselib_expand_value_rtx_1 (XVECEXP (orig
, i
, j
),
1609 evd
, max_depth
- 1);
1613 XVECEXP (copy
, i
, j
) = result
;
1627 /* These are left unchanged. */
1637 mode
= GET_MODE (copy
);
1638 /* If an operand has been simplified into CONST_INT, which doesn't
1639 have a mode and the mode isn't derivable from whole rtx's mode,
1640 try simplify_*_operation first with mode from original's operand
1641 and as a fallback wrap CONST_INT into gen_rtx_CONST. */
1643 switch (GET_RTX_CLASS (code
))
1646 if (CONST_INT_P (XEXP (copy
, 0))
1647 && GET_MODE (XEXP (orig
, 0)) != VOIDmode
)
1649 scopy
= simplify_unary_operation (code
, mode
, XEXP (copy
, 0),
1650 GET_MODE (XEXP (orig
, 0)));
1655 case RTX_COMM_ARITH
:
1657 /* These expressions can derive operand modes from the whole rtx's mode. */
1660 case RTX_BITFIELD_OPS
:
1661 if (CONST_INT_P (XEXP (copy
, 0))
1662 && GET_MODE (XEXP (orig
, 0)) != VOIDmode
)
1664 scopy
= simplify_ternary_operation (code
, mode
,
1665 GET_MODE (XEXP (orig
, 0)),
1666 XEXP (copy
, 0), XEXP (copy
, 1),
1673 case RTX_COMM_COMPARE
:
1674 if (CONST_INT_P (XEXP (copy
, 0))
1675 && GET_MODE (XEXP (copy
, 1)) == VOIDmode
1676 && (GET_MODE (XEXP (orig
, 0)) != VOIDmode
1677 || GET_MODE (XEXP (orig
, 1)) != VOIDmode
))
1679 scopy
= simplify_relational_operation (code
, mode
,
1680 (GET_MODE (XEXP (orig
, 0))
1682 ? GET_MODE (XEXP (orig
, 0))
1683 : GET_MODE (XEXP (orig
, 1)),
1693 scopy
= simplify_rtx (copy
);
1699 /* Walk rtx X and replace all occurrences of REG and MEM subexpressions
1700 with VALUE expressions. This way, it becomes independent of changes
1701 to registers and memory.
1702 X isn't actually modified; if modifications are needed, new rtl is
1703 allocated. However, the return value can share rtl with X.
1704 If X is within a MEM, MEMMODE must be the mode of the MEM. */
1707 cselib_subst_to_values (rtx x
, enum machine_mode memmode
)
1709 enum rtx_code code
= GET_CODE (x
);
1710 const char *fmt
= GET_RTX_FORMAT (code
);
1719 l
= REG_VALUES (REGNO (x
));
1720 if (l
&& l
->elt
== NULL
)
1722 for (; l
; l
= l
->next
)
1723 if (GET_MODE (l
->elt
->val_rtx
) == GET_MODE (x
))
1724 return l
->elt
->val_rtx
;
1729 e
= cselib_lookup_mem (x
, 0);
1730 /* This used to happen for autoincrements, but we deal with them
1731 properly now. Remove the if stmt for the next release. */
1734 /* Assign a value that doesn't match any other. */
1735 e
= new_cselib_val (next_uid
, GET_MODE (x
), x
);
1740 e
= cselib_lookup (x
, GET_MODE (x
), 0, memmode
);
1753 gcc_assert (memmode
!= VOIDmode
);
1754 i
= GET_MODE_SIZE (memmode
);
1755 if (code
== PRE_DEC
)
1757 return cselib_subst_to_values (plus_constant (XEXP (x
, 0), i
),
1761 gcc_assert (memmode
!= VOIDmode
);
1762 return cselib_subst_to_values (XEXP (x
, 1), memmode
);
1767 gcc_assert (memmode
!= VOIDmode
);
1768 return cselib_subst_to_values (XEXP (x
, 0), memmode
);
1774 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1778 rtx t
= cselib_subst_to_values (XEXP (x
, i
), memmode
);
1780 if (t
!= XEXP (x
, i
))
1783 copy
= shallow_copy_rtx (x
);
1787 else if (fmt
[i
] == 'E')
1791 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1793 rtx t
= cselib_subst_to_values (XVECEXP (x
, i
, j
), memmode
);
1795 if (t
!= XVECEXP (x
, i
, j
))
1797 if (XVEC (x
, i
) == XVEC (copy
, i
))
1800 copy
= shallow_copy_rtx (x
);
1801 XVEC (copy
, i
) = shallow_copy_rtvec (XVEC (x
, i
));
1803 XVECEXP (copy
, i
, j
) = t
;
1812 /* Look up the rtl expression X in our tables and return the value it
1813 has. If CREATE is zero, we return NULL if we don't know the value.
1814 Otherwise, we create a new one if possible, using mode MODE if X
1815 doesn't have a mode (i.e. because it's a constant). When X is part
1816 of an address, MEMMODE should be the mode of the enclosing MEM if
1817 we're tracking autoinc expressions. */
1820 cselib_lookup_1 (rtx x
, enum machine_mode mode
,
1821 int create
, enum machine_mode memmode
)
1825 unsigned int hashval
;
1827 if (GET_MODE (x
) != VOIDmode
)
1828 mode
= GET_MODE (x
);
1830 if (GET_CODE (x
) == VALUE
)
1831 return CSELIB_VAL_PTR (x
);
1836 unsigned int i
= REGNO (x
);
1839 if (l
&& l
->elt
== NULL
)
1841 for (; l
; l
= l
->next
)
1842 if (mode
== GET_MODE (l
->elt
->val_rtx
))
1844 promote_debug_loc (l
->elt
->locs
);
1851 if (i
< FIRST_PSEUDO_REGISTER
)
1853 unsigned int n
= hard_regno_nregs
[i
][mode
];
1855 if (n
> max_value_regs
)
1859 e
= new_cselib_val (next_uid
, GET_MODE (x
), x
);
1860 e
->locs
= new_elt_loc_list (e
->locs
, x
);
1861 if (REG_VALUES (i
) == 0)
1863 /* Maintain the invariant that the first entry of
1864 REG_VALUES, if present, must be the value used to set the
1865 register, or NULL. */
1866 used_regs
[n_used_regs
++] = i
;
1867 REG_VALUES (i
) = new_elt_list (REG_VALUES (i
), NULL
);
1869 else if (cselib_preserve_constants
1870 && GET_MODE_CLASS (mode
) == MODE_INT
)
1872 /* During var-tracking, try harder to find equivalences
1873 for SUBREGs. If a setter sets say a DImode register
1874 and user uses that register only in SImode, add a lowpart
1876 struct elt_list
*lwider
= NULL
;
1878 if (l
&& l
->elt
== NULL
)
1880 for (; l
; l
= l
->next
)
1881 if (GET_MODE_CLASS (GET_MODE (l
->elt
->val_rtx
)) == MODE_INT
1882 && GET_MODE_SIZE (GET_MODE (l
->elt
->val_rtx
))
1883 > GET_MODE_SIZE (mode
)
1885 || GET_MODE_SIZE (GET_MODE (l
->elt
->val_rtx
))
1886 < GET_MODE_SIZE (GET_MODE (lwider
->elt
->val_rtx
))))
1888 struct elt_loc_list
*el
;
1889 if (i
< FIRST_PSEUDO_REGISTER
1890 && hard_regno_nregs
[i
][GET_MODE (l
->elt
->val_rtx
)] != 1)
1892 for (el
= l
->elt
->locs
; el
; el
= el
->next
)
1893 if (!REG_P (el
->loc
))
1900 rtx sub
= lowpart_subreg (mode
, lwider
->elt
->val_rtx
,
1901 GET_MODE (lwider
->elt
->val_rtx
));
1903 e
->locs
->next
= new_elt_loc_list (e
->locs
->next
, sub
);
1906 REG_VALUES (i
)->next
= new_elt_list (REG_VALUES (i
)->next
, e
);
1907 slot
= cselib_find_slot (x
, e
->hash
, INSERT
, memmode
);
1913 return cselib_lookup_mem (x
, create
);
1915 hashval
= cselib_hash_rtx (x
, create
, memmode
);
1916 /* Can't even create if hashing is not possible. */
1920 slot
= cselib_find_slot (wrap_constant (mode
, x
), hashval
,
1921 create
? INSERT
: NO_INSERT
, memmode
);
1925 e
= (cselib_val
*) *slot
;
1929 e
= new_cselib_val (hashval
, mode
, x
);
1931 /* We have to fill the slot before calling cselib_subst_to_values:
1932 the hash table is inconsistent until we do so, and
1933 cselib_subst_to_values will need to do lookups. */
1935 e
->locs
= new_elt_loc_list (e
->locs
,
1936 cselib_subst_to_values (x
, memmode
));
1940 /* Wrapper for cselib_lookup, that indicates X is in INSN. */
1943 cselib_lookup_from_insn (rtx x
, enum machine_mode mode
,
1944 int create
, enum machine_mode memmode
, rtx insn
)
1948 gcc_assert (!cselib_current_insn
);
1949 cselib_current_insn
= insn
;
1951 ret
= cselib_lookup (x
, mode
, create
, memmode
);
1953 cselib_current_insn
= NULL
;
1958 /* Wrapper for cselib_lookup_1, that logs the lookup result and
1959 maintains invariants related with debug insns. */
1962 cselib_lookup (rtx x
, enum machine_mode mode
,
1963 int create
, enum machine_mode memmode
)
1965 cselib_val
*ret
= cselib_lookup_1 (x
, mode
, create
, memmode
);
1967 /* ??? Should we return NULL if we're not to create an entry, the
1968 found loc is a debug loc and cselib_current_insn is not DEBUG?
1969 If so, we should also avoid converting val to non-DEBUG; probably
1970 easiest setting cselib_current_insn to NULL before the call
1973 if (dump_file
&& (dump_flags
& TDF_CSELIB
))
1975 fputs ("cselib lookup ", dump_file
);
1976 print_inline_rtx (dump_file
, x
, 2);
1977 fprintf (dump_file
, " => %u:%u\n",
1979 ret
? ret
->hash
: 0);
1985 /* Invalidate any entries in reg_values that overlap REGNO. This is called
1986 if REGNO is changing. MODE is the mode of the assignment to REGNO, which
1987 is used to determine how many hard registers are being changed. If MODE
1988 is VOIDmode, then only REGNO is being changed; this is used when
1989 invalidating call clobbered registers across a call. */
1992 cselib_invalidate_regno (unsigned int regno
, enum machine_mode mode
)
1994 unsigned int endregno
;
1997 /* If we see pseudos after reload, something is _wrong_. */
1998 gcc_assert (!reload_completed
|| regno
< FIRST_PSEUDO_REGISTER
1999 || reg_renumber
[regno
] < 0);
2001 /* Determine the range of registers that must be invalidated. For
2002 pseudos, only REGNO is affected. For hard regs, we must take MODE
2003 into account, and we must also invalidate lower register numbers
2004 if they contain values that overlap REGNO. */
2005 if (regno
< FIRST_PSEUDO_REGISTER
)
2007 gcc_assert (mode
!= VOIDmode
);
2009 if (regno
< max_value_regs
)
2012 i
= regno
- max_value_regs
;
2014 endregno
= end_hard_regno (mode
, regno
);
2019 endregno
= regno
+ 1;
2022 for (; i
< endregno
; i
++)
2024 struct elt_list
**l
= ®_VALUES (i
);
2026 /* Go through all known values for this reg; if it overlaps the range
2027 we're invalidating, remove the value. */
2030 cselib_val
*v
= (*l
)->elt
;
2033 struct elt_loc_list
**p
;
2034 unsigned int this_last
= i
;
2036 if (i
< FIRST_PSEUDO_REGISTER
&& v
!= NULL
)
2037 this_last
= end_hard_regno (GET_MODE (v
->val_rtx
), i
) - 1;
2039 if (this_last
< regno
|| v
== NULL
2040 || (v
== cfa_base_preserved_val
2041 && i
== cfa_base_preserved_regno
))
2047 /* We have an overlap. */
2048 if (*l
== REG_VALUES (i
))
2050 /* Maintain the invariant that the first entry of
2051 REG_VALUES, if present, must be the value used to set
2052 the register, or NULL. This is also nice because
2053 then we won't push the same regno onto user_regs
2059 unchain_one_elt_list (l
);
2061 had_locs
= v
->locs
!= NULL
;
2062 setting_insn
= v
->locs
? v
->locs
->setting_insn
: NULL
;
2064 /* Now, we clear the mapping from value to reg. It must exist, so
2065 this code will crash intentionally if it doesn't. */
2066 for (p
= &v
->locs
; ; p
= &(*p
)->next
)
2070 if (REG_P (x
) && REGNO (x
) == i
)
2072 unchain_one_elt_loc_list (p
);
2077 if (had_locs
&& v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
2079 if (setting_insn
&& DEBUG_INSN_P (setting_insn
))
2080 n_useless_debug_values
++;
2088 /* Return 1 if X has a value that can vary even between two
2089 executions of the program. 0 means X can be compared reliably
2090 against certain constants or near-constants. */
2093 cselib_rtx_varies_p (const_rtx x ATTRIBUTE_UNUSED
, bool from_alias ATTRIBUTE_UNUSED
)
2095 /* We actually don't need to verify very hard. This is because
2096 if X has actually changed, we invalidate the memory anyway,
2097 so assume that all common memory addresses are
2102 /* Invalidate any locations in the table which are changed because of a
2103 store to MEM_RTX. If this is called because of a non-const call
2104 instruction, MEM_RTX is (mem:BLK const0_rtx). */
2107 cselib_invalidate_mem (rtx mem_rtx
)
2109 cselib_val
**vp
, *v
, *next
;
2113 mem_addr
= canon_rtx (get_addr (XEXP (mem_rtx
, 0)));
2114 mem_rtx
= canon_rtx (mem_rtx
);
2116 vp
= &first_containing_mem
;
2117 for (v
= *vp
; v
!= &dummy_val
; v
= next
)
2119 bool has_mem
= false;
2120 struct elt_loc_list
**p
= &v
->locs
;
2121 bool had_locs
= v
->locs
!= NULL
;
2122 rtx setting_insn
= v
->locs
? v
->locs
->setting_insn
: NULL
;
2128 struct elt_list
**mem_chain
;
2130 /* MEMs may occur in locations only at the top level; below
2131 that every MEM or REG is substituted by its VALUE. */
2137 if (num_mems
< PARAM_VALUE (PARAM_MAX_CSELIB_MEMORY_LOCATIONS
)
2138 && ! canon_true_dependence (mem_rtx
, GET_MODE (mem_rtx
), mem_addr
,
2139 x
, NULL_RTX
, cselib_rtx_varies_p
))
2147 /* This one overlaps. */
2148 /* We must have a mapping from this MEM's address to the
2149 value (E). Remove that, too. */
2150 addr
= cselib_lookup (XEXP (x
, 0), VOIDmode
, 0, GET_MODE (x
));
2151 mem_chain
= &addr
->addr_list
;
2154 if ((*mem_chain
)->elt
== v
)
2156 unchain_one_elt_list (mem_chain
);
2160 mem_chain
= &(*mem_chain
)->next
;
2163 unchain_one_elt_loc_list (p
);
2166 if (had_locs
&& v
->locs
== 0 && !PRESERVED_VALUE_P (v
->val_rtx
))
2168 if (setting_insn
&& DEBUG_INSN_P (setting_insn
))
2169 n_useless_debug_values
++;
2174 next
= v
->next_containing_mem
;
2178 vp
= &(*vp
)->next_containing_mem
;
2181 v
->next_containing_mem
= NULL
;
2186 /* Invalidate DEST, which is being assigned to or clobbered. */
2189 cselib_invalidate_rtx (rtx dest
)
2191 while (GET_CODE (dest
) == SUBREG
2192 || GET_CODE (dest
) == ZERO_EXTRACT
2193 || GET_CODE (dest
) == STRICT_LOW_PART
)
2194 dest
= XEXP (dest
, 0);
2197 cselib_invalidate_regno (REGNO (dest
), GET_MODE (dest
));
2198 else if (MEM_P (dest
))
2199 cselib_invalidate_mem (dest
);
2202 /* A wrapper for cselib_invalidate_rtx to be called via note_stores. */
2205 cselib_invalidate_rtx_note_stores (rtx dest
, const_rtx ignore ATTRIBUTE_UNUSED
,
2206 void *data ATTRIBUTE_UNUSED
)
2208 cselib_invalidate_rtx (dest
);
2211 /* Record the result of a SET instruction. DEST is being set; the source
2212 contains the value described by SRC_ELT. If DEST is a MEM, DEST_ADDR_ELT
2213 describes its address. */
2216 cselib_record_set (rtx dest
, cselib_val
*src_elt
, cselib_val
*dest_addr_elt
)
2218 int dreg
= REG_P (dest
) ? (int) REGNO (dest
) : -1;
2220 if (src_elt
== 0 || side_effects_p (dest
))
2225 if (dreg
< FIRST_PSEUDO_REGISTER
)
2227 unsigned int n
= hard_regno_nregs
[dreg
][GET_MODE (dest
)];
2229 if (n
> max_value_regs
)
2233 if (REG_VALUES (dreg
) == 0)
2235 used_regs
[n_used_regs
++] = dreg
;
2236 REG_VALUES (dreg
) = new_elt_list (REG_VALUES (dreg
), src_elt
);
2240 /* The register should have been invalidated. */
2241 gcc_assert (REG_VALUES (dreg
)->elt
== 0);
2242 REG_VALUES (dreg
)->elt
= src_elt
;
2245 if (src_elt
->locs
== 0 && !PRESERVED_VALUE_P (src_elt
->val_rtx
))
2247 src_elt
->locs
= new_elt_loc_list (src_elt
->locs
, dest
);
2249 else if (MEM_P (dest
) && dest_addr_elt
!= 0
2250 && cselib_record_memory
)
2252 if (src_elt
->locs
== 0 && !PRESERVED_VALUE_P (src_elt
->val_rtx
))
2254 add_mem_for_addr (dest_addr_elt
, src_elt
, dest
);
2258 /* There is no good way to determine how many elements there can be
2259 in a PARALLEL. Since it's fairly cheap, use a really large number. */
2260 #define MAX_SETS (FIRST_PSEUDO_REGISTER * 2)
2262 struct cselib_record_autoinc_data
2264 struct cselib_set
*sets
;
2268 /* Callback for for_each_inc_dec. Records in ARG the SETs implied by
2269 autoinc RTXs: SRC plus SRCOFF if non-NULL is stored in DEST. */
2272 cselib_record_autoinc_cb (rtx mem ATTRIBUTE_UNUSED
, rtx op ATTRIBUTE_UNUSED
,
2273 rtx dest
, rtx src
, rtx srcoff
, void *arg
)
2275 struct cselib_record_autoinc_data
*data
;
2276 data
= (struct cselib_record_autoinc_data
*)arg
;
2278 data
->sets
[data
->n_sets
].dest
= dest
;
2281 data
->sets
[data
->n_sets
].src
= gen_rtx_PLUS (GET_MODE (src
), src
, srcoff
);
2283 data
->sets
[data
->n_sets
].src
= src
;
2290 /* Record the effects of any sets and autoincs in INSN. */
2292 cselib_record_sets (rtx insn
)
2296 struct cselib_set sets
[MAX_SETS
];
2297 rtx body
= PATTERN (insn
);
2299 int n_sets_before_autoinc
;
2300 struct cselib_record_autoinc_data data
;
2302 body
= PATTERN (insn
);
2303 if (GET_CODE (body
) == COND_EXEC
)
2305 cond
= COND_EXEC_TEST (body
);
2306 body
= COND_EXEC_CODE (body
);
2309 /* Find all sets. */
2310 if (GET_CODE (body
) == SET
)
2312 sets
[0].src
= SET_SRC (body
);
2313 sets
[0].dest
= SET_DEST (body
);
2316 else if (GET_CODE (body
) == PARALLEL
)
2318 /* Look through the PARALLEL and record the values being
2319 set, if possible. Also handle any CLOBBERs. */
2320 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; --i
)
2322 rtx x
= XVECEXP (body
, 0, i
);
2324 if (GET_CODE (x
) == SET
)
2326 sets
[n_sets
].src
= SET_SRC (x
);
2327 sets
[n_sets
].dest
= SET_DEST (x
);
2334 && MEM_P (sets
[0].src
)
2335 && !cselib_record_memory
2336 && MEM_READONLY_P (sets
[0].src
))
2338 rtx note
= find_reg_equal_equiv_note (insn
);
2340 if (note
&& CONSTANT_P (XEXP (note
, 0)))
2341 sets
[0].src
= XEXP (note
, 0);
2345 data
.n_sets
= n_sets_before_autoinc
= n_sets
;
2346 for_each_inc_dec (&insn
, cselib_record_autoinc_cb
, &data
);
2347 n_sets
= data
.n_sets
;
2349 /* Look up the values that are read. Do this before invalidating the
2350 locations that are written. */
2351 for (i
= 0; i
< n_sets
; i
++)
2353 rtx dest
= sets
[i
].dest
;
2355 /* A STRICT_LOW_PART can be ignored; we'll record the equivalence for
2356 the low part after invalidating any knowledge about larger modes. */
2357 if (GET_CODE (sets
[i
].dest
) == STRICT_LOW_PART
)
2358 sets
[i
].dest
= dest
= XEXP (dest
, 0);
2360 /* We don't know how to record anything but REG or MEM. */
2362 || (MEM_P (dest
) && cselib_record_memory
))
2364 rtx src
= sets
[i
].src
;
2366 src
= gen_rtx_IF_THEN_ELSE (GET_MODE (dest
), cond
, src
, dest
);
2367 sets
[i
].src_elt
= cselib_lookup (src
, GET_MODE (dest
), 1, VOIDmode
);
2370 enum machine_mode address_mode
2371 = targetm
.addr_space
.address_mode (MEM_ADDR_SPACE (dest
));
2373 sets
[i
].dest_addr_elt
= cselib_lookup (XEXP (dest
, 0),
2378 sets
[i
].dest_addr_elt
= 0;
2382 if (cselib_record_sets_hook
)
2383 cselib_record_sets_hook (insn
, sets
, n_sets
);
2385 /* Invalidate all locations written by this insn. Note that the elts we
2386 looked up in the previous loop aren't affected, just some of their
2387 locations may go away. */
2388 note_stores (body
, cselib_invalidate_rtx_note_stores
, NULL
);
2390 for (i
= n_sets_before_autoinc
; i
< n_sets
; i
++)
2391 cselib_invalidate_rtx (sets
[i
].dest
);
2393 /* If this is an asm, look for duplicate sets. This can happen when the
2394 user uses the same value as an output multiple times. This is valid
2395 if the outputs are not actually used thereafter. Treat this case as
2396 if the value isn't actually set. We do this by smashing the destination
2397 to pc_rtx, so that we won't record the value later. */
2398 if (n_sets
>= 2 && asm_noperands (body
) >= 0)
2400 for (i
= 0; i
< n_sets
; i
++)
2402 rtx dest
= sets
[i
].dest
;
2403 if (REG_P (dest
) || MEM_P (dest
))
2406 for (j
= i
+ 1; j
< n_sets
; j
++)
2407 if (rtx_equal_p (dest
, sets
[j
].dest
))
2409 sets
[i
].dest
= pc_rtx
;
2410 sets
[j
].dest
= pc_rtx
;
2416 /* Now enter the equivalences in our tables. */
2417 for (i
= 0; i
< n_sets
; i
++)
2419 rtx dest
= sets
[i
].dest
;
2421 || (MEM_P (dest
) && cselib_record_memory
))
2422 cselib_record_set (dest
, sets
[i
].src_elt
, sets
[i
].dest_addr_elt
);
2426 /* Record the effects of INSN. */
2429 cselib_process_insn (rtx insn
)
2434 cselib_current_insn
= insn
;
2436 /* Forget everything at a CODE_LABEL, a volatile asm, or a setjmp. */
2439 && find_reg_note (insn
, REG_SETJMP
, NULL
))
2440 || (NONJUMP_INSN_P (insn
)
2441 && GET_CODE (PATTERN (insn
)) == ASM_OPERANDS
2442 && MEM_VOLATILE_P (PATTERN (insn
))))
2444 cselib_reset_table (next_uid
);
2445 cselib_current_insn
= NULL_RTX
;
2449 if (! INSN_P (insn
))
2451 cselib_current_insn
= NULL_RTX
;
2455 /* If this is a call instruction, forget anything stored in a
2456 call clobbered register, or, if this is not a const call, in
2460 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
2461 if (call_used_regs
[i
]
2462 || (REG_VALUES (i
) && REG_VALUES (i
)->elt
2463 && HARD_REGNO_CALL_PART_CLOBBERED (i
,
2464 GET_MODE (REG_VALUES (i
)->elt
->val_rtx
))))
2465 cselib_invalidate_regno (i
, reg_raw_mode
[i
]);
2467 /* Since it is not clear how cselib is going to be used, be
2468 conservative here and treat looping pure or const functions
2469 as if they were regular functions. */
2470 if (RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
)
2471 || !(RTL_CONST_OR_PURE_CALL_P (insn
)))
2472 cselib_invalidate_mem (callmem
);
2475 cselib_record_sets (insn
);
2477 /* Look for any CLOBBERs in CALL_INSN_FUNCTION_USAGE, but only
2478 after we have processed the insn. */
2480 for (x
= CALL_INSN_FUNCTION_USAGE (insn
); x
; x
= XEXP (x
, 1))
2481 if (GET_CODE (XEXP (x
, 0)) == CLOBBER
)
2482 cselib_invalidate_rtx (XEXP (XEXP (x
, 0), 0));
2484 cselib_current_insn
= NULL_RTX
;
2486 if (n_useless_values
> MAX_USELESS_VALUES
2487 /* remove_useless_values is linear in the hash table size. Avoid
2488 quadratic behavior for very large hashtables with very few
2489 useless elements. */
2490 && ((unsigned int)n_useless_values
2491 > (cselib_hash_table
->n_elements
2492 - cselib_hash_table
->n_deleted
2493 - n_debug_values
) / 4))
2494 remove_useless_values ();
2497 /* Initialize cselib for one pass. The caller must also call
2498 init_alias_analysis. */
2501 cselib_init (int record_what
)
2503 elt_list_pool
= create_alloc_pool ("elt_list",
2504 sizeof (struct elt_list
), 10);
2505 elt_loc_list_pool
= create_alloc_pool ("elt_loc_list",
2506 sizeof (struct elt_loc_list
), 10);
2507 cselib_val_pool
= create_alloc_pool ("cselib_val_list",
2508 sizeof (cselib_val
), 10);
2509 value_pool
= create_alloc_pool ("value", RTX_CODE_SIZE (VALUE
), 100);
2510 cselib_record_memory
= record_what
& CSELIB_RECORD_MEMORY
;
2511 cselib_preserve_constants
= record_what
& CSELIB_PRESERVE_CONSTANTS
;
2513 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything,
2514 see canon_true_dependence. This is only created once. */
2516 callmem
= gen_rtx_MEM (BLKmode
, gen_rtx_SCRATCH (VOIDmode
));
2518 cselib_nregs
= max_reg_num ();
2520 /* We preserve reg_values to allow expensive clearing of the whole thing.
2521 Reallocate it however if it happens to be too large. */
2522 if (!reg_values
|| reg_values_size
< cselib_nregs
2523 || (reg_values_size
> 10 && reg_values_size
> cselib_nregs
* 4))
2526 /* Some space for newly emit instructions so we don't end up
2527 reallocating in between passes. */
2528 reg_values_size
= cselib_nregs
+ (63 + cselib_nregs
) / 16;
2529 reg_values
= XCNEWVEC (struct elt_list
*, reg_values_size
);
2531 used_regs
= XNEWVEC (unsigned int, cselib_nregs
);
2533 cselib_hash_table
= htab_create (31, get_value_hash
,
2534 entry_and_rtx_equal_p
, NULL
);
2538 /* Called when the current user is done with cselib. */
2541 cselib_finish (void)
2543 cselib_discard_hook
= NULL
;
2544 cselib_preserve_constants
= false;
2545 cfa_base_preserved_val
= NULL
;
2546 cfa_base_preserved_regno
= INVALID_REGNUM
;
2547 free_alloc_pool (elt_list_pool
);
2548 free_alloc_pool (elt_loc_list_pool
);
2549 free_alloc_pool (cselib_val_pool
);
2550 free_alloc_pool (value_pool
);
2551 cselib_clear_table ();
2552 htab_delete (cselib_hash_table
);
2555 cselib_hash_table
= 0;
2556 n_useless_values
= 0;
2557 n_useless_debug_values
= 0;
2562 /* Dump the cselib_val *X to FILE *info. */
2565 dump_cselib_val (void **x
, void *info
)
2567 cselib_val
*v
= (cselib_val
*)*x
;
2568 FILE *out
= (FILE *)info
;
2569 bool need_lf
= true;
2571 print_inline_rtx (out
, v
->val_rtx
, 0);
2575 struct elt_loc_list
*l
= v
->locs
;
2581 fputs (" locs:", out
);
2584 fprintf (out
, "\n from insn %i ",
2585 INSN_UID (l
->setting_insn
));
2586 print_inline_rtx (out
, l
->loc
, 4);
2588 while ((l
= l
->next
));
2593 fputs (" no locs", out
);
2599 struct elt_list
*e
= v
->addr_list
;
2605 fputs (" addr list:", out
);
2609 print_inline_rtx (out
, e
->elt
->val_rtx
, 2);
2611 while ((e
= e
->next
));
2616 fputs (" no addrs", out
);
2620 if (v
->next_containing_mem
== &dummy_val
)
2621 fputs (" last mem\n", out
);
2622 else if (v
->next_containing_mem
)
2624 fputs (" next mem ", out
);
2625 print_inline_rtx (out
, v
->next_containing_mem
->val_rtx
, 2);
2634 /* Dump to OUT everything in the CSELIB table. */
2637 dump_cselib_table (FILE *out
)
2639 fprintf (out
, "cselib hash table:\n");
2640 htab_traverse (cselib_hash_table
, dump_cselib_val
, out
);
2641 if (first_containing_mem
!= &dummy_val
)
2643 fputs ("first mem ", out
);
2644 print_inline_rtx (out
, first_containing_mem
->val_rtx
, 2);
2647 fprintf (out
, "next uid %i\n", next_uid
);
2650 #include "gt-cselib.h"