1 /* Post reload partially redundant load elimination
2 Copyright (C) 2004-2016 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"
31 #include "insn-config.h"
39 #include "tree-pass.h"
41 #include "gcse-common.h"
43 /* The following code implements gcse after reload, the purpose of this
44 pass is to cleanup redundant loads generated by reload and other
45 optimizations that come after gcse. It searches for simple inter-block
46 redundancies and tries to eliminate them by adding moves and loads
49 Perform partially redundant load elimination, try to eliminate redundant
50 loads created by the reload pass. We try to look for full or partial
51 redundant loads fed by one or more loads/stores in predecessor BBs,
52 and try adding loads to make them fully redundant. We also check if
53 it's worth adding loads to be able to delete the redundant load.
56 1. Build available expressions hash table:
57 For each load/store instruction, if the loaded/stored memory didn't
58 change until the end of the basic block add this memory expression to
60 2. Perform Redundancy elimination:
61 For each load instruction do the following:
62 perform partial redundancy elimination, check if it's worth adding
63 loads to make the load fully redundant. If so add loads and
64 register copies and delete the load.
65 3. Delete instructions made redundant in step 2.
68 If the loaded register is used/defined between load and some store,
69 look for some other free register between load and all its stores,
70 and replace the load with a copy from this register to the loaded
75 /* Keep statistics of this pass. */
83 /* We need to keep a hash table of expressions. The table entries are of
84 type 'struct expr', and for each expression there is a single linked
85 list of occurrences. */
87 /* Expression elements in the hash table. */
90 /* The expression (SET_SRC for expressions, PATTERN for assignments). */
93 /* The same hash for this entry. */
96 /* Index in the transparent bitmaps. */
97 unsigned int bitmap_index
;
99 /* List of available occurrence in basic blocks in the function. */
100 struct occr
*avail_occr
;
103 /* Hashtable helpers. */
105 struct expr_hasher
: nofree_ptr_hash
<expr
>
107 static inline hashval_t
hash (const expr
*);
108 static inline bool equal (const expr
*, const expr
*);
112 /* Hash expression X.
113 DO_NOT_RECORD_P is a boolean indicating if a volatile operand is found
114 or if the expression contains something we don't want to insert in the
118 hash_expr (rtx x
, int *do_not_record_p
)
120 *do_not_record_p
= 0;
121 return hash_rtx (x
, GET_MODE (x
), do_not_record_p
,
122 NULL
, /*have_reg_qty=*/false);
125 /* Callback for hashtab.
126 Return the hash value for expression EXP. We don't actually hash
127 here, we just return the cached hash value. */
130 expr_hasher::hash (const expr
*exp
)
135 /* Callback for hashtab.
136 Return nonzero if exp1 is equivalent to exp2. */
139 expr_hasher::equal (const expr
*exp1
, const expr
*exp2
)
141 int equiv_p
= exp_equiv_p (exp1
->expr
, exp2
->expr
, 0, true);
143 gcc_assert (!equiv_p
|| exp1
->hash
== exp2
->hash
);
147 /* The table itself. */
148 static hash_table
<expr_hasher
> *expr_table
;
151 static struct obstack expr_obstack
;
153 /* Occurrence of an expression.
154 There is at most one occurrence per basic block. If a pattern appears
155 more than once, the last appearance is used. */
159 /* Next occurrence of this expression. */
161 /* The insn that computes the expression. */
163 /* Nonzero if this [anticipatable] occurrence has been deleted. */
167 static struct obstack occr_obstack
;
169 /* The following structure holds the information about the occurrences of
170 the redundant instructions. */
178 static struct obstack unoccr_obstack
;
180 /* Array where each element is the CUID if the insn that last set the hard
181 register with the number of the element, since the start of the current
184 This array is used during the building of the hash table (step 1) to
185 determine if a reg is killed before the end of a basic block.
187 It is also used when eliminating partial redundancies (step 2) to see
188 if a reg was modified since the start of a basic block. */
189 static int *reg_avail_info
;
191 /* A list of insns that may modify memory within the current basic block. */
195 struct modifies_mem
*next
;
197 static struct modifies_mem
*modifies_mem_list
;
199 /* The modifies_mem structs also go on an obstack, only this obstack is
200 freed each time after completing the analysis or transformations on
201 a basic block. So we allocate a dummy modifies_mem_obstack_bottom
202 object on the obstack to keep track of the bottom of the obstack. */
203 static struct obstack modifies_mem_obstack
;
204 static struct modifies_mem
*modifies_mem_obstack_bottom
;
206 /* Mapping of insn UIDs to CUIDs.
207 CUIDs are like UIDs except they increase monotonically in each basic
208 block, have no gaps, and only apply to real insns. */
209 static int *uid_cuid
;
210 #define INSN_CUID(INSN) (uid_cuid[INSN_UID (INSN)])
212 /* Bitmap of blocks which have memory stores. */
213 static bitmap modify_mem_list_set
;
215 /* Bitmap of blocks which have calls. */
216 static bitmap blocks_with_calls
;
218 /* Vector indexed by block # with a list of all the insns that
219 modify memory within the block. */
220 static vec
<rtx_insn
*> *modify_mem_list
;
222 /* Vector indexed by block # with a canonicalized list of insns
223 that modify memory in the block. */
224 static vec
<modify_pair
> *canon_modify_mem_list
;
226 /* Vector of simple bitmaps indexed by block number. Each component sbitmap
227 indicates which expressions are transparent through the block. */
228 static sbitmap
*transp
;
231 /* Helpers for memory allocation/freeing. */
232 static void alloc_mem (void);
233 static void free_mem (void);
235 /* Support for hash table construction and transformations. */
236 static bool oprs_unchanged_p (rtx
, rtx_insn
*, bool);
237 static void record_last_reg_set_info (rtx_insn
*, rtx
);
238 static void record_last_reg_set_info_regno (rtx_insn
*, int);
239 static void record_last_mem_set_info (rtx_insn
*);
240 static void record_last_set_info (rtx
, const_rtx
, void *);
241 static void record_opr_changes (rtx_insn
*);
243 static void find_mem_conflicts (rtx
, const_rtx
, void *);
244 static int load_killed_in_block_p (int, rtx
, bool);
245 static void reset_opr_set_tables (void);
247 /* Hash table support. */
248 static hashval_t
hash_expr (rtx
, int *);
249 static void insert_expr_in_table (rtx
, rtx_insn
*);
250 static struct expr
*lookup_expr_in_table (rtx
);
251 static void dump_hash_table (FILE *);
253 /* Helpers for eliminate_partially_redundant_load. */
254 static bool reg_killed_on_edge (rtx
, edge
);
255 static bool reg_used_on_edge (rtx
, edge
);
257 static rtx
get_avail_load_store_reg (rtx_insn
*);
259 static bool bb_has_well_behaved_predecessors (basic_block
);
260 static struct occr
* get_bb_avail_insn (basic_block
, struct occr
*, int);
261 static void hash_scan_set (rtx_insn
*);
262 static void compute_hash_table (void);
264 /* The work horses of this pass. */
265 static void eliminate_partially_redundant_load (basic_block
,
268 static void eliminate_partially_redundant_loads (void);
271 /* Allocate memory for the CUID mapping array and register/memory
281 /* Find the largest UID and create a mapping from UIDs to CUIDs. */
282 uid_cuid
= XCNEWVEC (int, get_max_uid () + 1);
284 FOR_EACH_BB_FN (bb
, cfun
)
285 FOR_BB_INSNS (bb
, insn
)
288 uid_cuid
[INSN_UID (insn
)] = i
++;
290 uid_cuid
[INSN_UID (insn
)] = i
;
293 /* Allocate the available expressions hash table. We don't want to
294 make the hash table too small, but unnecessarily making it too large
295 also doesn't help. The i/4 is a gcse.c relic, and seems like a
296 reasonable choice. */
297 expr_table
= new hash_table
<expr_hasher
> (MAX (i
/ 4, 13));
299 /* We allocate everything on obstacks because we often can roll back
300 the whole obstack to some point. Freeing obstacks is very fast. */
301 gcc_obstack_init (&expr_obstack
);
302 gcc_obstack_init (&occr_obstack
);
303 gcc_obstack_init (&unoccr_obstack
);
304 gcc_obstack_init (&modifies_mem_obstack
);
306 /* Working array used to track the last set for each register
307 in the current block. */
308 reg_avail_info
= (int *) xmalloc (FIRST_PSEUDO_REGISTER
* sizeof (int));
310 /* Put a dummy modifies_mem object on the modifies_mem_obstack, so we
311 can roll it back in reset_opr_set_tables. */
312 modifies_mem_obstack_bottom
=
313 (struct modifies_mem
*) obstack_alloc (&modifies_mem_obstack
,
314 sizeof (struct modifies_mem
));
316 blocks_with_calls
= BITMAP_ALLOC (NULL
);
317 modify_mem_list_set
= BITMAP_ALLOC (NULL
);
319 modify_mem_list
= (vec_rtx_heap
*) xcalloc (last_basic_block_for_fn (cfun
),
320 sizeof (vec_rtx_heap
));
321 canon_modify_mem_list
322 = (vec_modify_pair_heap
*) xcalloc (last_basic_block_for_fn (cfun
),
323 sizeof (vec_modify_pair_heap
));
326 /* Free memory allocated by alloc_mem. */
336 obstack_free (&expr_obstack
, NULL
);
337 obstack_free (&occr_obstack
, NULL
);
338 obstack_free (&unoccr_obstack
, NULL
);
339 obstack_free (&modifies_mem_obstack
, NULL
);
343 EXECUTE_IF_SET_IN_BITMAP (modify_mem_list_set
, 0, i
, bi
)
345 modify_mem_list
[i
].release ();
346 canon_modify_mem_list
[i
].release ();
349 BITMAP_FREE (blocks_with_calls
);
350 BITMAP_FREE (modify_mem_list_set
);
351 free (reg_avail_info
);
352 free (modify_mem_list
);
353 free (canon_modify_mem_list
);
357 /* Insert expression X in INSN in the hash TABLE.
358 If it is already present, record it as the last occurrence in INSN's
362 insert_expr_in_table (rtx x
, rtx_insn
*insn
)
366 struct expr
*cur_expr
, **slot
;
367 struct occr
*avail_occr
, *last_occr
= NULL
;
369 hash
= hash_expr (x
, &do_not_record_p
);
371 /* Do not insert expression in the table if it contains volatile operands,
372 or if hash_expr determines the expression is something we don't want
373 to or can't handle. */
377 /* We anticipate that redundant expressions are rare, so for convenience
378 allocate a new hash table element here already and set its fields.
379 If we don't do this, we need a hack with a static struct expr. Anyway,
380 obstack_free is really fast and one more obstack_alloc doesn't hurt if
381 we're going to see more expressions later on. */
382 cur_expr
= (struct expr
*) obstack_alloc (&expr_obstack
,
383 sizeof (struct expr
));
385 cur_expr
->hash
= hash
;
386 cur_expr
->avail_occr
= NULL
;
388 slot
= expr_table
->find_slot_with_hash (cur_expr
, hash
, INSERT
);
392 /* The expression isn't found, so insert it. */
395 /* Anytime we add an entry to the table, record the index
396 of the new entry. The bitmap index starts counting
398 cur_expr
->bitmap_index
= expr_table
->elements () - 1;
402 /* The expression is already in the table, so roll back the
403 obstack and use the existing table entry. */
404 obstack_free (&expr_obstack
, cur_expr
);
408 /* Search for another occurrence in the same basic block. */
409 avail_occr
= cur_expr
->avail_occr
;
411 && BLOCK_FOR_INSN (avail_occr
->insn
) != BLOCK_FOR_INSN (insn
))
413 /* If an occurrence isn't found, save a pointer to the end of
415 last_occr
= avail_occr
;
416 avail_occr
= avail_occr
->next
;
420 /* Found another instance of the expression in the same basic block.
421 Prefer this occurrence to the currently recorded one. We want
422 the last one in the block and the block is scanned from start
424 avail_occr
->insn
= insn
;
427 /* First occurrence of this expression in this basic block. */
428 avail_occr
= (struct occr
*) obstack_alloc (&occr_obstack
,
429 sizeof (struct occr
));
431 /* First occurrence of this expression in any block? */
432 if (cur_expr
->avail_occr
== NULL
)
433 cur_expr
->avail_occr
= avail_occr
;
435 last_occr
->next
= avail_occr
;
437 avail_occr
->insn
= insn
;
438 avail_occr
->next
= NULL
;
439 avail_occr
->deleted_p
= 0;
444 /* Lookup pattern PAT in the expression hash table.
445 The result is a pointer to the table entry, or NULL if not found. */
448 lookup_expr_in_table (rtx pat
)
451 struct expr
**slot
, *tmp_expr
;
452 hashval_t hash
= hash_expr (pat
, &do_not_record_p
);
457 tmp_expr
= (struct expr
*) obstack_alloc (&expr_obstack
,
458 sizeof (struct expr
));
459 tmp_expr
->expr
= pat
;
460 tmp_expr
->hash
= hash
;
461 tmp_expr
->avail_occr
= NULL
;
463 slot
= expr_table
->find_slot_with_hash (tmp_expr
, hash
, INSERT
);
464 obstack_free (&expr_obstack
, tmp_expr
);
473 /* Dump all expressions and occurrences that are currently in the
474 expression hash table to FILE. */
476 /* This helper is called via htab_traverse. */
478 dump_expr_hash_table_entry (expr
**slot
, FILE *file
)
480 struct expr
*exprs
= *slot
;
483 fprintf (file
, "expr: ");
484 print_rtl (file
, exprs
->expr
);
485 fprintf (file
,"\nhashcode: %u\n", exprs
->hash
);
486 fprintf (file
,"list of occurrences:\n");
487 occr
= exprs
->avail_occr
;
490 rtx_insn
*insn
= occr
->insn
;
491 print_rtl_single (file
, insn
);
492 fprintf (file
, "\n");
495 fprintf (file
, "\n");
500 dump_hash_table (FILE *file
)
502 fprintf (file
, "\n\nexpression hash table\n");
503 fprintf (file
, "size %ld, %ld elements, %f collision/search ratio\n",
504 (long) expr_table
->size (),
505 (long) expr_table
->elements (),
506 expr_table
->collisions ());
507 if (expr_table
->elements () > 0)
509 fprintf (file
, "\n\ntable entries:\n");
510 expr_table
->traverse
<FILE *, dump_expr_hash_table_entry
> (file
);
512 fprintf (file
, "\n");
515 /* Return true if register X is recorded as being set by an instruction
516 whose CUID is greater than the one given. */
519 reg_changed_after_insn_p (rtx x
, int cuid
)
521 unsigned int regno
, end_regno
;
524 end_regno
= END_REGNO (x
);
526 if (reg_avail_info
[regno
] > cuid
)
528 while (++regno
< end_regno
);
532 /* Return nonzero if the operands of expression X are unchanged
533 1) from the start of INSN's basic block up to but not including INSN
534 if AFTER_INSN is false, or
535 2) from INSN to the end of INSN's basic block if AFTER_INSN is true. */
538 oprs_unchanged_p (rtx x
, rtx_insn
*insn
, bool after_insn
)
551 /* We are called after register allocation. */
552 gcc_assert (REGNO (x
) < FIRST_PSEUDO_REGISTER
);
554 return !reg_changed_after_insn_p (x
, INSN_CUID (insn
) - 1);
556 return !reg_changed_after_insn_p (x
, 0);
559 if (load_killed_in_block_p (INSN_CUID (insn
), x
, after_insn
))
562 return oprs_unchanged_p (XEXP (x
, 0), insn
, after_insn
);
588 for (i
= GET_RTX_LENGTH (code
) - 1, fmt
= GET_RTX_FORMAT (code
); i
>= 0; i
--)
592 if (! oprs_unchanged_p (XEXP (x
, i
), insn
, after_insn
))
595 else if (fmt
[i
] == 'E')
596 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
597 if (! oprs_unchanged_p (XVECEXP (x
, i
, j
), insn
, after_insn
))
605 /* Used for communication between find_mem_conflicts and
606 load_killed_in_block_p. Nonzero if find_mem_conflicts finds a
607 conflict between two memory references.
608 This is a bit of a hack to work around the limitations of note_stores. */
609 static int mems_conflict_p
;
611 /* DEST is the output of an instruction. If it is a memory reference, and
612 possibly conflicts with the load found in DATA, then set mems_conflict_p
613 to a nonzero value. */
616 find_mem_conflicts (rtx dest
, const_rtx setter ATTRIBUTE_UNUSED
,
619 rtx mem_op
= (rtx
) data
;
621 while (GET_CODE (dest
) == SUBREG
622 || GET_CODE (dest
) == ZERO_EXTRACT
623 || GET_CODE (dest
) == STRICT_LOW_PART
)
624 dest
= XEXP (dest
, 0);
626 /* If DEST is not a MEM, then it will not conflict with the load. Note
627 that function calls are assumed to clobber memory, but are handled
632 if (true_dependence (dest
, GET_MODE (dest
), mem_op
))
637 /* Return nonzero if the expression in X (a memory reference) is killed
638 in the current basic block before (if AFTER_INSN is false) or after
639 (if AFTER_INSN is true) the insn with the CUID in UID_LIMIT.
641 This function assumes that the modifies_mem table is flushed when
642 the hash table construction or redundancy elimination phases start
643 processing a new basic block. */
646 load_killed_in_block_p (int uid_limit
, rtx x
, bool after_insn
)
648 struct modifies_mem
*list_entry
= modifies_mem_list
;
652 rtx_insn
*setter
= list_entry
->insn
;
654 /* Ignore entries in the list that do not apply. */
656 && INSN_CUID (setter
) < uid_limit
)
658 && INSN_CUID (setter
) > uid_limit
))
660 list_entry
= list_entry
->next
;
664 /* If SETTER is a call everything is clobbered. Note that calls
665 to pure functions are never put on the list, so we need not
670 /* SETTER must be an insn of some kind that sets memory. Call
671 note_stores to examine each hunk of memory that is modified.
672 It will set mems_conflict_p to nonzero if there may be a
673 conflict between X and SETTER. */
675 note_stores (PATTERN (setter
), find_mem_conflicts
, x
);
679 list_entry
= list_entry
->next
;
685 /* Record register first/last/block set information for REGNO in INSN. */
688 record_last_reg_set_info (rtx_insn
*insn
, rtx reg
)
690 unsigned int regno
, end_regno
;
693 end_regno
= END_REGNO (reg
);
695 reg_avail_info
[regno
] = INSN_CUID (insn
);
696 while (++regno
< end_regno
);
700 record_last_reg_set_info_regno (rtx_insn
*insn
, int regno
)
702 reg_avail_info
[regno
] = INSN_CUID (insn
);
706 /* Record memory modification information for INSN. We do not actually care
707 about the memory location(s) that are set, or even how they are set (consider
708 a CALL_INSN). We merely need to record which insns modify memory. */
711 record_last_mem_set_info (rtx_insn
*insn
)
713 struct modifies_mem
*list_entry
;
715 list_entry
= (struct modifies_mem
*) obstack_alloc (&modifies_mem_obstack
,
716 sizeof (struct modifies_mem
));
717 list_entry
->insn
= insn
;
718 list_entry
->next
= modifies_mem_list
;
719 modifies_mem_list
= list_entry
;
721 record_last_mem_set_info_common (insn
, modify_mem_list
,
722 canon_modify_mem_list
,
727 /* Called from compute_hash_table via note_stores to handle one
728 SET or CLOBBER in an insn. DATA is really the instruction in which
729 the SET is taking place. */
732 record_last_set_info (rtx dest
, const_rtx setter ATTRIBUTE_UNUSED
, void *data
)
734 rtx_insn
*last_set_insn
= (rtx_insn
*) data
;
736 if (GET_CODE (dest
) == SUBREG
)
737 dest
= SUBREG_REG (dest
);
740 record_last_reg_set_info (last_set_insn
, dest
);
741 else if (MEM_P (dest
))
743 /* Ignore pushes, they don't clobber memory. They may still
744 clobber the stack pointer though. Some targets do argument
745 pushes without adding REG_INC notes. See e.g. PR25196,
746 where a pushsi2 on i386 doesn't have REG_INC notes. Note
747 such changes here too. */
748 if (! push_operand (dest
, GET_MODE (dest
)))
749 record_last_mem_set_info (last_set_insn
);
751 record_last_reg_set_info_regno (last_set_insn
, STACK_POINTER_REGNUM
);
756 /* Reset tables used to keep track of what's still available since the
757 start of the block. */
760 reset_opr_set_tables (void)
762 memset (reg_avail_info
, 0, FIRST_PSEUDO_REGISTER
* sizeof (int));
763 obstack_free (&modifies_mem_obstack
, modifies_mem_obstack_bottom
);
764 modifies_mem_list
= NULL
;
768 /* Record things set by INSN.
769 This data is used by oprs_unchanged_p. */
772 record_opr_changes (rtx_insn
*insn
)
776 /* Find all stores and record them. */
777 note_stores (PATTERN (insn
), record_last_set_info
, insn
);
779 /* Also record autoincremented REGs for this insn as changed. */
780 for (note
= REG_NOTES (insn
); note
; note
= XEXP (note
, 1))
781 if (REG_NOTE_KIND (note
) == REG_INC
)
782 record_last_reg_set_info (insn
, XEXP (note
, 0));
784 /* Finally, if this is a call, record all call clobbers. */
789 hard_reg_set_iterator hrsi
;
790 EXECUTE_IF_SET_IN_HARD_REG_SET (regs_invalidated_by_call
, 0, regno
, hrsi
)
791 record_last_reg_set_info_regno (insn
, regno
);
793 for (link
= CALL_INSN_FUNCTION_USAGE (insn
); link
; link
= XEXP (link
, 1))
794 if (GET_CODE (XEXP (link
, 0)) == CLOBBER
)
796 x
= XEXP (XEXP (link
, 0), 0);
799 gcc_assert (HARD_REGISTER_P (x
));
800 record_last_reg_set_info (insn
, x
);
804 if (! RTL_CONST_OR_PURE_CALL_P (insn
))
805 record_last_mem_set_info (insn
);
810 /* Scan the pattern of INSN and add an entry to the hash TABLE.
811 After reload we are interested in loads/stores only. */
814 hash_scan_set (rtx_insn
*insn
)
816 rtx pat
= PATTERN (insn
);
817 rtx src
= SET_SRC (pat
);
818 rtx dest
= SET_DEST (pat
);
820 /* We are only interested in loads and stores. */
821 if (! MEM_P (src
) && ! MEM_P (dest
))
824 /* Don't mess with jumps and nops. */
825 if (JUMP_P (insn
) || set_noop_p (pat
))
830 if (/* Don't CSE something if we can't do a reg/reg copy. */
831 can_copy_p (GET_MODE (dest
))
832 /* Is SET_SRC something we want to gcse? */
833 && general_operand (src
, GET_MODE (src
))
835 /* Never consider insns touching the register stack. It may
836 create situations that reg-stack cannot handle (e.g. a stack
837 register live across an abnormal edge). */
838 && (REGNO (dest
) < FIRST_STACK_REG
|| REGNO (dest
) > LAST_STACK_REG
)
840 /* An expression is not available if its operands are
841 subsequently modified, including this insn. */
842 && oprs_unchanged_p (src
, insn
, true))
844 insert_expr_in_table (src
, insn
);
847 else if (REG_P (src
))
849 /* Only record sets of pseudo-regs in the hash table. */
850 if (/* Don't CSE something if we can't do a reg/reg copy. */
851 can_copy_p (GET_MODE (src
))
852 /* Is SET_DEST something we want to gcse? */
853 && general_operand (dest
, GET_MODE (dest
))
855 /* As above for STACK_REGS. */
856 && (REGNO (src
) < FIRST_STACK_REG
|| REGNO (src
) > LAST_STACK_REG
)
858 && ! (flag_float_store
&& FLOAT_MODE_P (GET_MODE (dest
)))
859 /* Check if the memory expression is killed after insn. */
860 && ! load_killed_in_block_p (INSN_CUID (insn
) + 1, dest
, true)
861 && oprs_unchanged_p (XEXP (dest
, 0), insn
, true))
863 insert_expr_in_table (dest
, insn
);
869 /* Create hash table of memory expressions available at end of basic
870 blocks. Basically you should think of this hash table as the
871 representation of AVAIL_OUT. This is the set of expressions that
872 is generated in a basic block and not killed before the end of the
873 same basic block. Notice that this is really a local computation. */
876 compute_hash_table (void)
880 FOR_EACH_BB_FN (bb
, cfun
)
884 /* First pass over the instructions records information used to
885 determine when registers and memory are last set.
886 Since we compute a "local" AVAIL_OUT, reset the tables that
887 help us keep track of what has been modified since the start
889 reset_opr_set_tables ();
890 FOR_BB_INSNS (bb
, insn
)
893 record_opr_changes (insn
);
896 /* The next pass actually builds the hash table. */
897 FOR_BB_INSNS (bb
, insn
)
898 if (INSN_P (insn
) && GET_CODE (PATTERN (insn
)) == SET
)
899 hash_scan_set (insn
);
904 /* Check if register REG is killed in any insn waiting to be inserted on
905 edge E. This function is required to check that our data flow analysis
906 is still valid prior to commit_edge_insertions. */
909 reg_killed_on_edge (rtx reg
, edge e
)
913 for (insn
= e
->insns
.r
; insn
; insn
= NEXT_INSN (insn
))
914 if (INSN_P (insn
) && reg_set_p (reg
, insn
))
920 /* Similar to above - check if register REG is used in any insn waiting
921 to be inserted on edge E.
922 Assumes no such insn can be a CALL_INSN; if so call reg_used_between_p
923 with PREV(insn),NEXT(insn) instead of calling reg_overlap_mentioned_p. */
926 reg_used_on_edge (rtx reg
, edge e
)
930 for (insn
= e
->insns
.r
; insn
; insn
= NEXT_INSN (insn
))
931 if (INSN_P (insn
) && reg_overlap_mentioned_p (reg
, PATTERN (insn
)))
937 /* Return the loaded/stored register of a load/store instruction. */
940 get_avail_load_store_reg (rtx_insn
*insn
)
942 if (REG_P (SET_DEST (PATTERN (insn
))))
944 return SET_DEST (PATTERN (insn
));
948 gcc_assert (REG_P (SET_SRC (PATTERN (insn
))));
949 return SET_SRC (PATTERN (insn
));
953 /* Return nonzero if the predecessors of BB are "well behaved". */
956 bb_has_well_behaved_predecessors (basic_block bb
)
961 if (EDGE_COUNT (bb
->preds
) == 0)
964 FOR_EACH_EDGE (pred
, ei
, bb
->preds
)
966 /* commit_one_edge_insertion refuses to insert on abnormal edges even if
967 the source has only one successor so EDGE_CRITICAL_P is too weak. */
968 if ((pred
->flags
& EDGE_ABNORMAL
) && !single_pred_p (pred
->dest
))
971 if ((pred
->flags
& EDGE_ABNORMAL_CALL
) && cfun
->has_nonlocal_label
)
974 if (tablejump_p (BB_END (pred
->src
), NULL
, NULL
))
981 /* Search for the occurrences of expression in BB. */
984 get_bb_avail_insn (basic_block bb
, struct occr
*orig_occr
, int bitmap_index
)
986 struct occr
*occr
= orig_occr
;
988 for (; occr
!= NULL
; occr
= occr
->next
)
989 if (BLOCK_FOR_INSN (occr
->insn
) == bb
)
992 /* If we could not find an occurrence in BB, see if BB
993 has a single predecessor with an occurrence that is
994 transparent through BB. */
995 if (single_pred_p (bb
)
996 && bitmap_bit_p (transp
[bb
->index
], bitmap_index
)
997 && (occr
= get_bb_avail_insn (single_pred (bb
), orig_occr
, bitmap_index
)))
999 rtx avail_reg
= get_avail_load_store_reg (occr
->insn
);
1000 if (!reg_set_between_p (avail_reg
,
1001 PREV_INSN (BB_HEAD (bb
)),
1002 NEXT_INSN (BB_END (bb
)))
1003 && !reg_killed_on_edge (avail_reg
, single_pred_edge (bb
)))
1011 /* This helper is called via htab_traverse. */
1013 compute_expr_transp (expr
**slot
, FILE *dump_file ATTRIBUTE_UNUSED
)
1015 struct expr
*expr
= *slot
;
1017 compute_transp (expr
->expr
, expr
->bitmap_index
, transp
,
1018 blocks_with_calls
, modify_mem_list_set
,
1019 canon_modify_mem_list
);
1023 /* This handles the case where several stores feed a partially redundant
1024 load. It checks if the redundancy elimination is possible and if it's
1027 Redundancy elimination is possible if,
1028 1) None of the operands of an insn have been modified since the start
1029 of the current basic block.
1030 2) In any predecessor of the current basic block, the same expression
1033 See the function body for the heuristics that determine if eliminating
1034 a redundancy is also worth doing, assuming it is possible. */
1037 eliminate_partially_redundant_load (basic_block bb
, rtx_insn
*insn
,
1041 rtx_insn
*avail_insn
= NULL
;
1044 struct occr
*a_occr
;
1045 struct unoccr
*occr
, *avail_occrs
= NULL
;
1046 struct unoccr
*unoccr
, *unavail_occrs
= NULL
, *rollback_unoccr
= NULL
;
1048 gcov_type ok_count
= 0; /* Redundant load execution count. */
1049 gcov_type critical_count
= 0; /* Execution count of critical edges. */
1051 bool critical_edge_split
= false;
1053 /* The execution count of the loads to be added to make the
1054 load fully redundant. */
1055 gcov_type not_ok_count
= 0;
1056 basic_block pred_bb
;
1058 pat
= PATTERN (insn
);
1059 dest
= SET_DEST (pat
);
1061 /* Check that the loaded register is not used, set, or killed from the
1062 beginning of the block. */
1063 if (reg_changed_after_insn_p (dest
, 0)
1064 || reg_used_between_p (dest
, PREV_INSN (BB_HEAD (bb
)), insn
))
1067 /* Check potential for replacing load with copy for predecessors. */
1068 FOR_EACH_EDGE (pred
, ei
, bb
->preds
)
1070 rtx_insn
*next_pred_bb_end
;
1073 avail_reg
= NULL_RTX
;
1074 pred_bb
= pred
->src
;
1075 for (a_occr
= get_bb_avail_insn (pred_bb
,
1077 expr
->bitmap_index
);
1079 a_occr
= get_bb_avail_insn (pred_bb
,
1081 expr
->bitmap_index
))
1083 /* Check if the loaded register is not used. */
1084 avail_insn
= a_occr
->insn
;
1085 avail_reg
= get_avail_load_store_reg (avail_insn
);
1086 gcc_assert (avail_reg
);
1088 /* Make sure we can generate a move from register avail_reg to
1090 rtx_insn
*move
= gen_move_insn (copy_rtx (dest
),
1091 copy_rtx (avail_reg
));
1092 extract_insn (move
);
1093 if (! constrain_operands (1, get_preferred_alternatives (insn
,
1095 || reg_killed_on_edge (avail_reg
, pred
)
1096 || reg_used_on_edge (dest
, pred
))
1101 next_pred_bb_end
= NEXT_INSN (BB_END (BLOCK_FOR_INSN (avail_insn
)));
1102 if (!reg_set_between_p (avail_reg
, avail_insn
, next_pred_bb_end
))
1103 /* AVAIL_INSN remains non-null. */
1109 if (EDGE_CRITICAL_P (pred
))
1110 critical_count
+= pred
->count
;
1112 if (avail_insn
!= NULL_RTX
)
1115 ok_count
+= pred
->count
;
1116 if (! set_noop_p (PATTERN (gen_move_insn (copy_rtx (dest
),
1117 copy_rtx (avail_reg
)))))
1119 /* Check if there is going to be a split. */
1120 if (EDGE_CRITICAL_P (pred
))
1121 critical_edge_split
= true;
1123 else /* Its a dead move no need to generate. */
1125 occr
= (struct unoccr
*) obstack_alloc (&unoccr_obstack
,
1126 sizeof (struct unoccr
));
1127 occr
->insn
= avail_insn
;
1129 occr
->next
= avail_occrs
;
1131 if (! rollback_unoccr
)
1132 rollback_unoccr
= occr
;
1136 /* Adding a load on a critical edge will cause a split. */
1137 if (EDGE_CRITICAL_P (pred
))
1138 critical_edge_split
= true;
1139 not_ok_count
+= pred
->count
;
1140 unoccr
= (struct unoccr
*) obstack_alloc (&unoccr_obstack
,
1141 sizeof (struct unoccr
));
1142 unoccr
->insn
= NULL
;
1143 unoccr
->pred
= pred
;
1144 unoccr
->next
= unavail_occrs
;
1145 unavail_occrs
= unoccr
;
1146 if (! rollback_unoccr
)
1147 rollback_unoccr
= unoccr
;
1151 if (/* No load can be replaced by copy. */
1153 /* Prevent exploding the code. */
1154 || (optimize_bb_for_size_p (bb
) && npred_ok
> 1)
1155 /* If we don't have profile information we cannot tell if splitting
1156 a critical edge is profitable or not so don't do it. */
1157 || ((! profile_info
|| ! flag_branch_probabilities
1158 || targetm
.cannot_modify_jumps_p ())
1159 && critical_edge_split
))
1162 /* Check if it's worth applying the partial redundancy elimination. */
1163 if (ok_count
< GCSE_AFTER_RELOAD_PARTIAL_FRACTION
* not_ok_count
)
1165 if (ok_count
< GCSE_AFTER_RELOAD_CRITICAL_FRACTION
* critical_count
)
1168 /* Generate moves to the loaded register from where
1169 the memory is available. */
1170 for (occr
= avail_occrs
; occr
; occr
= occr
->next
)
1172 avail_insn
= occr
->insn
;
1174 /* Set avail_reg to be the register having the value of the
1176 avail_reg
= get_avail_load_store_reg (avail_insn
);
1177 gcc_assert (avail_reg
);
1179 insert_insn_on_edge (gen_move_insn (copy_rtx (dest
),
1180 copy_rtx (avail_reg
)),
1182 stats
.moves_inserted
++;
1186 "generating move from %d to %d on edge from %d to %d\n",
1193 /* Regenerate loads where the memory is unavailable. */
1194 for (unoccr
= unavail_occrs
; unoccr
; unoccr
= unoccr
->next
)
1196 pred
= unoccr
->pred
;
1197 insert_insn_on_edge (copy_insn (PATTERN (insn
)), pred
);
1198 stats
.copies_inserted
++;
1203 "generating on edge from %d to %d a copy of load: ",
1206 print_rtl (dump_file
, PATTERN (insn
));
1207 fprintf (dump_file
, "\n");
1211 /* Delete the insn if it is not available in this block and mark it
1212 for deletion if it is available. If insn is available it may help
1213 discover additional redundancies, so mark it for later deletion. */
1214 for (a_occr
= get_bb_avail_insn (bb
, expr
->avail_occr
, expr
->bitmap_index
);
1215 a_occr
&& (a_occr
->insn
!= insn
);
1216 a_occr
= get_bb_avail_insn (bb
, a_occr
->next
, expr
->bitmap_index
))
1221 stats
.insns_deleted
++;
1225 fprintf (dump_file
, "deleting insn:\n");
1226 print_rtl_single (dump_file
, insn
);
1227 fprintf (dump_file
, "\n");
1232 a_occr
->deleted_p
= 1;
1235 if (rollback_unoccr
)
1236 obstack_free (&unoccr_obstack
, rollback_unoccr
);
1239 /* Performing the redundancy elimination as described before. */
1242 eliminate_partially_redundant_loads (void)
1247 /* Note we start at block 1. */
1249 if (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
1253 ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
->next_bb
,
1254 EXIT_BLOCK_PTR_FOR_FN (cfun
),
1257 /* Don't try anything on basic blocks with strange predecessors. */
1258 if (! bb_has_well_behaved_predecessors (bb
))
1261 /* Do not try anything on cold basic blocks. */
1262 if (optimize_bb_for_size_p (bb
))
1265 /* Reset the table of things changed since the start of the current
1267 reset_opr_set_tables ();
1269 /* Look at all insns in the current basic block and see if there are
1270 any loads in it that we can record. */
1271 FOR_BB_INSNS (bb
, insn
)
1273 /* Is it a load - of the form (set (reg) (mem))? */
1274 if (NONJUMP_INSN_P (insn
)
1275 && GET_CODE (PATTERN (insn
)) == SET
1276 && REG_P (SET_DEST (PATTERN (insn
)))
1277 && MEM_P (SET_SRC (PATTERN (insn
))))
1279 rtx pat
= PATTERN (insn
);
1280 rtx src
= SET_SRC (pat
);
1283 if (!MEM_VOLATILE_P (src
)
1284 && GET_MODE (src
) != BLKmode
1285 && general_operand (src
, GET_MODE (src
))
1286 /* Are the operands unchanged since the start of the
1288 && oprs_unchanged_p (src
, insn
, false)
1289 && !(cfun
->can_throw_non_call_exceptions
&& may_trap_p (src
))
1290 && !side_effects_p (src
)
1291 /* Is the expression recorded? */
1292 && (expr
= lookup_expr_in_table (src
)) != NULL
)
1294 /* We now have a load (insn) and an available memory at
1295 its BB start (expr). Try to remove the loads if it is
1297 eliminate_partially_redundant_load (bb
, insn
, expr
);
1301 /* Keep track of everything modified by this insn, so that we
1302 know what has been modified since the start of the current
1305 record_opr_changes (insn
);
1309 commit_edge_insertions ();
1312 /* Go over the expression hash table and delete insns that were
1313 marked for later deletion. */
1315 /* This helper is called via htab_traverse. */
1317 delete_redundant_insns_1 (expr
**slot
, void *data ATTRIBUTE_UNUSED
)
1319 struct expr
*exprs
= *slot
;
1322 for (occr
= exprs
->avail_occr
; occr
!= NULL
; occr
= occr
->next
)
1324 if (occr
->deleted_p
&& dbg_cnt (gcse2_delete
))
1326 delete_insn (occr
->insn
);
1327 stats
.insns_deleted
++;
1331 fprintf (dump_file
, "deleting insn:\n");
1332 print_rtl_single (dump_file
, occr
->insn
);
1333 fprintf (dump_file
, "\n");
1342 delete_redundant_insns (void)
1344 expr_table
->traverse
<void *, delete_redundant_insns_1
> (NULL
);
1346 fprintf (dump_file
, "\n");
1349 /* Main entry point of the GCSE after reload - clean some redundant loads
1353 gcse_after_reload_main (rtx f ATTRIBUTE_UNUSED
)
1356 memset (&stats
, 0, sizeof (stats
));
1358 /* Allocate memory for this pass.
1359 Also computes and initializes the insns' CUIDs. */
1362 /* We need alias analysis. */
1363 init_alias_analysis ();
1365 compute_hash_table ();
1368 dump_hash_table (dump_file
);
1370 if (expr_table
->elements () > 0)
1372 /* Knowing which MEMs are transparent through a block can signifiantly
1373 increase the number of redundant loads found. So compute transparency
1374 information for each memory expression in the hash table. */
1376 /* This can not be part of the normal allocation routine because
1377 we have to know the number of elements in the hash table. */
1378 transp
= sbitmap_vector_alloc (last_basic_block_for_fn (cfun
),
1379 expr_table
->elements ());
1380 bitmap_vector_ones (transp
, last_basic_block_for_fn (cfun
));
1381 expr_table
->traverse
<FILE *, compute_expr_transp
> (dump_file
);
1382 eliminate_partially_redundant_loads ();
1383 delete_redundant_insns ();
1384 sbitmap_vector_free (transp
);
1388 fprintf (dump_file
, "GCSE AFTER RELOAD stats:\n");
1389 fprintf (dump_file
, "copies inserted: %d\n", stats
.copies_inserted
);
1390 fprintf (dump_file
, "moves inserted: %d\n", stats
.moves_inserted
);
1391 fprintf (dump_file
, "insns deleted: %d\n", stats
.insns_deleted
);
1392 fprintf (dump_file
, "\n\n");
1395 statistics_counter_event (cfun
, "copies inserted",
1396 stats
.copies_inserted
);
1397 statistics_counter_event (cfun
, "moves inserted",
1398 stats
.moves_inserted
);
1399 statistics_counter_event (cfun
, "insns deleted",
1400 stats
.insns_deleted
);
1403 /* We are finished with alias. */
1404 end_alias_analysis ();
1412 rest_of_handle_gcse2 (void)
1414 gcse_after_reload_main (get_insns ());
1415 rebuild_jump_labels (get_insns ());
1421 const pass_data pass_data_gcse2
=
1423 RTL_PASS
, /* type */
1425 OPTGROUP_NONE
, /* optinfo_flags */
1426 TV_GCSE_AFTER_RELOAD
, /* tv_id */
1427 0, /* properties_required */
1428 0, /* properties_provided */
1429 0, /* properties_destroyed */
1430 0, /* todo_flags_start */
1431 0, /* todo_flags_finish */
1434 class pass_gcse2
: public rtl_opt_pass
1437 pass_gcse2 (gcc::context
*ctxt
)
1438 : rtl_opt_pass (pass_data_gcse2
, ctxt
)
1441 /* opt_pass methods: */
1442 virtual bool gate (function
*fun
)
1444 return (optimize
> 0 && flag_gcse_after_reload
1445 && optimize_function_for_speed_p (fun
));
1448 virtual unsigned int execute (function
*) { return rest_of_handle_gcse2 (); }
1450 }; // class pass_gcse2
1455 make_pass_gcse2 (gcc::context
*ctxt
)
1457 return new pass_gcse2 (ctxt
);