OSDN Git Service

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