1 /* RTL dead store elimination.
2 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 Free Software Foundation, Inc.
5 Contributed by Richard Sandiford <rsandifor@codesourcery.com>
6 and Kenneth Zadeck <zadeck@naturalbridge.com>
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
28 #include "coretypes.h"
29 #include "hash-table.h"
35 #include "hard-reg-set.h"
40 #include "tree-pass.h"
41 #include "alloc-pool.h"
43 #include "insn-config.h"
50 #include "tree-flow.h" /* for may_be_aliased */
52 /* This file contains three techniques for performing Dead Store
55 * The first technique performs dse locally on any base address. It
56 is based on the cselib which is a local value numbering technique.
57 This technique is local to a basic block but deals with a fairly
60 * The second technique performs dse globally but is restricted to
61 base addresses that are either constant or are relative to the
64 * The third technique, (which is only done after register allocation)
65 processes the spill spill slots. This differs from the second
66 technique because it takes advantage of the fact that spilling is
67 completely free from the effects of aliasing.
69 Logically, dse is a backwards dataflow problem. A store can be
70 deleted if it if cannot be reached in the backward direction by any
71 use of the value being stored. However, the local technique uses a
72 forwards scan of the basic block because cselib requires that the
73 block be processed in that order.
75 The pass is logically broken into 7 steps:
79 1) The local algorithm, as well as scanning the insns for the two
82 2) Analysis to see if the global algs are necessary. In the case
83 of stores base on a constant address, there must be at least two
84 stores to that address, to make it possible to delete some of the
85 stores. In the case of stores off of the frame or spill related
86 stores, only one store to an address is necessary because those
87 stores die at the end of the function.
89 3) Set up the global dataflow equations based on processing the
90 info parsed in the first step.
92 4) Solve the dataflow equations.
94 5) Delete the insns that the global analysis has indicated are
97 6) Delete insns that store the same value as preceding store
98 where the earlier store couldn't be eliminated.
102 This step uses cselib and canon_rtx to build the largest expression
103 possible for each address. This pass is a forwards pass through
104 each basic block. From the point of view of the global technique,
105 the first pass could examine a block in either direction. The
106 forwards ordering is to accommodate cselib.
108 We make a simplifying assumption: addresses fall into four broad
111 1) base has rtx_varies_p == false, offset is constant.
112 2) base has rtx_varies_p == false, offset variable.
113 3) base has rtx_varies_p == true, offset constant.
114 4) base has rtx_varies_p == true, offset variable.
116 The local passes are able to process all 4 kinds of addresses. The
117 global pass only handles 1).
119 The global problem is formulated as follows:
121 A store, S1, to address A, where A is not relative to the stack
122 frame, can be eliminated if all paths from S1 to the end of the
123 function contain another store to A before a read to A.
125 If the address A is relative to the stack frame, a store S2 to A
126 can be eliminated if there are no paths from S2 that reach the
127 end of the function that read A before another store to A. In
128 this case S2 can be deleted if there are paths from S2 to the
129 end of the function that have no reads or writes to A. This
130 second case allows stores to the stack frame to be deleted that
131 would otherwise die when the function returns. This cannot be
132 done if stores_off_frame_dead_at_return is not true. See the doc
133 for that variable for when this variable is false.
135 The global problem is formulated as a backwards set union
136 dataflow problem where the stores are the gens and reads are the
137 kills. Set union problems are rare and require some special
138 handling given our representation of bitmaps. A straightforward
139 implementation requires a lot of bitmaps filled with 1s.
140 These are expensive and cumbersome in our bitmap formulation so
141 care has been taken to avoid large vectors filled with 1s. See
142 the comments in bb_info and in the dataflow confluence functions
145 There are two places for further enhancements to this algorithm:
147 1) The original dse which was embedded in a pass called flow also
148 did local address forwarding. For example in
153 flow would replace the right hand side of the second insn with a
154 reference to r100. Most of the information is available to add this
155 to this pass. It has not done it because it is a lot of work in
156 the case that either r100 is assigned to between the first and
157 second insn and/or the second insn is a load of part of the value
158 stored by the first insn.
160 insn 5 in gcc.c-torture/compile/990203-1.c simple case.
161 insn 15 in gcc.c-torture/execute/20001017-2.c simple case.
162 insn 25 in gcc.c-torture/execute/20001026-1.c simple case.
163 insn 44 in gcc.c-torture/execute/20010910-1.c simple case.
165 2) The cleaning up of spill code is quite profitable. It currently
166 depends on reading tea leaves and chicken entrails left by reload.
167 This pass depends on reload creating a singleton alias set for each
168 spill slot and telling the next dse pass which of these alias sets
169 are the singletons. Rather than analyze the addresses of the
170 spills, dse's spill processing just does analysis of the loads and
171 stores that use those alias sets. There are three cases where this
174 a) Reload sometimes creates the slot for one mode of access, and
175 then inserts loads and/or stores for a smaller mode. In this
176 case, the current code just punts on the slot. The proper thing
177 to do is to back out and use one bit vector position for each
178 byte of the entity associated with the slot. This depends on
179 KNOWING that reload always generates the accesses for each of the
180 bytes in some canonical (read that easy to understand several
181 passes after reload happens) way.
183 b) Reload sometimes decides that spill slot it allocated was not
184 large enough for the mode and goes back and allocates more slots
185 with the same mode and alias set. The backout in this case is a
186 little more graceful than (a). In this case the slot is unmarked
187 as being a spill slot and if final address comes out to be based
188 off the frame pointer, the global algorithm handles this slot.
190 c) For any pass that may prespill, there is currently no
191 mechanism to tell the dse pass that the slot being used has the
192 special properties that reload uses. It may be that all that is
193 required is to have those passes make the same calls that reload
194 does, assuming that the alias sets can be manipulated in the same
197 /* There are limits to the size of constant offsets we model for the
198 global problem. There are certainly test cases, that exceed this
199 limit, however, it is unlikely that there are important programs
200 that really have constant offsets this size. */
201 #define MAX_OFFSET (64 * 1024)
203 /* Obstack for the DSE dataflow bitmaps. We don't want to put these
204 on the default obstack because these bitmaps can grow quite large
205 (~2GB for the small (!) test case of PR54146) and we'll hold on to
206 all that memory until the end of the compiler run.
207 As a bonus, delete_tree_live_info can destroy all the bitmaps by just
208 releasing the whole obstack. */
209 static bitmap_obstack dse_bitmap_obstack
;
211 /* Obstack for other data. As for above: Kinda nice to be able to
212 throw it all away at the end in one big sweep. */
213 static struct obstack dse_obstack
;
215 /* Scratch bitmap for cselib's cselib_expand_value_rtx. */
216 static bitmap scratch
= NULL
;
220 /* This structure holds information about a candidate store. */
224 /* False means this is a clobber. */
227 /* False if a single HOST_WIDE_INT bitmap is used for positions_needed. */
230 /* The id of the mem group of the base address. If rtx_varies_p is
231 true, this is -1. Otherwise, it is the index into the group
235 /* This is the cselib value. */
236 cselib_val
*cse_base
;
238 /* This canonized mem. */
241 /* Canonized MEM address for use by canon_true_dependence. */
244 /* If this is non-zero, it is the alias set of a spill location. */
245 alias_set_type alias_set
;
247 /* The offset of the first and byte before the last byte associated
248 with the operation. */
249 HOST_WIDE_INT begin
, end
;
253 /* A bitmask as wide as the number of bytes in the word that
254 contains a 1 if the byte may be needed. The store is unused if
255 all of the bits are 0. This is used if IS_LARGE is false. */
256 unsigned HOST_WIDE_INT small_bitmask
;
260 /* A bitmap with one bit per byte. Cleared bit means the position
261 is needed. Used if IS_LARGE is false. */
264 /* Number of set bits (i.e. unneeded bytes) in BITMAP. If it is
265 equal to END - BEGIN, the whole store is unused. */
270 /* The next store info for this insn. */
271 struct store_info
*next
;
273 /* The right hand side of the store. This is used if there is a
274 subsequent reload of the mems address somewhere later in the
278 /* If rhs is or holds a constant, this contains that constant,
282 /* Set if this store stores the same constant value as REDUNDANT_REASON
283 insn stored. These aren't eliminated early, because doing that
284 might prevent the earlier larger store to be eliminated. */
285 struct insn_info
*redundant_reason
;
288 /* Return a bitmask with the first N low bits set. */
290 static unsigned HOST_WIDE_INT
291 lowpart_bitmask (int n
)
293 unsigned HOST_WIDE_INT mask
= ~(unsigned HOST_WIDE_INT
) 0;
294 return mask
>> (HOST_BITS_PER_WIDE_INT
- n
);
297 typedef struct store_info
*store_info_t
;
298 static alloc_pool cse_store_info_pool
;
299 static alloc_pool rtx_store_info_pool
;
301 /* This structure holds information about a load. These are only
302 built for rtx bases. */
305 /* The id of the mem group of the base address. */
308 /* If this is non-zero, it is the alias set of a spill location. */
309 alias_set_type alias_set
;
311 /* The offset of the first and byte after the last byte associated
312 with the operation. If begin == end == 0, the read did not have
313 a constant offset. */
316 /* The mem being read. */
319 /* The next read_info for this insn. */
320 struct read_info
*next
;
322 typedef struct read_info
*read_info_t
;
323 static alloc_pool read_info_pool
;
326 /* One of these records is created for each insn. */
330 /* Set true if the insn contains a store but the insn itself cannot
331 be deleted. This is set if the insn is a parallel and there is
332 more than one non dead output or if the insn is in some way
336 /* This field is only used by the global algorithm. It is set true
337 if the insn contains any read of mem except for a (1). This is
338 also set if the insn is a call or has a clobber mem. If the insn
339 contains a wild read, the use_rec will be null. */
342 /* This is true only for CALL instructions which could potentially read
343 any non-frame memory location. This field is used by the global
345 bool non_frame_wild_read
;
347 /* This field is only used for the processing of const functions.
348 These functions cannot read memory, but they can read the stack
349 because that is where they may get their parms. We need to be
350 this conservative because, like the store motion pass, we don't
351 consider CALL_INSN_FUNCTION_USAGE when processing call insns.
352 Moreover, we need to distinguish two cases:
353 1. Before reload (register elimination), the stores related to
354 outgoing arguments are stack pointer based and thus deemed
355 of non-constant base in this pass. This requires special
356 handling but also means that the frame pointer based stores
357 need not be killed upon encountering a const function call.
358 2. After reload, the stores related to outgoing arguments can be
359 either stack pointer or hard frame pointer based. This means
360 that we have no other choice than also killing all the frame
361 pointer based stores upon encountering a const function call.
362 This field is set after reload for const function calls. Having
363 this set is less severe than a wild read, it just means that all
364 the frame related stores are killed rather than all the stores. */
367 /* This field is only used for the processing of const functions.
368 It is set if the insn may contain a stack pointer based store. */
369 bool stack_pointer_based
;
371 /* This is true if any of the sets within the store contains a
372 cselib base. Such stores can only be deleted by the local
374 bool contains_cselib_groups
;
379 /* The list of mem sets or mem clobbers that are contained in this
380 insn. If the insn is deletable, it contains only one mem set.
381 But it could also contain clobbers. Insns that contain more than
382 one mem set are not deletable, but each of those mems are here in
383 order to provide info to delete other insns. */
384 store_info_t store_rec
;
386 /* The linked list of mem uses in this insn. Only the reads from
387 rtx bases are listed here. The reads to cselib bases are
388 completely processed during the first scan and so are never
390 read_info_t read_rec
;
392 /* The live fixed registers. We assume only fixed registers can
393 cause trouble by being clobbered from an expanded pattern;
394 storing only the live fixed registers (rather than all registers)
395 means less memory needs to be allocated / copied for the individual
397 regset fixed_regs_live
;
399 /* The prev insn in the basic block. */
400 struct insn_info
* prev_insn
;
402 /* The linked list of insns that are in consideration for removal in
403 the forwards pass through the basic block. This pointer may be
404 trash as it is not cleared when a wild read occurs. The only
405 time it is guaranteed to be correct is when the traversal starts
406 at active_local_stores. */
407 struct insn_info
* next_local_store
;
410 typedef struct insn_info
*insn_info_t
;
411 static alloc_pool insn_info_pool
;
413 /* The linked list of stores that are under consideration in this
415 static insn_info_t active_local_stores
;
416 static int active_local_stores_len
;
421 /* Pointer to the insn info for the last insn in the block. These
422 are linked so this is how all of the insns are reached. During
423 scanning this is the current insn being scanned. */
424 insn_info_t last_insn
;
426 /* The info for the global dataflow problem. */
429 /* This is set if the transfer function should and in the wild_read
430 bitmap before applying the kill and gen sets. That vector knocks
431 out most of the bits in the bitmap and thus speeds up the
433 bool apply_wild_read
;
435 /* The following 4 bitvectors hold information about which positions
436 of which stores are live or dead. They are indexed by
439 /* The set of store positions that exist in this block before a wild read. */
442 /* The set of load positions that exist in this block above the
443 same position of a store. */
446 /* The set of stores that reach the top of the block without being
449 Do not represent the in if it is all ones. Note that this is
450 what the bitvector should logically be initialized to for a set
451 intersection problem. However, like the kill set, this is too
452 expensive. So initially, the in set will only be created for the
453 exit block and any block that contains a wild read. */
456 /* The set of stores that reach the bottom of the block from it's
459 Do not represent the in if it is all ones. Note that this is
460 what the bitvector should logically be initialized to for a set
461 intersection problem. However, like the kill and in set, this is
462 too expensive. So what is done is that the confluence operator
463 just initializes the vector from one of the out sets of the
464 successors of the block. */
467 /* The following bitvector is indexed by the reg number. It
468 contains the set of regs that are live at the current instruction
469 being processed. While it contains info for all of the
470 registers, only the hard registers are actually examined. It is used
471 to assure that shift and/or add sequences that are inserted do not
472 accidentally clobber live hard regs. */
476 typedef struct bb_info
*bb_info_t
;
477 static alloc_pool bb_info_pool
;
479 /* Table to hold all bb_infos. */
480 static bb_info_t
*bb_table
;
482 /* There is a group_info for each rtx base that is used to reference
483 memory. There are also not many of the rtx bases because they are
484 very limited in scope. */
488 /* The actual base of the address. */
491 /* The sequential id of the base. This allows us to have a
492 canonical ordering of these that is not based on addresses. */
495 /* True if there are any positions that are to be processed
497 bool process_globally
;
499 /* True if the base of this group is either the frame_pointer or
500 hard_frame_pointer. */
503 /* A mem wrapped around the base pointer for the group in order to do
504 read dependency. It must be given BLKmode in order to encompass all
505 the possible offsets from the base. */
508 /* Canonized version of base_mem's address. */
511 /* These two sets of two bitmaps are used to keep track of how many
512 stores are actually referencing that position from this base. We
513 only do this for rtx bases as this will be used to assign
514 positions in the bitmaps for the global problem. Bit N is set in
515 store1 on the first store for offset N. Bit N is set in store2
516 for the second store to offset N. This is all we need since we
517 only care about offsets that have two or more stores for them.
519 The "_n" suffix is for offsets less than 0 and the "_p" suffix is
520 for 0 and greater offsets.
522 There is one special case here, for stores into the stack frame,
523 we will or store1 into store2 before deciding which stores look
524 at globally. This is because stores to the stack frame that have
525 no other reads before the end of the function can also be
527 bitmap store1_n
, store1_p
, store2_n
, store2_p
;
529 /* These bitmaps keep track of offsets in this group escape this function.
530 An offset escapes if it corresponds to a named variable whose
531 addressable flag is set. */
532 bitmap escaped_n
, escaped_p
;
534 /* The positions in this bitmap have the same assignments as the in,
535 out, gen and kill bitmaps. This bitmap is all zeros except for
536 the positions that are occupied by stores for this group. */
539 /* The offset_map is used to map the offsets from this base into
540 positions in the global bitmaps. It is only created after all of
541 the all of stores have been scanned and we know which ones we
543 int *offset_map_n
, *offset_map_p
;
544 int offset_map_size_n
, offset_map_size_p
;
546 typedef struct group_info
*group_info_t
;
547 typedef const struct group_info
*const_group_info_t
;
548 static alloc_pool rtx_group_info_pool
;
550 /* Index into the rtx_group_vec. */
551 static int rtx_group_next_id
;
554 static vec
<group_info_t
> rtx_group_vec
;
557 /* This structure holds the set of changes that are being deferred
558 when removing read operation. See replace_read. */
559 struct deferred_change
562 /* The mem that is being replaced. */
565 /* The reg it is being replaced with. */
568 struct deferred_change
*next
;
571 typedef struct deferred_change
*deferred_change_t
;
572 static alloc_pool deferred_change_pool
;
574 static deferred_change_t deferred_change_list
= NULL
;
576 /* This are used to hold the alias sets of spill variables. Since
577 these are never aliased and there may be a lot of them, it makes
578 sense to treat them specially. This bitvector is only allocated in
579 calls from dse_record_singleton_alias_set which currently is only
580 made during reload1. So when dse is called before reload this
581 mechanism does nothing. */
583 static bitmap clear_alias_sets
= NULL
;
585 /* The set of clear_alias_sets that have been disqualified because
586 there are loads or stores using a different mode than the alias set
587 was registered with. */
588 static bitmap disqualified_clear_alias_sets
= NULL
;
590 /* The group that holds all of the clear_alias_sets. */
591 static group_info_t clear_alias_group
;
593 /* The modes of the clear_alias_sets. */
594 static htab_t clear_alias_mode_table
;
596 /* Hash table element to look up the mode for an alias set. */
597 struct clear_alias_mode_holder
599 alias_set_type alias_set
;
600 enum machine_mode mode
;
603 static alloc_pool clear_alias_mode_pool
;
605 /* This is true except if cfun->stdarg -- i.e. we cannot do
606 this for vararg functions because they play games with the frame. */
607 static bool stores_off_frame_dead_at_return
;
609 /* Counter for stats. */
610 static int globally_deleted
;
611 static int locally_deleted
;
612 static int spill_deleted
;
614 static bitmap all_blocks
;
616 /* Locations that are killed by calls in the global phase. */
617 static bitmap kill_on_calls
;
619 /* The number of bits used in the global bitmaps. */
620 static unsigned int current_position
;
623 static bool gate_dse1 (void);
624 static bool gate_dse2 (void);
627 /*----------------------------------------------------------------------------
631 ----------------------------------------------------------------------------*/
634 /* Find the entry associated with ALIAS_SET. */
636 static struct clear_alias_mode_holder
*
637 clear_alias_set_lookup (alias_set_type alias_set
)
639 struct clear_alias_mode_holder tmp_holder
;
642 tmp_holder
.alias_set
= alias_set
;
643 slot
= htab_find_slot (clear_alias_mode_table
, &tmp_holder
, NO_INSERT
);
646 return (struct clear_alias_mode_holder
*) *slot
;
650 /* Hashtable callbacks for maintaining the "bases" field of
651 store_group_info, given that the addresses are function invariants. */
653 struct invariant_group_base_hasher
: typed_noop_remove
<group_info
>
655 typedef group_info value_type
;
656 typedef group_info compare_type
;
657 static inline hashval_t
hash (const value_type
*);
658 static inline bool equal (const value_type
*, const compare_type
*);
662 invariant_group_base_hasher::equal (const value_type
*gi1
,
663 const compare_type
*gi2
)
665 return rtx_equal_p (gi1
->rtx_base
, gi2
->rtx_base
);
669 invariant_group_base_hasher::hash (const value_type
*gi
)
672 return hash_rtx (gi
->rtx_base
, Pmode
, &do_not_record
, NULL
, false);
675 /* Tables of group_info structures, hashed by base value. */
676 static hash_table
<invariant_group_base_hasher
> rtx_group_table
;
679 /* Get the GROUP for BASE. Add a new group if it is not there. */
682 get_group_info (rtx base
)
684 struct group_info tmp_gi
;
690 /* Find the store_base_info structure for BASE, creating a new one
692 tmp_gi
.rtx_base
= base
;
693 slot
= rtx_group_table
.find_slot (&tmp_gi
, INSERT
);
694 gi
= (group_info_t
) *slot
;
698 if (!clear_alias_group
)
700 clear_alias_group
= gi
=
701 (group_info_t
) pool_alloc (rtx_group_info_pool
);
702 memset (gi
, 0, sizeof (struct group_info
));
703 gi
->id
= rtx_group_next_id
++;
704 gi
->store1_n
= BITMAP_ALLOC (&dse_bitmap_obstack
);
705 gi
->store1_p
= BITMAP_ALLOC (&dse_bitmap_obstack
);
706 gi
->store2_n
= BITMAP_ALLOC (&dse_bitmap_obstack
);
707 gi
->store2_p
= BITMAP_ALLOC (&dse_bitmap_obstack
);
708 gi
->escaped_p
= BITMAP_ALLOC (&dse_bitmap_obstack
);
709 gi
->escaped_n
= BITMAP_ALLOC (&dse_bitmap_obstack
);
710 gi
->group_kill
= BITMAP_ALLOC (&dse_bitmap_obstack
);
711 gi
->process_globally
= false;
712 gi
->offset_map_size_n
= 0;
713 gi
->offset_map_size_p
= 0;
714 gi
->offset_map_n
= NULL
;
715 gi
->offset_map_p
= NULL
;
716 rtx_group_vec
.safe_push (gi
);
718 return clear_alias_group
;
723 *slot
= gi
= (group_info_t
) pool_alloc (rtx_group_info_pool
);
725 gi
->id
= rtx_group_next_id
++;
726 gi
->base_mem
= gen_rtx_MEM (BLKmode
, base
);
727 gi
->canon_base_addr
= canon_rtx (base
);
728 gi
->store1_n
= BITMAP_ALLOC (&dse_bitmap_obstack
);
729 gi
->store1_p
= BITMAP_ALLOC (&dse_bitmap_obstack
);
730 gi
->store2_n
= BITMAP_ALLOC (&dse_bitmap_obstack
);
731 gi
->store2_p
= BITMAP_ALLOC (&dse_bitmap_obstack
);
732 gi
->escaped_p
= BITMAP_ALLOC (&dse_bitmap_obstack
);
733 gi
->escaped_n
= BITMAP_ALLOC (&dse_bitmap_obstack
);
734 gi
->group_kill
= BITMAP_ALLOC (&dse_bitmap_obstack
);
735 gi
->process_globally
= false;
737 (base
== frame_pointer_rtx
) || (base
== hard_frame_pointer_rtx
);
738 gi
->offset_map_size_n
= 0;
739 gi
->offset_map_size_p
= 0;
740 gi
->offset_map_n
= NULL
;
741 gi
->offset_map_p
= NULL
;
742 rtx_group_vec
.safe_push (gi
);
749 /* Initialization of data structures. */
755 globally_deleted
= 0;
758 bitmap_obstack_initialize (&dse_bitmap_obstack
);
759 gcc_obstack_init (&dse_obstack
);
761 scratch
= BITMAP_ALLOC (®_obstack
);
762 kill_on_calls
= BITMAP_ALLOC (&dse_bitmap_obstack
);
765 = create_alloc_pool ("rtx_store_info_pool",
766 sizeof (struct store_info
), 100);
768 = create_alloc_pool ("read_info_pool",
769 sizeof (struct read_info
), 100);
771 = create_alloc_pool ("insn_info_pool",
772 sizeof (struct insn_info
), 100);
774 = create_alloc_pool ("bb_info_pool",
775 sizeof (struct bb_info
), 100);
777 = create_alloc_pool ("rtx_group_info_pool",
778 sizeof (struct group_info
), 100);
780 = create_alloc_pool ("deferred_change_pool",
781 sizeof (struct deferred_change
), 10);
783 rtx_group_table
.create (11);
785 bb_table
= XNEWVEC (bb_info_t
, last_basic_block
);
786 rtx_group_next_id
= 0;
788 stores_off_frame_dead_at_return
= !cfun
->stdarg
;
790 init_alias_analysis ();
792 if (clear_alias_sets
)
793 clear_alias_group
= get_group_info (NULL
);
795 clear_alias_group
= NULL
;
800 /*----------------------------------------------------------------------------
803 Scan all of the insns. Any random ordering of the blocks is fine.
804 Each block is scanned in forward order to accommodate cselib which
805 is used to remove stores with non-constant bases.
806 ----------------------------------------------------------------------------*/
808 /* Delete all of the store_info recs from INSN_INFO. */
811 free_store_info (insn_info_t insn_info
)
813 store_info_t store_info
= insn_info
->store_rec
;
816 store_info_t next
= store_info
->next
;
817 if (store_info
->is_large
)
818 BITMAP_FREE (store_info
->positions_needed
.large
.bmap
);
819 if (store_info
->cse_base
)
820 pool_free (cse_store_info_pool
, store_info
);
822 pool_free (rtx_store_info_pool
, store_info
);
826 insn_info
->cannot_delete
= true;
827 insn_info
->contains_cselib_groups
= false;
828 insn_info
->store_rec
= NULL
;
834 regset fixed_regs_live
;
836 } note_add_store_info
;
838 /* Callback for emit_inc_dec_insn_before via note_stores.
839 Check if a register is clobbered which is live afterwards. */
842 note_add_store (rtx loc
, const_rtx expr ATTRIBUTE_UNUSED
, void *data
)
845 note_add_store_info
*info
= (note_add_store_info
*) data
;
851 /* If this register is referenced by the current or an earlier insn,
852 that's OK. E.g. this applies to the register that is being incremented
853 with this addition. */
854 for (insn
= info
->first
;
855 insn
!= NEXT_INSN (info
->current
);
856 insn
= NEXT_INSN (insn
))
857 if (reg_referenced_p (loc
, PATTERN (insn
)))
860 /* If we come here, we have a clobber of a register that's only OK
861 if that register is not live. If we don't have liveness information
862 available, fail now. */
863 if (!info
->fixed_regs_live
)
865 info
->failure
= true;
868 /* Now check if this is a live fixed register. */
870 n
= hard_regno_nregs
[r
][GET_MODE (loc
)];
872 if (REGNO_REG_SET_P (info
->fixed_regs_live
, r
+n
))
873 info
->failure
= true;
876 /* Callback for for_each_inc_dec that emits an INSN that sets DEST to
877 SRC + SRCOFF before insn ARG. */
880 emit_inc_dec_insn_before (rtx mem ATTRIBUTE_UNUSED
,
881 rtx op ATTRIBUTE_UNUSED
,
882 rtx dest
, rtx src
, rtx srcoff
, void *arg
)
884 insn_info_t insn_info
= (insn_info_t
) arg
;
885 rtx insn
= insn_info
->insn
, new_insn
, cur
;
886 note_add_store_info info
;
888 /* We can reuse all operands without copying, because we are about
889 to delete the insn that contained it. */
893 emit_insn (gen_add3_insn (dest
, src
, srcoff
));
894 new_insn
= get_insns ();
898 new_insn
= gen_move_insn (dest
, src
);
899 info
.first
= new_insn
;
900 info
.fixed_regs_live
= insn_info
->fixed_regs_live
;
901 info
.failure
= false;
902 for (cur
= new_insn
; cur
; cur
= NEXT_INSN (cur
))
905 note_stores (PATTERN (cur
), note_add_store
, &info
);
908 /* If a failure was flagged above, return 1 so that for_each_inc_dec will
909 return it immediately, communicating the failure to its caller. */
913 emit_insn_before (new_insn
, insn
);
918 /* Before we delete INSN_INFO->INSN, make sure that the auto inc/dec, if it
919 is there, is split into a separate insn.
920 Return true on success (or if there was nothing to do), false on failure. */
923 check_for_inc_dec_1 (insn_info_t insn_info
)
925 rtx insn
= insn_info
->insn
;
926 rtx note
= find_reg_note (insn
, REG_INC
, NULL_RTX
);
928 return for_each_inc_dec (&insn
, emit_inc_dec_insn_before
, insn_info
) == 0;
933 /* Entry point for postreload. If you work on reload_cse, or you need this
934 anywhere else, consider if you can provide register liveness information
935 and add a parameter to this function so that it can be passed down in
936 insn_info.fixed_regs_live. */
938 check_for_inc_dec (rtx insn
)
940 struct insn_info insn_info
;
943 insn_info
.insn
= insn
;
944 insn_info
.fixed_regs_live
= NULL
;
945 note
= find_reg_note (insn
, REG_INC
, NULL_RTX
);
947 return for_each_inc_dec (&insn
, emit_inc_dec_insn_before
, &insn_info
) == 0;
951 /* Delete the insn and free all of the fields inside INSN_INFO. */
954 delete_dead_store_insn (insn_info_t insn_info
)
956 read_info_t read_info
;
961 if (!check_for_inc_dec_1 (insn_info
))
965 fprintf (dump_file
, "Locally deleting insn %d ",
966 INSN_UID (insn_info
->insn
));
967 if (insn_info
->store_rec
->alias_set
)
968 fprintf (dump_file
, "alias set %d\n",
969 (int) insn_info
->store_rec
->alias_set
);
971 fprintf (dump_file
, "\n");
974 free_store_info (insn_info
);
975 read_info
= insn_info
->read_rec
;
979 read_info_t next
= read_info
->next
;
980 pool_free (read_info_pool
, read_info
);
983 insn_info
->read_rec
= NULL
;
985 delete_insn (insn_info
->insn
);
987 insn_info
->insn
= NULL
;
989 insn_info
->wild_read
= false;
992 /* Return whether DECL, a local variable, can possibly escape the current
996 local_variable_can_escape (tree decl
)
998 if (TREE_ADDRESSABLE (decl
))
1001 /* If this is a partitioned variable, we need to consider all the variables
1002 in the partition. This is necessary because a store into one of them can
1003 be replaced with a store into another and this may not change the outcome
1004 of the escape analysis. */
1005 if (cfun
->gimple_df
->decls_to_pointers
!= NULL
)
1008 = pointer_map_contains (cfun
->gimple_df
->decls_to_pointers
, decl
);
1010 return TREE_ADDRESSABLE (*(tree
*)namep
);
1016 /* Return whether EXPR can possibly escape the current function scope. */
1019 can_escape (tree expr
)
1024 base
= get_base_address (expr
);
1026 && !may_be_aliased (base
)
1027 && !(TREE_CODE (base
) == VAR_DECL
1028 && !DECL_EXTERNAL (base
)
1029 && !TREE_STATIC (base
)
1030 && local_variable_can_escape (base
)))
1035 /* Set the store* bitmaps offset_map_size* fields in GROUP based on
1036 OFFSET and WIDTH. */
1039 set_usage_bits (group_info_t group
, HOST_WIDE_INT offset
, HOST_WIDE_INT width
,
1043 bool expr_escapes
= can_escape (expr
);
1044 if (offset
> -MAX_OFFSET
&& offset
+ width
< MAX_OFFSET
)
1045 for (i
=offset
; i
<offset
+width
; i
++)
1053 store1
= group
->store1_n
;
1054 store2
= group
->store2_n
;
1055 escaped
= group
->escaped_n
;
1060 store1
= group
->store1_p
;
1061 store2
= group
->store2_p
;
1062 escaped
= group
->escaped_p
;
1066 if (!bitmap_set_bit (store1
, ai
))
1067 bitmap_set_bit (store2
, ai
);
1072 if (group
->offset_map_size_n
< ai
)
1073 group
->offset_map_size_n
= ai
;
1077 if (group
->offset_map_size_p
< ai
)
1078 group
->offset_map_size_p
= ai
;
1082 bitmap_set_bit (escaped
, ai
);
1087 reset_active_stores (void)
1089 active_local_stores
= NULL
;
1090 active_local_stores_len
= 0;
1093 /* Free all READ_REC of the LAST_INSN of BB_INFO. */
1096 free_read_records (bb_info_t bb_info
)
1098 insn_info_t insn_info
= bb_info
->last_insn
;
1099 read_info_t
*ptr
= &insn_info
->read_rec
;
1102 read_info_t next
= (*ptr
)->next
;
1103 if ((*ptr
)->alias_set
== 0)
1105 pool_free (read_info_pool
, *ptr
);
1109 ptr
= &(*ptr
)->next
;
1113 /* Set the BB_INFO so that the last insn is marked as a wild read. */
1116 add_wild_read (bb_info_t bb_info
)
1118 insn_info_t insn_info
= bb_info
->last_insn
;
1119 insn_info
->wild_read
= true;
1120 free_read_records (bb_info
);
1121 reset_active_stores ();
1124 /* Set the BB_INFO so that the last insn is marked as a wild read of
1125 non-frame locations. */
1128 add_non_frame_wild_read (bb_info_t bb_info
)
1130 insn_info_t insn_info
= bb_info
->last_insn
;
1131 insn_info
->non_frame_wild_read
= true;
1132 free_read_records (bb_info
);
1133 reset_active_stores ();
1136 /* Return true if X is a constant or one of the registers that behave
1137 as a constant over the life of a function. This is equivalent to
1138 !rtx_varies_p for memory addresses. */
1141 const_or_frame_p (rtx x
)
1146 if (GET_CODE (x
) == REG
)
1148 /* Note that we have to test for the actual rtx used for the frame
1149 and arg pointers and not just the register number in case we have
1150 eliminated the frame and/or arg pointer and are using it
1152 if (x
== frame_pointer_rtx
|| x
== hard_frame_pointer_rtx
1153 /* The arg pointer varies if it is not a fixed register. */
1154 || (x
== arg_pointer_rtx
&& fixed_regs
[ARG_POINTER_REGNUM
])
1155 || x
== pic_offset_table_rtx
)
1163 /* Take all reasonable action to put the address of MEM into the form
1164 that we can do analysis on.
1166 The gold standard is to get the address into the form: address +
1167 OFFSET where address is something that rtx_varies_p considers a
1168 constant. When we can get the address in this form, we can do
1169 global analysis on it. Note that for constant bases, address is
1170 not actually returned, only the group_id. The address can be
1173 If that fails, we try cselib to get a value we can at least use
1174 locally. If that fails we return false.
1176 The GROUP_ID is set to -1 for cselib bases and the index of the
1177 group for non_varying bases.
1179 FOR_READ is true if this is a mem read and false if not. */
1182 canon_address (rtx mem
,
1183 alias_set_type
*alias_set_out
,
1185 HOST_WIDE_INT
*offset
,
1188 enum machine_mode address_mode
= get_address_mode (mem
);
1189 rtx mem_address
= XEXP (mem
, 0);
1190 rtx expanded_address
, address
;
1193 /* Make sure that cselib is has initialized all of the operands of
1194 the address before asking it to do the subst. */
1196 if (clear_alias_sets
)
1198 /* If this is a spill, do not do any further processing. */
1199 alias_set_type alias_set
= MEM_ALIAS_SET (mem
);
1201 fprintf (dump_file
, "found alias set %d\n", (int) alias_set
);
1202 if (bitmap_bit_p (clear_alias_sets
, alias_set
))
1204 struct clear_alias_mode_holder
*entry
1205 = clear_alias_set_lookup (alias_set
);
1207 /* If the modes do not match, we cannot process this set. */
1208 if (entry
->mode
!= GET_MODE (mem
))
1212 "disqualifying alias set %d, (%s) != (%s)\n",
1213 (int) alias_set
, GET_MODE_NAME (entry
->mode
),
1214 GET_MODE_NAME (GET_MODE (mem
)));
1216 bitmap_set_bit (disqualified_clear_alias_sets
, alias_set
);
1220 *alias_set_out
= alias_set
;
1221 *group_id
= clear_alias_group
->id
;
1228 cselib_lookup (mem_address
, address_mode
, 1, GET_MODE (mem
));
1232 fprintf (dump_file
, " mem: ");
1233 print_inline_rtx (dump_file
, mem_address
, 0);
1234 fprintf (dump_file
, "\n");
1237 /* First see if just canon_rtx (mem_address) is const or frame,
1238 if not, try cselib_expand_value_rtx and call canon_rtx on that. */
1240 for (expanded
= 0; expanded
< 2; expanded
++)
1244 /* Use cselib to replace all of the reg references with the full
1245 expression. This will take care of the case where we have
1247 r_x = base + offset;
1252 val = *(base + offset); */
1254 expanded_address
= cselib_expand_value_rtx (mem_address
,
1257 /* If this fails, just go with the address from first
1259 if (!expanded_address
)
1263 expanded_address
= mem_address
;
1265 /* Split the address into canonical BASE + OFFSET terms. */
1266 address
= canon_rtx (expanded_address
);
1274 fprintf (dump_file
, "\n after cselib_expand address: ");
1275 print_inline_rtx (dump_file
, expanded_address
, 0);
1276 fprintf (dump_file
, "\n");
1279 fprintf (dump_file
, "\n after canon_rtx address: ");
1280 print_inline_rtx (dump_file
, address
, 0);
1281 fprintf (dump_file
, "\n");
1284 if (GET_CODE (address
) == CONST
)
1285 address
= XEXP (address
, 0);
1287 if (GET_CODE (address
) == PLUS
1288 && CONST_INT_P (XEXP (address
, 1)))
1290 *offset
= INTVAL (XEXP (address
, 1));
1291 address
= XEXP (address
, 0);
1294 if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (mem
))
1295 && const_or_frame_p (address
))
1297 group_info_t group
= get_group_info (address
);
1300 fprintf (dump_file
, " gid=%d offset=%d \n",
1301 group
->id
, (int)*offset
);
1303 *group_id
= group
->id
;
1308 *base
= cselib_lookup (address
, address_mode
, true, GET_MODE (mem
));
1314 fprintf (dump_file
, " no cselib val - should be a wild read.\n");
1318 fprintf (dump_file
, " varying cselib base=%u:%u offset = %d\n",
1319 (*base
)->uid
, (*base
)->hash
, (int)*offset
);
1324 /* Clear the rhs field from the active_local_stores array. */
1327 clear_rhs_from_active_local_stores (void)
1329 insn_info_t ptr
= active_local_stores
;
1333 store_info_t store_info
= ptr
->store_rec
;
1334 /* Skip the clobbers. */
1335 while (!store_info
->is_set
)
1336 store_info
= store_info
->next
;
1338 store_info
->rhs
= NULL
;
1339 store_info
->const_rhs
= NULL
;
1341 ptr
= ptr
->next_local_store
;
1346 /* Mark byte POS bytes from the beginning of store S_INFO as unneeded. */
1349 set_position_unneeded (store_info_t s_info
, int pos
)
1351 if (__builtin_expect (s_info
->is_large
, false))
1353 if (bitmap_set_bit (s_info
->positions_needed
.large
.bmap
, pos
))
1354 s_info
->positions_needed
.large
.count
++;
1357 s_info
->positions_needed
.small_bitmask
1358 &= ~(((unsigned HOST_WIDE_INT
) 1) << pos
);
1361 /* Mark the whole store S_INFO as unneeded. */
1364 set_all_positions_unneeded (store_info_t s_info
)
1366 if (__builtin_expect (s_info
->is_large
, false))
1368 int pos
, end
= s_info
->end
- s_info
->begin
;
1369 for (pos
= 0; pos
< end
; pos
++)
1370 bitmap_set_bit (s_info
->positions_needed
.large
.bmap
, pos
);
1371 s_info
->positions_needed
.large
.count
= end
;
1374 s_info
->positions_needed
.small_bitmask
= (unsigned HOST_WIDE_INT
) 0;
1377 /* Return TRUE if any bytes from S_INFO store are needed. */
1380 any_positions_needed_p (store_info_t s_info
)
1382 if (__builtin_expect (s_info
->is_large
, false))
1383 return (s_info
->positions_needed
.large
.count
1384 < s_info
->end
- s_info
->begin
);
1386 return (s_info
->positions_needed
.small_bitmask
1387 != (unsigned HOST_WIDE_INT
) 0);
1390 /* Return TRUE if all bytes START through START+WIDTH-1 from S_INFO
1391 store are needed. */
1394 all_positions_needed_p (store_info_t s_info
, int start
, int width
)
1396 if (__builtin_expect (s_info
->is_large
, false))
1398 int end
= start
+ width
;
1400 if (bitmap_bit_p (s_info
->positions_needed
.large
.bmap
, start
++))
1406 unsigned HOST_WIDE_INT mask
= lowpart_bitmask (width
) << start
;
1407 return (s_info
->positions_needed
.small_bitmask
& mask
) == mask
;
1412 static rtx
get_stored_val (store_info_t
, enum machine_mode
, HOST_WIDE_INT
,
1413 HOST_WIDE_INT
, basic_block
, bool);
1416 /* BODY is an instruction pattern that belongs to INSN. Return 1 if
1417 there is a candidate store, after adding it to the appropriate
1418 local store group if so. */
1421 record_store (rtx body
, bb_info_t bb_info
)
1423 rtx mem
, rhs
, const_rhs
, mem_addr
;
1424 HOST_WIDE_INT offset
= 0;
1425 HOST_WIDE_INT width
= 0;
1426 alias_set_type spill_alias_set
;
1427 insn_info_t insn_info
= bb_info
->last_insn
;
1428 store_info_t store_info
= NULL
;
1430 cselib_val
*base
= NULL
;
1431 insn_info_t ptr
, last
, redundant_reason
;
1432 bool store_is_unused
;
1434 if (GET_CODE (body
) != SET
&& GET_CODE (body
) != CLOBBER
)
1437 mem
= SET_DEST (body
);
1439 /* If this is not used, then this cannot be used to keep the insn
1440 from being deleted. On the other hand, it does provide something
1441 that can be used to prove that another store is dead. */
1443 = (find_reg_note (insn_info
->insn
, REG_UNUSED
, mem
) != NULL
);
1445 /* Check whether that value is a suitable memory location. */
1448 /* If the set or clobber is unused, then it does not effect our
1449 ability to get rid of the entire insn. */
1450 if (!store_is_unused
)
1451 insn_info
->cannot_delete
= true;
1455 /* At this point we know mem is a mem. */
1456 if (GET_MODE (mem
) == BLKmode
)
1458 if (GET_CODE (XEXP (mem
, 0)) == SCRATCH
)
1461 fprintf (dump_file
, " adding wild read for (clobber (mem:BLK (scratch))\n");
1462 add_wild_read (bb_info
);
1463 insn_info
->cannot_delete
= true;
1466 /* Handle (set (mem:BLK (addr) [... S36 ...]) (const_int 0))
1467 as memset (addr, 0, 36); */
1468 else if (!MEM_SIZE_KNOWN_P (mem
)
1469 || MEM_SIZE (mem
) <= 0
1470 || MEM_SIZE (mem
) > MAX_OFFSET
1471 || GET_CODE (body
) != SET
1472 || !CONST_INT_P (SET_SRC (body
)))
1474 if (!store_is_unused
)
1476 /* If the set or clobber is unused, then it does not effect our
1477 ability to get rid of the entire insn. */
1478 insn_info
->cannot_delete
= true;
1479 clear_rhs_from_active_local_stores ();
1485 /* We can still process a volatile mem, we just cannot delete it. */
1486 if (MEM_VOLATILE_P (mem
))
1487 insn_info
->cannot_delete
= true;
1489 if (!canon_address (mem
, &spill_alias_set
, &group_id
, &offset
, &base
))
1491 clear_rhs_from_active_local_stores ();
1495 if (GET_MODE (mem
) == BLKmode
)
1496 width
= MEM_SIZE (mem
);
1499 width
= GET_MODE_SIZE (GET_MODE (mem
));
1500 gcc_assert ((unsigned) width
<= HOST_BITS_PER_WIDE_INT
);
1503 if (spill_alias_set
)
1505 bitmap store1
= clear_alias_group
->store1_p
;
1506 bitmap store2
= clear_alias_group
->store2_p
;
1508 gcc_assert (GET_MODE (mem
) != BLKmode
);
1510 if (!bitmap_set_bit (store1
, spill_alias_set
))
1511 bitmap_set_bit (store2
, spill_alias_set
);
1513 if (clear_alias_group
->offset_map_size_p
< spill_alias_set
)
1514 clear_alias_group
->offset_map_size_p
= spill_alias_set
;
1516 store_info
= (store_info_t
) pool_alloc (rtx_store_info_pool
);
1519 fprintf (dump_file
, " processing spill store %d(%s)\n",
1520 (int) spill_alias_set
, GET_MODE_NAME (GET_MODE (mem
)));
1522 else if (group_id
>= 0)
1524 /* In the restrictive case where the base is a constant or the
1525 frame pointer we can do global analysis. */
1528 = rtx_group_vec
[group_id
];
1529 tree expr
= MEM_EXPR (mem
);
1531 store_info
= (store_info_t
) pool_alloc (rtx_store_info_pool
);
1532 set_usage_bits (group
, offset
, width
, expr
);
1535 fprintf (dump_file
, " processing const base store gid=%d[%d..%d)\n",
1536 group_id
, (int)offset
, (int)(offset
+width
));
1540 if (may_be_sp_based_p (XEXP (mem
, 0)))
1541 insn_info
->stack_pointer_based
= true;
1542 insn_info
->contains_cselib_groups
= true;
1544 store_info
= (store_info_t
) pool_alloc (cse_store_info_pool
);
1548 fprintf (dump_file
, " processing cselib store [%d..%d)\n",
1549 (int)offset
, (int)(offset
+width
));
1552 const_rhs
= rhs
= NULL_RTX
;
1553 if (GET_CODE (body
) == SET
1554 /* No place to keep the value after ra. */
1555 && !reload_completed
1556 && (REG_P (SET_SRC (body
))
1557 || GET_CODE (SET_SRC (body
)) == SUBREG
1558 || CONSTANT_P (SET_SRC (body
)))
1559 && !MEM_VOLATILE_P (mem
)
1560 /* Sometimes the store and reload is used for truncation and
1562 && !(FLOAT_MODE_P (GET_MODE (mem
)) && (flag_float_store
)))
1564 rhs
= SET_SRC (body
);
1565 if (CONSTANT_P (rhs
))
1567 else if (body
== PATTERN (insn_info
->insn
))
1569 rtx tem
= find_reg_note (insn_info
->insn
, REG_EQUAL
, NULL_RTX
);
1570 if (tem
&& CONSTANT_P (XEXP (tem
, 0)))
1571 const_rhs
= XEXP (tem
, 0);
1573 if (const_rhs
== NULL_RTX
&& REG_P (rhs
))
1575 rtx tem
= cselib_expand_value_rtx (rhs
, scratch
, 5);
1577 if (tem
&& CONSTANT_P (tem
))
1582 /* Check to see if this stores causes some other stores to be
1584 ptr
= active_local_stores
;
1586 redundant_reason
= NULL
;
1587 mem
= canon_rtx (mem
);
1588 /* For alias_set != 0 canon_true_dependence should be never called. */
1589 if (spill_alias_set
)
1590 mem_addr
= NULL_RTX
;
1594 mem_addr
= base
->val_rtx
;
1598 = rtx_group_vec
[group_id
];
1599 mem_addr
= group
->canon_base_addr
;
1602 mem_addr
= plus_constant (get_address_mode (mem
), mem_addr
, offset
);
1607 insn_info_t next
= ptr
->next_local_store
;
1608 store_info_t s_info
= ptr
->store_rec
;
1611 /* Skip the clobbers. We delete the active insn if this insn
1612 shadows the set. To have been put on the active list, it
1613 has exactly on set. */
1614 while (!s_info
->is_set
)
1615 s_info
= s_info
->next
;
1617 if (s_info
->alias_set
!= spill_alias_set
)
1619 else if (s_info
->alias_set
)
1621 struct clear_alias_mode_holder
*entry
1622 = clear_alias_set_lookup (s_info
->alias_set
);
1623 /* Generally, spills cannot be processed if and of the
1624 references to the slot have a different mode. But if
1625 we are in the same block and mode is exactly the same
1626 between this store and one before in the same block,
1627 we can still delete it. */
1628 if ((GET_MODE (mem
) == GET_MODE (s_info
->mem
))
1629 && (GET_MODE (mem
) == entry
->mode
))
1632 set_all_positions_unneeded (s_info
);
1635 fprintf (dump_file
, " trying spill store in insn=%d alias_set=%d\n",
1636 INSN_UID (ptr
->insn
), (int) s_info
->alias_set
);
1638 else if ((s_info
->group_id
== group_id
)
1639 && (s_info
->cse_base
== base
))
1643 fprintf (dump_file
, " trying store in insn=%d gid=%d[%d..%d)\n",
1644 INSN_UID (ptr
->insn
), s_info
->group_id
,
1645 (int)s_info
->begin
, (int)s_info
->end
);
1647 /* Even if PTR won't be eliminated as unneeded, if both
1648 PTR and this insn store the same constant value, we might
1649 eliminate this insn instead. */
1650 if (s_info
->const_rhs
1652 && offset
>= s_info
->begin
1653 && offset
+ width
<= s_info
->end
1654 && all_positions_needed_p (s_info
, offset
- s_info
->begin
,
1657 if (GET_MODE (mem
) == BLKmode
)
1659 if (GET_MODE (s_info
->mem
) == BLKmode
1660 && s_info
->const_rhs
== const_rhs
)
1661 redundant_reason
= ptr
;
1663 else if (s_info
->const_rhs
== const0_rtx
1664 && const_rhs
== const0_rtx
)
1665 redundant_reason
= ptr
;
1670 val
= get_stored_val (s_info
, GET_MODE (mem
),
1671 offset
, offset
+ width
,
1672 BLOCK_FOR_INSN (insn_info
->insn
),
1674 if (get_insns () != NULL
)
1677 if (val
&& rtx_equal_p (val
, const_rhs
))
1678 redundant_reason
= ptr
;
1682 for (i
= MAX (offset
, s_info
->begin
);
1683 i
< offset
+ width
&& i
< s_info
->end
;
1685 set_position_unneeded (s_info
, i
- s_info
->begin
);
1687 else if (s_info
->rhs
)
1688 /* Need to see if it is possible for this store to overwrite
1689 the value of store_info. If it is, set the rhs to NULL to
1690 keep it from being used to remove a load. */
1692 if (canon_true_dependence (s_info
->mem
,
1693 GET_MODE (s_info
->mem
),
1698 s_info
->const_rhs
= NULL
;
1702 /* An insn can be deleted if every position of every one of
1703 its s_infos is zero. */
1704 if (any_positions_needed_p (s_info
))
1709 insn_info_t insn_to_delete
= ptr
;
1711 active_local_stores_len
--;
1713 last
->next_local_store
= ptr
->next_local_store
;
1715 active_local_stores
= ptr
->next_local_store
;
1717 if (!insn_to_delete
->cannot_delete
)
1718 delete_dead_store_insn (insn_to_delete
);
1726 /* Finish filling in the store_info. */
1727 store_info
->next
= insn_info
->store_rec
;
1728 insn_info
->store_rec
= store_info
;
1729 store_info
->mem
= mem
;
1730 store_info
->alias_set
= spill_alias_set
;
1731 store_info
->mem_addr
= mem_addr
;
1732 store_info
->cse_base
= base
;
1733 if (width
> HOST_BITS_PER_WIDE_INT
)
1735 store_info
->is_large
= true;
1736 store_info
->positions_needed
.large
.count
= 0;
1737 store_info
->positions_needed
.large
.bmap
= BITMAP_ALLOC (&dse_bitmap_obstack
);
1741 store_info
->is_large
= false;
1742 store_info
->positions_needed
.small_bitmask
= lowpart_bitmask (width
);
1744 store_info
->group_id
= group_id
;
1745 store_info
->begin
= offset
;
1746 store_info
->end
= offset
+ width
;
1747 store_info
->is_set
= GET_CODE (body
) == SET
;
1748 store_info
->rhs
= rhs
;
1749 store_info
->const_rhs
= const_rhs
;
1750 store_info
->redundant_reason
= redundant_reason
;
1752 /* If this is a clobber, we return 0. We will only be able to
1753 delete this insn if there is only one store USED store, but we
1754 can use the clobber to delete other stores earlier. */
1755 return store_info
->is_set
? 1 : 0;
1760 dump_insn_info (const char * start
, insn_info_t insn_info
)
1762 fprintf (dump_file
, "%s insn=%d %s\n", start
,
1763 INSN_UID (insn_info
->insn
),
1764 insn_info
->store_rec
? "has store" : "naked");
1768 /* If the modes are different and the value's source and target do not
1769 line up, we need to extract the value from lower part of the rhs of
1770 the store, shift it, and then put it into a form that can be shoved
1771 into the read_insn. This function generates a right SHIFT of a
1772 value that is at least ACCESS_SIZE bytes wide of READ_MODE. The
1773 shift sequence is returned or NULL if we failed to find a
1777 find_shift_sequence (int access_size
,
1778 store_info_t store_info
,
1779 enum machine_mode read_mode
,
1780 int shift
, bool speed
, bool require_cst
)
1782 enum machine_mode store_mode
= GET_MODE (store_info
->mem
);
1783 enum machine_mode new_mode
;
1784 rtx read_reg
= NULL
;
1786 /* Some machines like the x86 have shift insns for each size of
1787 operand. Other machines like the ppc or the ia-64 may only have
1788 shift insns that shift values within 32 or 64 bit registers.
1789 This loop tries to find the smallest shift insn that will right
1790 justify the value we want to read but is available in one insn on
1793 for (new_mode
= smallest_mode_for_size (access_size
* BITS_PER_UNIT
,
1795 GET_MODE_BITSIZE (new_mode
) <= BITS_PER_WORD
;
1796 new_mode
= GET_MODE_WIDER_MODE (new_mode
))
1798 rtx target
, new_reg
, shift_seq
, insn
, new_lhs
;
1801 /* If a constant was stored into memory, try to simplify it here,
1802 otherwise the cost of the shift might preclude this optimization
1803 e.g. at -Os, even when no actual shift will be needed. */
1804 if (store_info
->const_rhs
)
1806 unsigned int byte
= subreg_lowpart_offset (new_mode
, store_mode
);
1807 rtx ret
= simplify_subreg (new_mode
, store_info
->const_rhs
,
1809 if (ret
&& CONSTANT_P (ret
))
1811 ret
= simplify_const_binary_operation (LSHIFTRT
, new_mode
,
1812 ret
, GEN_INT (shift
));
1813 if (ret
&& CONSTANT_P (ret
))
1815 byte
= subreg_lowpart_offset (read_mode
, new_mode
);
1816 ret
= simplify_subreg (read_mode
, ret
, new_mode
, byte
);
1817 if (ret
&& CONSTANT_P (ret
)
1818 && set_src_cost (ret
, speed
) <= COSTS_N_INSNS (1))
1827 /* Try a wider mode if truncating the store mode to NEW_MODE
1828 requires a real instruction. */
1829 if (GET_MODE_BITSIZE (new_mode
) < GET_MODE_BITSIZE (store_mode
)
1830 && !TRULY_NOOP_TRUNCATION_MODES_P (new_mode
, store_mode
))
1833 /* Also try a wider mode if the necessary punning is either not
1834 desirable or not possible. */
1835 if (!CONSTANT_P (store_info
->rhs
)
1836 && !MODES_TIEABLE_P (new_mode
, store_mode
))
1839 new_reg
= gen_reg_rtx (new_mode
);
1843 /* In theory we could also check for an ashr. Ian Taylor knows
1844 of one dsp where the cost of these two was not the same. But
1845 this really is a rare case anyway. */
1846 target
= expand_binop (new_mode
, lshr_optab
, new_reg
,
1847 GEN_INT (shift
), new_reg
, 1, OPTAB_DIRECT
);
1849 shift_seq
= get_insns ();
1852 if (target
!= new_reg
|| shift_seq
== NULL
)
1856 for (insn
= shift_seq
; insn
!= NULL_RTX
; insn
= NEXT_INSN (insn
))
1858 cost
+= insn_rtx_cost (PATTERN (insn
), speed
);
1860 /* The computation up to here is essentially independent
1861 of the arguments and could be precomputed. It may
1862 not be worth doing so. We could precompute if
1863 worthwhile or at least cache the results. The result
1864 technically depends on both SHIFT and ACCESS_SIZE,
1865 but in practice the answer will depend only on ACCESS_SIZE. */
1867 if (cost
> COSTS_N_INSNS (1))
1870 new_lhs
= extract_low_bits (new_mode
, store_mode
,
1871 copy_rtx (store_info
->rhs
));
1872 if (new_lhs
== NULL_RTX
)
1875 /* We found an acceptable shift. Generate a move to
1876 take the value from the store and put it into the
1877 shift pseudo, then shift it, then generate another
1878 move to put in into the target of the read. */
1879 emit_move_insn (new_reg
, new_lhs
);
1880 emit_insn (shift_seq
);
1881 read_reg
= extract_low_bits (read_mode
, new_mode
, new_reg
);
1889 /* Call back for note_stores to find the hard regs set or clobbered by
1890 insn. Data is a bitmap of the hardregs set so far. */
1893 look_for_hardregs (rtx x
, const_rtx pat ATTRIBUTE_UNUSED
, void *data
)
1895 bitmap regs_set
= (bitmap
) data
;
1898 && HARD_REGISTER_P (x
))
1900 unsigned int regno
= REGNO (x
);
1901 bitmap_set_range (regs_set
, regno
,
1902 hard_regno_nregs
[regno
][GET_MODE (x
)]);
1906 /* Helper function for replace_read and record_store.
1907 Attempt to return a value stored in STORE_INFO, from READ_BEGIN
1908 to one before READ_END bytes read in READ_MODE. Return NULL
1909 if not successful. If REQUIRE_CST is true, return always constant. */
1912 get_stored_val (store_info_t store_info
, enum machine_mode read_mode
,
1913 HOST_WIDE_INT read_begin
, HOST_WIDE_INT read_end
,
1914 basic_block bb
, bool require_cst
)
1916 enum machine_mode store_mode
= GET_MODE (store_info
->mem
);
1918 int access_size
; /* In bytes. */
1921 /* To get here the read is within the boundaries of the write so
1922 shift will never be negative. Start out with the shift being in
1924 if (store_mode
== BLKmode
)
1926 else if (BYTES_BIG_ENDIAN
)
1927 shift
= store_info
->end
- read_end
;
1929 shift
= read_begin
- store_info
->begin
;
1931 access_size
= shift
+ GET_MODE_SIZE (read_mode
);
1933 /* From now on it is bits. */
1934 shift
*= BITS_PER_UNIT
;
1937 read_reg
= find_shift_sequence (access_size
, store_info
, read_mode
, shift
,
1938 optimize_bb_for_speed_p (bb
),
1940 else if (store_mode
== BLKmode
)
1942 /* The store is a memset (addr, const_val, const_size). */
1943 gcc_assert (CONST_INT_P (store_info
->rhs
));
1944 store_mode
= int_mode_for_mode (read_mode
);
1945 if (store_mode
== BLKmode
)
1946 read_reg
= NULL_RTX
;
1947 else if (store_info
->rhs
== const0_rtx
)
1948 read_reg
= extract_low_bits (read_mode
, store_mode
, const0_rtx
);
1949 else if (GET_MODE_BITSIZE (store_mode
) > HOST_BITS_PER_WIDE_INT
1950 || BITS_PER_UNIT
>= HOST_BITS_PER_WIDE_INT
)
1951 read_reg
= NULL_RTX
;
1954 unsigned HOST_WIDE_INT c
1955 = INTVAL (store_info
->rhs
)
1956 & (((HOST_WIDE_INT
) 1 << BITS_PER_UNIT
) - 1);
1957 int shift
= BITS_PER_UNIT
;
1958 while (shift
< HOST_BITS_PER_WIDE_INT
)
1963 read_reg
= gen_int_mode (c
, store_mode
);
1964 read_reg
= extract_low_bits (read_mode
, store_mode
, read_reg
);
1967 else if (store_info
->const_rhs
1969 || GET_MODE_CLASS (read_mode
) != GET_MODE_CLASS (store_mode
)))
1970 read_reg
= extract_low_bits (read_mode
, store_mode
,
1971 copy_rtx (store_info
->const_rhs
));
1973 read_reg
= extract_low_bits (read_mode
, store_mode
,
1974 copy_rtx (store_info
->rhs
));
1975 if (require_cst
&& read_reg
&& !CONSTANT_P (read_reg
))
1976 read_reg
= NULL_RTX
;
1980 /* Take a sequence of:
2003 Depending on the alignment and the mode of the store and
2007 The STORE_INFO and STORE_INSN are for the store and READ_INFO
2008 and READ_INSN are for the read. Return true if the replacement
2012 replace_read (store_info_t store_info
, insn_info_t store_insn
,
2013 read_info_t read_info
, insn_info_t read_insn
, rtx
*loc
,
2016 enum machine_mode store_mode
= GET_MODE (store_info
->mem
);
2017 enum machine_mode read_mode
= GET_MODE (read_info
->mem
);
2018 rtx insns
, this_insn
, read_reg
;
2024 /* Create a sequence of instructions to set up the read register.
2025 This sequence goes immediately before the store and its result
2026 is read by the load.
2028 We need to keep this in perspective. We are replacing a read
2029 with a sequence of insns, but the read will almost certainly be
2030 in cache, so it is not going to be an expensive one. Thus, we
2031 are not willing to do a multi insn shift or worse a subroutine
2032 call to get rid of the read. */
2034 fprintf (dump_file
, "trying to replace %smode load in insn %d"
2035 " from %smode store in insn %d\n",
2036 GET_MODE_NAME (read_mode
), INSN_UID (read_insn
->insn
),
2037 GET_MODE_NAME (store_mode
), INSN_UID (store_insn
->insn
));
2039 bb
= BLOCK_FOR_INSN (read_insn
->insn
);
2040 read_reg
= get_stored_val (store_info
,
2041 read_mode
, read_info
->begin
, read_info
->end
,
2043 if (read_reg
== NULL_RTX
)
2047 fprintf (dump_file
, " -- could not extract bits of stored value\n");
2050 /* Force the value into a new register so that it won't be clobbered
2051 between the store and the load. */
2052 read_reg
= copy_to_mode_reg (read_mode
, read_reg
);
2053 insns
= get_insns ();
2056 if (insns
!= NULL_RTX
)
2058 /* Now we have to scan the set of new instructions to see if the
2059 sequence contains and sets of hardregs that happened to be
2060 live at this point. For instance, this can happen if one of
2061 the insns sets the CC and the CC happened to be live at that
2062 point. This does occasionally happen, see PR 37922. */
2063 bitmap regs_set
= BITMAP_ALLOC (®_obstack
);
2065 for (this_insn
= insns
; this_insn
!= NULL_RTX
; this_insn
= NEXT_INSN (this_insn
))
2066 note_stores (PATTERN (this_insn
), look_for_hardregs
, regs_set
);
2068 bitmap_and_into (regs_set
, regs_live
);
2069 if (!bitmap_empty_p (regs_set
))
2074 "abandoning replacement because sequence clobbers live hardregs:");
2075 df_print_regset (dump_file
, regs_set
);
2078 BITMAP_FREE (regs_set
);
2081 BITMAP_FREE (regs_set
);
2084 if (validate_change (read_insn
->insn
, loc
, read_reg
, 0))
2086 deferred_change_t deferred_change
=
2087 (deferred_change_t
) pool_alloc (deferred_change_pool
);
2089 /* Insert this right before the store insn where it will be safe
2090 from later insns that might change it before the read. */
2091 emit_insn_before (insns
, store_insn
->insn
);
2093 /* And now for the kludge part: cselib croaks if you just
2094 return at this point. There are two reasons for this:
2096 1) Cselib has an idea of how many pseudos there are and
2097 that does not include the new ones we just added.
2099 2) Cselib does not know about the move insn we added
2100 above the store_info, and there is no way to tell it
2101 about it, because it has "moved on".
2103 Problem (1) is fixable with a certain amount of engineering.
2104 Problem (2) is requires starting the bb from scratch. This
2107 So we are just going to have to lie. The move/extraction
2108 insns are not really an issue, cselib did not see them. But
2109 the use of the new pseudo read_insn is a real problem because
2110 cselib has not scanned this insn. The way that we solve this
2111 problem is that we are just going to put the mem back for now
2112 and when we are finished with the block, we undo this. We
2113 keep a table of mems to get rid of. At the end of the basic
2114 block we can put them back. */
2116 *loc
= read_info
->mem
;
2117 deferred_change
->next
= deferred_change_list
;
2118 deferred_change_list
= deferred_change
;
2119 deferred_change
->loc
= loc
;
2120 deferred_change
->reg
= read_reg
;
2122 /* Get rid of the read_info, from the point of view of the
2123 rest of dse, play like this read never happened. */
2124 read_insn
->read_rec
= read_info
->next
;
2125 pool_free (read_info_pool
, read_info
);
2128 fprintf (dump_file
, " -- replaced the loaded MEM with ");
2129 print_simple_rtl (dump_file
, read_reg
);
2130 fprintf (dump_file
, "\n");
2138 fprintf (dump_file
, " -- replacing the loaded MEM with ");
2139 print_simple_rtl (dump_file
, read_reg
);
2140 fprintf (dump_file
, " led to an invalid instruction\n");
2146 /* A for_each_rtx callback in which DATA is the bb_info. Check to see
2147 if LOC is a mem and if it is look at the address and kill any
2148 appropriate stores that may be active. */
2151 check_mem_read_rtx (rtx
*loc
, void *data
)
2153 rtx mem
= *loc
, mem_addr
;
2155 insn_info_t insn_info
;
2156 HOST_WIDE_INT offset
= 0;
2157 HOST_WIDE_INT width
= 0;
2158 alias_set_type spill_alias_set
= 0;
2159 cselib_val
*base
= NULL
;
2161 read_info_t read_info
;
2163 if (!mem
|| !MEM_P (mem
))
2166 bb_info
= (bb_info_t
) data
;
2167 insn_info
= bb_info
->last_insn
;
2169 if ((MEM_ALIAS_SET (mem
) == ALIAS_SET_MEMORY_BARRIER
)
2170 || (MEM_VOLATILE_P (mem
)))
2173 fprintf (dump_file
, " adding wild read, volatile or barrier.\n");
2174 add_wild_read (bb_info
);
2175 insn_info
->cannot_delete
= true;
2179 /* If it is reading readonly mem, then there can be no conflict with
2181 if (MEM_READONLY_P (mem
))
2184 if (!canon_address (mem
, &spill_alias_set
, &group_id
, &offset
, &base
))
2187 fprintf (dump_file
, " adding wild read, canon_address failure.\n");
2188 add_wild_read (bb_info
);
2192 if (GET_MODE (mem
) == BLKmode
)
2195 width
= GET_MODE_SIZE (GET_MODE (mem
));
2197 read_info
= (read_info_t
) pool_alloc (read_info_pool
);
2198 read_info
->group_id
= group_id
;
2199 read_info
->mem
= mem
;
2200 read_info
->alias_set
= spill_alias_set
;
2201 read_info
->begin
= offset
;
2202 read_info
->end
= offset
+ width
;
2203 read_info
->next
= insn_info
->read_rec
;
2204 insn_info
->read_rec
= read_info
;
2205 /* For alias_set != 0 canon_true_dependence should be never called. */
2206 if (spill_alias_set
)
2207 mem_addr
= NULL_RTX
;
2211 mem_addr
= base
->val_rtx
;
2215 = rtx_group_vec
[group_id
];
2216 mem_addr
= group
->canon_base_addr
;
2219 mem_addr
= plus_constant (get_address_mode (mem
), mem_addr
, offset
);
2222 /* We ignore the clobbers in store_info. The is mildly aggressive,
2223 but there really should not be a clobber followed by a read. */
2225 if (spill_alias_set
)
2227 insn_info_t i_ptr
= active_local_stores
;
2228 insn_info_t last
= NULL
;
2231 fprintf (dump_file
, " processing spill load %d\n",
2232 (int) spill_alias_set
);
2236 store_info_t store_info
= i_ptr
->store_rec
;
2238 /* Skip the clobbers. */
2239 while (!store_info
->is_set
)
2240 store_info
= store_info
->next
;
2242 if (store_info
->alias_set
== spill_alias_set
)
2245 dump_insn_info ("removing from active", i_ptr
);
2247 active_local_stores_len
--;
2249 last
->next_local_store
= i_ptr
->next_local_store
;
2251 active_local_stores
= i_ptr
->next_local_store
;
2255 i_ptr
= i_ptr
->next_local_store
;
2258 else if (group_id
>= 0)
2260 /* This is the restricted case where the base is a constant or
2261 the frame pointer and offset is a constant. */
2262 insn_info_t i_ptr
= active_local_stores
;
2263 insn_info_t last
= NULL
;
2268 fprintf (dump_file
, " processing const load gid=%d[BLK]\n",
2271 fprintf (dump_file
, " processing const load gid=%d[%d..%d)\n",
2272 group_id
, (int)offset
, (int)(offset
+width
));
2277 bool remove
= false;
2278 store_info_t store_info
= i_ptr
->store_rec
;
2280 /* Skip the clobbers. */
2281 while (!store_info
->is_set
)
2282 store_info
= store_info
->next
;
2284 /* There are three cases here. */
2285 if (store_info
->group_id
< 0)
2286 /* We have a cselib store followed by a read from a
2289 = canon_true_dependence (store_info
->mem
,
2290 GET_MODE (store_info
->mem
),
2291 store_info
->mem_addr
,
2294 else if (group_id
== store_info
->group_id
)
2296 /* This is a block mode load. We may get lucky and
2297 canon_true_dependence may save the day. */
2300 = canon_true_dependence (store_info
->mem
,
2301 GET_MODE (store_info
->mem
),
2302 store_info
->mem_addr
,
2305 /* If this read is just reading back something that we just
2306 stored, rewrite the read. */
2310 && offset
>= store_info
->begin
2311 && offset
+ width
<= store_info
->end
2312 && all_positions_needed_p (store_info
,
2313 offset
- store_info
->begin
,
2315 && replace_read (store_info
, i_ptr
, read_info
,
2316 insn_info
, loc
, bb_info
->regs_live
))
2319 /* The bases are the same, just see if the offsets
2321 if ((offset
< store_info
->end
)
2322 && (offset
+ width
> store_info
->begin
))
2328 The else case that is missing here is that the
2329 bases are constant but different. There is nothing
2330 to do here because there is no overlap. */
2335 dump_insn_info ("removing from active", i_ptr
);
2337 active_local_stores_len
--;
2339 last
->next_local_store
= i_ptr
->next_local_store
;
2341 active_local_stores
= i_ptr
->next_local_store
;
2345 i_ptr
= i_ptr
->next_local_store
;
2350 insn_info_t i_ptr
= active_local_stores
;
2351 insn_info_t last
= NULL
;
2354 fprintf (dump_file
, " processing cselib load mem:");
2355 print_inline_rtx (dump_file
, mem
, 0);
2356 fprintf (dump_file
, "\n");
2361 bool remove
= false;
2362 store_info_t store_info
= i_ptr
->store_rec
;
2365 fprintf (dump_file
, " processing cselib load against insn %d\n",
2366 INSN_UID (i_ptr
->insn
));
2368 /* Skip the clobbers. */
2369 while (!store_info
->is_set
)
2370 store_info
= store_info
->next
;
2372 /* If this read is just reading back something that we just
2373 stored, rewrite the read. */
2375 && store_info
->group_id
== -1
2376 && store_info
->cse_base
== base
2378 && offset
>= store_info
->begin
2379 && offset
+ width
<= store_info
->end
2380 && all_positions_needed_p (store_info
,
2381 offset
- store_info
->begin
, width
)
2382 && replace_read (store_info
, i_ptr
, read_info
, insn_info
, loc
,
2383 bb_info
->regs_live
))
2386 if (!store_info
->alias_set
)
2387 remove
= canon_true_dependence (store_info
->mem
,
2388 GET_MODE (store_info
->mem
),
2389 store_info
->mem_addr
,
2395 dump_insn_info ("removing from active", i_ptr
);
2397 active_local_stores_len
--;
2399 last
->next_local_store
= i_ptr
->next_local_store
;
2401 active_local_stores
= i_ptr
->next_local_store
;
2405 i_ptr
= i_ptr
->next_local_store
;
2411 /* A for_each_rtx callback in which DATA points the INSN_INFO for
2412 as check_mem_read_rtx. Nullify the pointer if i_m_r_m_r returns
2413 true for any part of *LOC. */
2416 check_mem_read_use (rtx
*loc
, void *data
)
2418 for_each_rtx (loc
, check_mem_read_rtx
, data
);
2422 /* Get arguments passed to CALL_INSN. Return TRUE if successful.
2423 So far it only handles arguments passed in registers. */
2426 get_call_args (rtx call_insn
, tree fn
, rtx
*args
, int nargs
)
2428 CUMULATIVE_ARGS args_so_far_v
;
2429 cumulative_args_t args_so_far
;
2433 INIT_CUMULATIVE_ARGS (args_so_far_v
, TREE_TYPE (fn
), NULL_RTX
, 0, 3);
2434 args_so_far
= pack_cumulative_args (&args_so_far_v
);
2436 arg
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
2438 arg
!= void_list_node
&& idx
< nargs
;
2439 arg
= TREE_CHAIN (arg
), idx
++)
2441 enum machine_mode mode
= TYPE_MODE (TREE_VALUE (arg
));
2443 reg
= targetm
.calls
.function_arg (args_so_far
, mode
, NULL_TREE
, true);
2444 if (!reg
|| !REG_P (reg
) || GET_MODE (reg
) != mode
2445 || GET_MODE_CLASS (mode
) != MODE_INT
)
2448 for (link
= CALL_INSN_FUNCTION_USAGE (call_insn
);
2450 link
= XEXP (link
, 1))
2451 if (GET_CODE (XEXP (link
, 0)) == USE
)
2453 args
[idx
] = XEXP (XEXP (link
, 0), 0);
2454 if (REG_P (args
[idx
])
2455 && REGNO (args
[idx
]) == REGNO (reg
)
2456 && (GET_MODE (args
[idx
]) == mode
2457 || (GET_MODE_CLASS (GET_MODE (args
[idx
])) == MODE_INT
2458 && (GET_MODE_SIZE (GET_MODE (args
[idx
]))
2460 && (GET_MODE_SIZE (GET_MODE (args
[idx
]))
2461 > GET_MODE_SIZE (mode
)))))
2467 tmp
= cselib_expand_value_rtx (args
[idx
], scratch
, 5);
2468 if (GET_MODE (args
[idx
]) != mode
)
2470 if (!tmp
|| !CONST_INT_P (tmp
))
2472 tmp
= gen_int_mode (INTVAL (tmp
), mode
);
2477 targetm
.calls
.function_arg_advance (args_so_far
, mode
, NULL_TREE
, true);
2479 if (arg
!= void_list_node
|| idx
!= nargs
)
2484 /* Return a bitmap of the fixed registers contained in IN. */
2487 copy_fixed_regs (const_bitmap in
)
2491 ret
= ALLOC_REG_SET (NULL
);
2492 bitmap_and (ret
, in
, fixed_reg_set_regset
);
2496 /* Apply record_store to all candidate stores in INSN. Mark INSN
2497 if some part of it is not a candidate store and assigns to a
2498 non-register target. */
2501 scan_insn (bb_info_t bb_info
, rtx insn
)
2504 insn_info_t insn_info
= (insn_info_t
) pool_alloc (insn_info_pool
);
2506 memset (insn_info
, 0, sizeof (struct insn_info
));
2509 fprintf (dump_file
, "\n**scanning insn=%d\n",
2512 insn_info
->prev_insn
= bb_info
->last_insn
;
2513 insn_info
->insn
= insn
;
2514 bb_info
->last_insn
= insn_info
;
2516 if (DEBUG_INSN_P (insn
))
2518 insn_info
->cannot_delete
= true;
2522 /* Cselib clears the table for this case, so we have to essentially
2524 if (NONJUMP_INSN_P (insn
)
2525 && GET_CODE (PATTERN (insn
)) == ASM_OPERANDS
2526 && MEM_VOLATILE_P (PATTERN (insn
)))
2528 add_wild_read (bb_info
);
2529 insn_info
->cannot_delete
= true;
2533 /* Look at all of the uses in the insn. */
2534 note_uses (&PATTERN (insn
), check_mem_read_use
, bb_info
);
2539 tree memset_call
= NULL_TREE
;
2541 insn_info
->cannot_delete
= true;
2543 /* Const functions cannot do anything bad i.e. read memory,
2544 however, they can read their parameters which may have
2545 been pushed onto the stack.
2546 memset and bzero don't read memory either. */
2547 const_call
= RTL_CONST_CALL_P (insn
);
2550 rtx call
= get_call_rtx_from (insn
);
2551 if (call
&& GET_CODE (XEXP (XEXP (call
, 0), 0)) == SYMBOL_REF
)
2553 rtx symbol
= XEXP (XEXP (call
, 0), 0);
2554 if (SYMBOL_REF_DECL (symbol
)
2555 && TREE_CODE (SYMBOL_REF_DECL (symbol
)) == FUNCTION_DECL
)
2557 if ((DECL_BUILT_IN_CLASS (SYMBOL_REF_DECL (symbol
))
2559 && (DECL_FUNCTION_CODE (SYMBOL_REF_DECL (symbol
))
2560 == BUILT_IN_MEMSET
))
2561 || SYMBOL_REF_DECL (symbol
) == block_clear_fn
)
2562 memset_call
= SYMBOL_REF_DECL (symbol
);
2566 if (const_call
|| memset_call
)
2568 insn_info_t i_ptr
= active_local_stores
;
2569 insn_info_t last
= NULL
;
2572 fprintf (dump_file
, "%s call %d\n",
2573 const_call
? "const" : "memset", INSN_UID (insn
));
2575 /* See the head comment of the frame_read field. */
2576 if (reload_completed
)
2577 insn_info
->frame_read
= true;
2579 /* Loop over the active stores and remove those which are
2580 killed by the const function call. */
2583 bool remove_store
= false;
2585 /* The stack pointer based stores are always killed. */
2586 if (i_ptr
->stack_pointer_based
)
2587 remove_store
= true;
2589 /* If the frame is read, the frame related stores are killed. */
2590 else if (insn_info
->frame_read
)
2592 store_info_t store_info
= i_ptr
->store_rec
;
2594 /* Skip the clobbers. */
2595 while (!store_info
->is_set
)
2596 store_info
= store_info
->next
;
2598 if (store_info
->group_id
>= 0
2599 && rtx_group_vec
[store_info
->group_id
]->frame_related
)
2600 remove_store
= true;
2606 dump_insn_info ("removing from active", i_ptr
);
2608 active_local_stores_len
--;
2610 last
->next_local_store
= i_ptr
->next_local_store
;
2612 active_local_stores
= i_ptr
->next_local_store
;
2617 i_ptr
= i_ptr
->next_local_store
;
2623 if (get_call_args (insn
, memset_call
, args
, 3)
2624 && CONST_INT_P (args
[1])
2625 && CONST_INT_P (args
[2])
2626 && INTVAL (args
[2]) > 0)
2628 rtx mem
= gen_rtx_MEM (BLKmode
, args
[0]);
2629 set_mem_size (mem
, INTVAL (args
[2]));
2630 body
= gen_rtx_SET (VOIDmode
, mem
, args
[1]);
2631 mems_found
+= record_store (body
, bb_info
);
2633 fprintf (dump_file
, "handling memset as BLKmode store\n");
2634 if (mems_found
== 1)
2636 if (active_local_stores_len
++
2637 >= PARAM_VALUE (PARAM_MAX_DSE_ACTIVE_LOCAL_STORES
))
2639 active_local_stores_len
= 1;
2640 active_local_stores
= NULL
;
2642 insn_info
->fixed_regs_live
2643 = copy_fixed_regs (bb_info
->regs_live
);
2644 insn_info
->next_local_store
= active_local_stores
;
2645 active_local_stores
= insn_info
;
2652 /* Every other call, including pure functions, may read any memory
2653 that is not relative to the frame. */
2654 add_non_frame_wild_read (bb_info
);
2659 /* Assuming that there are sets in these insns, we cannot delete
2661 if ((GET_CODE (PATTERN (insn
)) == CLOBBER
)
2662 || volatile_refs_p (PATTERN (insn
))
2663 || (!cfun
->can_delete_dead_exceptions
&& !insn_nothrow_p (insn
))
2664 || (RTX_FRAME_RELATED_P (insn
))
2665 || find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
))
2666 insn_info
->cannot_delete
= true;
2668 body
= PATTERN (insn
);
2669 if (GET_CODE (body
) == PARALLEL
)
2672 for (i
= 0; i
< XVECLEN (body
, 0); i
++)
2673 mems_found
+= record_store (XVECEXP (body
, 0, i
), bb_info
);
2676 mems_found
+= record_store (body
, bb_info
);
2679 fprintf (dump_file
, "mems_found = %d, cannot_delete = %s\n",
2680 mems_found
, insn_info
->cannot_delete
? "true" : "false");
2682 /* If we found some sets of mems, add it into the active_local_stores so
2683 that it can be locally deleted if found dead or used for
2684 replace_read and redundant constant store elimination. Otherwise mark
2685 it as cannot delete. This simplifies the processing later. */
2686 if (mems_found
== 1)
2688 if (active_local_stores_len
++
2689 >= PARAM_VALUE (PARAM_MAX_DSE_ACTIVE_LOCAL_STORES
))
2691 active_local_stores_len
= 1;
2692 active_local_stores
= NULL
;
2694 insn_info
->fixed_regs_live
= copy_fixed_regs (bb_info
->regs_live
);
2695 insn_info
->next_local_store
= active_local_stores
;
2696 active_local_stores
= insn_info
;
2699 insn_info
->cannot_delete
= true;
2703 /* Remove BASE from the set of active_local_stores. This is a
2704 callback from cselib that is used to get rid of the stores in
2705 active_local_stores. */
2708 remove_useless_values (cselib_val
*base
)
2710 insn_info_t insn_info
= active_local_stores
;
2711 insn_info_t last
= NULL
;
2715 store_info_t store_info
= insn_info
->store_rec
;
2718 /* If ANY of the store_infos match the cselib group that is
2719 being deleted, then the insn can not be deleted. */
2722 if ((store_info
->group_id
== -1)
2723 && (store_info
->cse_base
== base
))
2728 store_info
= store_info
->next
;
2733 active_local_stores_len
--;
2735 last
->next_local_store
= insn_info
->next_local_store
;
2737 active_local_stores
= insn_info
->next_local_store
;
2738 free_store_info (insn_info
);
2743 insn_info
= insn_info
->next_local_store
;
2748 /* Do all of step 1. */
2754 bitmap regs_live
= BITMAP_ALLOC (®_obstack
);
2757 all_blocks
= BITMAP_ALLOC (NULL
);
2758 bitmap_set_bit (all_blocks
, ENTRY_BLOCK
);
2759 bitmap_set_bit (all_blocks
, EXIT_BLOCK
);
2764 bb_info_t bb_info
= (bb_info_t
) pool_alloc (bb_info_pool
);
2766 memset (bb_info
, 0, sizeof (struct bb_info
));
2767 bitmap_set_bit (all_blocks
, bb
->index
);
2768 bb_info
->regs_live
= regs_live
;
2770 bitmap_copy (regs_live
, DF_LR_IN (bb
));
2771 df_simulate_initialize_forwards (bb
, regs_live
);
2773 bb_table
[bb
->index
] = bb_info
;
2774 cselib_discard_hook
= remove_useless_values
;
2776 if (bb
->index
>= NUM_FIXED_BLOCKS
)
2781 = create_alloc_pool ("cse_store_info_pool",
2782 sizeof (struct store_info
), 100);
2783 active_local_stores
= NULL
;
2784 active_local_stores_len
= 0;
2785 cselib_clear_table ();
2787 /* Scan the insns. */
2788 FOR_BB_INSNS (bb
, insn
)
2791 scan_insn (bb_info
, insn
);
2792 cselib_process_insn (insn
);
2794 df_simulate_one_insn_forwards (bb
, insn
, regs_live
);
2797 /* This is something of a hack, because the global algorithm
2798 is supposed to take care of the case where stores go dead
2799 at the end of the function. However, the global
2800 algorithm must take a more conservative view of block
2801 mode reads than the local alg does. So to get the case
2802 where you have a store to the frame followed by a non
2803 overlapping block more read, we look at the active local
2804 stores at the end of the function and delete all of the
2805 frame and spill based ones. */
2806 if (stores_off_frame_dead_at_return
2807 && (EDGE_COUNT (bb
->succs
) == 0
2808 || (single_succ_p (bb
)
2809 && single_succ (bb
) == EXIT_BLOCK_PTR
2810 && ! crtl
->calls_eh_return
)))
2812 insn_info_t i_ptr
= active_local_stores
;
2815 store_info_t store_info
= i_ptr
->store_rec
;
2817 /* Skip the clobbers. */
2818 while (!store_info
->is_set
)
2819 store_info
= store_info
->next
;
2820 if (store_info
->alias_set
&& !i_ptr
->cannot_delete
)
2821 delete_dead_store_insn (i_ptr
);
2823 if (store_info
->group_id
>= 0)
2826 = rtx_group_vec
[store_info
->group_id
];
2827 if (group
->frame_related
&& !i_ptr
->cannot_delete
)
2828 delete_dead_store_insn (i_ptr
);
2831 i_ptr
= i_ptr
->next_local_store
;
2835 /* Get rid of the loads that were discovered in
2836 replace_read. Cselib is finished with this block. */
2837 while (deferred_change_list
)
2839 deferred_change_t next
= deferred_change_list
->next
;
2841 /* There is no reason to validate this change. That was
2843 *deferred_change_list
->loc
= deferred_change_list
->reg
;
2844 pool_free (deferred_change_pool
, deferred_change_list
);
2845 deferred_change_list
= next
;
2848 /* Get rid of all of the cselib based store_infos in this
2849 block and mark the containing insns as not being
2851 ptr
= bb_info
->last_insn
;
2854 if (ptr
->contains_cselib_groups
)
2856 store_info_t s_info
= ptr
->store_rec
;
2857 while (s_info
&& !s_info
->is_set
)
2858 s_info
= s_info
->next
;
2860 && s_info
->redundant_reason
2861 && s_info
->redundant_reason
->insn
2862 && !ptr
->cannot_delete
)
2865 fprintf (dump_file
, "Locally deleting insn %d "
2866 "because insn %d stores the "
2867 "same value and couldn't be "
2869 INSN_UID (ptr
->insn
),
2870 INSN_UID (s_info
->redundant_reason
->insn
));
2871 delete_dead_store_insn (ptr
);
2874 s_info
->redundant_reason
= NULL
;
2875 free_store_info (ptr
);
2879 store_info_t s_info
;
2881 /* Free at least positions_needed bitmaps. */
2882 for (s_info
= ptr
->store_rec
; s_info
; s_info
= s_info
->next
)
2883 if (s_info
->is_large
)
2885 BITMAP_FREE (s_info
->positions_needed
.large
.bmap
);
2886 s_info
->is_large
= false;
2889 ptr
= ptr
->prev_insn
;
2892 free_alloc_pool (cse_store_info_pool
);
2894 bb_info
->regs_live
= NULL
;
2897 BITMAP_FREE (regs_live
);
2899 rtx_group_table
.empty ();
2903 /*----------------------------------------------------------------------------
2906 Assign each byte position in the stores that we are going to
2907 analyze globally to a position in the bitmaps. Returns true if
2908 there are any bit positions assigned.
2909 ----------------------------------------------------------------------------*/
2912 dse_step2_init (void)
2917 FOR_EACH_VEC_ELT (rtx_group_vec
, i
, group
)
2919 /* For all non stack related bases, we only consider a store to
2920 be deletable if there are two or more stores for that
2921 position. This is because it takes one store to make the
2922 other store redundant. However, for the stores that are
2923 stack related, we consider them if there is only one store
2924 for the position. We do this because the stack related
2925 stores can be deleted if their is no read between them and
2926 the end of the function.
2928 To make this work in the current framework, we take the stack
2929 related bases add all of the bits from store1 into store2.
2930 This has the effect of making the eligible even if there is
2933 if (stores_off_frame_dead_at_return
&& group
->frame_related
)
2935 bitmap_ior_into (group
->store2_n
, group
->store1_n
);
2936 bitmap_ior_into (group
->store2_p
, group
->store1_p
);
2938 fprintf (dump_file
, "group %d is frame related ", i
);
2941 group
->offset_map_size_n
++;
2942 group
->offset_map_n
= XOBNEWVEC (&dse_obstack
, int,
2943 group
->offset_map_size_n
);
2944 group
->offset_map_size_p
++;
2945 group
->offset_map_p
= XOBNEWVEC (&dse_obstack
, int,
2946 group
->offset_map_size_p
);
2947 group
->process_globally
= false;
2950 fprintf (dump_file
, "group %d(%d+%d): ", i
,
2951 (int)bitmap_count_bits (group
->store2_n
),
2952 (int)bitmap_count_bits (group
->store2_p
));
2953 bitmap_print (dump_file
, group
->store2_n
, "n ", " ");
2954 bitmap_print (dump_file
, group
->store2_p
, "p ", "\n");
2960 /* Init the offset tables for the normal case. */
2963 dse_step2_nospill (void)
2967 /* Position 0 is unused because 0 is used in the maps to mean
2969 current_position
= 1;
2970 FOR_EACH_VEC_ELT (rtx_group_vec
, i
, group
)
2975 if (group
== clear_alias_group
)
2978 memset (group
->offset_map_n
, 0, sizeof(int) * group
->offset_map_size_n
);
2979 memset (group
->offset_map_p
, 0, sizeof(int) * group
->offset_map_size_p
);
2980 bitmap_clear (group
->group_kill
);
2982 EXECUTE_IF_SET_IN_BITMAP (group
->store2_n
, 0, j
, bi
)
2984 bitmap_set_bit (group
->group_kill
, current_position
);
2985 if (bitmap_bit_p (group
->escaped_n
, j
))
2986 bitmap_set_bit (kill_on_calls
, current_position
);
2987 group
->offset_map_n
[j
] = current_position
++;
2988 group
->process_globally
= true;
2990 EXECUTE_IF_SET_IN_BITMAP (group
->store2_p
, 0, j
, bi
)
2992 bitmap_set_bit (group
->group_kill
, current_position
);
2993 if (bitmap_bit_p (group
->escaped_p
, j
))
2994 bitmap_set_bit (kill_on_calls
, current_position
);
2995 group
->offset_map_p
[j
] = current_position
++;
2996 group
->process_globally
= true;
2999 return current_position
!= 1;
3003 /* Init the offset tables for the spill case. */
3006 dse_step2_spill (void)
3009 group_info_t group
= clear_alias_group
;
3012 /* Position 0 is unused because 0 is used in the maps to mean
3014 current_position
= 1;
3018 bitmap_print (dump_file
, clear_alias_sets
,
3019 "clear alias sets ", "\n");
3020 bitmap_print (dump_file
, disqualified_clear_alias_sets
,
3021 "disqualified clear alias sets ", "\n");
3024 memset (group
->offset_map_n
, 0, sizeof(int) * group
->offset_map_size_n
);
3025 memset (group
->offset_map_p
, 0, sizeof(int) * group
->offset_map_size_p
);
3026 bitmap_clear (group
->group_kill
);
3028 /* Remove the disqualified positions from the store2_p set. */
3029 bitmap_and_compl_into (group
->store2_p
, disqualified_clear_alias_sets
);
3031 /* We do not need to process the store2_n set because
3032 alias_sets are always positive. */
3033 EXECUTE_IF_SET_IN_BITMAP (group
->store2_p
, 0, j
, bi
)
3035 bitmap_set_bit (group
->group_kill
, current_position
);
3036 group
->offset_map_p
[j
] = current_position
++;
3037 group
->process_globally
= true;
3040 return current_position
!= 1;
3045 /*----------------------------------------------------------------------------
3048 Build the bit vectors for the transfer functions.
3049 ----------------------------------------------------------------------------*/
3052 /* Look up the bitmap index for OFFSET in GROUP_INFO. If it is not
3056 get_bitmap_index (group_info_t group_info
, HOST_WIDE_INT offset
)
3060 HOST_WIDE_INT offset_p
= -offset
;
3061 if (offset_p
>= group_info
->offset_map_size_n
)
3063 return group_info
->offset_map_n
[offset_p
];
3067 if (offset
>= group_info
->offset_map_size_p
)
3069 return group_info
->offset_map_p
[offset
];
3074 /* Process the STORE_INFOs into the bitmaps into GEN and KILL. KILL
3078 scan_stores_nospill (store_info_t store_info
, bitmap gen
, bitmap kill
)
3083 group_info_t group_info
3084 = rtx_group_vec
[store_info
->group_id
];
3085 if (group_info
->process_globally
)
3086 for (i
= store_info
->begin
; i
< store_info
->end
; i
++)
3088 int index
= get_bitmap_index (group_info
, i
);
3091 bitmap_set_bit (gen
, index
);
3093 bitmap_clear_bit (kill
, index
);
3096 store_info
= store_info
->next
;
3101 /* Process the STORE_INFOs into the bitmaps into GEN and KILL. KILL
3105 scan_stores_spill (store_info_t store_info
, bitmap gen
, bitmap kill
)
3109 if (store_info
->alias_set
)
3111 int index
= get_bitmap_index (clear_alias_group
,
3112 store_info
->alias_set
);
3115 bitmap_set_bit (gen
, index
);
3117 bitmap_clear_bit (kill
, index
);
3120 store_info
= store_info
->next
;
3125 /* Process the READ_INFOs into the bitmaps into GEN and KILL. KILL
3129 scan_reads_nospill (insn_info_t insn_info
, bitmap gen
, bitmap kill
)
3131 read_info_t read_info
= insn_info
->read_rec
;
3135 /* If this insn reads the frame, kill all the frame related stores. */
3136 if (insn_info
->frame_read
)
3138 FOR_EACH_VEC_ELT (rtx_group_vec
, i
, group
)
3139 if (group
->process_globally
&& group
->frame_related
)
3142 bitmap_ior_into (kill
, group
->group_kill
);
3143 bitmap_and_compl_into (gen
, group
->group_kill
);
3146 if (insn_info
->non_frame_wild_read
)
3148 /* Kill all non-frame related stores. Kill all stores of variables that
3151 bitmap_ior_into (kill
, kill_on_calls
);
3152 bitmap_and_compl_into (gen
, kill_on_calls
);
3153 FOR_EACH_VEC_ELT (rtx_group_vec
, i
, group
)
3154 if (group
->process_globally
&& !group
->frame_related
)
3157 bitmap_ior_into (kill
, group
->group_kill
);
3158 bitmap_and_compl_into (gen
, group
->group_kill
);
3163 FOR_EACH_VEC_ELT (rtx_group_vec
, i
, group
)
3165 if (group
->process_globally
)
3167 if (i
== read_info
->group_id
)
3169 if (read_info
->begin
> read_info
->end
)
3171 /* Begin > end for block mode reads. */
3173 bitmap_ior_into (kill
, group
->group_kill
);
3174 bitmap_and_compl_into (gen
, group
->group_kill
);
3178 /* The groups are the same, just process the
3181 for (j
= read_info
->begin
; j
< read_info
->end
; j
++)
3183 int index
= get_bitmap_index (group
, j
);
3187 bitmap_set_bit (kill
, index
);
3188 bitmap_clear_bit (gen
, index
);
3195 /* The groups are different, if the alias sets
3196 conflict, clear the entire group. We only need
3197 to apply this test if the read_info is a cselib
3198 read. Anything with a constant base cannot alias
3199 something else with a different constant
3201 if ((read_info
->group_id
< 0)
3202 && canon_true_dependence (group
->base_mem
,
3203 GET_MODE (group
->base_mem
),
3204 group
->canon_base_addr
,
3205 read_info
->mem
, NULL_RTX
))
3208 bitmap_ior_into (kill
, group
->group_kill
);
3209 bitmap_and_compl_into (gen
, group
->group_kill
);
3215 read_info
= read_info
->next
;
3219 /* Process the READ_INFOs into the bitmaps into GEN and KILL. KILL
3223 scan_reads_spill (read_info_t read_info
, bitmap gen
, bitmap kill
)
3227 if (read_info
->alias_set
)
3229 int index
= get_bitmap_index (clear_alias_group
,
3230 read_info
->alias_set
);
3234 bitmap_set_bit (kill
, index
);
3235 bitmap_clear_bit (gen
, index
);
3239 read_info
= read_info
->next
;
3244 /* Return the insn in BB_INFO before the first wild read or if there
3245 are no wild reads in the block, return the last insn. */
3248 find_insn_before_first_wild_read (bb_info_t bb_info
)
3250 insn_info_t insn_info
= bb_info
->last_insn
;
3251 insn_info_t last_wild_read
= NULL
;
3255 if (insn_info
->wild_read
)
3257 last_wild_read
= insn_info
->prev_insn
;
3258 /* Block starts with wild read. */
3259 if (!last_wild_read
)
3263 insn_info
= insn_info
->prev_insn
;
3267 return last_wild_read
;
3269 return bb_info
->last_insn
;
3273 /* Scan the insns in BB_INFO starting at PTR and going to the top of
3274 the block in order to build the gen and kill sets for the block.
3275 We start at ptr which may be the last insn in the block or may be
3276 the first insn with a wild read. In the latter case we are able to
3277 skip the rest of the block because it just does not matter:
3278 anything that happens is hidden by the wild read. */
3281 dse_step3_scan (bool for_spills
, basic_block bb
)
3283 bb_info_t bb_info
= bb_table
[bb
->index
];
3284 insn_info_t insn_info
;
3287 /* There are no wild reads in the spill case. */
3288 insn_info
= bb_info
->last_insn
;
3290 insn_info
= find_insn_before_first_wild_read (bb_info
);
3292 /* In the spill case or in the no_spill case if there is no wild
3293 read in the block, we will need a kill set. */
3294 if (insn_info
== bb_info
->last_insn
)
3297 bitmap_clear (bb_info
->kill
);
3299 bb_info
->kill
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3303 BITMAP_FREE (bb_info
->kill
);
3307 /* There may have been code deleted by the dce pass run before
3309 if (insn_info
->insn
&& INSN_P (insn_info
->insn
))
3311 /* Process the read(s) last. */
3314 scan_stores_spill (insn_info
->store_rec
, bb_info
->gen
, bb_info
->kill
);
3315 scan_reads_spill (insn_info
->read_rec
, bb_info
->gen
, bb_info
->kill
);
3319 scan_stores_nospill (insn_info
->store_rec
, bb_info
->gen
, bb_info
->kill
);
3320 scan_reads_nospill (insn_info
, bb_info
->gen
, bb_info
->kill
);
3324 insn_info
= insn_info
->prev_insn
;
3329 /* Set the gen set of the exit block, and also any block with no
3330 successors that does not have a wild read. */
3333 dse_step3_exit_block_scan (bb_info_t bb_info
)
3335 /* The gen set is all 0's for the exit block except for the
3336 frame_pointer_group. */
3338 if (stores_off_frame_dead_at_return
)
3343 FOR_EACH_VEC_ELT (rtx_group_vec
, i
, group
)
3345 if (group
->process_globally
&& group
->frame_related
)
3346 bitmap_ior_into (bb_info
->gen
, group
->group_kill
);
3352 /* Find all of the blocks that are not backwards reachable from the
3353 exit block or any block with no successors (BB). These are the
3354 infinite loops or infinite self loops. These blocks will still
3355 have their bits set in UNREACHABLE_BLOCKS. */
3358 mark_reachable_blocks (sbitmap unreachable_blocks
, basic_block bb
)
3363 if (bitmap_bit_p (unreachable_blocks
, bb
->index
))
3365 bitmap_clear_bit (unreachable_blocks
, bb
->index
);
3366 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
3368 mark_reachable_blocks (unreachable_blocks
, e
->src
);
3373 /* Build the transfer functions for the function. */
3376 dse_step3 (bool for_spills
)
3379 sbitmap unreachable_blocks
= sbitmap_alloc (last_basic_block
);
3380 sbitmap_iterator sbi
;
3381 bitmap all_ones
= NULL
;
3384 bitmap_ones (unreachable_blocks
);
3388 bb_info_t bb_info
= bb_table
[bb
->index
];
3390 bitmap_clear (bb_info
->gen
);
3392 bb_info
->gen
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3394 if (bb
->index
== ENTRY_BLOCK
)
3396 else if (bb
->index
== EXIT_BLOCK
)
3397 dse_step3_exit_block_scan (bb_info
);
3399 dse_step3_scan (for_spills
, bb
);
3400 if (EDGE_COUNT (bb
->succs
) == 0)
3401 mark_reachable_blocks (unreachable_blocks
, bb
);
3403 /* If this is the second time dataflow is run, delete the old
3406 BITMAP_FREE (bb_info
->in
);
3408 BITMAP_FREE (bb_info
->out
);
3411 /* For any block in an infinite loop, we must initialize the out set
3412 to all ones. This could be expensive, but almost never occurs in
3413 practice. However, it is common in regression tests. */
3414 EXECUTE_IF_SET_IN_BITMAP (unreachable_blocks
, 0, i
, sbi
)
3416 if (bitmap_bit_p (all_blocks
, i
))
3418 bb_info_t bb_info
= bb_table
[i
];
3424 all_ones
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3425 FOR_EACH_VEC_ELT (rtx_group_vec
, j
, group
)
3426 bitmap_ior_into (all_ones
, group
->group_kill
);
3430 bb_info
->out
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3431 bitmap_copy (bb_info
->out
, all_ones
);
3437 BITMAP_FREE (all_ones
);
3438 sbitmap_free (unreachable_blocks
);
3443 /*----------------------------------------------------------------------------
3446 Solve the bitvector equations.
3447 ----------------------------------------------------------------------------*/
3450 /* Confluence function for blocks with no successors. Create an out
3451 set from the gen set of the exit block. This block logically has
3452 the exit block as a successor. */
3457 dse_confluence_0 (basic_block bb
)
3459 bb_info_t bb_info
= bb_table
[bb
->index
];
3461 if (bb
->index
== EXIT_BLOCK
)
3466 bb_info
->out
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3467 bitmap_copy (bb_info
->out
, bb_table
[EXIT_BLOCK
]->gen
);
3471 /* Propagate the information from the in set of the dest of E to the
3472 out set of the src of E. If the various in or out sets are not
3473 there, that means they are all ones. */
3476 dse_confluence_n (edge e
)
3478 bb_info_t src_info
= bb_table
[e
->src
->index
];
3479 bb_info_t dest_info
= bb_table
[e
->dest
->index
];
3484 bitmap_and_into (src_info
->out
, dest_info
->in
);
3487 src_info
->out
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3488 bitmap_copy (src_info
->out
, dest_info
->in
);
3495 /* Propagate the info from the out to the in set of BB_INDEX's basic
3496 block. There are three cases:
3498 1) The block has no kill set. In this case the kill set is all
3499 ones. It does not matter what the out set of the block is, none of
3500 the info can reach the top. The only thing that reaches the top is
3501 the gen set and we just copy the set.
3503 2) There is a kill set but no out set and bb has successors. In
3504 this case we just return. Eventually an out set will be created and
3505 it is better to wait than to create a set of ones.
3507 3) There is both a kill and out set. We apply the obvious transfer
3512 dse_transfer_function (int bb_index
)
3514 bb_info_t bb_info
= bb_table
[bb_index
];
3522 return bitmap_ior_and_compl (bb_info
->in
, bb_info
->gen
,
3523 bb_info
->out
, bb_info
->kill
);
3526 bb_info
->in
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3527 bitmap_ior_and_compl (bb_info
->in
, bb_info
->gen
,
3528 bb_info
->out
, bb_info
->kill
);
3538 /* Case 1 above. If there is already an in set, nothing
3544 bb_info
->in
= BITMAP_ALLOC (&dse_bitmap_obstack
);
3545 bitmap_copy (bb_info
->in
, bb_info
->gen
);
3551 /* Solve the dataflow equations. */
3556 df_simple_dataflow (DF_BACKWARD
, NULL
, dse_confluence_0
,
3557 dse_confluence_n
, dse_transfer_function
,
3558 all_blocks
, df_get_postorder (DF_BACKWARD
),
3559 df_get_n_blocks (DF_BACKWARD
));
3564 fprintf (dump_file
, "\n\n*** Global dataflow info after analysis.\n");
3567 bb_info_t bb_info
= bb_table
[bb
->index
];
3569 df_print_bb_index (bb
, dump_file
);
3571 bitmap_print (dump_file
, bb_info
->in
, " in: ", "\n");
3573 fprintf (dump_file
, " in: *MISSING*\n");
3575 bitmap_print (dump_file
, bb_info
->gen
, " gen: ", "\n");
3577 fprintf (dump_file
, " gen: *MISSING*\n");
3579 bitmap_print (dump_file
, bb_info
->kill
, " kill: ", "\n");
3581 fprintf (dump_file
, " kill: *MISSING*\n");
3583 bitmap_print (dump_file
, bb_info
->out
, " out: ", "\n");
3585 fprintf (dump_file
, " out: *MISSING*\n\n");
3592 /*----------------------------------------------------------------------------
3595 Delete the stores that can only be deleted using the global information.
3596 ----------------------------------------------------------------------------*/
3600 dse_step5_nospill (void)
3605 bb_info_t bb_info
= bb_table
[bb
->index
];
3606 insn_info_t insn_info
= bb_info
->last_insn
;
3607 bitmap v
= bb_info
->out
;
3611 bool deleted
= false;
3612 if (dump_file
&& insn_info
->insn
)
3614 fprintf (dump_file
, "starting to process insn %d\n",
3615 INSN_UID (insn_info
->insn
));
3616 bitmap_print (dump_file
, v
, " v: ", "\n");
3619 /* There may have been code deleted by the dce pass run before
3622 && INSN_P (insn_info
->insn
)
3623 && (!insn_info
->cannot_delete
)
3624 && (!bitmap_empty_p (v
)))
3626 store_info_t store_info
= insn_info
->store_rec
;
3628 /* Try to delete the current insn. */
3631 /* Skip the clobbers. */
3632 while (!store_info
->is_set
)
3633 store_info
= store_info
->next
;
3635 if (store_info
->alias_set
)
3640 group_info_t group_info
3641 = rtx_group_vec
[store_info
->group_id
];
3643 for (i
= store_info
->begin
; i
< store_info
->end
; i
++)
3645 int index
= get_bitmap_index (group_info
, i
);
3648 fprintf (dump_file
, "i = %d, index = %d\n", (int)i
, index
);
3649 if (index
== 0 || !bitmap_bit_p (v
, index
))
3652 fprintf (dump_file
, "failing at i = %d\n", (int)i
);
3661 && check_for_inc_dec_1 (insn_info
))
3663 delete_insn (insn_info
->insn
);
3664 insn_info
->insn
= NULL
;
3669 /* We do want to process the local info if the insn was
3670 deleted. For instance, if the insn did a wild read, we
3671 no longer need to trash the info. */
3673 && INSN_P (insn_info
->insn
)
3676 scan_stores_nospill (insn_info
->store_rec
, v
, NULL
);
3677 if (insn_info
->wild_read
)
3680 fprintf (dump_file
, "wild read\n");
3683 else if (insn_info
->read_rec
3684 || insn_info
->non_frame_wild_read
)
3686 if (dump_file
&& !insn_info
->non_frame_wild_read
)
3687 fprintf (dump_file
, "regular read\n");
3689 fprintf (dump_file
, "non-frame wild read\n");
3690 scan_reads_nospill (insn_info
, v
, NULL
);
3694 insn_info
= insn_info
->prev_insn
;
3701 dse_step5_spill (void)
3706 bb_info_t bb_info
= bb_table
[bb
->index
];
3707 insn_info_t insn_info
= bb_info
->last_insn
;
3708 bitmap v
= bb_info
->out
;
3712 bool deleted
= false;
3713 /* There may have been code deleted by the dce pass run before
3716 && INSN_P (insn_info
->insn
)
3717 && (!insn_info
->cannot_delete
)
3718 && (!bitmap_empty_p (v
)))
3720 /* Try to delete the current insn. */
3721 store_info_t store_info
= insn_info
->store_rec
;
3726 if (store_info
->alias_set
)
3728 int index
= get_bitmap_index (clear_alias_group
,
3729 store_info
->alias_set
);
3730 if (index
== 0 || !bitmap_bit_p (v
, index
))
3738 store_info
= store_info
->next
;
3740 if (deleted
&& dbg_cnt (dse
)
3741 && check_for_inc_dec_1 (insn_info
))
3744 fprintf (dump_file
, "Spill deleting insn %d\n",
3745 INSN_UID (insn_info
->insn
));
3746 delete_insn (insn_info
->insn
);
3748 insn_info
->insn
= NULL
;
3753 && INSN_P (insn_info
->insn
)
3756 scan_stores_spill (insn_info
->store_rec
, v
, NULL
);
3757 scan_reads_spill (insn_info
->read_rec
, v
, NULL
);
3760 insn_info
= insn_info
->prev_insn
;
3767 /*----------------------------------------------------------------------------
3770 Delete stores made redundant by earlier stores (which store the same
3771 value) that couldn't be eliminated.
3772 ----------------------------------------------------------------------------*/
3781 bb_info_t bb_info
= bb_table
[bb
->index
];
3782 insn_info_t insn_info
= bb_info
->last_insn
;
3786 /* There may have been code deleted by the dce pass run before
3789 && INSN_P (insn_info
->insn
)
3790 && !insn_info
->cannot_delete
)
3792 store_info_t s_info
= insn_info
->store_rec
;
3794 while (s_info
&& !s_info
->is_set
)
3795 s_info
= s_info
->next
;
3797 && s_info
->redundant_reason
3798 && s_info
->redundant_reason
->insn
3799 && INSN_P (s_info
->redundant_reason
->insn
))
3801 rtx rinsn
= s_info
->redundant_reason
->insn
;
3803 fprintf (dump_file
, "Locally deleting insn %d "
3804 "because insn %d stores the "
3805 "same value and couldn't be "
3807 INSN_UID (insn_info
->insn
),
3809 delete_dead_store_insn (insn_info
);
3812 insn_info
= insn_info
->prev_insn
;
3817 /*----------------------------------------------------------------------------
3820 Destroy everything left standing.
3821 ----------------------------------------------------------------------------*/
3826 bitmap_obstack_release (&dse_bitmap_obstack
);
3827 obstack_free (&dse_obstack
, NULL
);
3829 if (clear_alias_sets
)
3831 BITMAP_FREE (clear_alias_sets
);
3832 BITMAP_FREE (disqualified_clear_alias_sets
);
3833 free_alloc_pool (clear_alias_mode_pool
);
3834 htab_delete (clear_alias_mode_table
);
3837 end_alias_analysis ();
3839 rtx_group_table
.dispose ();
3840 rtx_group_vec
.release ();
3841 BITMAP_FREE (all_blocks
);
3842 BITMAP_FREE (scratch
);
3844 free_alloc_pool (rtx_store_info_pool
);
3845 free_alloc_pool (read_info_pool
);
3846 free_alloc_pool (insn_info_pool
);
3847 free_alloc_pool (bb_info_pool
);
3848 free_alloc_pool (rtx_group_info_pool
);
3849 free_alloc_pool (deferred_change_pool
);
3853 /* -------------------------------------------------------------------------
3855 ------------------------------------------------------------------------- */
3857 /* Callback for running pass_rtl_dse. */
3860 rest_of_handle_dse (void)
3862 bool did_global
= false;
3864 df_set_flags (DF_DEFER_INSN_RESCAN
);
3866 /* Need the notes since we must track live hardregs in the forwards
3868 df_note_add_problem ();
3874 if (dse_step2_nospill ())
3876 df_set_flags (DF_LR_RUN_DCE
);
3880 fprintf (dump_file
, "doing global processing\n");
3883 dse_step5_nospill ();
3886 /* For the instance of dse that runs after reload, we make a special
3887 pass to process the spills. These are special in that they are
3888 totally transparent, i.e, there is no aliasing issues that need
3889 to be considered. This means that the wild reads that kill
3890 everything else do not apply here. */
3891 if (clear_alias_sets
&& dse_step2_spill ())
3895 df_set_flags (DF_LR_RUN_DCE
);
3900 fprintf (dump_file
, "doing global spill processing\n");
3910 fprintf (dump_file
, "dse: local deletions = %d, global deletions = %d, spill deletions = %d\n",
3911 locally_deleted
, globally_deleted
, spill_deleted
);
3918 return optimize
> 0 && flag_dse
3925 return optimize
> 0 && flag_dse
3929 struct rtl_opt_pass pass_rtl_dse1
=
3934 OPTGROUP_NONE
, /* optinfo_flags */
3935 gate_dse1
, /* gate */
3936 rest_of_handle_dse
, /* execute */
3939 0, /* static_pass_number */
3940 TV_DSE1
, /* tv_id */
3941 0, /* properties_required */
3942 0, /* properties_provided */
3943 0, /* properties_destroyed */
3944 0, /* todo_flags_start */
3945 TODO_df_finish
| TODO_verify_rtl_sharing
|
3946 TODO_ggc_collect
/* todo_flags_finish */
3950 struct rtl_opt_pass pass_rtl_dse2
=
3955 OPTGROUP_NONE
, /* optinfo_flags */
3956 gate_dse2
, /* gate */
3957 rest_of_handle_dse
, /* execute */
3960 0, /* static_pass_number */
3961 TV_DSE2
, /* tv_id */
3962 0, /* properties_required */
3963 0, /* properties_provided */
3964 0, /* properties_destroyed */
3965 0, /* todo_flags_start */
3966 TODO_df_finish
| TODO_verify_rtl_sharing
|
3967 TODO_ggc_collect
/* todo_flags_finish */