OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / dse.c
1 /* RTL dead store elimination.
2    Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
3    Free Software Foundation, Inc.
4
5    Contributed by Richard Sandiford <rsandifor@codesourcery.com>
6    and Kenneth Zadeck <zadeck@naturalbridge.com>
7
8 This file is part of GCC.
9
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
13 version.
14
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
18 for more details.
19
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/>.  */
23
24 #undef BASELINE
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "hashtab.h"
30 #include "tm.h"
31 #include "rtl.h"
32 #include "tree.h"
33 #include "tm_p.h"
34 #include "regs.h"
35 #include "hard-reg-set.h"
36 #include "flags.h"
37 #include "df.h"
38 #include "cselib.h"
39 #include "timevar.h"
40 #include "tree-pass.h"
41 #include "alloc-pool.h"
42 #include "alias.h"
43 #include "insn-config.h"
44 #include "expr.h"
45 #include "recog.h"
46 #include "dse.h"
47 #include "optabs.h"
48 #include "dbgcnt.h"
49 #include "target.h"
50
51 /* This file contains three techniques for performing Dead Store
52    Elimination (dse).
53
54    * The first technique performs dse locally on any base address.  It
55    is based on the cselib which is a local value numbering technique.
56    This technique is local to a basic block but deals with a fairly
57    general addresses.
58
59    * The second technique performs dse globally but is restricted to
60    base addresses that are either constant or are relative to the
61    frame_pointer.
62
63    * The third technique, (which is only done after register allocation)
64    processes the spill spill slots.  This differs from the second
65    technique because it takes advantage of the fact that spilling is
66    completely free from the effects of aliasing.
67
68    Logically, dse is a backwards dataflow problem.  A store can be
69    deleted if it if cannot be reached in the backward direction by any
70    use of the value being stored.  However, the local technique uses a
71    forwards scan of the basic block because cselib requires that the
72    block be processed in that order.
73
74    The pass is logically broken into 7 steps:
75
76    0) Initialization.
77
78    1) The local algorithm, as well as scanning the insns for the two
79    global algorithms.
80
81    2) Analysis to see if the global algs are necessary.  In the case
82    of stores base on a constant address, there must be at least two
83    stores to that address, to make it possible to delete some of the
84    stores.  In the case of stores off of the frame or spill related
85    stores, only one store to an address is necessary because those
86    stores die at the end of the function.
87
88    3) Set up the global dataflow equations based on processing the
89    info parsed in the first step.
90
91    4) Solve the dataflow equations.
92
93    5) Delete the insns that the global analysis has indicated are
94    unnecessary.
95
96    6) Delete insns that store the same value as preceeding store
97    where the earlier store couldn't be eliminated.
98
99    7) Cleanup.
100
101    This step uses cselib and canon_rtx to build the largest expression
102    possible for each address.  This pass is a forwards pass through
103    each basic block.  From the point of view of the global technique,
104    the first pass could examine a block in either direction.  The
105    forwards ordering is to accommodate cselib.
106
107    We a simplifying assumption: addresses fall into four broad
108    categories:
109
110    1) base has rtx_varies_p == false, offset is constant.
111    2) base has rtx_varies_p == false, offset variable.
112    3) base has rtx_varies_p == true, offset constant.
113    4) base has rtx_varies_p == true, offset variable.
114
115    The local passes are able to process all 4 kinds of addresses.  The
116    global pass only handles (1).
117
118    The global problem is formulated as follows:
119
120      A store, S1, to address A, where A is not relative to the stack
121      frame, can be eliminated if all paths from S1 to the end of the
122      of the function contain another store to A before a read to A.
123
124      If the address A is relative to the stack frame, a store S2 to A
125      can be eliminated if there are no paths from S1 that reach the
126      end of the function that read A before another store to A.  In
127      this case S2 can be deleted if there are paths to from S2 to the
128      end of the function that have no reads or writes to A.  This
129      second case allows stores to the stack frame to be deleted that
130      would otherwise die when the function returns.  This cannot be
131      done if stores_off_frame_dead_at_return is not true.  See the doc
132      for that variable for when this variable is false.
133
134      The global problem is formulated as a backwards set union
135      dataflow problem where the stores are the gens and reads are the
136      kills.  Set union problems are rare and require some special
137      handling given our representation of bitmaps.  A straightforward
138      implementation of requires a lot of bitmaps filled with 1s.
139      These are expensive and cumbersome in our bitmap formulation so
140      care has been taken to avoid large vectors filled with 1s.  See
141      the comments in bb_info and in the dataflow confluence functions
142      for details.
143
144    There are two places for further enhancements to this algorithm:
145
146    1) The original dse which was embedded in a pass called flow also
147    did local address forwarding.  For example in
148
149    A <- r100
150    ... <- A
151
152    flow would replace the right hand side of the second insn with a
153    reference to r100.  Most of the information is available to add this
154    to this pass.  It has not done it because it is a lot of work in
155    the case that either r100 is assigned to between the first and
156    second insn and/or the second insn is a load of part of the value
157    stored by the first insn.
158
159    insn 5 in gcc.c-torture/compile/990203-1.c simple case.
160    insn 15 in gcc.c-torture/execute/20001017-2.c simple case.
161    insn 25 in gcc.c-torture/execute/20001026-1.c simple case.
162    insn 44 in gcc.c-torture/execute/20010910-1.c simple case.
163
164    2) The cleaning up of spill code is quite profitable.  It currently
165    depends on reading tea leaves and chicken entrails left by reload.
166    This pass depends on reload creating a singleton alias set for each
167    spill slot and telling the next dse pass which of these alias sets
168    are the singletons.  Rather than analyze the addresses of the
169    spills, dse's spill processing just does analysis of the loads and
170    stores that use those alias sets.  There are three cases where this
171    falls short:
172
173      a) Reload sometimes creates the slot for one mode of access, and
174      then inserts loads and/or stores for a smaller mode.  In this
175      case, the current code just punts on the slot.  The proper thing
176      to do is to back out and use one bit vector position for each
177      byte of the entity associated with the slot.  This depends on
178      KNOWING that reload always generates the accesses for each of the
179      bytes in some canonical (read that easy to understand several
180      passes after reload happens) way.
181
182      b) Reload sometimes decides that spill slot it allocated was not
183      large enough for the mode and goes back and allocates more slots
184      with the same mode and alias set.  The backout in this case is a
185      little more graceful than (a).  In this case the slot is unmarked
186      as being a spill slot and if final address comes out to be based
187      off the frame pointer, the global algorithm handles this slot.
188
189      c) For any pass that may prespill, there is currently no
190      mechanism to tell the dse pass that the slot being used has the
191      special properties that reload uses.  It may be that all that is
192      required is to have those passes make the same calls that reload
193      does, assuming that the alias sets can be manipulated in the same
194      way.  */
195
196 /* There are limits to the size of constant offsets we model for the
197    global problem.  There are certainly test cases, that exceed this
198    limit, however, it is unlikely that there are important programs
199    that really have constant offsets this size.  */
200 #define MAX_OFFSET (64 * 1024)
201
202
203 static bitmap scratch = NULL;
204 struct insn_info;
205
206 /* This structure holds information about a candidate store.  */
207 struct store_info
208 {
209
210   /* False means this is a clobber.  */
211   bool is_set;
212
213   /* False if a single HOST_WIDE_INT bitmap is used for positions_needed.  */
214   bool is_large;
215
216   /* The id of the mem group of the base address.  If rtx_varies_p is
217      true, this is -1.  Otherwise, it is the index into the group
218      table.  */
219   int group_id;
220
221   /* This is the cselib value.  */
222   cselib_val *cse_base;
223
224   /* This canonized mem.  */
225   rtx mem;
226
227   /* Canonized MEM address for use by canon_true_dependence.  */
228   rtx mem_addr;
229
230   /* If this is non-zero, it is the alias set of a spill location.  */
231   alias_set_type alias_set;
232
233   /* The offset of the first and byte before the last byte associated
234      with the operation.  */
235   HOST_WIDE_INT begin, end;
236
237   union
238     {
239       /* A bitmask as wide as the number of bytes in the word that
240          contains a 1 if the byte may be needed.  The store is unused if
241          all of the bits are 0.  This is used if IS_LARGE is false.  */
242       unsigned HOST_WIDE_INT small_bitmask;
243
244       struct
245         {
246           /* A bitmap with one bit per byte.  Cleared bit means the position
247              is needed.  Used if IS_LARGE is false.  */
248           bitmap bmap;
249
250           /* Number of set bits (i.e. unneeded bytes) in BITMAP.  If it is
251              equal to END - BEGIN, the whole store is unused.  */
252           int count;
253         } large;
254     } positions_needed;
255
256   /* The next store info for this insn.  */
257   struct store_info *next;
258
259   /* The right hand side of the store.  This is used if there is a
260      subsequent reload of the mems address somewhere later in the
261      basic block.  */
262   rtx rhs;
263
264   /* If rhs is or holds a constant, this contains that constant,
265      otherwise NULL.  */
266   rtx const_rhs;
267
268   /* Set if this store stores the same constant value as REDUNDANT_REASON
269      insn stored.  These aren't eliminated early, because doing that
270      might prevent the earlier larger store to be eliminated.  */
271   struct insn_info *redundant_reason;
272 };
273
274 /* Return a bitmask with the first N low bits set.  */
275
276 static unsigned HOST_WIDE_INT
277 lowpart_bitmask (int n)
278 {
279   unsigned HOST_WIDE_INT mask = ~(unsigned HOST_WIDE_INT) 0;
280   return mask >> (HOST_BITS_PER_WIDE_INT - n);
281 }
282
283 typedef struct store_info *store_info_t;
284 static alloc_pool cse_store_info_pool;
285 static alloc_pool rtx_store_info_pool;
286
287 /* This structure holds information about a load.  These are only
288    built for rtx bases.  */
289 struct read_info
290 {
291   /* The id of the mem group of the base address.  */
292   int group_id;
293
294   /* If this is non-zero, it is the alias set of a spill location.  */
295   alias_set_type alias_set;
296
297   /* The offset of the first and byte after the last byte associated
298      with the operation.  If begin == end == 0, the read did not have
299      a constant offset.  */
300   int begin, end;
301
302   /* The mem being read.  */
303   rtx mem;
304
305   /* The next read_info for this insn.  */
306   struct read_info *next;
307 };
308 typedef struct read_info *read_info_t;
309 static alloc_pool read_info_pool;
310
311
312 /* One of these records is created for each insn.  */
313
314 struct insn_info
315 {
316   /* Set true if the insn contains a store but the insn itself cannot
317      be deleted.  This is set if the insn is a parallel and there is
318      more than one non dead output or if the insn is in some way
319      volatile.  */
320   bool cannot_delete;
321
322   /* This field is only used by the global algorithm.  It is set true
323      if the insn contains any read of mem except for a (1).  This is
324      also set if the insn is a call or has a clobber mem.  If the insn
325      contains a wild read, the use_rec will be null.  */
326   bool wild_read;
327
328   /* This field is only used for the processing of const functions.
329      These functions cannot read memory, but they can read the stack
330      because that is where they may get their parms.  We need to be
331      this conservative because, like the store motion pass, we don't
332      consider CALL_INSN_FUNCTION_USAGE when processing call insns.
333      Moreover, we need to distinguish two cases:
334      1. Before reload (register elimination), the stores related to
335         outgoing arguments are stack pointer based and thus deemed
336         of non-constant base in this pass.  This requires special
337         handling but also means that the frame pointer based stores
338         need not be killed upon encountering a const function call.
339      2. After reload, the stores related to outgoing arguments can be
340         either stack pointer or hard frame pointer based.  This means
341         that we have no other choice than also killing all the frame
342         pointer based stores upon encountering a const function call.
343      This field is set after reload for const function calls.  Having
344      this set is less severe than a wild read, it just means that all
345      the frame related stores are killed rather than all the stores.  */
346   bool frame_read;
347
348   /* This field is only used for the processing of const functions.
349      It is set if the insn may contain a stack pointer based store.  */
350   bool stack_pointer_based;
351
352   /* This is true if any of the sets within the store contains a
353      cselib base.  Such stores can only be deleted by the local
354      algorithm.  */
355   bool contains_cselib_groups;
356
357   /* The insn. */
358   rtx insn;
359
360   /* The list of mem sets or mem clobbers that are contained in this
361      insn.  If the insn is deletable, it contains only one mem set.
362      But it could also contain clobbers.  Insns that contain more than
363      one mem set are not deletable, but each of those mems are here in
364      order to provide info to delete other insns.  */
365   store_info_t store_rec;
366
367   /* The linked list of mem uses in this insn.  Only the reads from
368      rtx bases are listed here.  The reads to cselib bases are
369      completely processed during the first scan and so are never
370      created.  */
371   read_info_t read_rec;
372
373   /* The prev insn in the basic block.  */
374   struct insn_info * prev_insn;
375
376   /* The linked list of insns that are in consideration for removal in
377      the forwards pass thru the basic block.  This pointer may be
378      trash as it is not cleared when a wild read occurs.  The only
379      time it is guaranteed to be correct is when the traversal starts
380      at active_local_stores.  */
381   struct insn_info * next_local_store;
382 };
383
384 typedef struct insn_info *insn_info_t;
385 static alloc_pool insn_info_pool;
386
387 /* The linked list of stores that are under consideration in this
388    basic block.  */
389 static insn_info_t active_local_stores;
390
391 struct bb_info
392 {
393
394   /* Pointer to the insn info for the last insn in the block.  These
395      are linked so this is how all of the insns are reached.  During
396      scanning this is the current insn being scanned.  */
397   insn_info_t last_insn;
398
399   /* The info for the global dataflow problem.  */
400
401
402   /* This is set if the transfer function should and in the wild_read
403      bitmap before applying the kill and gen sets.  That vector knocks
404      out most of the bits in the bitmap and thus speeds up the
405      operations.  */
406   bool apply_wild_read;
407
408   /* The following 4 bitvectors hold information about which positions
409      of which stores are live or dead.  They are indexed by
410      get_bitmap_index.  */
411
412   /* The set of store positions that exist in this block before a wild read.  */
413   bitmap gen;
414
415   /* The set of load positions that exist in this block above the
416      same position of a store.  */
417   bitmap kill;
418
419   /* The set of stores that reach the top of the block without being
420      killed by a read.
421
422      Do not represent the in if it is all ones.  Note that this is
423      what the bitvector should logically be initialized to for a set
424      intersection problem.  However, like the kill set, this is too
425      expensive.  So initially, the in set will only be created for the
426      exit block and any block that contains a wild read.  */
427   bitmap in;
428
429   /* The set of stores that reach the bottom of the block from it's
430      successors.
431
432      Do not represent the in if it is all ones.  Note that this is
433      what the bitvector should logically be initialized to for a set
434      intersection problem.  However, like the kill and in set, this is
435      too expensive.  So what is done is that the confluence operator
436      just initializes the vector from one of the out sets of the
437      successors of the block.  */
438   bitmap out;
439
440   /* The following bitvector is indexed by the reg number.  It
441      contains the set of regs that are live at the current instruction
442      being processed.  While it contains info for all of the
443      registers, only the pseudos are actually examined.  It is used to
444      assure that shift sequences that are inserted do not accidently
445      clobber live hard regs.  */
446   bitmap regs_live;
447 };
448
449 typedef struct bb_info *bb_info_t;
450 static alloc_pool bb_info_pool;
451
452 /* Table to hold all bb_infos.  */
453 static bb_info_t *bb_table;
454
455 /* There is a group_info for each rtx base that is used to reference
456    memory.  There are also not many of the rtx bases because they are
457    very limited in scope.  */
458
459 struct group_info
460 {
461   /* The actual base of the address.  */
462   rtx rtx_base;
463
464   /* The sequential id of the base.  This allows us to have a
465      canonical ordering of these that is not based on addresses.  */
466   int id;
467
468   /* True if there are any positions that are to be processed
469      globally.  */
470   bool process_globally;
471
472   /* True if the base of this group is either the frame_pointer or
473      hard_frame_pointer.  */
474   bool frame_related;
475
476   /* A mem wrapped around the base pointer for the group in order to
477      do read dependency.  */
478   rtx base_mem;
479
480   /* Canonized version of base_mem's address.  */
481   rtx canon_base_addr;
482
483   /* These two sets of two bitmaps are used to keep track of how many
484      stores are actually referencing that position from this base.  We
485      only do this for rtx bases as this will be used to assign
486      positions in the bitmaps for the global problem.  Bit N is set in
487      store1 on the first store for offset N.  Bit N is set in store2
488      for the second store to offset N.  This is all we need since we
489      only care about offsets that have two or more stores for them.
490
491      The "_n" suffix is for offsets less than 0 and the "_p" suffix is
492      for 0 and greater offsets.
493
494      There is one special case here, for stores into the stack frame,
495      we will or store1 into store2 before deciding which stores look
496      at globally.  This is because stores to the stack frame that have
497      no other reads before the end of the function can also be
498      deleted.  */
499   bitmap store1_n, store1_p, store2_n, store2_p;
500
501   /* The positions in this bitmap have the same assignments as the in,
502      out, gen and kill bitmaps.  This bitmap is all zeros except for
503      the positions that are occupied by stores for this group.  */
504   bitmap group_kill;
505
506   /* The offset_map is used to map the offsets from this base into
507      positions in the global bitmaps.  It is only created after all of
508      the all of stores have been scanned and we know which ones we
509      care about.  */
510   int *offset_map_n, *offset_map_p;
511   int offset_map_size_n, offset_map_size_p;
512 };
513 typedef struct group_info *group_info_t;
514 typedef const struct group_info *const_group_info_t;
515 static alloc_pool rtx_group_info_pool;
516
517 /* Tables of group_info structures, hashed by base value.  */
518 static htab_t rtx_group_table;
519
520 /* Index into the rtx_group_vec.  */
521 static int rtx_group_next_id;
522
523 DEF_VEC_P(group_info_t);
524 DEF_VEC_ALLOC_P(group_info_t,heap);
525
526 static VEC(group_info_t,heap) *rtx_group_vec;
527
528
529 /* This structure holds the set of changes that are being deferred
530    when removing read operation.  See replace_read.  */
531 struct deferred_change
532 {
533
534   /* The mem that is being replaced.  */
535   rtx *loc;
536
537   /* The reg it is being replaced with.  */
538   rtx reg;
539
540   struct deferred_change *next;
541 };
542
543 typedef struct deferred_change *deferred_change_t;
544 static alloc_pool deferred_change_pool;
545
546 static deferred_change_t deferred_change_list = NULL;
547
548 /* This are used to hold the alias sets of spill variables.  Since
549    these are never aliased and there may be a lot of them, it makes
550    sense to treat them specially.  This bitvector is only allocated in
551    calls from dse_record_singleton_alias_set which currently is only
552    made during reload1.  So when dse is called before reload this
553    mechanism does nothing.  */
554
555 static bitmap clear_alias_sets = NULL;
556
557 /* The set of clear_alias_sets that have been disqualified because
558    there are loads or stores using a different mode than the alias set
559    was registered with.  */
560 static bitmap disqualified_clear_alias_sets = NULL;
561
562 /* The group that holds all of the clear_alias_sets.  */
563 static group_info_t clear_alias_group;
564
565 /* The modes of the clear_alias_sets.  */
566 static htab_t clear_alias_mode_table;
567
568 /* Hash table element to look up the mode for an alias set.  */
569 struct clear_alias_mode_holder
570 {
571   alias_set_type alias_set;
572   enum machine_mode mode;
573 };
574
575 static alloc_pool clear_alias_mode_pool;
576
577 /* This is true except if cfun->stdarg -- i.e. we cannot do
578    this for vararg functions because they play games with the frame.  */
579 static bool stores_off_frame_dead_at_return;
580
581 /* Counter for stats.  */
582 static int globally_deleted;
583 static int locally_deleted;
584 static int spill_deleted;
585
586 static bitmap all_blocks;
587
588 /* The number of bits used in the global bitmaps.  */
589 static unsigned int current_position;
590
591
592 static bool gate_dse (void);
593 static bool gate_dse1 (void);
594 static bool gate_dse2 (void);
595
596 \f
597 /*----------------------------------------------------------------------------
598    Zeroth step.
599
600    Initialization.
601 ----------------------------------------------------------------------------*/
602
603 /* Hashtable callbacks for maintaining the "bases" field of
604    store_group_info, given that the addresses are function invariants.  */
605
606 static int
607 clear_alias_mode_eq (const void *p1, const void *p2)
608 {
609   const struct clear_alias_mode_holder * h1
610     = (const struct clear_alias_mode_holder *) p1;
611   const struct clear_alias_mode_holder * h2
612     = (const struct clear_alias_mode_holder *) p2;
613   return h1->alias_set == h2->alias_set;
614 }
615
616
617 static hashval_t
618 clear_alias_mode_hash (const void *p)
619 {
620   const struct clear_alias_mode_holder *holder
621     = (const struct clear_alias_mode_holder *) p;
622   return holder->alias_set;
623 }
624
625
626 /* Find the entry associated with ALIAS_SET.  */
627
628 static struct clear_alias_mode_holder *
629 clear_alias_set_lookup (alias_set_type alias_set)
630 {
631   struct clear_alias_mode_holder tmp_holder;
632   void **slot;
633
634   tmp_holder.alias_set = alias_set;
635   slot = htab_find_slot (clear_alias_mode_table, &tmp_holder, NO_INSERT);
636   gcc_assert (*slot);
637
638   return (struct clear_alias_mode_holder *) *slot;
639 }
640
641
642 /* Hashtable callbacks for maintaining the "bases" field of
643    store_group_info, given that the addresses are function invariants.  */
644
645 static int
646 invariant_group_base_eq (const void *p1, const void *p2)
647 {
648   const_group_info_t gi1 = (const_group_info_t) p1;
649   const_group_info_t gi2 = (const_group_info_t) p2;
650   return rtx_equal_p (gi1->rtx_base, gi2->rtx_base);
651 }
652
653
654 static hashval_t
655 invariant_group_base_hash (const void *p)
656 {
657   const_group_info_t gi = (const_group_info_t) p;
658   int do_not_record;
659   return hash_rtx (gi->rtx_base, Pmode, &do_not_record, NULL, false);
660 }
661
662
663 /* Get the GROUP for BASE.  Add a new group if it is not there.  */
664
665 static group_info_t
666 get_group_info (rtx base)
667 {
668   struct group_info tmp_gi;
669   group_info_t gi;
670   void **slot;
671
672   if (base)
673     {
674       /* Find the store_base_info structure for BASE, creating a new one
675          if necessary.  */
676       tmp_gi.rtx_base = base;
677       slot = htab_find_slot (rtx_group_table, &tmp_gi, INSERT);
678       gi = (group_info_t) *slot;
679     }
680   else
681     {
682       if (!clear_alias_group)
683         {
684           clear_alias_group = gi =
685             (group_info_t) pool_alloc (rtx_group_info_pool);
686           memset (gi, 0, sizeof (struct group_info));
687           gi->id = rtx_group_next_id++;
688           gi->store1_n = BITMAP_ALLOC (NULL);
689           gi->store1_p = BITMAP_ALLOC (NULL);
690           gi->store2_n = BITMAP_ALLOC (NULL);
691           gi->store2_p = BITMAP_ALLOC (NULL);
692           gi->group_kill = BITMAP_ALLOC (NULL);
693           gi->process_globally = false;
694           gi->offset_map_size_n = 0;
695           gi->offset_map_size_p = 0;
696           gi->offset_map_n = NULL;
697           gi->offset_map_p = NULL;
698           VEC_safe_push (group_info_t, heap, rtx_group_vec, gi);
699         }
700       return clear_alias_group;
701     }
702
703   if (gi == NULL)
704     {
705       *slot = gi = (group_info_t) pool_alloc (rtx_group_info_pool);
706       gi->rtx_base = base;
707       gi->id = rtx_group_next_id++;
708       gi->base_mem = gen_rtx_MEM (QImode, base);
709       gi->canon_base_addr = canon_rtx (base);
710       gi->store1_n = BITMAP_ALLOC (NULL);
711       gi->store1_p = BITMAP_ALLOC (NULL);
712       gi->store2_n = BITMAP_ALLOC (NULL);
713       gi->store2_p = BITMAP_ALLOC (NULL);
714       gi->group_kill = BITMAP_ALLOC (NULL);
715       gi->process_globally = false;
716       gi->frame_related =
717         (base == frame_pointer_rtx) || (base == hard_frame_pointer_rtx);
718       gi->offset_map_size_n = 0;
719       gi->offset_map_size_p = 0;
720       gi->offset_map_n = NULL;
721       gi->offset_map_p = NULL;
722       VEC_safe_push (group_info_t, heap, rtx_group_vec, gi);
723     }
724
725   return gi;
726 }
727
728
729 /* Initialization of data structures.  */
730
731 static void
732 dse_step0 (void)
733 {
734   locally_deleted = 0;
735   globally_deleted = 0;
736   spill_deleted = 0;
737
738   scratch = BITMAP_ALLOC (NULL);
739
740   rtx_store_info_pool
741     = create_alloc_pool ("rtx_store_info_pool",
742                          sizeof (struct store_info), 100);
743   read_info_pool
744     = create_alloc_pool ("read_info_pool",
745                          sizeof (struct read_info), 100);
746   insn_info_pool
747     = create_alloc_pool ("insn_info_pool",
748                          sizeof (struct insn_info), 100);
749   bb_info_pool
750     = create_alloc_pool ("bb_info_pool",
751                          sizeof (struct bb_info), 100);
752   rtx_group_info_pool
753     = create_alloc_pool ("rtx_group_info_pool",
754                          sizeof (struct group_info), 100);
755   deferred_change_pool
756     = create_alloc_pool ("deferred_change_pool",
757                          sizeof (struct deferred_change), 10);
758
759   rtx_group_table = htab_create (11, invariant_group_base_hash,
760                                  invariant_group_base_eq, NULL);
761
762   bb_table = XCNEWVEC (bb_info_t, last_basic_block);
763   rtx_group_next_id = 0;
764
765   stores_off_frame_dead_at_return = !cfun->stdarg;
766
767   init_alias_analysis ();
768
769   if (clear_alias_sets)
770     clear_alias_group = get_group_info (NULL);
771   else
772     clear_alias_group = NULL;
773 }
774
775
776 \f
777 /*----------------------------------------------------------------------------
778    First step.
779
780    Scan all of the insns.  Any random ordering of the blocks is fine.
781    Each block is scanned in forward order to accommodate cselib which
782    is used to remove stores with non-constant bases.
783 ----------------------------------------------------------------------------*/
784
785 /* Delete all of the store_info recs from INSN_INFO.  */
786
787 static void
788 free_store_info (insn_info_t insn_info)
789 {
790   store_info_t store_info = insn_info->store_rec;
791   while (store_info)
792     {
793       store_info_t next = store_info->next;
794       if (store_info->is_large)
795         BITMAP_FREE (store_info->positions_needed.large.bmap);
796       if (store_info->cse_base)
797         pool_free (cse_store_info_pool, store_info);
798       else
799         pool_free (rtx_store_info_pool, store_info);
800       store_info = next;
801     }
802
803   insn_info->cannot_delete = true;
804   insn_info->contains_cselib_groups = false;
805   insn_info->store_rec = NULL;
806 }
807
808
809 struct insn_size {
810   int size;
811   rtx insn;
812 };
813
814
815 /* Add an insn to do the add inside a x if it is a
816    PRE/POST-INC/DEC/MODIFY.  D is an structure containing the insn and
817    the size of the mode of the MEM that this is inside of.  */
818
819 static int
820 replace_inc_dec (rtx *r, void *d)
821 {
822   rtx x = *r;
823   struct insn_size *data = (struct insn_size *)d;
824   switch (GET_CODE (x))
825     {
826     case PRE_INC:
827     case POST_INC:
828       {
829         rtx r1 = XEXP (x, 0);
830         rtx c = gen_int_mode (data->size, GET_MODE (r1));
831         emit_insn_before (gen_rtx_SET (VOIDmode, r1,
832                                        gen_rtx_PLUS (GET_MODE (r1), r1, c)),
833                           data->insn);
834         return -1;
835       }
836
837     case PRE_DEC:
838     case POST_DEC:
839       {
840         rtx r1 = XEXP (x, 0);
841         rtx c = gen_int_mode (-data->size, GET_MODE (r1));
842         emit_insn_before (gen_rtx_SET (VOIDmode, r1,
843                                        gen_rtx_PLUS (GET_MODE (r1), r1, c)),
844                           data->insn);
845         return -1;
846       }
847
848     case PRE_MODIFY:
849     case POST_MODIFY:
850       {
851         /* We can reuse the add because we are about to delete the
852            insn that contained it.  */
853         rtx add = XEXP (x, 0);
854         rtx r1 = XEXP (add, 0);
855         emit_insn_before (gen_rtx_SET (VOIDmode, r1, add), data->insn);
856         return -1;
857       }
858
859     default:
860       return 0;
861     }
862 }
863
864
865 /* If X is a MEM, check the address to see if it is PRE/POST-INC/DEC/MODIFY
866    and generate an add to replace that.  */
867
868 static int
869 replace_inc_dec_mem (rtx *r, void *d)
870 {
871   rtx x = *r;
872   if (x != NULL_RTX && MEM_P (x))
873     {
874       struct insn_size data;
875
876       data.size = GET_MODE_SIZE (GET_MODE (x));
877       data.insn = (rtx) d;
878
879       for_each_rtx (&XEXP (x, 0), replace_inc_dec, &data);
880
881       return -1;
882     }
883   return 0;
884 }
885
886 /* Before we delete INSN, make sure that the auto inc/dec, if it is
887    there, is split into a separate insn.  */
888
889 static void
890 check_for_inc_dec (rtx insn)
891 {
892   rtx note = find_reg_note (insn, REG_INC, NULL_RTX);
893   if (note)
894     for_each_rtx (&insn, replace_inc_dec_mem, insn);
895 }
896
897
898 /* Delete the insn and free all of the fields inside INSN_INFO.  */
899
900 static void
901 delete_dead_store_insn (insn_info_t insn_info)
902 {
903   read_info_t read_info;
904
905   if (!dbg_cnt (dse))
906     return;
907
908   check_for_inc_dec (insn_info->insn);
909   if (dump_file)
910     {
911       fprintf (dump_file, "Locally deleting insn %d ",
912                INSN_UID (insn_info->insn));
913       if (insn_info->store_rec->alias_set)
914         fprintf (dump_file, "alias set %d\n",
915                  (int) insn_info->store_rec->alias_set);
916       else
917         fprintf (dump_file, "\n");
918     }
919
920   free_store_info (insn_info);
921   read_info = insn_info->read_rec;
922
923   while (read_info)
924     {
925       read_info_t next = read_info->next;
926       pool_free (read_info_pool, read_info);
927       read_info = next;
928     }
929   insn_info->read_rec = NULL;
930
931   delete_insn (insn_info->insn);
932   locally_deleted++;
933   insn_info->insn = NULL;
934
935   insn_info->wild_read = false;
936 }
937
938
939 /* Set the store* bitmaps offset_map_size* fields in GROUP based on
940    OFFSET and WIDTH.  */
941
942 static void
943 set_usage_bits (group_info_t group, HOST_WIDE_INT offset, HOST_WIDE_INT width)
944 {
945   HOST_WIDE_INT i;
946
947   if (offset > -MAX_OFFSET && offset + width < MAX_OFFSET)
948     for (i=offset; i<offset+width; i++)
949       {
950         bitmap store1;
951         bitmap store2;
952         int ai;
953         if (i < 0)
954           {
955             store1 = group->store1_n;
956             store2 = group->store2_n;
957             ai = -i;
958           }
959         else
960           {
961             store1 = group->store1_p;
962             store2 = group->store2_p;
963             ai = i;
964           }
965
966         if (!bitmap_set_bit (store1, ai))
967           bitmap_set_bit (store2, ai);
968         else
969           {
970             if (i < 0)
971               {
972                 if (group->offset_map_size_n < ai)
973                   group->offset_map_size_n = ai;
974               }
975             else
976               {
977                 if (group->offset_map_size_p < ai)
978                   group->offset_map_size_p = ai;
979               }
980           }
981       }
982 }
983
984
985 /* Set the BB_INFO so that the last insn is marked as a wild read.  */
986
987 static void
988 add_wild_read (bb_info_t bb_info)
989 {
990   insn_info_t insn_info = bb_info->last_insn;
991   read_info_t *ptr = &insn_info->read_rec;
992
993   while (*ptr)
994     {
995       read_info_t next = (*ptr)->next;
996       if ((*ptr)->alias_set == 0)
997         {
998           pool_free (read_info_pool, *ptr);
999           *ptr = next;
1000         }
1001       else
1002         ptr = &(*ptr)->next;
1003     }
1004   insn_info->wild_read = true;
1005   active_local_stores = NULL;
1006 }
1007
1008
1009 /* Return true if X is a constant or one of the registers that behave
1010    as a constant over the life of a function.  This is equivalent to
1011    !rtx_varies_p for memory addresses.  */
1012
1013 static bool
1014 const_or_frame_p (rtx x)
1015 {
1016   switch (GET_CODE (x))
1017     {
1018     case CONST:
1019     case CONST_INT:
1020     case CONST_DOUBLE:
1021     case CONST_VECTOR:
1022     case SYMBOL_REF:
1023     case LABEL_REF:
1024       return true;
1025
1026     case REG:
1027       /* Note that we have to test for the actual rtx used for the frame
1028          and arg pointers and not just the register number in case we have
1029          eliminated the frame and/or arg pointer and are using it
1030          for pseudos.  */
1031       if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
1032           /* The arg pointer varies if it is not a fixed register.  */
1033           || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM])
1034           || x == pic_offset_table_rtx)
1035         return true;
1036       return false;
1037
1038     default:
1039       return false;
1040     }
1041 }
1042
1043 /* Take all reasonable action to put the address of MEM into the form
1044    that we can do analysis on.
1045
1046    The gold standard is to get the address into the form: address +
1047    OFFSET where address is something that rtx_varies_p considers a
1048    constant.  When we can get the address in this form, we can do
1049    global analysis on it.  Note that for constant bases, address is
1050    not actually returned, only the group_id.  The address can be
1051    obtained from that.
1052
1053    If that fails, we try cselib to get a value we can at least use
1054    locally.  If that fails we return false.
1055
1056    The GROUP_ID is set to -1 for cselib bases and the index of the
1057    group for non_varying bases.
1058
1059    FOR_READ is true if this is a mem read and false if not.  */
1060
1061 static bool
1062 canon_address (rtx mem,
1063                alias_set_type *alias_set_out,
1064                int *group_id,
1065                HOST_WIDE_INT *offset,
1066                cselib_val **base)
1067 {
1068   enum machine_mode address_mode
1069     = targetm.addr_space.address_mode (MEM_ADDR_SPACE (mem));
1070   rtx mem_address = XEXP (mem, 0);
1071   rtx expanded_address, address;
1072   int expanded;
1073
1074   /* Make sure that cselib is has initialized all of the operands of
1075      the address before asking it to do the subst.  */
1076
1077   if (clear_alias_sets)
1078     {
1079       /* If this is a spill, do not do any further processing.  */
1080       alias_set_type alias_set = MEM_ALIAS_SET (mem);
1081       if (dump_file)
1082         fprintf (dump_file, "found alias set %d\n", (int) alias_set);
1083       if (bitmap_bit_p (clear_alias_sets, alias_set))
1084         {
1085           struct clear_alias_mode_holder *entry
1086             = clear_alias_set_lookup (alias_set);
1087
1088           /* If the modes do not match, we cannot process this set.  */
1089           if (entry->mode != GET_MODE (mem))
1090             {
1091               if (dump_file)
1092                 fprintf (dump_file,
1093                          "disqualifying alias set %d, (%s) != (%s)\n",
1094                          (int) alias_set, GET_MODE_NAME (entry->mode),
1095                          GET_MODE_NAME (GET_MODE (mem)));
1096
1097               bitmap_set_bit (disqualified_clear_alias_sets, alias_set);
1098               return false;
1099             }
1100
1101           *alias_set_out = alias_set;
1102           *group_id = clear_alias_group->id;
1103           return true;
1104         }
1105     }
1106
1107   *alias_set_out = 0;
1108
1109   cselib_lookup (mem_address, address_mode, 1);
1110
1111   if (dump_file)
1112     {
1113       fprintf (dump_file, "  mem: ");
1114       print_inline_rtx (dump_file, mem_address, 0);
1115       fprintf (dump_file, "\n");
1116     }
1117
1118   /* First see if just canon_rtx (mem_address) is const or frame,
1119      if not, try cselib_expand_value_rtx and call canon_rtx on that.  */
1120   address = NULL_RTX;
1121   for (expanded = 0; expanded < 2; expanded++)
1122     {
1123       if (expanded)
1124         {
1125           /* Use cselib to replace all of the reg references with the full
1126              expression.  This will take care of the case where we have
1127
1128              r_x = base + offset;
1129              val = *r_x;
1130
1131              by making it into
1132
1133              val = *(base + offset);  */
1134
1135           expanded_address = cselib_expand_value_rtx (mem_address,
1136                                                       scratch, 5);
1137
1138           /* If this fails, just go with the address from first
1139              iteration.  */
1140           if (!expanded_address)
1141             break;
1142         }
1143       else
1144         expanded_address = mem_address;
1145
1146       /* Split the address into canonical BASE + OFFSET terms.  */
1147       address = canon_rtx (expanded_address);
1148
1149       *offset = 0;
1150
1151       if (dump_file)
1152         {
1153           if (expanded)
1154             {
1155               fprintf (dump_file, "\n   after cselib_expand address: ");
1156               print_inline_rtx (dump_file, expanded_address, 0);
1157               fprintf (dump_file, "\n");
1158             }
1159
1160           fprintf (dump_file, "\n   after canon_rtx address: ");
1161           print_inline_rtx (dump_file, address, 0);
1162           fprintf (dump_file, "\n");
1163         }
1164
1165       if (GET_CODE (address) == CONST)
1166         address = XEXP (address, 0);
1167
1168       if (GET_CODE (address) == PLUS
1169           && CONST_INT_P (XEXP (address, 1)))
1170         {
1171           *offset = INTVAL (XEXP (address, 1));
1172           address = XEXP (address, 0);
1173         }
1174
1175       if (ADDR_SPACE_GENERIC_P (MEM_ADDR_SPACE (mem))
1176           && const_or_frame_p (address))
1177         {
1178           group_info_t group = get_group_info (address);
1179
1180           if (dump_file)
1181             fprintf (dump_file, "  gid=%d offset=%d \n",
1182                      group->id, (int)*offset);
1183           *base = NULL;
1184           *group_id = group->id;
1185           return true;
1186         }
1187     }
1188
1189   *base = cselib_lookup (address, address_mode, true);
1190   *group_id = -1;
1191
1192   if (*base == NULL)
1193     {
1194       if (dump_file)
1195         fprintf (dump_file, " no cselib val - should be a wild read.\n");
1196       return false;
1197     }
1198   if (dump_file)
1199     fprintf (dump_file, "  varying cselib base=%u:%u offset = %d\n",
1200              (*base)->uid, (*base)->hash, (int)*offset);
1201   return true;
1202 }
1203
1204
1205 /* Clear the rhs field from the active_local_stores array.  */
1206
1207 static void
1208 clear_rhs_from_active_local_stores (void)
1209 {
1210   insn_info_t ptr = active_local_stores;
1211
1212   while (ptr)
1213     {
1214       store_info_t store_info = ptr->store_rec;
1215       /* Skip the clobbers.  */
1216       while (!store_info->is_set)
1217         store_info = store_info->next;
1218
1219       store_info->rhs = NULL;
1220       store_info->const_rhs = NULL;
1221
1222       ptr = ptr->next_local_store;
1223     }
1224 }
1225
1226
1227 /* Mark byte POS bytes from the beginning of store S_INFO as unneeded.  */
1228
1229 static inline void
1230 set_position_unneeded (store_info_t s_info, int pos)
1231 {
1232   if (__builtin_expect (s_info->is_large, false))
1233     {
1234       if (bitmap_set_bit (s_info->positions_needed.large.bmap, pos))
1235         s_info->positions_needed.large.count++;
1236     }
1237   else
1238     s_info->positions_needed.small_bitmask
1239       &= ~(((unsigned HOST_WIDE_INT) 1) << pos);
1240 }
1241
1242 /* Mark the whole store S_INFO as unneeded.  */
1243
1244 static inline void
1245 set_all_positions_unneeded (store_info_t s_info)
1246 {
1247   if (__builtin_expect (s_info->is_large, false))
1248     {
1249       int pos, end = s_info->end - s_info->begin;
1250       for (pos = 0; pos < end; pos++)
1251         bitmap_set_bit (s_info->positions_needed.large.bmap, pos);
1252       s_info->positions_needed.large.count = end;
1253     }
1254   else
1255     s_info->positions_needed.small_bitmask = (unsigned HOST_WIDE_INT) 0;
1256 }
1257
1258 /* Return TRUE if any bytes from S_INFO store are needed.  */
1259
1260 static inline bool
1261 any_positions_needed_p (store_info_t s_info)
1262 {
1263   if (__builtin_expect (s_info->is_large, false))
1264     return (s_info->positions_needed.large.count
1265             < s_info->end - s_info->begin);
1266   else
1267     return (s_info->positions_needed.small_bitmask
1268             != (unsigned HOST_WIDE_INT) 0);
1269 }
1270
1271 /* Return TRUE if all bytes START through START+WIDTH-1 from S_INFO
1272    store are needed.  */
1273
1274 static inline bool
1275 all_positions_needed_p (store_info_t s_info, int start, int width)
1276 {
1277   if (__builtin_expect (s_info->is_large, false))
1278     {
1279       int end = start + width;
1280       while (start < end)
1281         if (bitmap_bit_p (s_info->positions_needed.large.bmap, start++))
1282           return false;
1283       return true;
1284     }
1285   else
1286     {
1287       unsigned HOST_WIDE_INT mask = lowpart_bitmask (width) << start;
1288       return (s_info->positions_needed.small_bitmask & mask) == mask;
1289     }
1290 }
1291
1292
1293 static rtx get_stored_val (store_info_t, enum machine_mode, HOST_WIDE_INT,
1294                            HOST_WIDE_INT, basic_block, bool);
1295
1296
1297 /* BODY is an instruction pattern that belongs to INSN.  Return 1 if
1298    there is a candidate store, after adding it to the appropriate
1299    local store group if so.  */
1300
1301 static int
1302 record_store (rtx body, bb_info_t bb_info)
1303 {
1304   rtx mem, rhs, const_rhs, mem_addr;
1305   HOST_WIDE_INT offset = 0;
1306   HOST_WIDE_INT width = 0;
1307   alias_set_type spill_alias_set;
1308   insn_info_t insn_info = bb_info->last_insn;
1309   store_info_t store_info = NULL;
1310   int group_id;
1311   cselib_val *base = NULL;
1312   insn_info_t ptr, last, redundant_reason;
1313   bool store_is_unused;
1314
1315   if (GET_CODE (body) != SET && GET_CODE (body) != CLOBBER)
1316     return 0;
1317
1318   mem = SET_DEST (body);
1319
1320   /* If this is not used, then this cannot be used to keep the insn
1321      from being deleted.  On the other hand, it does provide something
1322      that can be used to prove that another store is dead.  */
1323   store_is_unused
1324     = (find_reg_note (insn_info->insn, REG_UNUSED, mem) != NULL);
1325
1326   /* Check whether that value is a suitable memory location.  */
1327   if (!MEM_P (mem))
1328     {
1329       /* If the set or clobber is unused, then it does not effect our
1330          ability to get rid of the entire insn.  */
1331       if (!store_is_unused)
1332         insn_info->cannot_delete = true;
1333       return 0;
1334     }
1335
1336   /* At this point we know mem is a mem. */
1337   if (GET_MODE (mem) == BLKmode)
1338     {
1339       if (GET_CODE (XEXP (mem, 0)) == SCRATCH)
1340         {
1341           if (dump_file)
1342             fprintf (dump_file, " adding wild read for (clobber (mem:BLK (scratch))\n");
1343           add_wild_read (bb_info);
1344           insn_info->cannot_delete = true;
1345           return 0;
1346         }
1347       /* Handle (set (mem:BLK (addr) [... S36 ...]) (const_int 0))
1348          as memset (addr, 0, 36);  */
1349       else if (!MEM_SIZE (mem)
1350                || !CONST_INT_P (MEM_SIZE (mem))
1351                || GET_CODE (body) != SET
1352                || INTVAL (MEM_SIZE (mem)) <= 0
1353                || INTVAL (MEM_SIZE (mem)) > MAX_OFFSET
1354                || !CONST_INT_P (SET_SRC (body)))
1355         {
1356           if (!store_is_unused)
1357             {
1358               /* If the set or clobber is unused, then it does not effect our
1359                  ability to get rid of the entire insn.  */
1360               insn_info->cannot_delete = true;
1361               clear_rhs_from_active_local_stores ();
1362             }
1363           return 0;
1364         }
1365     }
1366
1367   /* We can still process a volatile mem, we just cannot delete it.  */
1368   if (MEM_VOLATILE_P (mem))
1369     insn_info->cannot_delete = true;
1370
1371   if (!canon_address (mem, &spill_alias_set, &group_id, &offset, &base))
1372     {
1373       clear_rhs_from_active_local_stores ();
1374       return 0;
1375     }
1376
1377   if (GET_MODE (mem) == BLKmode)
1378     width = INTVAL (MEM_SIZE (mem));
1379   else
1380     {
1381       width = GET_MODE_SIZE (GET_MODE (mem));
1382       gcc_assert ((unsigned) width <= HOST_BITS_PER_WIDE_INT);
1383     }
1384
1385   if (spill_alias_set)
1386     {
1387       bitmap store1 = clear_alias_group->store1_p;
1388       bitmap store2 = clear_alias_group->store2_p;
1389
1390       gcc_assert (GET_MODE (mem) != BLKmode);
1391
1392       if (!bitmap_set_bit (store1, spill_alias_set))
1393         bitmap_set_bit (store2, spill_alias_set);
1394
1395       if (clear_alias_group->offset_map_size_p < spill_alias_set)
1396         clear_alias_group->offset_map_size_p = spill_alias_set;
1397
1398       store_info = (store_info_t) pool_alloc (rtx_store_info_pool);
1399
1400       if (dump_file)
1401         fprintf (dump_file, " processing spill store %d(%s)\n",
1402                  (int) spill_alias_set, GET_MODE_NAME (GET_MODE (mem)));
1403     }
1404   else if (group_id >= 0)
1405     {
1406       /* In the restrictive case where the base is a constant or the
1407          frame pointer we can do global analysis.  */
1408
1409       group_info_t group
1410         = VEC_index (group_info_t, rtx_group_vec, group_id);
1411
1412       store_info = (store_info_t) pool_alloc (rtx_store_info_pool);
1413       set_usage_bits (group, offset, width);
1414
1415       if (dump_file)
1416         fprintf (dump_file, " processing const base store gid=%d[%d..%d)\n",
1417                  group_id, (int)offset, (int)(offset+width));
1418     }
1419   else
1420     {
1421       rtx base_term = find_base_term (XEXP (mem, 0));
1422       if (!base_term
1423           || (GET_CODE (base_term) == ADDRESS
1424               && GET_MODE (base_term) == Pmode
1425               && XEXP (base_term, 0) == stack_pointer_rtx))
1426         insn_info->stack_pointer_based = true;
1427       insn_info->contains_cselib_groups = true;
1428
1429       store_info = (store_info_t) pool_alloc (cse_store_info_pool);
1430       group_id = -1;
1431
1432       if (dump_file)
1433         fprintf (dump_file, " processing cselib store [%d..%d)\n",
1434                  (int)offset, (int)(offset+width));
1435     }
1436
1437   const_rhs = rhs = NULL_RTX;
1438   if (GET_CODE (body) == SET
1439       /* No place to keep the value after ra.  */
1440       && !reload_completed
1441       && (REG_P (SET_SRC (body))
1442           || GET_CODE (SET_SRC (body)) == SUBREG
1443           || CONSTANT_P (SET_SRC (body)))
1444       && !MEM_VOLATILE_P (mem)
1445       /* Sometimes the store and reload is used for truncation and
1446          rounding.  */
1447       && !(FLOAT_MODE_P (GET_MODE (mem)) && (flag_float_store)))
1448     {
1449       rhs = SET_SRC (body);
1450       if (CONSTANT_P (rhs))
1451         const_rhs = rhs;
1452       else if (body == PATTERN (insn_info->insn))
1453         {
1454           rtx tem = find_reg_note (insn_info->insn, REG_EQUAL, NULL_RTX);
1455           if (tem && CONSTANT_P (XEXP (tem, 0)))
1456             const_rhs = XEXP (tem, 0);
1457         }
1458       if (const_rhs == NULL_RTX && REG_P (rhs))
1459         {
1460           rtx tem = cselib_expand_value_rtx (rhs, scratch, 5);
1461
1462           if (tem && CONSTANT_P (tem))
1463             const_rhs = tem;
1464         }
1465     }
1466
1467   /* Check to see if this stores causes some other stores to be
1468      dead.  */
1469   ptr = active_local_stores;
1470   last = NULL;
1471   redundant_reason = NULL;
1472   mem = canon_rtx (mem);
1473   /* For alias_set != 0 canon_true_dependence should be never called.  */
1474   if (spill_alias_set)
1475     mem_addr = NULL_RTX;
1476   else
1477     {
1478       if (group_id < 0)
1479         mem_addr = base->val_rtx;
1480       else
1481         {
1482           group_info_t group
1483             = VEC_index (group_info_t, rtx_group_vec, group_id);
1484           mem_addr = group->canon_base_addr;
1485         }
1486       if (offset)
1487         mem_addr = plus_constant (mem_addr, offset);
1488     }
1489
1490   while (ptr)
1491     {
1492       insn_info_t next = ptr->next_local_store;
1493       store_info_t s_info = ptr->store_rec;
1494       bool del = true;
1495
1496       /* Skip the clobbers. We delete the active insn if this insn
1497          shadows the set.  To have been put on the active list, it
1498          has exactly on set. */
1499       while (!s_info->is_set)
1500         s_info = s_info->next;
1501
1502       if (s_info->alias_set != spill_alias_set)
1503         del = false;
1504       else if (s_info->alias_set)
1505         {
1506           struct clear_alias_mode_holder *entry
1507             = clear_alias_set_lookup (s_info->alias_set);
1508           /* Generally, spills cannot be processed if and of the
1509              references to the slot have a different mode.  But if
1510              we are in the same block and mode is exactly the same
1511              between this store and one before in the same block,
1512              we can still delete it.  */
1513           if ((GET_MODE (mem) == GET_MODE (s_info->mem))
1514               && (GET_MODE (mem) == entry->mode))
1515             {
1516               del = true;
1517               set_all_positions_unneeded (s_info);
1518             }
1519           if (dump_file)
1520             fprintf (dump_file, "    trying spill store in insn=%d alias_set=%d\n",
1521                      INSN_UID (ptr->insn), (int) s_info->alias_set);
1522         }
1523       else if ((s_info->group_id == group_id)
1524                && (s_info->cse_base == base))
1525         {
1526           HOST_WIDE_INT i;
1527           if (dump_file)
1528             fprintf (dump_file, "    trying store in insn=%d gid=%d[%d..%d)\n",
1529                      INSN_UID (ptr->insn), s_info->group_id,
1530                      (int)s_info->begin, (int)s_info->end);
1531
1532           /* Even if PTR won't be eliminated as unneeded, if both
1533              PTR and this insn store the same constant value, we might
1534              eliminate this insn instead.  */
1535           if (s_info->const_rhs
1536               && const_rhs
1537               && offset >= s_info->begin
1538               && offset + width <= s_info->end
1539               && all_positions_needed_p (s_info, offset - s_info->begin,
1540                                          width))
1541             {
1542               if (GET_MODE (mem) == BLKmode)
1543                 {
1544                   if (GET_MODE (s_info->mem) == BLKmode
1545                       && s_info->const_rhs == const_rhs)
1546                     redundant_reason = ptr;
1547                 }
1548               else if (s_info->const_rhs == const0_rtx
1549                        && const_rhs == const0_rtx)
1550                 redundant_reason = ptr;
1551               else
1552                 {
1553                   rtx val;
1554                   start_sequence ();
1555                   val = get_stored_val (s_info, GET_MODE (mem),
1556                                         offset, offset + width,
1557                                         BLOCK_FOR_INSN (insn_info->insn),
1558                                         true);
1559                   if (get_insns () != NULL)
1560                     val = NULL_RTX;
1561                   end_sequence ();
1562                   if (val && rtx_equal_p (val, const_rhs))
1563                     redundant_reason = ptr;
1564                 }
1565             }
1566
1567           for (i = MAX (offset, s_info->begin);
1568                i < offset + width && i < s_info->end;
1569                i++)
1570             set_position_unneeded (s_info, i - s_info->begin);
1571         }
1572       else if (s_info->rhs)
1573         /* Need to see if it is possible for this store to overwrite
1574            the value of store_info.  If it is, set the rhs to NULL to
1575            keep it from being used to remove a load.  */
1576         {
1577           if (canon_true_dependence (s_info->mem,
1578                                      GET_MODE (s_info->mem),
1579                                      s_info->mem_addr,
1580                                      mem, mem_addr, rtx_varies_p))
1581             {
1582               s_info->rhs = NULL;
1583               s_info->const_rhs = NULL;
1584             }
1585         }
1586
1587       /* An insn can be deleted if every position of every one of
1588          its s_infos is zero.  */
1589       if (any_positions_needed_p (s_info)
1590           || ptr->cannot_delete)
1591         del = false;
1592
1593       if (del)
1594         {
1595           insn_info_t insn_to_delete = ptr;
1596
1597           if (last)
1598             last->next_local_store = ptr->next_local_store;
1599           else
1600             active_local_stores = ptr->next_local_store;
1601
1602           delete_dead_store_insn (insn_to_delete);
1603         }
1604       else
1605         last = ptr;
1606
1607       ptr = next;
1608     }
1609
1610   /* Finish filling in the store_info.  */
1611   store_info->next = insn_info->store_rec;
1612   insn_info->store_rec = store_info;
1613   store_info->mem = mem;
1614   store_info->alias_set = spill_alias_set;
1615   store_info->mem_addr = mem_addr;
1616   store_info->cse_base = base;
1617   if (width > HOST_BITS_PER_WIDE_INT)
1618     {
1619       store_info->is_large = true;
1620       store_info->positions_needed.large.count = 0;
1621       store_info->positions_needed.large.bmap = BITMAP_ALLOC (NULL);
1622     }
1623   else
1624     {
1625       store_info->is_large = false;
1626       store_info->positions_needed.small_bitmask = lowpart_bitmask (width);
1627     }
1628   store_info->group_id = group_id;
1629   store_info->begin = offset;
1630   store_info->end = offset + width;
1631   store_info->is_set = GET_CODE (body) == SET;
1632   store_info->rhs = rhs;
1633   store_info->const_rhs = const_rhs;
1634   store_info->redundant_reason = redundant_reason;
1635
1636   /* If this is a clobber, we return 0.  We will only be able to
1637      delete this insn if there is only one store USED store, but we
1638      can use the clobber to delete other stores earlier.  */
1639   return store_info->is_set ? 1 : 0;
1640 }
1641
1642
1643 static void
1644 dump_insn_info (const char * start, insn_info_t insn_info)
1645 {
1646   fprintf (dump_file, "%s insn=%d %s\n", start,
1647            INSN_UID (insn_info->insn),
1648            insn_info->store_rec ? "has store" : "naked");
1649 }
1650
1651
1652 /* If the modes are different and the value's source and target do not
1653    line up, we need to extract the value from lower part of the rhs of
1654    the store, shift it, and then put it into a form that can be shoved
1655    into the read_insn.  This function generates a right SHIFT of a
1656    value that is at least ACCESS_SIZE bytes wide of READ_MODE.  The
1657    shift sequence is returned or NULL if we failed to find a
1658    shift.  */
1659
1660 static rtx
1661 find_shift_sequence (int access_size,
1662                      store_info_t store_info,
1663                      enum machine_mode read_mode,
1664                      int shift, bool speed, bool require_cst)
1665 {
1666   enum machine_mode store_mode = GET_MODE (store_info->mem);
1667   enum machine_mode new_mode;
1668   rtx read_reg = NULL;
1669
1670   /* Some machines like the x86 have shift insns for each size of
1671      operand.  Other machines like the ppc or the ia-64 may only have
1672      shift insns that shift values within 32 or 64 bit registers.
1673      This loop tries to find the smallest shift insn that will right
1674      justify the value we want to read but is available in one insn on
1675      the machine.  */
1676
1677   for (new_mode = smallest_mode_for_size (access_size * BITS_PER_UNIT,
1678                                           MODE_INT);
1679        GET_MODE_BITSIZE (new_mode) <= BITS_PER_WORD;
1680        new_mode = GET_MODE_WIDER_MODE (new_mode))
1681     {
1682       rtx target, new_reg, shift_seq, insn, new_lhs;
1683       int cost;
1684
1685       /* If a constant was stored into memory, try to simplify it here,
1686          otherwise the cost of the shift might preclude this optimization
1687          e.g. at -Os, even when no actual shift will be needed.  */
1688       if (store_info->const_rhs)
1689         {
1690           unsigned int byte = subreg_lowpart_offset (new_mode, store_mode);
1691           rtx ret = simplify_subreg (new_mode, store_info->const_rhs,
1692                                      store_mode, byte);
1693           if (ret && CONSTANT_P (ret))
1694             {
1695               ret = simplify_const_binary_operation (LSHIFTRT, new_mode,
1696                                                      ret, GEN_INT (shift));
1697               if (ret && CONSTANT_P (ret))
1698                 {
1699                   byte = subreg_lowpart_offset (read_mode, new_mode);
1700                   ret = simplify_subreg (read_mode, ret, new_mode, byte);
1701                   if (ret && CONSTANT_P (ret)
1702                       && rtx_cost (ret, SET, speed) <= COSTS_N_INSNS (1))
1703                     return ret;
1704                 }
1705             }
1706         }
1707
1708       if (require_cst)
1709         return NULL_RTX;
1710
1711       /* Try a wider mode if truncating the store mode to NEW_MODE
1712          requires a real instruction.  */
1713       if (GET_MODE_BITSIZE (new_mode) < GET_MODE_BITSIZE (store_mode)
1714           && !TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (new_mode),
1715                                      GET_MODE_BITSIZE (store_mode)))
1716         continue;
1717
1718       /* Also try a wider mode if the necessary punning is either not
1719          desirable or not possible.  */
1720       if (!CONSTANT_P (store_info->rhs)
1721           && !MODES_TIEABLE_P (new_mode, store_mode))
1722         continue;
1723
1724       new_reg = gen_reg_rtx (new_mode);
1725
1726       start_sequence ();
1727
1728       /* In theory we could also check for an ashr.  Ian Taylor knows
1729          of one dsp where the cost of these two was not the same.  But
1730          this really is a rare case anyway.  */
1731       target = expand_binop (new_mode, lshr_optab, new_reg,
1732                              GEN_INT (shift), new_reg, 1, OPTAB_DIRECT);
1733
1734       shift_seq = get_insns ();
1735       end_sequence ();
1736
1737       if (target != new_reg || shift_seq == NULL)
1738         continue;
1739
1740       cost = 0;
1741       for (insn = shift_seq; insn != NULL_RTX; insn = NEXT_INSN (insn))
1742         if (INSN_P (insn))
1743           cost += insn_rtx_cost (PATTERN (insn), speed);
1744
1745       /* The computation up to here is essentially independent
1746          of the arguments and could be precomputed.  It may
1747          not be worth doing so.  We could precompute if
1748          worthwhile or at least cache the results.  The result
1749          technically depends on both SHIFT and ACCESS_SIZE,
1750          but in practice the answer will depend only on ACCESS_SIZE.  */
1751
1752       if (cost > COSTS_N_INSNS (1))
1753         continue;
1754
1755       new_lhs = extract_low_bits (new_mode, store_mode,
1756                                   copy_rtx (store_info->rhs));
1757       if (new_lhs == NULL_RTX)
1758         continue;
1759
1760       /* We found an acceptable shift.  Generate a move to
1761          take the value from the store and put it into the
1762          shift pseudo, then shift it, then generate another
1763          move to put in into the target of the read.  */
1764       emit_move_insn (new_reg, new_lhs);
1765       emit_insn (shift_seq);
1766       read_reg = extract_low_bits (read_mode, new_mode, new_reg);
1767       break;
1768     }
1769
1770   return read_reg;
1771 }
1772
1773
1774 /* Call back for note_stores to find the hard regs set or clobbered by
1775    insn.  Data is a bitmap of the hardregs set so far.  */
1776
1777 static void
1778 look_for_hardregs (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
1779 {
1780   bitmap regs_set = (bitmap) data;
1781
1782   if (REG_P (x)
1783       && REGNO (x) < FIRST_PSEUDO_REGISTER)
1784     {
1785       int regno = REGNO (x);
1786       int n = hard_regno_nregs[regno][GET_MODE (x)];
1787       while (--n >= 0)
1788         bitmap_set_bit (regs_set, regno + n);
1789     }
1790 }
1791
1792 /* Helper function for replace_read and record_store.
1793    Attempt to return a value stored in STORE_INFO, from READ_BEGIN
1794    to one before READ_END bytes read in READ_MODE.  Return NULL
1795    if not successful.  If REQUIRE_CST is true, return always constant.  */
1796
1797 static rtx
1798 get_stored_val (store_info_t store_info, enum machine_mode read_mode,
1799                 HOST_WIDE_INT read_begin, HOST_WIDE_INT read_end,
1800                 basic_block bb, bool require_cst)
1801 {
1802   enum machine_mode store_mode = GET_MODE (store_info->mem);
1803   int shift;
1804   int access_size; /* In bytes.  */
1805   rtx read_reg;
1806
1807   /* To get here the read is within the boundaries of the write so
1808      shift will never be negative.  Start out with the shift being in
1809      bytes.  */
1810   if (store_mode == BLKmode)
1811     shift = 0;
1812   else if (BYTES_BIG_ENDIAN)
1813     shift = store_info->end - read_end;
1814   else
1815     shift = read_begin - store_info->begin;
1816
1817   access_size = shift + GET_MODE_SIZE (read_mode);
1818
1819   /* From now on it is bits.  */
1820   shift *= BITS_PER_UNIT;
1821
1822   if (shift)
1823     read_reg = find_shift_sequence (access_size, store_info, read_mode, shift,
1824                                     optimize_bb_for_speed_p (bb),
1825                                     require_cst);
1826   else if (store_mode == BLKmode)
1827     {
1828       /* The store is a memset (addr, const_val, const_size).  */
1829       gcc_assert (CONST_INT_P (store_info->rhs));
1830       store_mode = int_mode_for_mode (read_mode);
1831       if (store_mode == BLKmode)
1832         read_reg = NULL_RTX;
1833       else if (store_info->rhs == const0_rtx)
1834         read_reg = extract_low_bits (read_mode, store_mode, const0_rtx);
1835       else if (GET_MODE_BITSIZE (store_mode) > HOST_BITS_PER_WIDE_INT
1836                || BITS_PER_UNIT >= HOST_BITS_PER_WIDE_INT)
1837         read_reg = NULL_RTX;
1838       else
1839         {
1840           unsigned HOST_WIDE_INT c
1841             = INTVAL (store_info->rhs)
1842               & (((HOST_WIDE_INT) 1 << BITS_PER_UNIT) - 1);
1843           int shift = BITS_PER_UNIT;
1844           while (shift < HOST_BITS_PER_WIDE_INT)
1845             {
1846               c |= (c << shift);
1847               shift <<= 1;
1848             }
1849           read_reg = GEN_INT (trunc_int_for_mode (c, store_mode));
1850           read_reg = extract_low_bits (read_mode, store_mode, read_reg);
1851         }
1852     }
1853   else if (store_info->const_rhs
1854            && (require_cst
1855                || GET_MODE_CLASS (read_mode) != GET_MODE_CLASS (store_mode)))
1856     read_reg = extract_low_bits (read_mode, store_mode,
1857                                  copy_rtx (store_info->const_rhs));
1858   else
1859     read_reg = extract_low_bits (read_mode, store_mode,
1860                                  copy_rtx (store_info->rhs));
1861   if (require_cst && read_reg && !CONSTANT_P (read_reg))
1862     read_reg = NULL_RTX;
1863   return read_reg;
1864 }
1865
1866 /* Take a sequence of:
1867      A <- r1
1868      ...
1869      ... <- A
1870
1871    and change it into
1872    r2 <- r1
1873    A <- r1
1874    ...
1875    ... <- r2
1876
1877    or
1878
1879    r3 <- extract (r1)
1880    r3 <- r3 >> shift
1881    r2 <- extract (r3)
1882    ... <- r2
1883
1884    or
1885
1886    r2 <- extract (r1)
1887    ... <- r2
1888
1889    Depending on the alignment and the mode of the store and
1890    subsequent load.
1891
1892
1893    The STORE_INFO and STORE_INSN are for the store and READ_INFO
1894    and READ_INSN are for the read.  Return true if the replacement
1895    went ok.  */
1896
1897 static bool
1898 replace_read (store_info_t store_info, insn_info_t store_insn,
1899               read_info_t read_info, insn_info_t read_insn, rtx *loc,
1900               bitmap regs_live)
1901 {
1902   enum machine_mode store_mode = GET_MODE (store_info->mem);
1903   enum machine_mode read_mode = GET_MODE (read_info->mem);
1904   rtx insns, this_insn, read_reg;
1905   basic_block bb;
1906
1907   if (!dbg_cnt (dse))
1908     return false;
1909
1910   /* Create a sequence of instructions to set up the read register.
1911      This sequence goes immediately before the store and its result
1912      is read by the load.
1913
1914      We need to keep this in perspective.  We are replacing a read
1915      with a sequence of insns, but the read will almost certainly be
1916      in cache, so it is not going to be an expensive one.  Thus, we
1917      are not willing to do a multi insn shift or worse a subroutine
1918      call to get rid of the read.  */
1919   if (dump_file)
1920     fprintf (dump_file, "trying to replace %smode load in insn %d"
1921              " from %smode store in insn %d\n",
1922              GET_MODE_NAME (read_mode), INSN_UID (read_insn->insn),
1923              GET_MODE_NAME (store_mode), INSN_UID (store_insn->insn));
1924   start_sequence ();
1925   bb = BLOCK_FOR_INSN (read_insn->insn);
1926   read_reg = get_stored_val (store_info,
1927                              read_mode, read_info->begin, read_info->end,
1928                              bb, false);
1929   if (read_reg == NULL_RTX)
1930     {
1931       end_sequence ();
1932       if (dump_file)
1933         fprintf (dump_file, " -- could not extract bits of stored value\n");
1934       return false;
1935     }
1936   /* Force the value into a new register so that it won't be clobbered
1937      between the store and the load.  */
1938   read_reg = copy_to_mode_reg (read_mode, read_reg);
1939   insns = get_insns ();
1940   end_sequence ();
1941
1942   if (insns != NULL_RTX)
1943     {
1944       /* Now we have to scan the set of new instructions to see if the
1945          sequence contains and sets of hardregs that happened to be
1946          live at this point.  For instance, this can happen if one of
1947          the insns sets the CC and the CC happened to be live at that
1948          point.  This does occasionally happen, see PR 37922.  */
1949       bitmap regs_set = BITMAP_ALLOC (NULL);
1950
1951       for (this_insn = insns; this_insn != NULL_RTX; this_insn = NEXT_INSN (this_insn))
1952         note_stores (PATTERN (this_insn), look_for_hardregs, regs_set);
1953
1954       bitmap_and_into (regs_set, regs_live);
1955       if (!bitmap_empty_p (regs_set))
1956         {
1957           if (dump_file)
1958             {
1959               fprintf (dump_file,
1960                        "abandoning replacement because sequence clobbers live hardregs:");
1961               df_print_regset (dump_file, regs_set);
1962             }
1963
1964           BITMAP_FREE (regs_set);
1965           return false;
1966         }
1967       BITMAP_FREE (regs_set);
1968     }
1969
1970   if (validate_change (read_insn->insn, loc, read_reg, 0))
1971     {
1972       deferred_change_t deferred_change =
1973         (deferred_change_t) pool_alloc (deferred_change_pool);
1974
1975       /* Insert this right before the store insn where it will be safe
1976          from later insns that might change it before the read.  */
1977       emit_insn_before (insns, store_insn->insn);
1978
1979       /* And now for the kludge part: cselib croaks if you just
1980          return at this point.  There are two reasons for this:
1981
1982          1) Cselib has an idea of how many pseudos there are and
1983          that does not include the new ones we just added.
1984
1985          2) Cselib does not know about the move insn we added
1986          above the store_info, and there is no way to tell it
1987          about it, because it has "moved on".
1988
1989          Problem (1) is fixable with a certain amount of engineering.
1990          Problem (2) is requires starting the bb from scratch.  This
1991          could be expensive.
1992
1993          So we are just going to have to lie.  The move/extraction
1994          insns are not really an issue, cselib did not see them.  But
1995          the use of the new pseudo read_insn is a real problem because
1996          cselib has not scanned this insn.  The way that we solve this
1997          problem is that we are just going to put the mem back for now
1998          and when we are finished with the block, we undo this.  We
1999          keep a table of mems to get rid of.  At the end of the basic
2000          block we can put them back.  */
2001
2002       *loc = read_info->mem;
2003       deferred_change->next = deferred_change_list;
2004       deferred_change_list = deferred_change;
2005       deferred_change->loc = loc;
2006       deferred_change->reg = read_reg;
2007
2008       /* Get rid of the read_info, from the point of view of the
2009          rest of dse, play like this read never happened.  */
2010       read_insn->read_rec = read_info->next;
2011       pool_free (read_info_pool, read_info);
2012       if (dump_file)
2013         {
2014           fprintf (dump_file, " -- replaced the loaded MEM with ");
2015           print_simple_rtl (dump_file, read_reg);
2016           fprintf (dump_file, "\n");
2017         }
2018       return true;
2019     }
2020   else
2021     {
2022       if (dump_file)
2023         {
2024           fprintf (dump_file, " -- replacing the loaded MEM with ");
2025           print_simple_rtl (dump_file, read_reg);
2026           fprintf (dump_file, " led to an invalid instruction\n");
2027         }
2028       return false;
2029     }
2030 }
2031
2032 /* A for_each_rtx callback in which DATA is the bb_info.  Check to see
2033    if LOC is a mem and if it is look at the address and kill any
2034    appropriate stores that may be active.  */
2035
2036 static int
2037 check_mem_read_rtx (rtx *loc, void *data)
2038 {
2039   rtx mem = *loc, mem_addr;
2040   bb_info_t bb_info;
2041   insn_info_t insn_info;
2042   HOST_WIDE_INT offset = 0;
2043   HOST_WIDE_INT width = 0;
2044   alias_set_type spill_alias_set = 0;
2045   cselib_val *base = NULL;
2046   int group_id;
2047   read_info_t read_info;
2048
2049   if (!mem || !MEM_P (mem))
2050     return 0;
2051
2052   bb_info = (bb_info_t) data;
2053   insn_info = bb_info->last_insn;
2054
2055   if ((MEM_ALIAS_SET (mem) == ALIAS_SET_MEMORY_BARRIER)
2056       || (MEM_VOLATILE_P (mem)))
2057     {
2058       if (dump_file)
2059         fprintf (dump_file, " adding wild read, volatile or barrier.\n");
2060       add_wild_read (bb_info);
2061       insn_info->cannot_delete = true;
2062       return 0;
2063     }
2064
2065   /* If it is reading readonly mem, then there can be no conflict with
2066      another write. */
2067   if (MEM_READONLY_P (mem))
2068     return 0;
2069
2070   if (!canon_address (mem, &spill_alias_set, &group_id, &offset, &base))
2071     {
2072       if (dump_file)
2073         fprintf (dump_file, " adding wild read, canon_address failure.\n");
2074       add_wild_read (bb_info);
2075       return 0;
2076     }
2077
2078   if (GET_MODE (mem) == BLKmode)
2079     width = -1;
2080   else
2081     width = GET_MODE_SIZE (GET_MODE (mem));
2082
2083   read_info = (read_info_t) pool_alloc (read_info_pool);
2084   read_info->group_id = group_id;
2085   read_info->mem = mem;
2086   read_info->alias_set = spill_alias_set;
2087   read_info->begin = offset;
2088   read_info->end = offset + width;
2089   read_info->next = insn_info->read_rec;
2090   insn_info->read_rec = read_info;
2091   /* For alias_set != 0 canon_true_dependence should be never called.  */
2092   if (spill_alias_set)
2093     mem_addr = NULL_RTX;
2094   else
2095     {
2096       if (group_id < 0)
2097         mem_addr = base->val_rtx;
2098       else
2099         {
2100           group_info_t group
2101             = VEC_index (group_info_t, rtx_group_vec, group_id);
2102           mem_addr = group->canon_base_addr;
2103         }
2104       if (offset)
2105         mem_addr = plus_constant (mem_addr, offset);
2106     }
2107
2108   /* We ignore the clobbers in store_info.  The is mildly aggressive,
2109      but there really should not be a clobber followed by a read.  */
2110
2111   if (spill_alias_set)
2112     {
2113       insn_info_t i_ptr = active_local_stores;
2114       insn_info_t last = NULL;
2115
2116       if (dump_file)
2117         fprintf (dump_file, " processing spill load %d\n",
2118                  (int) spill_alias_set);
2119
2120       while (i_ptr)
2121         {
2122           store_info_t store_info = i_ptr->store_rec;
2123
2124           /* Skip the clobbers.  */
2125           while (!store_info->is_set)
2126             store_info = store_info->next;
2127
2128           if (store_info->alias_set == spill_alias_set)
2129             {
2130               if (dump_file)
2131                 dump_insn_info ("removing from active", i_ptr);
2132
2133               if (last)
2134                 last->next_local_store = i_ptr->next_local_store;
2135               else
2136                 active_local_stores = i_ptr->next_local_store;
2137             }
2138           else
2139             last = i_ptr;
2140           i_ptr = i_ptr->next_local_store;
2141         }
2142     }
2143   else if (group_id >= 0)
2144     {
2145       /* This is the restricted case where the base is a constant or
2146          the frame pointer and offset is a constant.  */
2147       insn_info_t i_ptr = active_local_stores;
2148       insn_info_t last = NULL;
2149
2150       if (dump_file)
2151         {
2152           if (width == -1)
2153             fprintf (dump_file, " processing const load gid=%d[BLK]\n",
2154                      group_id);
2155           else
2156             fprintf (dump_file, " processing const load gid=%d[%d..%d)\n",
2157                      group_id, (int)offset, (int)(offset+width));
2158         }
2159
2160       while (i_ptr)
2161         {
2162           bool remove = false;
2163           store_info_t store_info = i_ptr->store_rec;
2164
2165           /* Skip the clobbers.  */
2166           while (!store_info->is_set)
2167             store_info = store_info->next;
2168
2169           /* There are three cases here.  */
2170           if (store_info->group_id < 0)
2171             /* We have a cselib store followed by a read from a
2172                const base. */
2173             remove
2174               = canon_true_dependence (store_info->mem,
2175                                        GET_MODE (store_info->mem),
2176                                        store_info->mem_addr,
2177                                        mem, mem_addr, rtx_varies_p);
2178
2179           else if (group_id == store_info->group_id)
2180             {
2181               /* This is a block mode load.  We may get lucky and
2182                  canon_true_dependence may save the day.  */
2183               if (width == -1)
2184                 remove
2185                   = canon_true_dependence (store_info->mem,
2186                                            GET_MODE (store_info->mem),
2187                                            store_info->mem_addr,
2188                                            mem, mem_addr, rtx_varies_p);
2189
2190               /* If this read is just reading back something that we just
2191                  stored, rewrite the read.  */
2192               else
2193                 {
2194                   if (store_info->rhs
2195                       && offset >= store_info->begin
2196                       && offset + width <= store_info->end
2197                       && all_positions_needed_p (store_info,
2198                                                  offset - store_info->begin,
2199                                                  width)
2200                       && replace_read (store_info, i_ptr, read_info,
2201                                        insn_info, loc, bb_info->regs_live))
2202                     return 0;
2203
2204                   /* The bases are the same, just see if the offsets
2205                      overlap.  */
2206                   if ((offset < store_info->end)
2207                       && (offset + width > store_info->begin))
2208                     remove = true;
2209                 }
2210             }
2211
2212           /* else
2213              The else case that is missing here is that the
2214              bases are constant but different.  There is nothing
2215              to do here because there is no overlap.  */
2216
2217           if (remove)
2218             {
2219               if (dump_file)
2220                 dump_insn_info ("removing from active", i_ptr);
2221
2222               if (last)
2223                 last->next_local_store = i_ptr->next_local_store;
2224               else
2225                 active_local_stores = i_ptr->next_local_store;
2226             }
2227           else
2228             last = i_ptr;
2229           i_ptr = i_ptr->next_local_store;
2230         }
2231     }
2232   else
2233     {
2234       insn_info_t i_ptr = active_local_stores;
2235       insn_info_t last = NULL;
2236       if (dump_file)
2237         {
2238           fprintf (dump_file, " processing cselib load mem:");
2239           print_inline_rtx (dump_file, mem, 0);
2240           fprintf (dump_file, "\n");
2241         }
2242
2243       while (i_ptr)
2244         {
2245           bool remove = false;
2246           store_info_t store_info = i_ptr->store_rec;
2247
2248           if (dump_file)
2249             fprintf (dump_file, " processing cselib load against insn %d\n",
2250                      INSN_UID (i_ptr->insn));
2251
2252           /* Skip the clobbers.  */
2253           while (!store_info->is_set)
2254             store_info = store_info->next;
2255
2256           /* If this read is just reading back something that we just
2257              stored, rewrite the read.  */
2258           if (store_info->rhs
2259               && store_info->group_id == -1
2260               && store_info->cse_base == base
2261               && width != -1
2262               && offset >= store_info->begin
2263               && offset + width <= store_info->end
2264               && all_positions_needed_p (store_info,
2265                                          offset - store_info->begin, width)
2266               && replace_read (store_info, i_ptr,  read_info, insn_info, loc,
2267                                bb_info->regs_live))
2268             return 0;
2269
2270           if (!store_info->alias_set)
2271             remove = canon_true_dependence (store_info->mem,
2272                                             GET_MODE (store_info->mem),
2273                                             store_info->mem_addr,
2274                                             mem, mem_addr, rtx_varies_p);
2275
2276           if (remove)
2277             {
2278               if (dump_file)
2279                 dump_insn_info ("removing from active", i_ptr);
2280
2281               if (last)
2282                 last->next_local_store = i_ptr->next_local_store;
2283               else
2284                 active_local_stores = i_ptr->next_local_store;
2285             }
2286           else
2287             last = i_ptr;
2288           i_ptr = i_ptr->next_local_store;
2289         }
2290     }
2291   return 0;
2292 }
2293
2294 /* A for_each_rtx callback in which DATA points the INSN_INFO for
2295    as check_mem_read_rtx.  Nullify the pointer if i_m_r_m_r returns
2296    true for any part of *LOC.  */
2297
2298 static void
2299 check_mem_read_use (rtx *loc, void *data)
2300 {
2301   for_each_rtx (loc, check_mem_read_rtx, data);
2302 }
2303
2304
2305 /* Get arguments passed to CALL_INSN.  Return TRUE if successful.
2306    So far it only handles arguments passed in registers.  */
2307
2308 static bool
2309 get_call_args (rtx call_insn, tree fn, rtx *args, int nargs)
2310 {
2311   CUMULATIVE_ARGS args_so_far;
2312   tree arg;
2313   int idx;
2314
2315   INIT_CUMULATIVE_ARGS (args_so_far, TREE_TYPE (fn), NULL_RTX, 0, 3);
2316
2317   arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
2318   for (idx = 0;
2319        arg != void_list_node && idx < nargs;
2320        arg = TREE_CHAIN (arg), idx++)
2321     {
2322       enum machine_mode mode = TYPE_MODE (TREE_VALUE (arg));
2323       rtx reg, link, tmp;
2324       reg = targetm.calls.function_arg (&args_so_far, mode, NULL_TREE, true);
2325       if (!reg || !REG_P (reg) || GET_MODE (reg) != mode
2326           || GET_MODE_CLASS (mode) != MODE_INT)
2327         return false;
2328
2329       for (link = CALL_INSN_FUNCTION_USAGE (call_insn);
2330            link;
2331            link = XEXP (link, 1))
2332         if (GET_CODE (XEXP (link, 0)) == USE)
2333           {
2334             args[idx] = XEXP (XEXP (link, 0), 0);
2335             if (REG_P (args[idx])
2336                 && REGNO (args[idx]) == REGNO (reg)
2337                 && (GET_MODE (args[idx]) == mode
2338                     || (GET_MODE_CLASS (GET_MODE (args[idx])) == MODE_INT
2339                         && (GET_MODE_SIZE (GET_MODE (args[idx]))
2340                             <= UNITS_PER_WORD)
2341                         && (GET_MODE_SIZE (GET_MODE (args[idx]))
2342                             > GET_MODE_SIZE (mode)))))
2343               break;
2344           }
2345       if (!link)
2346         return false;
2347
2348       tmp = cselib_expand_value_rtx (args[idx], scratch, 5);
2349       if (GET_MODE (args[idx]) != mode)
2350         {
2351           if (!tmp || !CONST_INT_P (tmp))
2352             return false;
2353           tmp = GEN_INT (trunc_int_for_mode (INTVAL (tmp), mode));
2354         }
2355       if (tmp)
2356         args[idx] = tmp;
2357
2358       targetm.calls.function_arg_advance (&args_so_far, mode, NULL_TREE, true);
2359     }
2360   if (arg != void_list_node || idx != nargs)
2361     return false;
2362   return true;
2363 }
2364
2365
2366 /* Apply record_store to all candidate stores in INSN.  Mark INSN
2367    if some part of it is not a candidate store and assigns to a
2368    non-register target.  */
2369
2370 static void
2371 scan_insn (bb_info_t bb_info, rtx insn)
2372 {
2373   rtx body;
2374   insn_info_t insn_info = (insn_info_t) pool_alloc (insn_info_pool);
2375   int mems_found = 0;
2376   memset (insn_info, 0, sizeof (struct insn_info));
2377
2378   if (dump_file)
2379     fprintf (dump_file, "\n**scanning insn=%d\n",
2380              INSN_UID (insn));
2381
2382   insn_info->prev_insn = bb_info->last_insn;
2383   insn_info->insn = insn;
2384   bb_info->last_insn = insn_info;
2385
2386   if (DEBUG_INSN_P (insn))
2387     {
2388       insn_info->cannot_delete = true;
2389       return;
2390     }
2391
2392   /* Cselib clears the table for this case, so we have to essentially
2393      do the same.  */
2394   if (NONJUMP_INSN_P (insn)
2395       && GET_CODE (PATTERN (insn)) == ASM_OPERANDS
2396       && MEM_VOLATILE_P (PATTERN (insn)))
2397     {
2398       add_wild_read (bb_info);
2399       insn_info->cannot_delete = true;
2400       return;
2401     }
2402
2403   /* Look at all of the uses in the insn.  */
2404   note_uses (&PATTERN (insn), check_mem_read_use, bb_info);
2405
2406   if (CALL_P (insn))
2407     {
2408       bool const_call;
2409       tree memset_call = NULL_TREE;
2410
2411       insn_info->cannot_delete = true;
2412
2413       /* Const functions cannot do anything bad i.e. read memory,
2414          however, they can read their parameters which may have
2415          been pushed onto the stack.
2416          memset and bzero don't read memory either.  */
2417       const_call = RTL_CONST_CALL_P (insn);
2418       if (!const_call)
2419         {
2420           rtx call = PATTERN (insn);
2421           if (GET_CODE (call) == PARALLEL)
2422             call = XVECEXP (call, 0, 0);
2423           if (GET_CODE (call) == SET)
2424             call = SET_SRC (call);
2425           if (GET_CODE (call) == CALL
2426               && MEM_P (XEXP (call, 0))
2427               && GET_CODE (XEXP (XEXP (call, 0), 0)) == SYMBOL_REF)
2428             {
2429               rtx symbol = XEXP (XEXP (call, 0), 0);
2430               if (SYMBOL_REF_DECL (symbol)
2431                   && TREE_CODE (SYMBOL_REF_DECL (symbol)) == FUNCTION_DECL)
2432                 {
2433                   if ((DECL_BUILT_IN_CLASS (SYMBOL_REF_DECL (symbol))
2434                        == BUILT_IN_NORMAL
2435                        && (DECL_FUNCTION_CODE (SYMBOL_REF_DECL (symbol))
2436                            == BUILT_IN_MEMSET))
2437                       || SYMBOL_REF_DECL (symbol) == block_clear_fn)
2438                     memset_call = SYMBOL_REF_DECL (symbol);
2439                 }
2440             }
2441         }
2442       if (const_call || memset_call)
2443         {
2444           insn_info_t i_ptr = active_local_stores;
2445           insn_info_t last = NULL;
2446
2447           if (dump_file)
2448             fprintf (dump_file, "%s call %d\n",
2449                      const_call ? "const" : "memset", INSN_UID (insn));
2450
2451           /* See the head comment of the frame_read field.  */
2452           if (reload_completed)
2453             insn_info->frame_read = true;
2454
2455           /* Loop over the active stores and remove those which are
2456              killed by the const function call.  */
2457           while (i_ptr)
2458             {
2459               bool remove_store = false;
2460
2461               /* The stack pointer based stores are always killed.  */
2462               if (i_ptr->stack_pointer_based)
2463                 remove_store = true;
2464
2465               /* If the frame is read, the frame related stores are killed.  */
2466               else if (insn_info->frame_read)
2467                 {
2468                   store_info_t store_info = i_ptr->store_rec;
2469
2470                   /* Skip the clobbers.  */
2471                   while (!store_info->is_set)
2472                     store_info = store_info->next;
2473
2474                   if (store_info->group_id >= 0
2475                       && VEC_index (group_info_t, rtx_group_vec,
2476                                     store_info->group_id)->frame_related)
2477                     remove_store = true;
2478                 }
2479
2480               if (remove_store)
2481                 {
2482                   if (dump_file)
2483                     dump_insn_info ("removing from active", i_ptr);
2484
2485                   if (last)
2486                     last->next_local_store = i_ptr->next_local_store;
2487                   else
2488                     active_local_stores = i_ptr->next_local_store;
2489                 }
2490               else
2491                 last = i_ptr;
2492
2493               i_ptr = i_ptr->next_local_store;
2494             }
2495
2496           if (memset_call)
2497             {
2498               rtx args[3];
2499               if (get_call_args (insn, memset_call, args, 3)
2500                   && CONST_INT_P (args[1])
2501                   && CONST_INT_P (args[2])
2502                   && INTVAL (args[2]) > 0)
2503                 {
2504                   rtx mem = gen_rtx_MEM (BLKmode, args[0]);
2505                   set_mem_size (mem, args[2]);
2506                   body = gen_rtx_SET (VOIDmode, mem, args[1]);
2507                   mems_found += record_store (body, bb_info);
2508                   if (dump_file)
2509                     fprintf (dump_file, "handling memset as BLKmode store\n");
2510                   if (mems_found == 1)
2511                     {
2512                       insn_info->next_local_store = active_local_stores;
2513                       active_local_stores = insn_info;
2514                     }
2515                 }
2516             }
2517         }
2518
2519       else
2520         /* Every other call, including pure functions, may read memory.  */
2521         add_wild_read (bb_info);
2522
2523       return;
2524     }
2525
2526   /* Assuming that there are sets in these insns, we cannot delete
2527      them.  */
2528   if ((GET_CODE (PATTERN (insn)) == CLOBBER)
2529       || volatile_refs_p (PATTERN (insn))
2530       || insn_could_throw_p (insn)
2531       || (RTX_FRAME_RELATED_P (insn))
2532       || find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX))
2533     insn_info->cannot_delete = true;
2534
2535   body = PATTERN (insn);
2536   if (GET_CODE (body) == PARALLEL)
2537     {
2538       int i;
2539       for (i = 0; i < XVECLEN (body, 0); i++)
2540         mems_found += record_store (XVECEXP (body, 0, i), bb_info);
2541     }
2542   else
2543     mems_found += record_store (body, bb_info);
2544
2545   if (dump_file)
2546     fprintf (dump_file, "mems_found = %d, cannot_delete = %s\n",
2547              mems_found, insn_info->cannot_delete ? "true" : "false");
2548
2549   /* If we found some sets of mems, add it into the active_local_stores so
2550      that it can be locally deleted if found dead or used for
2551      replace_read and redundant constant store elimination.  Otherwise mark
2552      it as cannot delete.  This simplifies the processing later.  */
2553   if (mems_found == 1)
2554     {
2555       insn_info->next_local_store = active_local_stores;
2556       active_local_stores = insn_info;
2557     }
2558   else
2559     insn_info->cannot_delete = true;
2560 }
2561
2562
2563 /* Remove BASE from the set of active_local_stores.  This is a
2564    callback from cselib that is used to get rid of the stores in
2565    active_local_stores.  */
2566
2567 static void
2568 remove_useless_values (cselib_val *base)
2569 {
2570   insn_info_t insn_info = active_local_stores;
2571   insn_info_t last = NULL;
2572
2573   while (insn_info)
2574     {
2575       store_info_t store_info = insn_info->store_rec;
2576       bool del = false;
2577
2578       /* If ANY of the store_infos match the cselib group that is
2579          being deleted, then the insn can not be deleted.  */
2580       while (store_info)
2581         {
2582           if ((store_info->group_id == -1)
2583               && (store_info->cse_base == base))
2584             {
2585               del = true;
2586               break;
2587             }
2588           store_info = store_info->next;
2589         }
2590
2591       if (del)
2592         {
2593           if (last)
2594             last->next_local_store = insn_info->next_local_store;
2595           else
2596             active_local_stores = insn_info->next_local_store;
2597           free_store_info (insn_info);
2598         }
2599       else
2600         last = insn_info;
2601
2602       insn_info = insn_info->next_local_store;
2603     }
2604 }
2605
2606
2607 /* Do all of step 1.  */
2608
2609 static void
2610 dse_step1 (void)
2611 {
2612   basic_block bb;
2613   bitmap regs_live = BITMAP_ALLOC (NULL);
2614
2615   cselib_init (0);
2616   all_blocks = BITMAP_ALLOC (NULL);
2617   bitmap_set_bit (all_blocks, ENTRY_BLOCK);
2618   bitmap_set_bit (all_blocks, EXIT_BLOCK);
2619
2620   FOR_ALL_BB (bb)
2621     {
2622       insn_info_t ptr;
2623       bb_info_t bb_info = (bb_info_t) pool_alloc (bb_info_pool);
2624
2625       memset (bb_info, 0, sizeof (struct bb_info));
2626       bitmap_set_bit (all_blocks, bb->index);
2627       bb_info->regs_live = regs_live;
2628
2629       bitmap_copy (regs_live, DF_LR_IN (bb));
2630       df_simulate_initialize_forwards (bb, regs_live);
2631
2632       bb_table[bb->index] = bb_info;
2633       cselib_discard_hook = remove_useless_values;
2634
2635       if (bb->index >= NUM_FIXED_BLOCKS)
2636         {
2637           rtx insn;
2638
2639           cse_store_info_pool
2640             = create_alloc_pool ("cse_store_info_pool",
2641                                  sizeof (struct store_info), 100);
2642           active_local_stores = NULL;
2643           cselib_clear_table ();
2644
2645           /* Scan the insns.  */
2646           FOR_BB_INSNS (bb, insn)
2647             {
2648               if (INSN_P (insn))
2649                 scan_insn (bb_info, insn);
2650               cselib_process_insn (insn);
2651               if (INSN_P (insn))
2652                 df_simulate_one_insn_forwards (bb, insn, regs_live);
2653             }
2654
2655           /* This is something of a hack, because the global algorithm
2656              is supposed to take care of the case where stores go dead
2657              at the end of the function.  However, the global
2658              algorithm must take a more conservative view of block
2659              mode reads than the local alg does.  So to get the case
2660              where you have a store to the frame followed by a non
2661              overlapping block more read, we look at the active local
2662              stores at the end of the function and delete all of the
2663              frame and spill based ones.  */
2664           if (stores_off_frame_dead_at_return
2665               && (EDGE_COUNT (bb->succs) == 0
2666                   || (single_succ_p (bb)
2667                       && single_succ (bb) == EXIT_BLOCK_PTR
2668                       && ! crtl->calls_eh_return)))
2669             {
2670               insn_info_t i_ptr = active_local_stores;
2671               while (i_ptr)
2672                 {
2673                   store_info_t store_info = i_ptr->store_rec;
2674
2675                   /* Skip the clobbers.  */
2676                   while (!store_info->is_set)
2677                     store_info = store_info->next;
2678                   if (store_info->alias_set && !i_ptr->cannot_delete)
2679                     delete_dead_store_insn (i_ptr);
2680                   else
2681                     if (store_info->group_id >= 0)
2682                       {
2683                         group_info_t group
2684                           = VEC_index (group_info_t, rtx_group_vec, store_info->group_id);
2685                         if (group->frame_related && !i_ptr->cannot_delete)
2686                           delete_dead_store_insn (i_ptr);
2687                       }
2688
2689                   i_ptr = i_ptr->next_local_store;
2690                 }
2691             }
2692
2693           /* Get rid of the loads that were discovered in
2694              replace_read.  Cselib is finished with this block.  */
2695           while (deferred_change_list)
2696             {
2697               deferred_change_t next = deferred_change_list->next;
2698
2699               /* There is no reason to validate this change.  That was
2700                  done earlier.  */
2701               *deferred_change_list->loc = deferred_change_list->reg;
2702               pool_free (deferred_change_pool, deferred_change_list);
2703               deferred_change_list = next;
2704             }
2705
2706           /* Get rid of all of the cselib based store_infos in this
2707              block and mark the containing insns as not being
2708              deletable.  */
2709           ptr = bb_info->last_insn;
2710           while (ptr)
2711             {
2712               if (ptr->contains_cselib_groups)
2713                 {
2714                   store_info_t s_info = ptr->store_rec;
2715                   while (s_info && !s_info->is_set)
2716                     s_info = s_info->next;
2717                   if (s_info
2718                       && s_info->redundant_reason
2719                       && s_info->redundant_reason->insn
2720                       && !ptr->cannot_delete)
2721                     {
2722                       if (dump_file)
2723                         fprintf (dump_file, "Locally deleting insn %d "
2724                                             "because insn %d stores the "
2725                                             "same value and couldn't be "
2726                                             "eliminated\n",
2727                                  INSN_UID (ptr->insn),
2728                                  INSN_UID (s_info->redundant_reason->insn));
2729                       delete_dead_store_insn (ptr);
2730                     }
2731                   if (s_info)
2732                     s_info->redundant_reason = NULL;
2733                   free_store_info (ptr);
2734                 }
2735               else
2736                 {
2737                   store_info_t s_info;
2738
2739                   /* Free at least positions_needed bitmaps.  */
2740                   for (s_info = ptr->store_rec; s_info; s_info = s_info->next)
2741                     if (s_info->is_large)
2742                       {
2743                         BITMAP_FREE (s_info->positions_needed.large.bmap);
2744                         s_info->is_large = false;
2745                       }
2746                 }
2747               ptr = ptr->prev_insn;
2748             }
2749
2750           free_alloc_pool (cse_store_info_pool);
2751         }
2752       bb_info->regs_live = NULL;
2753     }
2754
2755   BITMAP_FREE (regs_live);
2756   cselib_finish ();
2757   htab_empty (rtx_group_table);
2758 }
2759
2760 \f
2761 /*----------------------------------------------------------------------------
2762    Second step.
2763
2764    Assign each byte position in the stores that we are going to
2765    analyze globally to a position in the bitmaps.  Returns true if
2766    there are any bit positions assigned.
2767 ----------------------------------------------------------------------------*/
2768
2769 static void
2770 dse_step2_init (void)
2771 {
2772   unsigned int i;
2773   group_info_t group;
2774
2775   FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, i, group)
2776     {
2777       /* For all non stack related bases, we only consider a store to
2778          be deletable if there are two or more stores for that
2779          position.  This is because it takes one store to make the
2780          other store redundant.  However, for the stores that are
2781          stack related, we consider them if there is only one store
2782          for the position.  We do this because the stack related
2783          stores can be deleted if their is no read between them and
2784          the end of the function.
2785
2786          To make this work in the current framework, we take the stack
2787          related bases add all of the bits from store1 into store2.
2788          This has the effect of making the eligible even if there is
2789          only one store.   */
2790
2791       if (stores_off_frame_dead_at_return && group->frame_related)
2792         {
2793           bitmap_ior_into (group->store2_n, group->store1_n);
2794           bitmap_ior_into (group->store2_p, group->store1_p);
2795           if (dump_file)
2796             fprintf (dump_file, "group %d is frame related ", i);
2797         }
2798
2799       group->offset_map_size_n++;
2800       group->offset_map_n = XNEWVEC (int, group->offset_map_size_n);
2801       group->offset_map_size_p++;
2802       group->offset_map_p = XNEWVEC (int, group->offset_map_size_p);
2803       group->process_globally = false;
2804       if (dump_file)
2805         {
2806           fprintf (dump_file, "group %d(%d+%d): ", i,
2807                    (int)bitmap_count_bits (group->store2_n),
2808                    (int)bitmap_count_bits (group->store2_p));
2809           bitmap_print (dump_file, group->store2_n, "n ", " ");
2810           bitmap_print (dump_file, group->store2_p, "p ", "\n");
2811         }
2812     }
2813 }
2814
2815
2816 /* Init the offset tables for the normal case.  */
2817
2818 static bool
2819 dse_step2_nospill (void)
2820 {
2821   unsigned int i;
2822   group_info_t group;
2823   /* Position 0 is unused because 0 is used in the maps to mean
2824      unused.  */
2825   current_position = 1;
2826
2827   FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, i, group)
2828     {
2829       bitmap_iterator bi;
2830       unsigned int j;
2831
2832       if (group == clear_alias_group)
2833         continue;
2834
2835       memset (group->offset_map_n, 0, sizeof(int) * group->offset_map_size_n);
2836       memset (group->offset_map_p, 0, sizeof(int) * group->offset_map_size_p);
2837       bitmap_clear (group->group_kill);
2838
2839       EXECUTE_IF_SET_IN_BITMAP (group->store2_n, 0, j, bi)
2840         {
2841           bitmap_set_bit (group->group_kill, current_position);
2842           group->offset_map_n[j] = current_position++;
2843           group->process_globally = true;
2844         }
2845       EXECUTE_IF_SET_IN_BITMAP (group->store2_p, 0, j, bi)
2846         {
2847           bitmap_set_bit (group->group_kill, current_position);
2848           group->offset_map_p[j] = current_position++;
2849           group->process_globally = true;
2850         }
2851     }
2852   return current_position != 1;
2853 }
2854
2855
2856 /* Init the offset tables for the spill case.  */
2857
2858 static bool
2859 dse_step2_spill (void)
2860 {
2861   unsigned int j;
2862   group_info_t group = clear_alias_group;
2863   bitmap_iterator bi;
2864
2865   /* Position 0 is unused because 0 is used in the maps to mean
2866      unused.  */
2867   current_position = 1;
2868
2869   if (dump_file)
2870     {
2871       bitmap_print (dump_file, clear_alias_sets,
2872                     "clear alias sets              ", "\n");
2873       bitmap_print (dump_file, disqualified_clear_alias_sets,
2874                     "disqualified clear alias sets ", "\n");
2875     }
2876
2877   memset (group->offset_map_n, 0, sizeof(int) * group->offset_map_size_n);
2878   memset (group->offset_map_p, 0, sizeof(int) * group->offset_map_size_p);
2879   bitmap_clear (group->group_kill);
2880
2881   /* Remove the disqualified positions from the store2_p set.  */
2882   bitmap_and_compl_into (group->store2_p, disqualified_clear_alias_sets);
2883
2884   /* We do not need to process the store2_n set because
2885      alias_sets are always positive.  */
2886   EXECUTE_IF_SET_IN_BITMAP (group->store2_p, 0, j, bi)
2887     {
2888       bitmap_set_bit (group->group_kill, current_position);
2889       group->offset_map_p[j] = current_position++;
2890       group->process_globally = true;
2891     }
2892
2893   return current_position != 1;
2894 }
2895
2896
2897 \f
2898 /*----------------------------------------------------------------------------
2899   Third step.
2900
2901   Build the bit vectors for the transfer functions.
2902 ----------------------------------------------------------------------------*/
2903
2904
2905 /* Note that this is NOT a general purpose function.  Any mem that has
2906    an alias set registered here expected to be COMPLETELY unaliased:
2907    i.e it's addresses are not and need not be examined.
2908
2909    It is known that all references to this address will have this
2910    alias set and there are NO other references to this address in the
2911    function.
2912
2913    Currently the only place that is known to be clean enough to use
2914    this interface is the code that assigns the spill locations.
2915
2916    All of the mems that have alias_sets registered are subjected to a
2917    very powerful form of dse where function calls, volatile reads and
2918    writes, and reads from random location are not taken into account.
2919
2920    It is also assumed that these locations go dead when the function
2921    returns.  This assumption could be relaxed if there were found to
2922    be places that this assumption was not correct.
2923
2924    The MODE is passed in and saved.  The mode of each load or store to
2925    a mem with ALIAS_SET is checked against MEM.  If the size of that
2926    load or store is different from MODE, processing is halted on this
2927    alias set.  For the vast majority of aliases sets, all of the loads
2928    and stores will use the same mode.  But vectors are treated
2929    differently: the alias set is established for the entire vector,
2930    but reload will insert loads and stores for individual elements and
2931    we do not necessarily have the information to track those separate
2932    elements.  So when we see a mode mismatch, we just bail.  */
2933
2934
2935 void
2936 dse_record_singleton_alias_set (alias_set_type alias_set,
2937                                 enum machine_mode mode)
2938 {
2939   struct clear_alias_mode_holder tmp_holder;
2940   struct clear_alias_mode_holder *entry;
2941   void **slot;
2942
2943   /* If we are not going to run dse, we need to return now or there
2944      will be problems with allocating the bitmaps.  */
2945   if ((!gate_dse()) || !alias_set)
2946     return;
2947
2948   if (!clear_alias_sets)
2949     {
2950       clear_alias_sets = BITMAP_ALLOC (NULL);
2951       disqualified_clear_alias_sets = BITMAP_ALLOC (NULL);
2952       clear_alias_mode_table = htab_create (11, clear_alias_mode_hash,
2953                                             clear_alias_mode_eq, NULL);
2954       clear_alias_mode_pool = create_alloc_pool ("clear_alias_mode_pool",
2955                                                  sizeof (struct clear_alias_mode_holder), 100);
2956     }
2957
2958   bitmap_set_bit (clear_alias_sets, alias_set);
2959
2960   tmp_holder.alias_set = alias_set;
2961
2962   slot = htab_find_slot (clear_alias_mode_table, &tmp_holder, INSERT);
2963   gcc_assert (*slot == NULL);
2964
2965   *slot = entry =
2966     (struct clear_alias_mode_holder *) pool_alloc (clear_alias_mode_pool);
2967   entry->alias_set = alias_set;
2968   entry->mode = mode;
2969 }
2970
2971
2972 /* Remove ALIAS_SET from the sets of stack slots being considered.  */
2973
2974 void
2975 dse_invalidate_singleton_alias_set (alias_set_type alias_set)
2976 {
2977   if ((!gate_dse()) || !alias_set)
2978     return;
2979
2980   bitmap_clear_bit (clear_alias_sets, alias_set);
2981 }
2982
2983
2984 /* Look up the bitmap index for OFFSET in GROUP_INFO.  If it is not
2985    there, return 0.  */
2986
2987 static int
2988 get_bitmap_index (group_info_t group_info, HOST_WIDE_INT offset)
2989 {
2990   if (offset < 0)
2991     {
2992       HOST_WIDE_INT offset_p = -offset;
2993       if (offset_p >= group_info->offset_map_size_n)
2994         return 0;
2995       return group_info->offset_map_n[offset_p];
2996     }
2997   else
2998     {
2999       if (offset >= group_info->offset_map_size_p)
3000         return 0;
3001       return group_info->offset_map_p[offset];
3002     }
3003 }
3004
3005
3006 /* Process the STORE_INFOs into the bitmaps into GEN and KILL.  KILL
3007    may be NULL. */
3008
3009 static void
3010 scan_stores_nospill (store_info_t store_info, bitmap gen, bitmap kill)
3011 {
3012   while (store_info)
3013     {
3014       HOST_WIDE_INT i;
3015       group_info_t group_info
3016         = VEC_index (group_info_t, rtx_group_vec, store_info->group_id);
3017       if (group_info->process_globally)
3018         for (i = store_info->begin; i < store_info->end; i++)
3019           {
3020             int index = get_bitmap_index (group_info, i);
3021             if (index != 0)
3022               {
3023                 bitmap_set_bit (gen, index);
3024                 if (kill)
3025                   bitmap_clear_bit (kill, index);
3026               }
3027           }
3028       store_info = store_info->next;
3029     }
3030 }
3031
3032
3033 /* Process the STORE_INFOs into the bitmaps into GEN and KILL.  KILL
3034    may be NULL. */
3035
3036 static void
3037 scan_stores_spill (store_info_t store_info, bitmap gen, bitmap kill)
3038 {
3039   while (store_info)
3040     {
3041       if (store_info->alias_set)
3042         {
3043           int index = get_bitmap_index (clear_alias_group,
3044                                         store_info->alias_set);
3045           if (index != 0)
3046             {
3047               bitmap_set_bit (gen, index);
3048               if (kill)
3049                 bitmap_clear_bit (kill, index);
3050             }
3051         }
3052       store_info = store_info->next;
3053     }
3054 }
3055
3056
3057 /* Process the READ_INFOs into the bitmaps into GEN and KILL.  KILL
3058    may be NULL.  */
3059
3060 static void
3061 scan_reads_nospill (insn_info_t insn_info, bitmap gen, bitmap kill)
3062 {
3063   read_info_t read_info = insn_info->read_rec;
3064   int i;
3065   group_info_t group;
3066
3067   /* If this insn reads the frame, kill all the frame related stores.  */
3068   if (insn_info->frame_read)
3069     {
3070       FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, i, group)
3071         if (group->process_globally && group->frame_related)
3072           {
3073             if (kill)
3074               bitmap_ior_into (kill, group->group_kill);
3075             bitmap_and_compl_into (gen, group->group_kill);
3076           }
3077     }
3078
3079   while (read_info)
3080     {
3081       FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, i, group)
3082         {
3083           if (group->process_globally)
3084             {
3085               if (i == read_info->group_id)
3086                 {
3087                   if (read_info->begin > read_info->end)
3088                     {
3089                       /* Begin > end for block mode reads.  */
3090                       if (kill)
3091                         bitmap_ior_into (kill, group->group_kill);
3092                       bitmap_and_compl_into (gen, group->group_kill);
3093                     }
3094                   else
3095                     {
3096                       /* The groups are the same, just process the
3097                          offsets.  */
3098                       HOST_WIDE_INT j;
3099                       for (j = read_info->begin; j < read_info->end; j++)
3100                         {
3101                           int index = get_bitmap_index (group, j);
3102                           if (index != 0)
3103                             {
3104                               if (kill)
3105                                 bitmap_set_bit (kill, index);
3106                               bitmap_clear_bit (gen, index);
3107                             }
3108                         }
3109                     }
3110                 }
3111               else
3112                 {
3113                   /* The groups are different, if the alias sets
3114                      conflict, clear the entire group.  We only need
3115                      to apply this test if the read_info is a cselib
3116                      read.  Anything with a constant base cannot alias
3117                      something else with a different constant
3118                      base.  */
3119                   if ((read_info->group_id < 0)
3120                       && canon_true_dependence (group->base_mem,
3121                                                 QImode,
3122                                                 group->canon_base_addr,
3123                                                 read_info->mem, NULL_RTX,
3124                                                 rtx_varies_p))
3125                     {
3126                       if (kill)
3127                         bitmap_ior_into (kill, group->group_kill);
3128                       bitmap_and_compl_into (gen, group->group_kill);
3129                     }
3130                 }
3131             }
3132         }
3133
3134       read_info = read_info->next;
3135     }
3136 }
3137
3138 /* Process the READ_INFOs into the bitmaps into GEN and KILL.  KILL
3139    may be NULL.  */
3140
3141 static void
3142 scan_reads_spill (read_info_t read_info, bitmap gen, bitmap kill)
3143 {
3144   while (read_info)
3145     {
3146       if (read_info->alias_set)
3147         {
3148           int index = get_bitmap_index (clear_alias_group,
3149                                         read_info->alias_set);
3150           if (index != 0)
3151             {
3152               if (kill)
3153                 bitmap_set_bit (kill, index);
3154               bitmap_clear_bit (gen, index);
3155             }
3156         }
3157
3158       read_info = read_info->next;
3159     }
3160 }
3161
3162
3163 /* Return the insn in BB_INFO before the first wild read or if there
3164    are no wild reads in the block, return the last insn.  */
3165
3166 static insn_info_t
3167 find_insn_before_first_wild_read (bb_info_t bb_info)
3168 {
3169   insn_info_t insn_info = bb_info->last_insn;
3170   insn_info_t last_wild_read = NULL;
3171
3172   while (insn_info)
3173     {
3174       if (insn_info->wild_read)
3175         {
3176           last_wild_read = insn_info->prev_insn;
3177           /* Block starts with wild read.  */
3178           if (!last_wild_read)
3179             return NULL;
3180         }
3181
3182       insn_info = insn_info->prev_insn;
3183     }
3184
3185   if (last_wild_read)
3186     return last_wild_read;
3187   else
3188     return bb_info->last_insn;
3189 }
3190
3191
3192 /* Scan the insns in BB_INFO starting at PTR and going to the top of
3193    the block in order to build the gen and kill sets for the block.
3194    We start at ptr which may be the last insn in the block or may be
3195    the first insn with a wild read.  In the latter case we are able to
3196    skip the rest of the block because it just does not matter:
3197    anything that happens is hidden by the wild read.  */
3198
3199 static void
3200 dse_step3_scan (bool for_spills, basic_block bb)
3201 {
3202   bb_info_t bb_info = bb_table[bb->index];
3203   insn_info_t insn_info;
3204
3205   if (for_spills)
3206     /* There are no wild reads in the spill case.  */
3207     insn_info = bb_info->last_insn;
3208   else
3209     insn_info = find_insn_before_first_wild_read (bb_info);
3210
3211   /* In the spill case or in the no_spill case if there is no wild
3212      read in the block, we will need a kill set.  */
3213   if (insn_info == bb_info->last_insn)
3214     {
3215       if (bb_info->kill)
3216         bitmap_clear (bb_info->kill);
3217       else
3218         bb_info->kill = BITMAP_ALLOC (NULL);
3219     }
3220   else
3221     if (bb_info->kill)
3222       BITMAP_FREE (bb_info->kill);
3223
3224   while (insn_info)
3225     {
3226       /* There may have been code deleted by the dce pass run before
3227          this phase.  */
3228       if (insn_info->insn && INSN_P (insn_info->insn))
3229         {
3230           /* Process the read(s) last.  */
3231           if (for_spills)
3232             {
3233               scan_stores_spill (insn_info->store_rec, bb_info->gen, bb_info->kill);
3234               scan_reads_spill (insn_info->read_rec, bb_info->gen, bb_info->kill);
3235             }
3236           else
3237             {
3238               scan_stores_nospill (insn_info->store_rec, bb_info->gen, bb_info->kill);
3239               scan_reads_nospill (insn_info, bb_info->gen, bb_info->kill);
3240             }
3241         }
3242
3243       insn_info = insn_info->prev_insn;
3244     }
3245 }
3246
3247
3248 /* Set the gen set of the exit block, and also any block with no
3249    successors that does not have a wild read.  */
3250
3251 static void
3252 dse_step3_exit_block_scan (bb_info_t bb_info)
3253 {
3254   /* The gen set is all 0's for the exit block except for the
3255      frame_pointer_group.  */
3256
3257   if (stores_off_frame_dead_at_return)
3258     {
3259       unsigned int i;
3260       group_info_t group;
3261
3262       FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, i, group)
3263         {
3264           if (group->process_globally && group->frame_related)
3265             bitmap_ior_into (bb_info->gen, group->group_kill);
3266         }
3267     }
3268 }
3269
3270
3271 /* Find all of the blocks that are not backwards reachable from the
3272    exit block or any block with no successors (BB).  These are the
3273    infinite loops or infinite self loops.  These blocks will still
3274    have their bits set in UNREACHABLE_BLOCKS.  */
3275
3276 static void
3277 mark_reachable_blocks (sbitmap unreachable_blocks, basic_block bb)
3278 {
3279   edge e;
3280   edge_iterator ei;
3281
3282   if (TEST_BIT (unreachable_blocks, bb->index))
3283     {
3284       RESET_BIT (unreachable_blocks, bb->index);
3285       FOR_EACH_EDGE (e, ei, bb->preds)
3286         {
3287           mark_reachable_blocks (unreachable_blocks, e->src);
3288         }
3289     }
3290 }
3291
3292 /* Build the transfer functions for the function.  */
3293
3294 static void
3295 dse_step3 (bool for_spills)
3296 {
3297   basic_block bb;
3298   sbitmap unreachable_blocks = sbitmap_alloc (last_basic_block);
3299   sbitmap_iterator sbi;
3300   bitmap all_ones = NULL;
3301   unsigned int i;
3302
3303   sbitmap_ones (unreachable_blocks);
3304
3305   FOR_ALL_BB (bb)
3306     {
3307       bb_info_t bb_info = bb_table[bb->index];
3308       if (bb_info->gen)
3309         bitmap_clear (bb_info->gen);
3310       else
3311         bb_info->gen = BITMAP_ALLOC (NULL);
3312
3313       if (bb->index == ENTRY_BLOCK)
3314         ;
3315       else if (bb->index == EXIT_BLOCK)
3316         dse_step3_exit_block_scan (bb_info);
3317       else
3318         dse_step3_scan (for_spills, bb);
3319       if (EDGE_COUNT (bb->succs) == 0)
3320         mark_reachable_blocks (unreachable_blocks, bb);
3321
3322       /* If this is the second time dataflow is run, delete the old
3323          sets.  */
3324       if (bb_info->in)
3325         BITMAP_FREE (bb_info->in);
3326       if (bb_info->out)
3327         BITMAP_FREE (bb_info->out);
3328     }
3329
3330   /* For any block in an infinite loop, we must initialize the out set
3331      to all ones.  This could be expensive, but almost never occurs in
3332      practice. However, it is common in regression tests.  */
3333   EXECUTE_IF_SET_IN_SBITMAP (unreachable_blocks, 0, i, sbi)
3334     {
3335       if (bitmap_bit_p (all_blocks, i))
3336         {
3337           bb_info_t bb_info = bb_table[i];
3338           if (!all_ones)
3339             {
3340               unsigned int j;
3341               group_info_t group;
3342
3343               all_ones = BITMAP_ALLOC (NULL);
3344               FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, j, group)
3345                 bitmap_ior_into (all_ones, group->group_kill);
3346             }
3347           if (!bb_info->out)
3348             {
3349               bb_info->out = BITMAP_ALLOC (NULL);
3350               bitmap_copy (bb_info->out, all_ones);
3351             }
3352         }
3353     }
3354
3355   if (all_ones)
3356     BITMAP_FREE (all_ones);
3357   sbitmap_free (unreachable_blocks);
3358 }
3359
3360
3361 \f
3362 /*----------------------------------------------------------------------------
3363    Fourth step.
3364
3365    Solve the bitvector equations.
3366 ----------------------------------------------------------------------------*/
3367
3368
3369 /* Confluence function for blocks with no successors.  Create an out
3370    set from the gen set of the exit block.  This block logically has
3371    the exit block as a successor.  */
3372
3373
3374
3375 static void
3376 dse_confluence_0 (basic_block bb)
3377 {
3378   bb_info_t bb_info = bb_table[bb->index];
3379
3380   if (bb->index == EXIT_BLOCK)
3381     return;
3382
3383   if (!bb_info->out)
3384     {
3385       bb_info->out = BITMAP_ALLOC (NULL);
3386       bitmap_copy (bb_info->out, bb_table[EXIT_BLOCK]->gen);
3387     }
3388 }
3389
3390 /* Propagate the information from the in set of the dest of E to the
3391    out set of the src of E.  If the various in or out sets are not
3392    there, that means they are all ones.  */
3393
3394 static bool
3395 dse_confluence_n (edge e)
3396 {
3397   bb_info_t src_info = bb_table[e->src->index];
3398   bb_info_t dest_info = bb_table[e->dest->index];
3399
3400   if (dest_info->in)
3401     {
3402       if (src_info->out)
3403         bitmap_and_into (src_info->out, dest_info->in);
3404       else
3405         {
3406           src_info->out = BITMAP_ALLOC (NULL);
3407           bitmap_copy (src_info->out, dest_info->in);
3408         }
3409     }
3410   return true;
3411 }
3412
3413
3414 /* Propagate the info from the out to the in set of BB_INDEX's basic
3415    block.  There are three cases:
3416
3417    1) The block has no kill set.  In this case the kill set is all
3418    ones.  It does not matter what the out set of the block is, none of
3419    the info can reach the top.  The only thing that reaches the top is
3420    the gen set and we just copy the set.
3421
3422    2) There is a kill set but no out set and bb has successors.  In
3423    this case we just return. Eventually an out set will be created and
3424    it is better to wait than to create a set of ones.
3425
3426    3) There is both a kill and out set.  We apply the obvious transfer
3427    function.
3428 */
3429
3430 static bool
3431 dse_transfer_function (int bb_index)
3432 {
3433   bb_info_t bb_info = bb_table[bb_index];
3434
3435   if (bb_info->kill)
3436     {
3437       if (bb_info->out)
3438         {
3439           /* Case 3 above.  */
3440           if (bb_info->in)
3441             return bitmap_ior_and_compl (bb_info->in, bb_info->gen,
3442                                          bb_info->out, bb_info->kill);
3443           else
3444             {
3445               bb_info->in = BITMAP_ALLOC (NULL);
3446               bitmap_ior_and_compl (bb_info->in, bb_info->gen,
3447                                     bb_info->out, bb_info->kill);
3448               return true;
3449             }
3450         }
3451       else
3452         /* Case 2 above.  */
3453         return false;
3454     }
3455   else
3456     {
3457       /* Case 1 above.  If there is already an in set, nothing
3458          happens.  */
3459       if (bb_info->in)
3460         return false;
3461       else
3462         {
3463           bb_info->in = BITMAP_ALLOC (NULL);
3464           bitmap_copy (bb_info->in, bb_info->gen);
3465           return true;
3466         }
3467     }
3468 }
3469
3470 /* Solve the dataflow equations.  */
3471
3472 static void
3473 dse_step4 (void)
3474 {
3475   df_simple_dataflow (DF_BACKWARD, NULL, dse_confluence_0,
3476                       dse_confluence_n, dse_transfer_function,
3477                       all_blocks, df_get_postorder (DF_BACKWARD),
3478                       df_get_n_blocks (DF_BACKWARD));
3479   if (dump_file)
3480     {
3481       basic_block bb;
3482
3483       fprintf (dump_file, "\n\n*** Global dataflow info after analysis.\n");
3484       FOR_ALL_BB (bb)
3485         {
3486           bb_info_t bb_info = bb_table[bb->index];
3487
3488           df_print_bb_index (bb, dump_file);
3489           if (bb_info->in)
3490             bitmap_print (dump_file, bb_info->in, "  in:   ", "\n");
3491           else
3492             fprintf (dump_file, "  in:   *MISSING*\n");
3493           if (bb_info->gen)
3494             bitmap_print (dump_file, bb_info->gen, "  gen:  ", "\n");
3495           else
3496             fprintf (dump_file, "  gen:  *MISSING*\n");
3497           if (bb_info->kill)
3498             bitmap_print (dump_file, bb_info->kill, "  kill: ", "\n");
3499           else
3500             fprintf (dump_file, "  kill: *MISSING*\n");
3501           if (bb_info->out)
3502             bitmap_print (dump_file, bb_info->out, "  out:  ", "\n");
3503           else
3504             fprintf (dump_file, "  out:  *MISSING*\n\n");
3505         }
3506     }
3507 }
3508
3509
3510 \f
3511 /*----------------------------------------------------------------------------
3512    Fifth step.
3513
3514    Delete the stores that can only be deleted using the global information.
3515 ----------------------------------------------------------------------------*/
3516
3517
3518 static void
3519 dse_step5_nospill (void)
3520 {
3521   basic_block bb;
3522   FOR_EACH_BB (bb)
3523     {
3524       bb_info_t bb_info = bb_table[bb->index];
3525       insn_info_t insn_info = bb_info->last_insn;
3526       bitmap v = bb_info->out;
3527
3528       while (insn_info)
3529         {
3530           bool deleted = false;
3531           if (dump_file && insn_info->insn)
3532             {
3533               fprintf (dump_file, "starting to process insn %d\n",
3534                        INSN_UID (insn_info->insn));
3535               bitmap_print (dump_file, v, "  v:  ", "\n");
3536             }
3537
3538           /* There may have been code deleted by the dce pass run before
3539              this phase.  */
3540           if (insn_info->insn
3541               && INSN_P (insn_info->insn)
3542               && (!insn_info->cannot_delete)
3543               && (!bitmap_empty_p (v)))
3544             {
3545               store_info_t store_info = insn_info->store_rec;
3546
3547               /* Try to delete the current insn.  */
3548               deleted = true;
3549
3550               /* Skip the clobbers.  */
3551               while (!store_info->is_set)
3552                 store_info = store_info->next;
3553
3554               if (store_info->alias_set)
3555                 deleted = false;
3556               else
3557                 {
3558                   HOST_WIDE_INT i;
3559                   group_info_t group_info
3560                     = VEC_index (group_info_t, rtx_group_vec, store_info->group_id);
3561
3562                   for (i = store_info->begin; i < store_info->end; i++)
3563                     {
3564                       int index = get_bitmap_index (group_info, i);
3565
3566                       if (dump_file)
3567                         fprintf (dump_file, "i = %d, index = %d\n", (int)i, index);
3568                       if (index == 0 || !bitmap_bit_p (v, index))
3569                         {
3570                           if (dump_file)
3571                             fprintf (dump_file, "failing at i = %d\n", (int)i);
3572                           deleted = false;
3573                           break;
3574                         }
3575                     }
3576                 }
3577               if (deleted)
3578                 {
3579                   if (dbg_cnt (dse))
3580                     {
3581                       check_for_inc_dec (insn_info->insn);
3582                       delete_insn (insn_info->insn);
3583                       insn_info->insn = NULL;
3584                       globally_deleted++;
3585                     }
3586                 }
3587             }
3588           /* We do want to process the local info if the insn was
3589              deleted.  For instance, if the insn did a wild read, we
3590              no longer need to trash the info.  */
3591           if (insn_info->insn
3592               && INSN_P (insn_info->insn)
3593               && (!deleted))
3594             {
3595               scan_stores_nospill (insn_info->store_rec, v, NULL);
3596               if (insn_info->wild_read)
3597                 {
3598                   if (dump_file)
3599                     fprintf (dump_file, "wild read\n");
3600                   bitmap_clear (v);
3601                 }
3602               else if (insn_info->read_rec)
3603                 {
3604                   if (dump_file)
3605                     fprintf (dump_file, "regular read\n");
3606                   scan_reads_nospill (insn_info, v, NULL);
3607                 }
3608             }
3609
3610           insn_info = insn_info->prev_insn;
3611         }
3612     }
3613 }
3614
3615
3616 static void
3617 dse_step5_spill (void)
3618 {
3619   basic_block bb;
3620   FOR_EACH_BB (bb)
3621     {
3622       bb_info_t bb_info = bb_table[bb->index];
3623       insn_info_t insn_info = bb_info->last_insn;
3624       bitmap v = bb_info->out;
3625
3626       while (insn_info)
3627         {
3628           bool deleted = false;
3629           /* There may have been code deleted by the dce pass run before
3630              this phase.  */
3631           if (insn_info->insn
3632               && INSN_P (insn_info->insn)
3633               && (!insn_info->cannot_delete)
3634               && (!bitmap_empty_p (v)))
3635             {
3636               /* Try to delete the current insn.  */
3637               store_info_t store_info = insn_info->store_rec;
3638               deleted = true;
3639
3640               while (store_info)
3641                 {
3642                   if (store_info->alias_set)
3643                     {
3644                       int index = get_bitmap_index (clear_alias_group,
3645                                                     store_info->alias_set);
3646                       if (index == 0 || !bitmap_bit_p (v, index))
3647                         {
3648                           deleted = false;
3649                           break;
3650                         }
3651                     }
3652                   else
3653                     deleted = false;
3654                   store_info = store_info->next;
3655                 }
3656               if (deleted && dbg_cnt (dse))
3657                 {
3658                   if (dump_file)
3659                     fprintf (dump_file, "Spill deleting insn %d\n",
3660                              INSN_UID (insn_info->insn));
3661                   check_for_inc_dec (insn_info->insn);
3662                   delete_insn (insn_info->insn);
3663                   spill_deleted++;
3664                   insn_info->insn = NULL;
3665                 }
3666             }
3667
3668           if (insn_info->insn
3669               && INSN_P (insn_info->insn)
3670               && (!deleted))
3671             {
3672               scan_stores_spill (insn_info->store_rec, v, NULL);
3673               scan_reads_spill (insn_info->read_rec, v, NULL);
3674             }
3675
3676           insn_info = insn_info->prev_insn;
3677         }
3678     }
3679 }
3680
3681
3682 \f
3683 /*----------------------------------------------------------------------------
3684    Sixth step.
3685
3686    Delete stores made redundant by earlier stores (which store the same
3687    value) that couldn't be eliminated.
3688 ----------------------------------------------------------------------------*/
3689
3690 static void
3691 dse_step6 (void)
3692 {
3693   basic_block bb;
3694
3695   FOR_ALL_BB (bb)
3696     {
3697       bb_info_t bb_info = bb_table[bb->index];
3698       insn_info_t insn_info = bb_info->last_insn;
3699
3700       while (insn_info)
3701         {
3702           /* There may have been code deleted by the dce pass run before
3703              this phase.  */
3704           if (insn_info->insn
3705               && INSN_P (insn_info->insn)
3706               && !insn_info->cannot_delete)
3707             {
3708               store_info_t s_info = insn_info->store_rec;
3709
3710               while (s_info && !s_info->is_set)
3711                 s_info = s_info->next;
3712               if (s_info
3713                   && s_info->redundant_reason
3714                   && s_info->redundant_reason->insn
3715                   && INSN_P (s_info->redundant_reason->insn))
3716                 {
3717                   rtx rinsn = s_info->redundant_reason->insn;
3718                   if (dump_file)
3719                     fprintf (dump_file, "Locally deleting insn %d "
3720                                         "because insn %d stores the "
3721                                         "same value and couldn't be "
3722                                         "eliminated\n",
3723                                         INSN_UID (insn_info->insn),
3724                                         INSN_UID (rinsn));
3725                   delete_dead_store_insn (insn_info);
3726                 }
3727             }
3728           insn_info = insn_info->prev_insn;
3729         }
3730     }
3731 }
3732 \f
3733 /*----------------------------------------------------------------------------
3734    Seventh step.
3735
3736    Destroy everything left standing.
3737 ----------------------------------------------------------------------------*/
3738
3739 static void
3740 dse_step7 (bool global_done)
3741 {
3742   unsigned int i;
3743   group_info_t group;
3744   basic_block bb;
3745
3746   FOR_EACH_VEC_ELT (group_info_t, rtx_group_vec, i, group)
3747     {
3748       free (group->offset_map_n);
3749       free (group->offset_map_p);
3750       BITMAP_FREE (group->store1_n);
3751       BITMAP_FREE (group->store1_p);
3752       BITMAP_FREE (group->store2_n);
3753       BITMAP_FREE (group->store2_p);
3754       BITMAP_FREE (group->group_kill);
3755     }
3756
3757   if (global_done)
3758     FOR_ALL_BB (bb)
3759       {
3760         bb_info_t bb_info = bb_table[bb->index];
3761         BITMAP_FREE (bb_info->gen);
3762         if (bb_info->kill)
3763           BITMAP_FREE (bb_info->kill);
3764         if (bb_info->in)
3765           BITMAP_FREE (bb_info->in);
3766         if (bb_info->out)
3767           BITMAP_FREE (bb_info->out);
3768       }
3769
3770   if (clear_alias_sets)
3771     {
3772       BITMAP_FREE (clear_alias_sets);
3773       BITMAP_FREE (disqualified_clear_alias_sets);
3774       free_alloc_pool (clear_alias_mode_pool);
3775       htab_delete (clear_alias_mode_table);
3776     }
3777
3778   end_alias_analysis ();
3779   free (bb_table);
3780   htab_delete (rtx_group_table);
3781   VEC_free (group_info_t, heap, rtx_group_vec);
3782   BITMAP_FREE (all_blocks);
3783   BITMAP_FREE (scratch);
3784
3785   free_alloc_pool (rtx_store_info_pool);
3786   free_alloc_pool (read_info_pool);
3787   free_alloc_pool (insn_info_pool);
3788   free_alloc_pool (bb_info_pool);
3789   free_alloc_pool (rtx_group_info_pool);
3790   free_alloc_pool (deferred_change_pool);
3791 }
3792
3793
3794 /* -------------------------------------------------------------------------
3795    DSE
3796    ------------------------------------------------------------------------- */
3797
3798 /* Callback for running pass_rtl_dse.  */
3799
3800 static unsigned int
3801 rest_of_handle_dse (void)
3802 {
3803   bool did_global = false;
3804
3805   df_set_flags (DF_DEFER_INSN_RESCAN);
3806
3807   /* Need the notes since we must track live hardregs in the forwards
3808      direction.  */
3809   df_note_add_problem ();
3810   df_analyze ();
3811
3812   dse_step0 ();
3813   dse_step1 ();
3814   dse_step2_init ();
3815   if (dse_step2_nospill ())
3816     {
3817       df_set_flags (DF_LR_RUN_DCE);
3818       df_analyze ();
3819       did_global = true;
3820       if (dump_file)
3821         fprintf (dump_file, "doing global processing\n");
3822       dse_step3 (false);
3823       dse_step4 ();
3824       dse_step5_nospill ();
3825     }
3826
3827   /* For the instance of dse that runs after reload, we make a special
3828      pass to process the spills.  These are special in that they are
3829      totally transparent, i.e, there is no aliasing issues that need
3830      to be considered.  This means that the wild reads that kill
3831      everything else do not apply here.  */
3832   if (clear_alias_sets && dse_step2_spill ())
3833     {
3834       if (!did_global)
3835         {
3836           df_set_flags (DF_LR_RUN_DCE);
3837           df_analyze ();
3838         }
3839       did_global = true;
3840       if (dump_file)
3841         fprintf (dump_file, "doing global spill processing\n");
3842       dse_step3 (true);
3843       dse_step4 ();
3844       dse_step5_spill ();
3845     }
3846
3847   dse_step6 ();
3848   dse_step7 (did_global);
3849
3850   if (dump_file)
3851     fprintf (dump_file, "dse: local deletions = %d, global deletions = %d, spill deletions = %d\n",
3852              locally_deleted, globally_deleted, spill_deleted);
3853   return 0;
3854 }
3855
3856 static bool
3857 gate_dse (void)
3858 {
3859   return gate_dse1 () || gate_dse2 ();
3860 }
3861
3862 static bool
3863 gate_dse1 (void)
3864 {
3865   return optimize > 0 && flag_dse
3866     && dbg_cnt (dse1);
3867 }
3868
3869 static bool
3870 gate_dse2 (void)
3871 {
3872   return optimize > 0 && flag_dse
3873     && dbg_cnt (dse2);
3874 }
3875
3876 struct rtl_opt_pass pass_rtl_dse1 =
3877 {
3878  {
3879   RTL_PASS,
3880   "dse1",                               /* name */
3881   gate_dse1,                            /* gate */
3882   rest_of_handle_dse,                   /* execute */
3883   NULL,                                 /* sub */
3884   NULL,                                 /* next */
3885   0,                                    /* static_pass_number */
3886   TV_DSE1,                              /* tv_id */
3887   0,                                    /* properties_required */
3888   0,                                    /* properties_provided */
3889   0,                                    /* properties_destroyed */
3890   0,                                    /* todo_flags_start */
3891   TODO_dump_func |
3892   TODO_df_finish | TODO_verify_rtl_sharing |
3893   TODO_ggc_collect                      /* todo_flags_finish */
3894  }
3895 };
3896
3897 struct rtl_opt_pass pass_rtl_dse2 =
3898 {
3899  {
3900   RTL_PASS,
3901   "dse2",                               /* name */
3902   gate_dse2,                            /* gate */
3903   rest_of_handle_dse,                   /* execute */
3904   NULL,                                 /* sub */
3905   NULL,                                 /* next */
3906   0,                                    /* static_pass_number */
3907   TV_DSE2,                              /* tv_id */
3908   0,                                    /* properties_required */
3909   0,                                    /* properties_provided */
3910   0,                                    /* properties_destroyed */
3911   0,                                    /* todo_flags_start */
3912   TODO_dump_func |
3913   TODO_df_finish | TODO_verify_rtl_sharing |
3914   TODO_ggc_collect                      /* todo_flags_finish */
3915  }
3916 };