OSDN Git Service

2002-01-15 Eric Christopher <echristo@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / flow.c
1 /* Data flow analysis for GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 /* This file contains the data flow analysis pass of the compiler.  It
23    computes data flow information which tells combine_instructions
24    which insns to consider combining and controls register allocation.
25
26    Additional data flow information that is too bulky to record is
27    generated during the analysis, and is used at that time to create
28    autoincrement and autodecrement addressing.
29
30    The first step is dividing the function into basic blocks.
31    find_basic_blocks does this.  Then life_analysis determines
32    where each register is live and where it is dead.
33
34    ** find_basic_blocks **
35
36    find_basic_blocks divides the current function's rtl into basic
37    blocks and constructs the CFG.  The blocks are recorded in the
38    basic_block_info array; the CFG exists in the edge structures
39    referenced by the blocks.
40
41    find_basic_blocks also finds any unreachable loops and deletes them.
42
43    ** life_analysis **
44
45    life_analysis is called immediately after find_basic_blocks.
46    It uses the basic block information to determine where each
47    hard or pseudo register is live.
48
49    ** live-register info **
50
51    The information about where each register is live is in two parts:
52    the REG_NOTES of insns, and the vector basic_block->global_live_at_start.
53
54    basic_block->global_live_at_start has an element for each basic
55    block, and the element is a bit-vector with a bit for each hard or
56    pseudo register.  The bit is 1 if the register is live at the
57    beginning of the basic block.
58
59    Two types of elements can be added to an insn's REG_NOTES.
60    A REG_DEAD note is added to an insn's REG_NOTES for any register
61    that meets both of two conditions:  The value in the register is not
62    needed in subsequent insns and the insn does not replace the value in
63    the register (in the case of multi-word hard registers, the value in
64    each register must be replaced by the insn to avoid a REG_DEAD note).
65
66    In the vast majority of cases, an object in a REG_DEAD note will be
67    used somewhere in the insn.  The (rare) exception to this is if an
68    insn uses a multi-word hard register and only some of the registers are
69    needed in subsequent insns.  In that case, REG_DEAD notes will be
70    provided for those hard registers that are not subsequently needed.
71    Partial REG_DEAD notes of this type do not occur when an insn sets
72    only some of the hard registers used in such a multi-word operand;
73    omitting REG_DEAD notes for objects stored in an insn is optional and
74    the desire to do so does not justify the complexity of the partial
75    REG_DEAD notes.
76
77    REG_UNUSED notes are added for each register that is set by the insn
78    but is unused subsequently (if every register set by the insn is unused
79    and the insn does not reference memory or have some other side-effect,
80    the insn is deleted instead).  If only part of a multi-word hard
81    register is used in a subsequent insn, REG_UNUSED notes are made for
82    the parts that will not be used.
83
84    To determine which registers are live after any insn, one can
85    start from the beginning of the basic block and scan insns, noting
86    which registers are set by each insn and which die there.
87
88    ** Other actions of life_analysis **
89
90    life_analysis sets up the LOG_LINKS fields of insns because the
91    information needed to do so is readily available.
92
93    life_analysis deletes insns whose only effect is to store a value
94    that is never used.
95
96    life_analysis notices cases where a reference to a register as
97    a memory address can be combined with a preceding or following
98    incrementation or decrementation of the register.  The separate
99    instruction to increment or decrement is deleted and the address
100    is changed to a POST_INC or similar rtx.
101
102    Each time an incrementing or decrementing address is created,
103    a REG_INC element is added to the insn's REG_NOTES list.
104
105    life_analysis fills in certain vectors containing information about
106    register usage: REG_N_REFS, REG_N_DEATHS, REG_N_SETS, REG_LIVE_LENGTH,
107    REG_N_CALLS_CROSSED and REG_BASIC_BLOCK.
108
109    life_analysis sets current_function_sp_is_unchanging if the function
110    doesn't modify the stack pointer.  */
111
112 /* TODO:
113
114    Split out from life_analysis:
115         - local property discovery (bb->local_live, bb->local_set)
116         - global property computation
117         - log links creation
118         - pre/post modify transformation
119 */
120 \f
121 #include "config.h"
122 #include "system.h"
123 #include "tree.h"
124 #include "rtl.h"
125 #include "tm_p.h"
126 #include "hard-reg-set.h"
127 #include "basic-block.h"
128 #include "insn-config.h"
129 #include "regs.h"
130 #include "flags.h"
131 #include "output.h"
132 #include "function.h"
133 #include "except.h"
134 #include "toplev.h"
135 #include "recog.h"
136 #include "expr.h"
137 #include "ssa.h"
138 #include "timevar.h"
139
140 #include "obstack.h"
141 #include "splay-tree.h"
142
143 #define obstack_chunk_alloc xmalloc
144 #define obstack_chunk_free free
145
146 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
147    the stack pointer does not matter.  The value is tested only in
148    functions that have frame pointers.
149    No definition is equivalent to always zero.  */
150 #ifndef EXIT_IGNORE_STACK
151 #define EXIT_IGNORE_STACK 0
152 #endif
153
154 #ifndef HAVE_epilogue
155 #define HAVE_epilogue 0
156 #endif
157 #ifndef HAVE_prologue
158 #define HAVE_prologue 0
159 #endif
160 #ifndef HAVE_sibcall_epilogue
161 #define HAVE_sibcall_epilogue 0
162 #endif
163
164 #ifndef LOCAL_REGNO
165 #define LOCAL_REGNO(REGNO)  0
166 #endif
167 #ifndef EPILOGUE_USES
168 #define EPILOGUE_USES(REGNO)  0
169 #endif
170
171 #ifdef HAVE_conditional_execution
172 #ifndef REVERSE_CONDEXEC_PREDICATES_P
173 #define REVERSE_CONDEXEC_PREDICATES_P(x, y) ((x) == reverse_condition (y))
174 #endif
175 #endif
176
177 /* Nonzero if the second flow pass has completed.  */
178 int flow2_completed;
179
180 /* Maximum register number used in this function, plus one.  */
181
182 int max_regno;
183
184 /* Indexed by n, giving various register information */
185
186 varray_type reg_n_info;
187
188 /* Size of a regset for the current function,
189    in (1) bytes and (2) elements.  */
190
191 int regset_bytes;
192 int regset_size;
193
194 /* Regset of regs live when calls to `setjmp'-like functions happen.  */
195 /* ??? Does this exist only for the setjmp-clobbered warning message?  */
196
197 regset regs_live_at_setjmp;
198
199 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
200    that have to go in the same hard reg.
201    The first two regs in the list are a pair, and the next two
202    are another pair, etc.  */
203 rtx regs_may_share;
204
205 /* Callback that determines if it's ok for a function to have no
206    noreturn attribute.  */
207 int (*lang_missing_noreturn_ok_p) PARAMS ((tree));
208
209 /* Set of registers that may be eliminable.  These are handled specially
210    in updating regs_ever_live.  */
211
212 static HARD_REG_SET elim_reg_set;
213
214 /* Holds information for tracking conditional register life information.  */
215 struct reg_cond_life_info
216 {
217   /* A boolean expression of conditions under which a register is dead.  */
218   rtx condition;
219   /* Conditions under which a register is dead at the basic block end.  */
220   rtx orig_condition;
221
222   /* A boolean expression of conditions under which a register has been
223      stored into.  */
224   rtx stores;
225
226   /* ??? Could store mask of bytes that are dead, so that we could finally
227      track lifetimes of multi-word registers accessed via subregs.  */
228 };
229
230 /* For use in communicating between propagate_block and its subroutines.
231    Holds all information needed to compute life and def-use information.  */
232
233 struct propagate_block_info
234 {
235   /* The basic block we're considering.  */
236   basic_block bb;
237
238   /* Bit N is set if register N is conditionally or unconditionally live.  */
239   regset reg_live;
240
241   /* Bit N is set if register N is set this insn.  */
242   regset new_set;
243
244   /* Element N is the next insn that uses (hard or pseudo) register N
245      within the current basic block; or zero, if there is no such insn.  */
246   rtx *reg_next_use;
247
248   /* Contains a list of all the MEMs we are tracking for dead store
249      elimination.  */
250   rtx mem_set_list;
251
252   /* If non-null, record the set of registers set unconditionally in the
253      basic block.  */
254   regset local_set;
255
256   /* If non-null, record the set of registers set conditionally in the
257      basic block.  */
258   regset cond_local_set;
259
260 #ifdef HAVE_conditional_execution
261   /* Indexed by register number, holds a reg_cond_life_info for each
262      register that is not unconditionally live or dead.  */
263   splay_tree reg_cond_dead;
264
265   /* Bit N is set if register N is in an expression in reg_cond_dead.  */
266   regset reg_cond_reg;
267 #endif
268
269   /* The length of mem_set_list.  */
270   int mem_set_list_len;
271
272   /* Non-zero if the value of CC0 is live.  */
273   int cc0_live;
274
275   /* Flags controling the set of information propagate_block collects.  */
276   int flags;
277 };
278
279 /* Maximum length of pbi->mem_set_list before we start dropping
280    new elements on the floor.  */
281 #define MAX_MEM_SET_LIST_LEN    100
282
283 /* Have print_rtl_and_abort give the same information that fancy_abort
284    does.  */
285 #define print_rtl_and_abort() \
286   print_rtl_and_abort_fcn (__FILE__, __LINE__, __FUNCTION__)
287
288 /* Forward declarations */
289 static int verify_wide_reg_1            PARAMS ((rtx *, void *));
290 static void verify_wide_reg             PARAMS ((int, rtx, rtx));
291 static void verify_local_live_at_start  PARAMS ((regset, basic_block));
292 static void notice_stack_pointer_modification_1 PARAMS ((rtx, rtx, void *));
293 static void notice_stack_pointer_modification PARAMS ((rtx));
294 static void mark_reg                    PARAMS ((rtx, void *));
295 static void mark_regs_live_at_end       PARAMS ((regset));
296 static int set_phi_alternative_reg      PARAMS ((rtx, int, int, void *));
297 static void calculate_global_regs_live  PARAMS ((sbitmap, sbitmap, int));
298 static void propagate_block_delete_insn PARAMS ((basic_block, rtx));
299 static rtx propagate_block_delete_libcall PARAMS ((rtx, rtx));
300 static int insn_dead_p                  PARAMS ((struct propagate_block_info *,
301                                                  rtx, int, rtx));
302 static int libcall_dead_p               PARAMS ((struct propagate_block_info *,
303                                                  rtx, rtx));
304 static void mark_set_regs               PARAMS ((struct propagate_block_info *,
305                                                  rtx, rtx));
306 static void mark_set_1                  PARAMS ((struct propagate_block_info *,
307                                                  enum rtx_code, rtx, rtx,
308                                                  rtx, int));
309 static int find_regno_partial           PARAMS ((rtx *, void *));
310
311 #ifdef HAVE_conditional_execution
312 static int mark_regno_cond_dead         PARAMS ((struct propagate_block_info *,
313                                                  int, rtx));
314 static void free_reg_cond_life_info     PARAMS ((splay_tree_value));
315 static int flush_reg_cond_reg_1         PARAMS ((splay_tree_node, void *));
316 static void flush_reg_cond_reg          PARAMS ((struct propagate_block_info *,
317                                                  int));
318 static rtx elim_reg_cond                PARAMS ((rtx, unsigned int));
319 static rtx ior_reg_cond                 PARAMS ((rtx, rtx, int));
320 static rtx not_reg_cond                 PARAMS ((rtx));
321 static rtx and_reg_cond                 PARAMS ((rtx, rtx, int));
322 #endif
323 #ifdef AUTO_INC_DEC
324 static void attempt_auto_inc            PARAMS ((struct propagate_block_info *,
325                                                  rtx, rtx, rtx, rtx, rtx));
326 static void find_auto_inc               PARAMS ((struct propagate_block_info *,
327                                                  rtx, rtx));
328 static int try_pre_increment_1          PARAMS ((struct propagate_block_info *,
329                                                  rtx));
330 static int try_pre_increment            PARAMS ((rtx, rtx, HOST_WIDE_INT));
331 #endif
332 static void mark_used_reg               PARAMS ((struct propagate_block_info *,
333                                                  rtx, rtx, rtx));
334 static void mark_used_regs              PARAMS ((struct propagate_block_info *,
335                                                  rtx, rtx, rtx));
336 void dump_flow_info                     PARAMS ((FILE *));
337 void debug_flow_info                    PARAMS ((void));
338 static void print_rtl_and_abort_fcn     PARAMS ((const char *, int,
339                                                  const char *))
340                                         ATTRIBUTE_NORETURN;
341
342 static void add_to_mem_set_list         PARAMS ((struct propagate_block_info *,
343                                                  rtx));
344 static void invalidate_mems_from_autoinc PARAMS ((struct propagate_block_info *,
345                                                   rtx));
346 static void invalidate_mems_from_set    PARAMS ((struct propagate_block_info *,
347                                                  rtx));
348 static void delete_dead_jumptables      PARAMS ((void));
349 static void clear_log_links             PARAMS ((sbitmap));
350 \f
351
352 void
353 check_function_return_warnings ()
354 {
355   if (warn_missing_noreturn
356       && !TREE_THIS_VOLATILE (cfun->decl)
357       && EXIT_BLOCK_PTR->pred == NULL
358       && (lang_missing_noreturn_ok_p
359           && !lang_missing_noreturn_ok_p (cfun->decl)))
360     warning ("function might be possible candidate for attribute `noreturn'");
361
362   /* If we have a path to EXIT, then we do return.  */
363   if (TREE_THIS_VOLATILE (cfun->decl)
364       && EXIT_BLOCK_PTR->pred != NULL)
365     warning ("`noreturn' function does return");
366
367   /* If the clobber_return_insn appears in some basic block, then we
368      do reach the end without returning a value.  */
369   else if (warn_return_type
370            && cfun->x_clobber_return_insn != NULL
371            && EXIT_BLOCK_PTR->pred != NULL)
372     {
373       int max_uid = get_max_uid ();
374
375       /* If clobber_return_insn was excised by jump1, then renumber_insns
376          can make max_uid smaller than the number still recorded in our rtx.
377          That's fine, since this is a quick way of verifying that the insn
378          is no longer in the chain.  */
379       if (INSN_UID (cfun->x_clobber_return_insn) < max_uid)
380         {
381           /* Recompute insn->block mapping, since the initial mapping is
382              set before we delete unreachable blocks.  */
383           if (BLOCK_FOR_INSN (cfun->x_clobber_return_insn) != NULL)
384             warning ("control reaches end of non-void function");
385         }
386     }
387 }
388 \f
389 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
390    note associated with the BLOCK.  */
391
392 rtx
393 first_insn_after_basic_block_note (block)
394      basic_block block;
395 {
396   rtx insn;
397
398   /* Get the first instruction in the block.  */
399   insn = block->head;
400
401   if (insn == NULL_RTX)
402     return NULL_RTX;
403   if (GET_CODE (insn) == CODE_LABEL)
404     insn = NEXT_INSN (insn);
405   if (!NOTE_INSN_BASIC_BLOCK_P (insn))
406     abort ();
407
408   return NEXT_INSN (insn);
409 }
410 \f
411 /* Perform data flow analysis.
412    F is the first insn of the function; FLAGS is a set of PROP_* flags
413    to be used in accumulating flow info.  */
414
415 void
416 life_analysis (f, file, flags)
417      rtx f;
418      FILE *file;
419      int flags;
420 {
421 #ifdef ELIMINABLE_REGS
422   int i;
423   static const struct {const int from, to; } eliminables[] = ELIMINABLE_REGS;
424 #endif
425
426   /* Record which registers will be eliminated.  We use this in
427      mark_used_regs.  */
428
429   CLEAR_HARD_REG_SET (elim_reg_set);
430
431 #ifdef ELIMINABLE_REGS
432   for (i = 0; i < (int) ARRAY_SIZE (eliminables); i++)
433     SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
434 #else
435   SET_HARD_REG_BIT (elim_reg_set, FRAME_POINTER_REGNUM);
436 #endif
437
438   if (! optimize)
439     flags &= ~(PROP_LOG_LINKS | PROP_AUTOINC | PROP_ALLOW_CFG_CHANGES);
440
441   /* The post-reload life analysis have (on a global basis) the same
442      registers live as was computed by reload itself.  elimination
443      Otherwise offsets and such may be incorrect.
444
445      Reload will make some registers as live even though they do not
446      appear in the rtl.
447
448      We don't want to create new auto-incs after reload, since they
449      are unlikely to be useful and can cause problems with shared
450      stack slots.  */
451   if (reload_completed)
452     flags &= ~(PROP_REG_INFO | PROP_AUTOINC);
453
454   /* We want alias analysis information for local dead store elimination.  */
455   if (optimize && (flags & PROP_SCAN_DEAD_CODE))
456     init_alias_analysis ();
457
458   /* Always remove no-op moves.  Do this before other processing so
459      that we don't have to keep re-scanning them.  */
460   delete_noop_moves (f);
461   purge_all_dead_edges (false);
462
463   /* Some targets can emit simpler epilogues if they know that sp was
464      not ever modified during the function.  After reload, of course,
465      we've already emitted the epilogue so there's no sense searching.  */
466   if (! reload_completed)
467     notice_stack_pointer_modification (f);
468
469   /* Allocate and zero out data structures that will record the
470      data from lifetime analysis.  */
471   allocate_reg_life_data ();
472   allocate_bb_life_data ();
473
474   /* Find the set of registers live on function exit.  */
475   mark_regs_live_at_end (EXIT_BLOCK_PTR->global_live_at_start);
476
477   /* "Update" life info from zero.  It'd be nice to begin the
478      relaxation with just the exit and noreturn blocks, but that set
479      is not immediately handy.  */
480
481   if (flags & PROP_REG_INFO)
482     memset (regs_ever_live, 0, sizeof (regs_ever_live));
483   update_life_info (NULL, UPDATE_LIFE_GLOBAL, flags);
484
485   /* Clean up.  */
486   if (optimize && (flags & PROP_SCAN_DEAD_CODE))
487     end_alias_analysis ();
488
489   if (file)
490     dump_flow_info (file);
491
492   free_basic_block_vars (1);
493
494 #ifdef ENABLE_CHECKING
495   {
496     rtx insn;
497
498     /* Search for any REG_LABEL notes which reference deleted labels.  */
499     for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
500       {
501         rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
502
503         if (inote && GET_CODE (inote) == NOTE_INSN_DELETED_LABEL)
504           abort ();
505       }
506   }
507 #endif
508   /* Removing dead insns should've made jumptables really dead.  */
509   delete_dead_jumptables ();
510 }
511
512 /* A subroutine of verify_wide_reg, called through for_each_rtx.
513    Search for REGNO.  If found, abort if it is not wider than word_mode.  */
514
515 static int
516 verify_wide_reg_1 (px, pregno)
517      rtx *px;
518      void *pregno;
519 {
520   rtx x = *px;
521   unsigned int regno = *(int *) pregno;
522
523   if (GET_CODE (x) == REG && REGNO (x) == regno)
524     {
525       if (GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD)
526         abort ();
527       return 1;
528     }
529   return 0;
530 }
531
532 /* A subroutine of verify_local_live_at_start.  Search through insns
533    between HEAD and END looking for register REGNO.  */
534
535 static void
536 verify_wide_reg (regno, head, end)
537      int regno;
538      rtx head, end;
539 {
540   while (1)
541     {
542       if (INSN_P (head)
543           && for_each_rtx (&PATTERN (head), verify_wide_reg_1, &regno))
544         return;
545       if (head == end)
546         break;
547       head = NEXT_INSN (head);
548     }
549
550   /* We didn't find the register at all.  Something's way screwy.  */
551   if (rtl_dump_file)
552     fprintf (rtl_dump_file, "Aborting in verify_wide_reg; reg %d\n", regno);
553   print_rtl_and_abort ();
554 }
555
556 /* A subroutine of update_life_info.  Verify that there are no untoward
557    changes in live_at_start during a local update.  */
558
559 static void
560 verify_local_live_at_start (new_live_at_start, bb)
561      regset new_live_at_start;
562      basic_block bb;
563 {
564   if (reload_completed)
565     {
566       /* After reload, there are no pseudos, nor subregs of multi-word
567          registers.  The regsets should exactly match.  */
568       if (! REG_SET_EQUAL_P (new_live_at_start, bb->global_live_at_start))
569         {
570           if (rtl_dump_file)
571             {
572               fprintf (rtl_dump_file,
573                        "live_at_start mismatch in bb %d, aborting\n",
574                        bb->index);
575               debug_bitmap_file (rtl_dump_file, bb->global_live_at_start);
576               debug_bitmap_file (rtl_dump_file, new_live_at_start);
577             }
578           print_rtl_and_abort ();
579         }
580     }
581   else
582     {
583       int i;
584
585       /* Find the set of changed registers.  */
586       XOR_REG_SET (new_live_at_start, bb->global_live_at_start);
587
588       EXECUTE_IF_SET_IN_REG_SET (new_live_at_start, 0, i,
589         {
590           /* No registers should die.  */
591           if (REGNO_REG_SET_P (bb->global_live_at_start, i))
592             {
593               if (rtl_dump_file)
594                 fprintf (rtl_dump_file,
595                          "Register %d died unexpectedly in block %d\n", i,
596                          bb->index);
597               print_rtl_and_abort ();
598             }
599
600           /* Verify that the now-live register is wider than word_mode.  */
601           verify_wide_reg (i, bb->head, bb->end);
602         });
603     }
604 }
605
606 /* Updates life information starting with the basic blocks set in BLOCKS.
607    If BLOCKS is null, consider it to be the universal set.
608
609    If EXTENT is UPDATE_LIFE_LOCAL, such as after splitting or peepholeing,
610    we are only expecting local modifications to basic blocks.  If we find
611    extra registers live at the beginning of a block, then we either killed
612    useful data, or we have a broken split that wants data not provided.
613    If we find registers removed from live_at_start, that means we have
614    a broken peephole that is killing a register it shouldn't.
615
616    ??? This is not true in one situation -- when a pre-reload splitter
617    generates subregs of a multi-word pseudo, current life analysis will
618    lose the kill.  So we _can_ have a pseudo go live.  How irritating.
619
620    Including PROP_REG_INFO does not properly refresh regs_ever_live
621    unless the caller resets it to zero.  */
622
623 void
624 update_life_info (blocks, extent, prop_flags)
625      sbitmap blocks;
626      enum update_life_extent extent;
627      int prop_flags;
628 {
629   regset tmp;
630   regset_head tmp_head;
631   int i;
632
633   tmp = INITIALIZE_REG_SET (tmp_head);
634
635   timevar_push ((extent == UPDATE_LIFE_LOCAL || blocks)
636                 ? TV_LIFE_UPDATE : TV_LIFE);
637
638   /* Changes to the CFG are only allowed when
639      doing a global update for the entire CFG.  */
640   if ((prop_flags & PROP_ALLOW_CFG_CHANGES)
641       && (extent == UPDATE_LIFE_LOCAL || blocks))
642     abort ();
643
644   /* Clear log links in case we are asked to (re)compute them.  */
645   if (prop_flags & PROP_LOG_LINKS)
646     clear_log_links (blocks);
647
648   /* For a global update, we go through the relaxation process again.  */
649   if (extent != UPDATE_LIFE_LOCAL)
650     {
651       for ( ; ; )
652         {
653           int changed = 0;
654
655           calculate_global_regs_live (blocks, blocks,
656                                 prop_flags & (PROP_SCAN_DEAD_CODE
657                                               | PROP_ALLOW_CFG_CHANGES));
658
659           if ((prop_flags & (PROP_KILL_DEAD_CODE | PROP_ALLOW_CFG_CHANGES))
660               != (PROP_KILL_DEAD_CODE | PROP_ALLOW_CFG_CHANGES))
661             break;
662
663           /* Removing dead code may allow the CFG to be simplified which
664              in turn may allow for further dead code detection / removal.  */
665           for (i = n_basic_blocks - 1; i >= 0; --i)
666             {
667               basic_block bb = BASIC_BLOCK (i);
668
669               COPY_REG_SET (tmp, bb->global_live_at_end);
670               changed |= propagate_block (bb, tmp, NULL, NULL,
671                                 prop_flags & (PROP_SCAN_DEAD_CODE
672                                               | PROP_KILL_DEAD_CODE));
673             }
674
675           if (! changed || ! cleanup_cfg (CLEANUP_EXPENSIVE))
676             break;
677         }
678
679       /* If asked, remove notes from the blocks we'll update.  */
680       if (extent == UPDATE_LIFE_GLOBAL_RM_NOTES)
681         count_or_remove_death_notes (blocks, 1);
682     }
683
684   if (blocks)
685     {
686       EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
687         {
688           basic_block bb = BASIC_BLOCK (i);
689
690           COPY_REG_SET (tmp, bb->global_live_at_end);
691           propagate_block (bb, tmp, NULL, NULL, prop_flags);
692
693           if (extent == UPDATE_LIFE_LOCAL)
694             verify_local_live_at_start (tmp, bb);
695         });
696     }
697   else
698     {
699       for (i = n_basic_blocks - 1; i >= 0; --i)
700         {
701           basic_block bb = BASIC_BLOCK (i);
702
703           COPY_REG_SET (tmp, bb->global_live_at_end);
704           propagate_block (bb, tmp, NULL, NULL, prop_flags);
705
706           if (extent == UPDATE_LIFE_LOCAL)
707             verify_local_live_at_start (tmp, bb);
708         }
709     }
710
711   FREE_REG_SET (tmp);
712
713   if (prop_flags & PROP_REG_INFO)
714     {
715       /* The only pseudos that are live at the beginning of the function
716          are those that were not set anywhere in the function.  local-alloc
717          doesn't know how to handle these correctly, so mark them as not
718          local to any one basic block.  */
719       EXECUTE_IF_SET_IN_REG_SET (ENTRY_BLOCK_PTR->global_live_at_end,
720                                  FIRST_PSEUDO_REGISTER, i,
721                                  { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
722
723       /* We have a problem with any pseudoreg that lives across the setjmp.
724          ANSI says that if a user variable does not change in value between
725          the setjmp and the longjmp, then the longjmp preserves it.  This
726          includes longjmp from a place where the pseudo appears dead.
727          (In principle, the value still exists if it is in scope.)
728          If the pseudo goes in a hard reg, some other value may occupy
729          that hard reg where this pseudo is dead, thus clobbering the pseudo.
730          Conclusion: such a pseudo must not go in a hard reg.  */
731       EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp,
732                                  FIRST_PSEUDO_REGISTER, i,
733                                  {
734                                    if (regno_reg_rtx[i] != 0)
735                                      {
736                                        REG_LIVE_LENGTH (i) = -1;
737                                        REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
738                                      }
739                                  });
740     }
741   timevar_pop ((extent == UPDATE_LIFE_LOCAL || blocks)
742                ? TV_LIFE_UPDATE : TV_LIFE);
743 }
744
745 /* Free the variables allocated by find_basic_blocks.
746
747    KEEP_HEAD_END_P is non-zero if basic_block_info is not to be freed.  */
748
749 void
750 free_basic_block_vars (keep_head_end_p)
751      int keep_head_end_p;
752 {
753   if (! keep_head_end_p)
754     {
755       if (basic_block_info)
756         {
757           clear_edges ();
758           VARRAY_FREE (basic_block_info);
759         }
760       n_basic_blocks = 0;
761
762       ENTRY_BLOCK_PTR->aux = NULL;
763       ENTRY_BLOCK_PTR->global_live_at_end = NULL;
764       EXIT_BLOCK_PTR->aux = NULL;
765       EXIT_BLOCK_PTR->global_live_at_start = NULL;
766     }
767 }
768
769 /* Delete any insns that copy a register to itself.  */
770
771 void
772 delete_noop_moves (f)
773      rtx f ATTRIBUTE_UNUSED;
774 {
775   int i;
776   rtx insn, next;
777   basic_block bb;
778
779   for (i = 0; i < n_basic_blocks; i++)
780     {
781       bb = BASIC_BLOCK (i);
782       for (insn = bb->head; insn != NEXT_INSN (bb->end); insn = next)
783         {
784           next = NEXT_INSN (insn);
785           if (INSN_P (insn) && noop_move_p (insn))
786             {
787               rtx note;
788
789               /* If we're about to remove the first insn of a libcall
790                  then move the libcall note to the next real insn and
791                  update the retval note.  */
792               if ((note = find_reg_note (insn, REG_LIBCALL, NULL_RTX))
793                        && XEXP (note, 0) != insn)
794                 {
795                   rtx new_libcall_insn = next_real_insn (insn);
796                   rtx retval_note = find_reg_note (XEXP (note, 0),
797                                                    REG_RETVAL, NULL_RTX);
798                   REG_NOTES (new_libcall_insn)
799                     = gen_rtx_INSN_LIST (REG_LIBCALL, XEXP (note, 0),
800                                          REG_NOTES (new_libcall_insn));
801                   XEXP (retval_note, 0) = new_libcall_insn;
802                 }
803
804               /* Do not call delete_insn here since that may change
805                  the basic block boundaries which upsets some callers.  */
806               PUT_CODE (insn, NOTE);
807               NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
808               NOTE_SOURCE_FILE (insn) = 0;
809             }
810         }
811     }
812 }
813
814 /* Delete any jump tables never referenced.  We can't delete them at the
815    time of removing tablejump insn as they are referenced by the preceding
816    insns computing the destination, so we delay deleting and garbagecollect
817    them once life information is computed.  */
818 static void
819 delete_dead_jumptables ()
820 {
821   rtx insn, next;
822   for (insn = get_insns (); insn; insn = next)
823     {
824       next = NEXT_INSN (insn);
825       if (GET_CODE (insn) == CODE_LABEL
826           && LABEL_NUSES (insn) == LABEL_PRESERVE_P (insn)
827           && GET_CODE (next) == JUMP_INSN
828           && (GET_CODE (PATTERN (next)) == ADDR_VEC
829               || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
830         {
831           if (rtl_dump_file)
832             fprintf (rtl_dump_file, "Dead jumptable %i removed\n", INSN_UID (insn));
833           delete_insn (NEXT_INSN (insn));
834           delete_insn (insn);
835           next = NEXT_INSN (next);
836         }
837     }
838 }
839
840 /* Determine if the stack pointer is constant over the life of the function.
841    Only useful before prologues have been emitted.  */
842
843 static void
844 notice_stack_pointer_modification_1 (x, pat, data)
845      rtx x;
846      rtx pat ATTRIBUTE_UNUSED;
847      void *data ATTRIBUTE_UNUSED;
848 {
849   if (x == stack_pointer_rtx
850       /* The stack pointer is only modified indirectly as the result
851          of a push until later in flow.  See the comments in rtl.texi
852          regarding Embedded Side-Effects on Addresses.  */
853       || (GET_CODE (x) == MEM
854           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == 'a'
855           && XEXP (XEXP (x, 0), 0) == stack_pointer_rtx))
856     current_function_sp_is_unchanging = 0;
857 }
858
859 static void
860 notice_stack_pointer_modification (f)
861      rtx f;
862 {
863   rtx insn;
864
865   /* Assume that the stack pointer is unchanging if alloca hasn't
866      been used.  */
867   current_function_sp_is_unchanging = !current_function_calls_alloca;
868   if (! current_function_sp_is_unchanging)
869     return;
870
871   for (insn = f; insn; insn = NEXT_INSN (insn))
872     {
873       if (INSN_P (insn))
874         {
875           /* Check if insn modifies the stack pointer.  */
876           note_stores (PATTERN (insn), notice_stack_pointer_modification_1,
877                        NULL);
878           if (! current_function_sp_is_unchanging)
879             return;
880         }
881     }
882 }
883
884 /* Mark a register in SET.  Hard registers in large modes get all
885    of their component registers set as well.  */
886
887 static void
888 mark_reg (reg, xset)
889      rtx reg;
890      void *xset;
891 {
892   regset set = (regset) xset;
893   int regno = REGNO (reg);
894
895   if (GET_MODE (reg) == BLKmode)
896     abort ();
897
898   SET_REGNO_REG_SET (set, regno);
899   if (regno < FIRST_PSEUDO_REGISTER)
900     {
901       int n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
902       while (--n > 0)
903         SET_REGNO_REG_SET (set, regno + n);
904     }
905 }
906
907 /* Mark those regs which are needed at the end of the function as live
908    at the end of the last basic block.  */
909
910 static void
911 mark_regs_live_at_end (set)
912      regset set;
913 {
914   unsigned int i;
915
916   /* If exiting needs the right stack value, consider the stack pointer
917      live at the end of the function.  */
918   if ((HAVE_epilogue && reload_completed)
919       || ! EXIT_IGNORE_STACK
920       || (! FRAME_POINTER_REQUIRED
921           && ! current_function_calls_alloca
922           && flag_omit_frame_pointer)
923       || current_function_sp_is_unchanging)
924     {
925       SET_REGNO_REG_SET (set, STACK_POINTER_REGNUM);
926     }
927
928   /* Mark the frame pointer if needed at the end of the function.  If
929      we end up eliminating it, it will be removed from the live list
930      of each basic block by reload.  */
931
932   if (! reload_completed || frame_pointer_needed)
933     {
934       SET_REGNO_REG_SET (set, FRAME_POINTER_REGNUM);
935 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
936       /* If they are different, also mark the hard frame pointer as live.  */
937       if (! LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM))
938         SET_REGNO_REG_SET (set, HARD_FRAME_POINTER_REGNUM);
939 #endif
940     }
941
942 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
943   /* Many architectures have a GP register even without flag_pic.
944      Assume the pic register is not in use, or will be handled by
945      other means, if it is not fixed.  */
946   if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
947       && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
948     SET_REGNO_REG_SET (set, PIC_OFFSET_TABLE_REGNUM);
949 #endif
950
951   /* Mark all global registers, and all registers used by the epilogue
952      as being live at the end of the function since they may be
953      referenced by our caller.  */
954   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
955     if (global_regs[i] || EPILOGUE_USES (i))
956       SET_REGNO_REG_SET (set, i);
957
958   if (HAVE_epilogue && reload_completed)
959     {
960       /* Mark all call-saved registers that we actually used.  */
961       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
962         if (regs_ever_live[i] && ! LOCAL_REGNO (i)
963             && ! TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
964           SET_REGNO_REG_SET (set, i);
965     }
966
967 #ifdef EH_RETURN_DATA_REGNO
968   /* Mark the registers that will contain data for the handler.  */
969   if (reload_completed && current_function_calls_eh_return)
970     for (i = 0; ; ++i)
971       {
972         unsigned regno = EH_RETURN_DATA_REGNO(i);
973         if (regno == INVALID_REGNUM)
974           break;
975         SET_REGNO_REG_SET (set, regno);
976       }
977 #endif
978 #ifdef EH_RETURN_STACKADJ_RTX
979   if ((! HAVE_epilogue || ! reload_completed)
980       && current_function_calls_eh_return)
981     {
982       rtx tmp = EH_RETURN_STACKADJ_RTX;
983       if (tmp && REG_P (tmp))
984         mark_reg (tmp, set);
985     }
986 #endif
987 #ifdef EH_RETURN_HANDLER_RTX
988   if ((! HAVE_epilogue || ! reload_completed)
989       && current_function_calls_eh_return)
990     {
991       rtx tmp = EH_RETURN_HANDLER_RTX;
992       if (tmp && REG_P (tmp))
993         mark_reg (tmp, set);
994     }
995 #endif
996
997   /* Mark function return value.  */
998   diddle_return_value (mark_reg, set);
999 }
1000
1001 /* Callback function for for_each_successor_phi.  DATA is a regset.
1002    Sets the SRC_REGNO, the regno of the phi alternative for phi node
1003    INSN, in the regset.  */
1004
1005 static int
1006 set_phi_alternative_reg (insn, dest_regno, src_regno, data)
1007      rtx insn ATTRIBUTE_UNUSED;
1008      int dest_regno ATTRIBUTE_UNUSED;
1009      int src_regno;
1010      void *data;
1011 {
1012   regset live = (regset) data;
1013   SET_REGNO_REG_SET (live, src_regno);
1014   return 0;
1015 }
1016
1017 /* Propagate global life info around the graph of basic blocks.  Begin
1018    considering blocks with their corresponding bit set in BLOCKS_IN.
1019    If BLOCKS_IN is null, consider it the universal set.
1020
1021    BLOCKS_OUT is set for every block that was changed.  */
1022
1023 static void
1024 calculate_global_regs_live (blocks_in, blocks_out, flags)
1025      sbitmap blocks_in, blocks_out;
1026      int flags;
1027 {
1028   basic_block *queue, *qhead, *qtail, *qend;
1029   regset tmp, new_live_at_end, call_used;
1030   regset_head tmp_head, call_used_head;
1031   regset_head new_live_at_end_head;
1032   int i;
1033
1034   tmp = INITIALIZE_REG_SET (tmp_head);
1035   new_live_at_end = INITIALIZE_REG_SET (new_live_at_end_head);
1036   call_used = INITIALIZE_REG_SET (call_used_head);
1037
1038   /* Inconveniently, this is only readily available in hard reg set form.  */
1039   for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
1040     if (call_used_regs[i])
1041       SET_REGNO_REG_SET (call_used, i);
1042
1043   /* Create a worklist.  Allocate an extra slot for ENTRY_BLOCK, and one
1044      because the `head == tail' style test for an empty queue doesn't
1045      work with a full queue.  */
1046   queue = (basic_block *) xmalloc ((n_basic_blocks + 2) * sizeof (*queue));
1047   qtail = queue;
1048   qhead = qend = queue + n_basic_blocks + 2;
1049
1050   /* Queue the blocks set in the initial mask.  Do this in reverse block
1051      number order so that we are more likely for the first round to do
1052      useful work.  We use AUX non-null to flag that the block is queued.  */
1053   if (blocks_in)
1054     {
1055       /* Clear out the garbage that might be hanging out in bb->aux.  */
1056       for (i = n_basic_blocks - 1; i >= 0; --i)
1057         BASIC_BLOCK (i)->aux = NULL;
1058
1059       EXECUTE_IF_SET_IN_SBITMAP (blocks_in, 0, i,
1060         {
1061           basic_block bb = BASIC_BLOCK (i);
1062           *--qhead = bb;
1063           bb->aux = bb;
1064         });
1065     }
1066   else
1067     {
1068       for (i = 0; i < n_basic_blocks; ++i)
1069         {
1070           basic_block bb = BASIC_BLOCK (i);
1071           *--qhead = bb;
1072           bb->aux = bb;
1073         }
1074     }
1075
1076   if (blocks_out)
1077     sbitmap_zero (blocks_out);
1078
1079   /* We work through the queue until there are no more blocks.  What
1080      is live at the end of this block is precisely the union of what
1081      is live at the beginning of all its successors.  So, we set its
1082      GLOBAL_LIVE_AT_END field based on the GLOBAL_LIVE_AT_START field
1083      for its successors.  Then, we compute GLOBAL_LIVE_AT_START for
1084      this block by walking through the instructions in this block in
1085      reverse order and updating as we go.  If that changed
1086      GLOBAL_LIVE_AT_START, we add the predecessors of the block to the
1087      queue; they will now need to recalculate GLOBAL_LIVE_AT_END.
1088
1089      We are guaranteed to terminate, because GLOBAL_LIVE_AT_START
1090      never shrinks.  If a register appears in GLOBAL_LIVE_AT_START, it
1091      must either be live at the end of the block, or used within the
1092      block.  In the latter case, it will certainly never disappear
1093      from GLOBAL_LIVE_AT_START.  In the former case, the register
1094      could go away only if it disappeared from GLOBAL_LIVE_AT_START
1095      for one of the successor blocks.  By induction, that cannot
1096      occur.  */
1097   while (qhead != qtail)
1098     {
1099       int rescan, changed;
1100       basic_block bb;
1101       edge e;
1102
1103       bb = *qhead++;
1104       if (qhead == qend)
1105         qhead = queue;
1106       bb->aux = NULL;
1107
1108       /* Begin by propagating live_at_start from the successor blocks.  */
1109       CLEAR_REG_SET (new_live_at_end);
1110       for (e = bb->succ; e; e = e->succ_next)
1111         {
1112           basic_block sb = e->dest;
1113
1114           /* Call-clobbered registers die across exception and call edges.  */
1115           /* ??? Abnormal call edges ignored for the moment, as this gets
1116              confused by sibling call edges, which crashes reg-stack.  */
1117           if (e->flags & EDGE_EH)
1118             {
1119               bitmap_operation (tmp, sb->global_live_at_start,
1120                                 call_used, BITMAP_AND_COMPL);
1121               IOR_REG_SET (new_live_at_end, tmp);
1122             }
1123           else
1124             IOR_REG_SET (new_live_at_end, sb->global_live_at_start);
1125         }
1126
1127       /* The all-important stack pointer must always be live.  */
1128       SET_REGNO_REG_SET (new_live_at_end, STACK_POINTER_REGNUM);
1129
1130       /* Before reload, there are a few registers that must be forced
1131          live everywhere -- which might not already be the case for
1132          blocks within infinite loops.  */
1133       if (! reload_completed)
1134         {
1135           /* Any reference to any pseudo before reload is a potential
1136              reference of the frame pointer.  */
1137           SET_REGNO_REG_SET (new_live_at_end, FRAME_POINTER_REGNUM);
1138
1139 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1140           /* Pseudos with argument area equivalences may require
1141              reloading via the argument pointer.  */
1142           if (fixed_regs[ARG_POINTER_REGNUM])
1143             SET_REGNO_REG_SET (new_live_at_end, ARG_POINTER_REGNUM);
1144 #endif
1145
1146           /* Any constant, or pseudo with constant equivalences, may
1147              require reloading from memory using the pic register.  */
1148           if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
1149               && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
1150             SET_REGNO_REG_SET (new_live_at_end, PIC_OFFSET_TABLE_REGNUM);
1151         }
1152
1153       /* Regs used in phi nodes are not included in
1154          global_live_at_start, since they are live only along a
1155          particular edge.  Set those regs that are live because of a
1156          phi node alternative corresponding to this particular block.  */
1157       if (in_ssa_form)
1158         for_each_successor_phi (bb, &set_phi_alternative_reg,
1159                                 new_live_at_end);
1160
1161       if (bb == ENTRY_BLOCK_PTR)
1162         {
1163           COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
1164           continue;
1165         }
1166
1167       /* On our first pass through this block, we'll go ahead and continue.
1168          Recognize first pass by local_set NULL.  On subsequent passes, we
1169          get to skip out early if live_at_end wouldn't have changed.  */
1170
1171       if (bb->local_set == NULL)
1172         {
1173           bb->local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1174           bb->cond_local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1175           rescan = 1;
1176         }
1177       else
1178         {
1179           /* If any bits were removed from live_at_end, we'll have to
1180              rescan the block.  This wouldn't be necessary if we had
1181              precalculated local_live, however with PROP_SCAN_DEAD_CODE
1182              local_live is really dependent on live_at_end.  */
1183           CLEAR_REG_SET (tmp);
1184           rescan = bitmap_operation (tmp, bb->global_live_at_end,
1185                                      new_live_at_end, BITMAP_AND_COMPL);
1186
1187           if (! rescan)
1188             {
1189               /* If any of the registers in the new live_at_end set are
1190                  conditionally set in this basic block, we must rescan.
1191                  This is because conditional lifetimes at the end of the
1192                  block do not just take the live_at_end set into account,
1193                  but also the liveness at the start of each successor
1194                  block.  We can miss changes in those sets if we only
1195                  compare the new live_at_end against the previous one.  */
1196               CLEAR_REG_SET (tmp);
1197               rescan = bitmap_operation (tmp, new_live_at_end,
1198                                          bb->cond_local_set, BITMAP_AND);
1199             }
1200
1201           if (! rescan)
1202             {
1203               /* Find the set of changed bits.  Take this opportunity
1204                  to notice that this set is empty and early out.  */
1205               CLEAR_REG_SET (tmp);
1206               changed = bitmap_operation (tmp, bb->global_live_at_end,
1207                                           new_live_at_end, BITMAP_XOR);
1208               if (! changed)
1209                 continue;
1210
1211               /* If any of the changed bits overlap with local_set,
1212                  we'll have to rescan the block.  Detect overlap by
1213                  the AND with ~local_set turning off bits.  */
1214               rescan = bitmap_operation (tmp, tmp, bb->local_set,
1215                                          BITMAP_AND_COMPL);
1216             }
1217         }
1218
1219       /* Let our caller know that BB changed enough to require its
1220          death notes updated.  */
1221       if (blocks_out)
1222         SET_BIT (blocks_out, bb->index);
1223
1224       if (! rescan)
1225         {
1226           /* Add to live_at_start the set of all registers in
1227              new_live_at_end that aren't in the old live_at_end.  */
1228
1229           bitmap_operation (tmp, new_live_at_end, bb->global_live_at_end,
1230                             BITMAP_AND_COMPL);
1231           COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
1232
1233           changed = bitmap_operation (bb->global_live_at_start,
1234                                       bb->global_live_at_start,
1235                                       tmp, BITMAP_IOR);
1236           if (! changed)
1237             continue;
1238         }
1239       else
1240         {
1241           COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
1242
1243           /* Rescan the block insn by insn to turn (a copy of) live_at_end
1244              into live_at_start.  */
1245           propagate_block (bb, new_live_at_end, bb->local_set,
1246                            bb->cond_local_set, flags);
1247
1248           /* If live_at start didn't change, no need to go farther.  */
1249           if (REG_SET_EQUAL_P (bb->global_live_at_start, new_live_at_end))
1250             continue;
1251
1252           COPY_REG_SET (bb->global_live_at_start, new_live_at_end);
1253         }
1254
1255       /* Queue all predecessors of BB so that we may re-examine
1256          their live_at_end.  */
1257       for (e = bb->pred; e; e = e->pred_next)
1258         {
1259           basic_block pb = e->src;
1260           if (pb->aux == NULL)
1261             {
1262               *qtail++ = pb;
1263               if (qtail == qend)
1264                 qtail = queue;
1265               pb->aux = pb;
1266             }
1267         }
1268     }
1269
1270   FREE_REG_SET (tmp);
1271   FREE_REG_SET (new_live_at_end);
1272   FREE_REG_SET (call_used);
1273
1274   if (blocks_out)
1275     {
1276       EXECUTE_IF_SET_IN_SBITMAP (blocks_out, 0, i,
1277         {
1278           basic_block bb = BASIC_BLOCK (i);
1279           FREE_REG_SET (bb->local_set);
1280           FREE_REG_SET (bb->cond_local_set);
1281         });
1282     }
1283   else
1284     {
1285       for (i = n_basic_blocks - 1; i >= 0; --i)
1286         {
1287           basic_block bb = BASIC_BLOCK (i);
1288           FREE_REG_SET (bb->local_set);
1289           FREE_REG_SET (bb->cond_local_set);
1290         }
1291     }
1292
1293   free (queue);
1294 }
1295
1296 \f
1297 /* This structure is used to pass parameters to an from the
1298    the function find_regno_partial(). It is used to pass in the
1299    register number we are looking, as well as to return any rtx
1300    we find.  */
1301
1302 typedef struct {
1303   unsigned regno_to_find;
1304   rtx retval;
1305 } find_regno_partial_param;
1306
1307
1308 /* Find the rtx for the reg numbers specified in 'data' if it is
1309    part of an expression which only uses part of the register.  Return
1310    it in the structure passed in.  */
1311 static int
1312 find_regno_partial (ptr, data)
1313      rtx *ptr;
1314      void *data;
1315 {
1316   find_regno_partial_param *param = (find_regno_partial_param *)data;
1317   unsigned reg = param->regno_to_find;
1318   param->retval = NULL_RTX;
1319
1320   if (*ptr == NULL_RTX)
1321     return 0;
1322
1323   switch (GET_CODE (*ptr))
1324     {
1325     case ZERO_EXTRACT:
1326     case SIGN_EXTRACT:
1327     case STRICT_LOW_PART:
1328       if (GET_CODE (XEXP (*ptr, 0)) == REG && REGNO (XEXP (*ptr, 0)) == reg)
1329         {
1330           param->retval = XEXP (*ptr, 0);
1331           return 1;
1332         }
1333       break;
1334
1335     case SUBREG:
1336       if (GET_CODE (SUBREG_REG (*ptr)) == REG
1337           && REGNO (SUBREG_REG (*ptr)) == reg)
1338         {
1339           param->retval = SUBREG_REG (*ptr);
1340           return 1;
1341         }
1342       break;
1343
1344     default:
1345       break;
1346     }
1347
1348   return 0;
1349 }
1350
1351 /* Process all immediate successors of the entry block looking for pseudo
1352    registers which are live on entry. Find all of those whose first
1353    instance is a partial register reference of some kind, and initialize
1354    them to 0 after the entry block.  This will prevent bit sets within
1355    registers whose value is unknown, and may contain some kind of sticky
1356    bits we don't want.  */
1357
1358 int
1359 initialize_uninitialized_subregs ()
1360 {
1361   rtx insn;
1362   edge e;
1363   int reg, did_something = 0;
1364   find_regno_partial_param param;
1365
1366   for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
1367     {
1368       basic_block bb = e->dest;
1369       regset map = bb->global_live_at_start;
1370       EXECUTE_IF_SET_IN_REG_SET (map,
1371                                  FIRST_PSEUDO_REGISTER, reg,
1372         {
1373           int uid = REGNO_FIRST_UID (reg);
1374           rtx i;
1375
1376           /* Find an insn which mentions the register we are looking for.
1377              Its preferable to have an instance of the register's rtl since
1378              there may be various flags set which we need to duplicate.
1379              If we can't find it, its probably an automatic whose initial
1380              value doesn't matter, or hopefully something we don't care about.  */
1381           for (i = get_insns (); i && INSN_UID (i) != uid; i = NEXT_INSN (i))
1382             ;
1383           if (i != NULL_RTX)
1384             {
1385               /* Found the insn, now get the REG rtx, if we can.  */
1386               param.regno_to_find = reg;
1387               for_each_rtx (&i, find_regno_partial, &param);
1388               if (param.retval != NULL_RTX)
1389                 {
1390                   insn = gen_move_insn (param.retval,
1391                                         CONST0_RTX (GET_MODE (param.retval)));
1392                   insert_insn_on_edge (insn, e);
1393                   did_something = 1;
1394                 }
1395             }
1396         });
1397     }
1398
1399   if (did_something)
1400     commit_edge_insertions ();
1401   return did_something;
1402 }
1403
1404 \f
1405 /* Subroutines of life analysis.  */
1406
1407 /* Allocate the permanent data structures that represent the results
1408    of life analysis.  Not static since used also for stupid life analysis.  */
1409
1410 void
1411 allocate_bb_life_data ()
1412 {
1413   int i;
1414
1415   for (i = 0; i < n_basic_blocks; i++)
1416     {
1417       basic_block bb = BASIC_BLOCK (i);
1418
1419       bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1420       bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1421     }
1422
1423   ENTRY_BLOCK_PTR->global_live_at_end
1424     = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1425   EXIT_BLOCK_PTR->global_live_at_start
1426     = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1427
1428   regs_live_at_setjmp = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1429 }
1430
1431 void
1432 allocate_reg_life_data ()
1433 {
1434   int i;
1435
1436   max_regno = max_reg_num ();
1437
1438   /* Recalculate the register space, in case it has grown.  Old style
1439      vector oriented regsets would set regset_{size,bytes} here also.  */
1440   allocate_reg_info (max_regno, FALSE, FALSE);
1441
1442   /* Reset all the data we'll collect in propagate_block and its
1443      subroutines.  */
1444   for (i = 0; i < max_regno; i++)
1445     {
1446       REG_N_SETS (i) = 0;
1447       REG_N_REFS (i) = 0;
1448       REG_N_DEATHS (i) = 0;
1449       REG_N_CALLS_CROSSED (i) = 0;
1450       REG_LIVE_LENGTH (i) = 0;
1451       REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
1452     }
1453 }
1454
1455 /* Delete dead instructions for propagate_block.  */
1456
1457 static void
1458 propagate_block_delete_insn (bb, insn)
1459      basic_block bb;
1460      rtx insn;
1461 {
1462   rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
1463   bool purge = false;
1464
1465   /* If the insn referred to a label, and that label was attached to
1466      an ADDR_VEC, it's safe to delete the ADDR_VEC.  In fact, it's
1467      pretty much mandatory to delete it, because the ADDR_VEC may be
1468      referencing labels that no longer exist.
1469
1470      INSN may reference a deleted label, particularly when a jump
1471      table has been optimized into a direct jump.  There's no
1472      real good way to fix up the reference to the deleted label
1473      when the label is deleted, so we just allow it here.
1474
1475      After dead code elimination is complete, we do search for
1476      any REG_LABEL notes which reference deleted labels as a
1477      sanity check.  */
1478
1479   if (inote && GET_CODE (inote) == CODE_LABEL)
1480     {
1481       rtx label = XEXP (inote, 0);
1482       rtx next;
1483
1484       /* The label may be forced if it has been put in the constant
1485          pool.  If that is the only use we must discard the table
1486          jump following it, but not the label itself.  */
1487       if (LABEL_NUSES (label) == 1 + LABEL_PRESERVE_P (label)
1488           && (next = next_nonnote_insn (label)) != NULL
1489           && GET_CODE (next) == JUMP_INSN
1490           && (GET_CODE (PATTERN (next)) == ADDR_VEC
1491               || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
1492         {
1493           rtx pat = PATTERN (next);
1494           int diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
1495           int len = XVECLEN (pat, diff_vec_p);
1496           int i;
1497
1498           for (i = 0; i < len; i++)
1499             LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))--;
1500
1501           delete_insn (next);
1502         }
1503     }
1504
1505   if (bb->end == insn)
1506     purge = true;
1507   delete_insn (insn);
1508   if (purge)
1509     purge_dead_edges (bb);
1510 }
1511
1512 /* Delete dead libcalls for propagate_block.  Return the insn
1513    before the libcall.  */
1514
1515 static rtx
1516 propagate_block_delete_libcall ( insn, note)
1517      rtx insn, note;
1518 {
1519   rtx first = XEXP (note, 0);
1520   rtx before = PREV_INSN (first);
1521
1522   delete_insn_chain (first, insn);
1523   return before;
1524 }
1525
1526 /* Update the life-status of regs for one insn.  Return the previous insn.  */
1527
1528 rtx
1529 propagate_one_insn (pbi, insn)
1530      struct propagate_block_info *pbi;
1531      rtx insn;
1532 {
1533   rtx prev = PREV_INSN (insn);
1534   int flags = pbi->flags;
1535   int insn_is_dead = 0;
1536   int libcall_is_dead = 0;
1537   rtx note;
1538   int i;
1539
1540   if (! INSN_P (insn))
1541     return prev;
1542
1543   note = find_reg_note (insn, REG_RETVAL, NULL_RTX);
1544   if (flags & PROP_SCAN_DEAD_CODE)
1545     {
1546       insn_is_dead = insn_dead_p (pbi, PATTERN (insn), 0, REG_NOTES (insn));
1547       libcall_is_dead = (insn_is_dead && note != 0
1548                          && libcall_dead_p (pbi, note, insn));
1549     }
1550
1551   /* If an instruction consists of just dead store(s) on final pass,
1552      delete it.  */
1553   if ((flags & PROP_KILL_DEAD_CODE) && insn_is_dead)
1554     {
1555       /* If we're trying to delete a prologue or epilogue instruction
1556          that isn't flagged as possibly being dead, something is wrong.
1557          But if we are keeping the stack pointer depressed, we might well
1558          be deleting insns that are used to compute the amount to update
1559          it by, so they are fine.  */
1560       if (reload_completed
1561           && !(TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
1562                 && (TYPE_RETURNS_STACK_DEPRESSED
1563                     (TREE_TYPE (current_function_decl))))
1564           && (((HAVE_epilogue || HAVE_prologue)
1565                && prologue_epilogue_contains (insn))
1566               || (HAVE_sibcall_epilogue
1567                   && sibcall_epilogue_contains (insn)))
1568           && find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
1569         fatal_insn ("Attempt to delete prologue/epilogue insn:", insn);
1570
1571       /* Record sets.  Do this even for dead instructions, since they
1572          would have killed the values if they hadn't been deleted.  */
1573       mark_set_regs (pbi, PATTERN (insn), insn);
1574
1575       /* CC0 is now known to be dead.  Either this insn used it,
1576          in which case it doesn't anymore, or clobbered it,
1577          so the next insn can't use it.  */
1578       pbi->cc0_live = 0;
1579
1580       if (libcall_is_dead)
1581         prev = propagate_block_delete_libcall ( insn, note);
1582       else
1583         propagate_block_delete_insn (pbi->bb, insn);
1584
1585       return prev;
1586     }
1587
1588   /* See if this is an increment or decrement that can be merged into
1589      a following memory address.  */
1590 #ifdef AUTO_INC_DEC
1591   {
1592     rtx x = single_set (insn);
1593
1594     /* Does this instruction increment or decrement a register?  */
1595     if ((flags & PROP_AUTOINC)
1596         && x != 0
1597         && GET_CODE (SET_DEST (x)) == REG
1598         && (GET_CODE (SET_SRC (x)) == PLUS
1599             || GET_CODE (SET_SRC (x)) == MINUS)
1600         && XEXP (SET_SRC (x), 0) == SET_DEST (x)
1601         && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
1602         /* Ok, look for a following memory ref we can combine with.
1603            If one is found, change the memory ref to a PRE_INC
1604            or PRE_DEC, cancel this insn, and return 1.
1605            Return 0 if nothing has been done.  */
1606         && try_pre_increment_1 (pbi, insn))
1607       return prev;
1608   }
1609 #endif /* AUTO_INC_DEC */
1610
1611   CLEAR_REG_SET (pbi->new_set);
1612
1613   /* If this is not the final pass, and this insn is copying the value of
1614      a library call and it's dead, don't scan the insns that perform the
1615      library call, so that the call's arguments are not marked live.  */
1616   if (libcall_is_dead)
1617     {
1618       /* Record the death of the dest reg.  */
1619       mark_set_regs (pbi, PATTERN (insn), insn);
1620
1621       insn = XEXP (note, 0);
1622       return PREV_INSN (insn);
1623     }
1624   else if (GET_CODE (PATTERN (insn)) == SET
1625            && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
1626            && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
1627            && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
1628            && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
1629     /* We have an insn to pop a constant amount off the stack.
1630        (Such insns use PLUS regardless of the direction of the stack,
1631        and any insn to adjust the stack by a constant is always a pop.)
1632        These insns, if not dead stores, have no effect on life.  */
1633     ;
1634   else
1635     {
1636       /* Any regs live at the time of a call instruction must not go
1637          in a register clobbered by calls.  Find all regs now live and
1638          record this for them.  */
1639
1640       if (GET_CODE (insn) == CALL_INSN && (flags & PROP_REG_INFO))
1641         EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
1642                                    { REG_N_CALLS_CROSSED (i)++; });
1643
1644       /* Record sets.  Do this even for dead instructions, since they
1645          would have killed the values if they hadn't been deleted.  */
1646       mark_set_regs (pbi, PATTERN (insn), insn);
1647
1648       if (GET_CODE (insn) == CALL_INSN)
1649         {
1650           int i;
1651           rtx note, cond;
1652
1653           cond = NULL_RTX;
1654           if (GET_CODE (PATTERN (insn)) == COND_EXEC)
1655             cond = COND_EXEC_TEST (PATTERN (insn));
1656
1657           /* Non-constant calls clobber memory.  */
1658           if (! CONST_OR_PURE_CALL_P (insn))
1659             {
1660               free_EXPR_LIST_list (&pbi->mem_set_list);
1661               pbi->mem_set_list_len = 0;
1662             }
1663
1664           /* There may be extra registers to be clobbered.  */
1665           for (note = CALL_INSN_FUNCTION_USAGE (insn);
1666                note;
1667                note = XEXP (note, 1))
1668             if (GET_CODE (XEXP (note, 0)) == CLOBBER)
1669               mark_set_1 (pbi, CLOBBER, XEXP (XEXP (note, 0), 0),
1670                           cond, insn, pbi->flags);
1671
1672           /* Calls change all call-used and global registers.  */
1673           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1674             if (TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
1675               {
1676                 /* We do not want REG_UNUSED notes for these registers.  */
1677                 mark_set_1 (pbi, CLOBBER, gen_rtx_REG (reg_raw_mode[i], i),
1678                             cond, insn,
1679                             pbi->flags & ~(PROP_DEATH_NOTES | PROP_REG_INFO));
1680               }
1681         }
1682
1683       /* If an insn doesn't use CC0, it becomes dead since we assume
1684          that every insn clobbers it.  So show it dead here;
1685          mark_used_regs will set it live if it is referenced.  */
1686       pbi->cc0_live = 0;
1687
1688       /* Record uses.  */
1689       if (! insn_is_dead)
1690         mark_used_regs (pbi, PATTERN (insn), NULL_RTX, insn);
1691
1692       /* Sometimes we may have inserted something before INSN (such as a move)
1693          when we make an auto-inc.  So ensure we will scan those insns.  */
1694 #ifdef AUTO_INC_DEC
1695       prev = PREV_INSN (insn);
1696 #endif
1697
1698       if (! insn_is_dead && GET_CODE (insn) == CALL_INSN)
1699         {
1700           int i;
1701           rtx note, cond;
1702
1703           cond = NULL_RTX;
1704           if (GET_CODE (PATTERN (insn)) == COND_EXEC)
1705             cond = COND_EXEC_TEST (PATTERN (insn));
1706
1707           /* Calls use their arguments.  */
1708           for (note = CALL_INSN_FUNCTION_USAGE (insn);
1709                note;
1710                note = XEXP (note, 1))
1711             if (GET_CODE (XEXP (note, 0)) == USE)
1712               mark_used_regs (pbi, XEXP (XEXP (note, 0), 0),
1713                               cond, insn);
1714
1715           /* The stack ptr is used (honorarily) by a CALL insn.  */
1716           SET_REGNO_REG_SET (pbi->reg_live, STACK_POINTER_REGNUM);
1717
1718           /* Calls may also reference any of the global registers,
1719              so they are made live.  */
1720           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1721             if (global_regs[i])
1722               mark_used_reg (pbi, gen_rtx_REG (reg_raw_mode[i], i),
1723                              cond, insn);
1724         }
1725     }
1726
1727   /* On final pass, update counts of how many insns in which each reg
1728      is live.  */
1729   if (flags & PROP_REG_INFO)
1730     EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
1731                                { REG_LIVE_LENGTH (i)++; });
1732
1733   return prev;
1734 }
1735
1736 /* Initialize a propagate_block_info struct for public consumption.
1737    Note that the structure itself is opaque to this file, but that
1738    the user can use the regsets provided here.  */
1739
1740 struct propagate_block_info *
1741 init_propagate_block_info (bb, live, local_set, cond_local_set, flags)
1742      basic_block bb;
1743      regset live, local_set, cond_local_set;
1744      int flags;
1745 {
1746   struct propagate_block_info *pbi = xmalloc (sizeof (*pbi));
1747
1748   pbi->bb = bb;
1749   pbi->reg_live = live;
1750   pbi->mem_set_list = NULL_RTX;
1751   pbi->mem_set_list_len = 0;
1752   pbi->local_set = local_set;
1753   pbi->cond_local_set = cond_local_set;
1754   pbi->cc0_live = 0;
1755   pbi->flags = flags;
1756
1757   if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
1758     pbi->reg_next_use = (rtx *) xcalloc (max_reg_num (), sizeof (rtx));
1759   else
1760     pbi->reg_next_use = NULL;
1761
1762   pbi->new_set = BITMAP_XMALLOC ();
1763
1764 #ifdef HAVE_conditional_execution
1765   pbi->reg_cond_dead = splay_tree_new (splay_tree_compare_ints, NULL,
1766                                        free_reg_cond_life_info);
1767   pbi->reg_cond_reg = BITMAP_XMALLOC ();
1768
1769   /* If this block ends in a conditional branch, for each register live
1770      from one side of the branch and not the other, record the register
1771      as conditionally dead.  */
1772   if (GET_CODE (bb->end) == JUMP_INSN
1773       && any_condjump_p (bb->end))
1774     {
1775       regset_head diff_head;
1776       regset diff = INITIALIZE_REG_SET (diff_head);
1777       basic_block bb_true, bb_false;
1778       rtx cond_true, cond_false, set_src;
1779       int i;
1780
1781       /* Identify the successor blocks.  */
1782       bb_true = bb->succ->dest;
1783       if (bb->succ->succ_next != NULL)
1784         {
1785           bb_false = bb->succ->succ_next->dest;
1786
1787           if (bb->succ->flags & EDGE_FALLTHRU)
1788             {
1789               basic_block t = bb_false;
1790               bb_false = bb_true;
1791               bb_true = t;
1792             }
1793           else if (! (bb->succ->succ_next->flags & EDGE_FALLTHRU))
1794             abort ();
1795         }
1796       else
1797         {
1798           /* This can happen with a conditional jump to the next insn.  */
1799           if (JUMP_LABEL (bb->end) != bb_true->head)
1800             abort ();
1801
1802           /* Simplest way to do nothing.  */
1803           bb_false = bb_true;
1804         }
1805
1806       /* Extract the condition from the branch.  */
1807       set_src = SET_SRC (pc_set (bb->end));
1808       cond_true = XEXP (set_src, 0);
1809       cond_false = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond_true)),
1810                                    GET_MODE (cond_true), XEXP (cond_true, 0),
1811                                    XEXP (cond_true, 1));
1812       if (GET_CODE (XEXP (set_src, 1)) == PC)
1813         {
1814           rtx t = cond_false;
1815           cond_false = cond_true;
1816           cond_true = t;
1817         }
1818
1819       /* Compute which register lead different lives in the successors.  */
1820       if (bitmap_operation (diff, bb_true->global_live_at_start,
1821                             bb_false->global_live_at_start, BITMAP_XOR))
1822         {
1823           rtx reg = XEXP (cond_true, 0);
1824
1825           if (GET_CODE (reg) == SUBREG)
1826             reg = SUBREG_REG (reg);
1827
1828           if (GET_CODE (reg) != REG)
1829             abort ();
1830
1831           SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (reg));
1832
1833           /* For each such register, mark it conditionally dead.  */
1834           EXECUTE_IF_SET_IN_REG_SET
1835             (diff, 0, i,
1836              {
1837                struct reg_cond_life_info *rcli;
1838                rtx cond;
1839
1840                rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
1841
1842                if (REGNO_REG_SET_P (bb_true->global_live_at_start, i))
1843                  cond = cond_false;
1844                else
1845                  cond = cond_true;
1846                rcli->condition = cond;
1847                rcli->stores = const0_rtx;
1848                rcli->orig_condition = cond;
1849
1850                splay_tree_insert (pbi->reg_cond_dead, i,
1851                                   (splay_tree_value) rcli);
1852              });
1853         }
1854
1855       FREE_REG_SET (diff);
1856     }
1857 #endif
1858
1859   /* If this block has no successors, any stores to the frame that aren't
1860      used later in the block are dead.  So make a pass over the block
1861      recording any such that are made and show them dead at the end.  We do
1862      a very conservative and simple job here.  */
1863   if (optimize
1864       && ! (TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
1865             && (TYPE_RETURNS_STACK_DEPRESSED
1866                 (TREE_TYPE (current_function_decl))))
1867       && (flags & PROP_SCAN_DEAD_CODE)
1868       && (bb->succ == NULL
1869           || (bb->succ->succ_next == NULL
1870               && bb->succ->dest == EXIT_BLOCK_PTR
1871               && ! current_function_calls_eh_return)))
1872     {
1873       rtx insn, set;
1874       for (insn = bb->end; insn != bb->head; insn = PREV_INSN (insn))
1875         if (GET_CODE (insn) == INSN
1876             && (set = single_set (insn))
1877             && GET_CODE (SET_DEST (set)) == MEM)
1878           {
1879             rtx mem = SET_DEST (set);
1880             rtx canon_mem = canon_rtx (mem);
1881
1882             /* This optimization is performed by faking a store to the
1883                memory at the end of the block.  This doesn't work for
1884                unchanging memories because multiple stores to unchanging
1885                memory is illegal and alias analysis doesn't consider it.  */
1886             if (RTX_UNCHANGING_P (canon_mem))
1887               continue;
1888
1889             if (XEXP (canon_mem, 0) == frame_pointer_rtx
1890                 || (GET_CODE (XEXP (canon_mem, 0)) == PLUS
1891                     && XEXP (XEXP (canon_mem, 0), 0) == frame_pointer_rtx
1892                     && GET_CODE (XEXP (XEXP (canon_mem, 0), 1)) == CONST_INT))
1893               add_to_mem_set_list (pbi, canon_mem);
1894           }
1895     }
1896
1897   return pbi;
1898 }
1899
1900 /* Release a propagate_block_info struct.  */
1901
1902 void
1903 free_propagate_block_info (pbi)
1904      struct propagate_block_info *pbi;
1905 {
1906   free_EXPR_LIST_list (&pbi->mem_set_list);
1907
1908   BITMAP_XFREE (pbi->new_set);
1909
1910 #ifdef HAVE_conditional_execution
1911   splay_tree_delete (pbi->reg_cond_dead);
1912   BITMAP_XFREE (pbi->reg_cond_reg);
1913 #endif
1914
1915   if (pbi->reg_next_use)
1916     free (pbi->reg_next_use);
1917
1918   free (pbi);
1919 }
1920
1921 /* Compute the registers live at the beginning of a basic block BB from
1922    those live at the end.
1923
1924    When called, REG_LIVE contains those live at the end.  On return, it
1925    contains those live at the beginning.
1926
1927    LOCAL_SET, if non-null, will be set with all registers killed
1928    unconditionally by this basic block.
1929    Likewise, COND_LOCAL_SET, if non-null, will be set with all registers
1930    killed conditionally by this basic block.  If there is any unconditional
1931    set of a register, then the corresponding bit will be set in LOCAL_SET
1932    and cleared in COND_LOCAL_SET.
1933    It is valid for LOCAL_SET and COND_LOCAL_SET to be the same set.  In this
1934    case, the resulting set will be equal to the union of the two sets that
1935    would otherwise be computed.
1936
1937    Return non-zero if an INSN is deleted (i.e. by dead code removal).  */
1938
1939 int
1940 propagate_block (bb, live, local_set, cond_local_set, flags)
1941      basic_block bb;
1942      regset live;
1943      regset local_set;
1944      regset cond_local_set;
1945      int flags;
1946 {
1947   struct propagate_block_info *pbi;
1948   rtx insn, prev;
1949   int changed;
1950
1951   pbi = init_propagate_block_info (bb, live, local_set, cond_local_set, flags);
1952
1953   if (flags & PROP_REG_INFO)
1954     {
1955       int i;
1956
1957       /* Process the regs live at the end of the block.
1958          Mark them as not local to any one basic block.  */
1959       EXECUTE_IF_SET_IN_REG_SET (live, 0, i,
1960                                  { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
1961     }
1962
1963   /* Scan the block an insn at a time from end to beginning.  */
1964
1965   changed = 0;
1966   for (insn = bb->end;; insn = prev)
1967     {
1968       /* If this is a call to `setjmp' et al, warn if any
1969          non-volatile datum is live.  */
1970       if ((flags & PROP_REG_INFO)
1971           && GET_CODE (insn) == CALL_INSN
1972           && find_reg_note (insn, REG_SETJMP, NULL))
1973         IOR_REG_SET (regs_live_at_setjmp, pbi->reg_live);
1974
1975       prev = propagate_one_insn (pbi, insn);
1976       changed |= NEXT_INSN (prev) != insn;
1977
1978       if (insn == bb->head)
1979         break;
1980     }
1981
1982   free_propagate_block_info (pbi);
1983
1984   return changed;
1985 }
1986 \f
1987 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
1988    (SET expressions whose destinations are registers dead after the insn).
1989    NEEDED is the regset that says which regs are alive after the insn.
1990
1991    Unless CALL_OK is non-zero, an insn is needed if it contains a CALL.
1992
1993    If X is the entire body of an insn, NOTES contains the reg notes
1994    pertaining to the insn.  */
1995
1996 static int
1997 insn_dead_p (pbi, x, call_ok, notes)
1998      struct propagate_block_info *pbi;
1999      rtx x;
2000      int call_ok;
2001      rtx notes ATTRIBUTE_UNUSED;
2002 {
2003   enum rtx_code code = GET_CODE (x);
2004
2005 #ifdef AUTO_INC_DEC
2006   /* As flow is invoked after combine, we must take existing AUTO_INC
2007      expressions into account.  */
2008   for (; notes; notes = XEXP (notes, 1))
2009     {
2010       if (REG_NOTE_KIND (notes) == REG_INC)
2011         {
2012           int regno = REGNO (XEXP (notes, 0));
2013
2014           /* Don't delete insns to set global regs.  */
2015           if ((regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
2016               || REGNO_REG_SET_P (pbi->reg_live, regno))
2017             return 0;
2018         }
2019     }
2020 #endif
2021
2022   /* If setting something that's a reg or part of one,
2023      see if that register's altered value will be live.  */
2024
2025   if (code == SET)
2026     {
2027       rtx r = SET_DEST (x);
2028
2029 #ifdef HAVE_cc0
2030       if (GET_CODE (r) == CC0)
2031         return ! pbi->cc0_live;
2032 #endif
2033
2034       /* A SET that is a subroutine call cannot be dead.  */
2035       if (GET_CODE (SET_SRC (x)) == CALL)
2036         {
2037           if (! call_ok)
2038             return 0;
2039         }
2040
2041       /* Don't eliminate loads from volatile memory or volatile asms.  */
2042       else if (volatile_refs_p (SET_SRC (x)))
2043         return 0;
2044
2045       if (GET_CODE (r) == MEM)
2046         {
2047           rtx temp, canon_r;
2048
2049           if (MEM_VOLATILE_P (r) || GET_MODE (r) == BLKmode)
2050             return 0;
2051
2052           canon_r = canon_rtx (r);
2053
2054           /* Walk the set of memory locations we are currently tracking
2055              and see if one is an identical match to this memory location.
2056              If so, this memory write is dead (remember, we're walking
2057              backwards from the end of the block to the start).  Since
2058              rtx_equal_p does not check the alias set or flags, we also
2059              must have the potential for them to conflict (anti_dependence).  */
2060           for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1))
2061             if (anti_dependence (r, XEXP (temp, 0)))
2062               {
2063                 rtx mem = XEXP (temp, 0);
2064
2065                 if (rtx_equal_p (XEXP (canon_r, 0), XEXP (mem, 0))
2066                     && (GET_MODE_SIZE (GET_MODE (canon_r))
2067                         <= GET_MODE_SIZE (GET_MODE (mem))))
2068                   return 1;
2069
2070 #ifdef AUTO_INC_DEC
2071                 /* Check if memory reference matches an auto increment. Only
2072                    post increment/decrement or modify are valid.  */
2073                 if (GET_MODE (mem) == GET_MODE (r)
2074                     && (GET_CODE (XEXP (mem, 0)) == POST_DEC
2075                         || GET_CODE (XEXP (mem, 0)) == POST_INC
2076                         || GET_CODE (XEXP (mem, 0)) == POST_MODIFY)
2077                     && GET_MODE (XEXP (mem, 0)) == GET_MODE (r)
2078                     && rtx_equal_p (XEXP (XEXP (mem, 0), 0), XEXP (r, 0)))
2079                   return 1;
2080 #endif
2081               }
2082         }
2083       else
2084         {
2085           while (GET_CODE (r) == SUBREG
2086                  || GET_CODE (r) == STRICT_LOW_PART
2087                  || GET_CODE (r) == ZERO_EXTRACT)
2088             r = XEXP (r, 0);
2089
2090           if (GET_CODE (r) == REG)
2091             {
2092               int regno = REGNO (r);
2093
2094               /* Obvious.  */
2095               if (REGNO_REG_SET_P (pbi->reg_live, regno))
2096                 return 0;
2097
2098               /* If this is a hard register, verify that subsequent
2099                  words are not needed.  */
2100               if (regno < FIRST_PSEUDO_REGISTER)
2101                 {
2102                   int n = HARD_REGNO_NREGS (regno, GET_MODE (r));
2103
2104                   while (--n > 0)
2105                     if (REGNO_REG_SET_P (pbi->reg_live, regno+n))
2106                       return 0;
2107                 }
2108
2109               /* Don't delete insns to set global regs.  */
2110               if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
2111                 return 0;
2112
2113               /* Make sure insns to set the stack pointer aren't deleted.  */
2114               if (regno == STACK_POINTER_REGNUM)
2115                 return 0;
2116
2117               /* ??? These bits might be redundant with the force live bits
2118                  in calculate_global_regs_live.  We would delete from
2119                  sequential sets; whether this actually affects real code
2120                  for anything but the stack pointer I don't know.  */
2121               /* Make sure insns to set the frame pointer aren't deleted.  */
2122               if (regno == FRAME_POINTER_REGNUM
2123                   && (! reload_completed || frame_pointer_needed))
2124                 return 0;
2125 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2126               if (regno == HARD_FRAME_POINTER_REGNUM
2127                   && (! reload_completed || frame_pointer_needed))
2128                 return 0;
2129 #endif
2130
2131 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2132               /* Make sure insns to set arg pointer are never deleted
2133                  (if the arg pointer isn't fixed, there will be a USE
2134                  for it, so we can treat it normally).  */
2135               if (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
2136                 return 0;
2137 #endif
2138
2139               /* Otherwise, the set is dead.  */
2140               return 1;
2141             }
2142         }
2143     }
2144
2145   /* If performing several activities, insn is dead if each activity
2146      is individually dead.  Also, CLOBBERs and USEs can be ignored; a
2147      CLOBBER or USE that's inside a PARALLEL doesn't make the insn
2148      worth keeping.  */
2149   else if (code == PARALLEL)
2150     {
2151       int i = XVECLEN (x, 0);
2152
2153       for (i--; i >= 0; i--)
2154         if (GET_CODE (XVECEXP (x, 0, i)) != CLOBBER
2155             && GET_CODE (XVECEXP (x, 0, i)) != USE
2156             && ! insn_dead_p (pbi, XVECEXP (x, 0, i), call_ok, NULL_RTX))
2157           return 0;
2158
2159       return 1;
2160     }
2161
2162   /* A CLOBBER of a pseudo-register that is dead serves no purpose.  That
2163      is not necessarily true for hard registers.  */
2164   else if (code == CLOBBER && GET_CODE (XEXP (x, 0)) == REG
2165            && REGNO (XEXP (x, 0)) >= FIRST_PSEUDO_REGISTER
2166            && ! REGNO_REG_SET_P (pbi->reg_live, REGNO (XEXP (x, 0))))
2167     return 1;
2168
2169   /* We do not check other CLOBBER or USE here.  An insn consisting of just
2170      a CLOBBER or just a USE should not be deleted.  */
2171   return 0;
2172 }
2173
2174 /* If INSN is the last insn in a libcall, and assuming INSN is dead,
2175    return 1 if the entire library call is dead.
2176    This is true if INSN copies a register (hard or pseudo)
2177    and if the hard return reg of the call insn is dead.
2178    (The caller should have tested the destination of the SET inside
2179    INSN already for death.)
2180
2181    If this insn doesn't just copy a register, then we don't
2182    have an ordinary libcall.  In that case, cse could not have
2183    managed to substitute the source for the dest later on,
2184    so we can assume the libcall is dead.
2185
2186    PBI is the block info giving pseudoregs live before this insn.
2187    NOTE is the REG_RETVAL note of the insn.  */
2188
2189 static int
2190 libcall_dead_p (pbi, note, insn)
2191      struct propagate_block_info *pbi;
2192      rtx note;
2193      rtx insn;
2194 {
2195   rtx x = single_set (insn);
2196
2197   if (x)
2198     {
2199       rtx r = SET_SRC (x);
2200
2201       if (GET_CODE (r) == REG)
2202         {
2203           rtx call = XEXP (note, 0);
2204           rtx call_pat;
2205           int i;
2206
2207           /* Find the call insn.  */
2208           while (call != insn && GET_CODE (call) != CALL_INSN)
2209             call = NEXT_INSN (call);
2210
2211           /* If there is none, do nothing special,
2212              since ordinary death handling can understand these insns.  */
2213           if (call == insn)
2214             return 0;
2215
2216           /* See if the hard reg holding the value is dead.
2217              If this is a PARALLEL, find the call within it.  */
2218           call_pat = PATTERN (call);
2219           if (GET_CODE (call_pat) == PARALLEL)
2220             {
2221               for (i = XVECLEN (call_pat, 0) - 1; i >= 0; i--)
2222                 if (GET_CODE (XVECEXP (call_pat, 0, i)) == SET
2223                     && GET_CODE (SET_SRC (XVECEXP (call_pat, 0, i))) == CALL)
2224                   break;
2225
2226               /* This may be a library call that is returning a value
2227                  via invisible pointer.  Do nothing special, since
2228                  ordinary death handling can understand these insns.  */
2229               if (i < 0)
2230                 return 0;
2231
2232               call_pat = XVECEXP (call_pat, 0, i);
2233             }
2234
2235           return insn_dead_p (pbi, call_pat, 1, REG_NOTES (call));
2236         }
2237     }
2238   return 1;
2239 }
2240
2241 /* Return 1 if register REGNO was used before it was set, i.e. if it is
2242    live at function entry.  Don't count global register variables, variables
2243    in registers that can be used for function arg passing, or variables in
2244    fixed hard registers.  */
2245
2246 int
2247 regno_uninitialized (regno)
2248      unsigned int regno;
2249 {
2250   if (n_basic_blocks == 0
2251       || (regno < FIRST_PSEUDO_REGISTER
2252           && (global_regs[regno]
2253               || fixed_regs[regno]
2254               || FUNCTION_ARG_REGNO_P (regno))))
2255     return 0;
2256
2257   return REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno);
2258 }
2259
2260 /* 1 if register REGNO was alive at a place where `setjmp' was called
2261    and was set more than once or is an argument.
2262    Such regs may be clobbered by `longjmp'.  */
2263
2264 int
2265 regno_clobbered_at_setjmp (regno)
2266      int regno;
2267 {
2268   if (n_basic_blocks == 0)
2269     return 0;
2270
2271   return ((REG_N_SETS (regno) > 1
2272            || REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno))
2273           && REGNO_REG_SET_P (regs_live_at_setjmp, regno));
2274 }
2275 \f
2276 /* Add MEM to PBI->MEM_SET_LIST.  MEM should be canonical.  Respect the
2277    maximal list size; look for overlaps in mode and select the largest.  */
2278 static void
2279 add_to_mem_set_list (pbi, mem)
2280      struct propagate_block_info *pbi;
2281      rtx mem;
2282 {
2283   rtx i;
2284
2285   /* We don't know how large a BLKmode store is, so we must not
2286      take them into consideration.  */
2287   if (GET_MODE (mem) == BLKmode)
2288     return;
2289
2290   for (i = pbi->mem_set_list; i ; i = XEXP (i, 1))
2291     {
2292       rtx e = XEXP (i, 0);
2293       if (rtx_equal_p (XEXP (mem, 0), XEXP (e, 0)))
2294         {
2295           if (GET_MODE_SIZE (GET_MODE (mem)) > GET_MODE_SIZE (GET_MODE (e)))
2296             {
2297 #ifdef AUTO_INC_DEC
2298               /* If we must store a copy of the mem, we can just modify
2299                  the mode of the stored copy.  */
2300               if (pbi->flags & PROP_AUTOINC)
2301                 PUT_MODE (e, GET_MODE (mem));
2302               else
2303 #endif
2304                 XEXP (i, 0) = mem;
2305             }
2306           return;
2307         }
2308     }
2309
2310   if (pbi->mem_set_list_len < MAX_MEM_SET_LIST_LEN)
2311     {
2312 #ifdef AUTO_INC_DEC
2313       /* Store a copy of mem, otherwise the address may be
2314          scrogged by find_auto_inc.  */
2315       if (pbi->flags & PROP_AUTOINC)
2316         mem = shallow_copy_rtx (mem);
2317 #endif
2318       pbi->mem_set_list = alloc_EXPR_LIST (0, mem, pbi->mem_set_list);
2319       pbi->mem_set_list_len++;
2320     }
2321 }
2322
2323 /* INSN references memory, possibly using autoincrement addressing modes.
2324    Find any entries on the mem_set_list that need to be invalidated due
2325    to an address change.  */
2326
2327 static void
2328 invalidate_mems_from_autoinc (pbi, insn)
2329      struct propagate_block_info *pbi;
2330      rtx insn;
2331 {
2332   rtx note = REG_NOTES (insn);
2333   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2334     if (REG_NOTE_KIND (note) == REG_INC)
2335       invalidate_mems_from_set (pbi, XEXP (note, 0));
2336 }
2337
2338 /* EXP is a REG.  Remove any dependent entries from pbi->mem_set_list.  */
2339
2340 static void
2341 invalidate_mems_from_set (pbi, exp)
2342      struct propagate_block_info *pbi;
2343      rtx exp;
2344 {
2345   rtx temp = pbi->mem_set_list;
2346   rtx prev = NULL_RTX;
2347   rtx next;
2348
2349   while (temp)
2350     {
2351       next = XEXP (temp, 1);
2352       if (reg_overlap_mentioned_p (exp, XEXP (temp, 0)))
2353         {
2354           /* Splice this entry out of the list.  */
2355           if (prev)
2356             XEXP (prev, 1) = next;
2357           else
2358             pbi->mem_set_list = next;
2359           free_EXPR_LIST_node (temp);
2360           pbi->mem_set_list_len--;
2361         }
2362       else
2363         prev = temp;
2364       temp = next;
2365     }
2366 }
2367
2368 /* Process the registers that are set within X.  Their bits are set to
2369    1 in the regset DEAD, because they are dead prior to this insn.
2370
2371    If INSN is nonzero, it is the insn being processed.
2372
2373    FLAGS is the set of operations to perform.  */
2374
2375 static void
2376 mark_set_regs (pbi, x, insn)
2377      struct propagate_block_info *pbi;
2378      rtx x, insn;
2379 {
2380   rtx cond = NULL_RTX;
2381   rtx link;
2382   enum rtx_code code;
2383
2384   if (insn)
2385     for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
2386       {
2387         if (REG_NOTE_KIND (link) == REG_INC)
2388           mark_set_1 (pbi, SET, XEXP (link, 0),
2389                       (GET_CODE (x) == COND_EXEC
2390                        ? COND_EXEC_TEST (x) : NULL_RTX),
2391                       insn, pbi->flags);
2392       }
2393  retry:
2394   switch (code = GET_CODE (x))
2395     {
2396     case SET:
2397     case CLOBBER:
2398       mark_set_1 (pbi, code, SET_DEST (x), cond, insn, pbi->flags);
2399       return;
2400
2401     case COND_EXEC:
2402       cond = COND_EXEC_TEST (x);
2403       x = COND_EXEC_CODE (x);
2404       goto retry;
2405
2406     case PARALLEL:
2407       {
2408         int i;
2409
2410         for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
2411           {
2412             rtx sub = XVECEXP (x, 0, i);
2413             switch (code = GET_CODE (sub))
2414               {
2415               case COND_EXEC:
2416                 if (cond != NULL_RTX)
2417                   abort ();
2418
2419                 cond = COND_EXEC_TEST (sub);
2420                 sub = COND_EXEC_CODE (sub);
2421                 if (GET_CODE (sub) != SET && GET_CODE (sub) != CLOBBER)
2422                   break;
2423                 /* Fall through.  */
2424
2425               case SET:
2426               case CLOBBER:
2427                 mark_set_1 (pbi, code, SET_DEST (sub), cond, insn, pbi->flags);
2428                 break;
2429
2430               default:
2431                 break;
2432               }
2433           }
2434         break;
2435       }
2436
2437     default:
2438       break;
2439     }
2440 }
2441
2442 /* Process a single set, which appears in INSN.  REG (which may not
2443    actually be a REG, it may also be a SUBREG, PARALLEL, etc.) is
2444    being set using the CODE (which may be SET, CLOBBER, or COND_EXEC).
2445    If the set is conditional (because it appear in a COND_EXEC), COND
2446    will be the condition.  */
2447
2448 static void
2449 mark_set_1 (pbi, code, reg, cond, insn, flags)
2450      struct propagate_block_info *pbi;
2451      enum rtx_code code;
2452      rtx reg, cond, insn;
2453      int flags;
2454 {
2455   int regno_first = -1, regno_last = -1;
2456   unsigned long not_dead = 0;
2457   int i;
2458
2459   /* Modifying just one hardware register of a multi-reg value or just a
2460      byte field of a register does not mean the value from before this insn
2461      is now dead.  Of course, if it was dead after it's unused now.  */
2462
2463   switch (GET_CODE (reg))
2464     {
2465     case PARALLEL:
2466       /* Some targets place small structures in registers for return values of
2467          functions.  We have to detect this case specially here to get correct
2468          flow information.  */
2469       for (i = XVECLEN (reg, 0) - 1; i >= 0; i--)
2470         if (XEXP (XVECEXP (reg, 0, i), 0) != 0)
2471           mark_set_1 (pbi, code, XEXP (XVECEXP (reg, 0, i), 0), cond, insn,
2472                       flags);
2473       return;
2474
2475     case ZERO_EXTRACT:
2476     case SIGN_EXTRACT:
2477     case STRICT_LOW_PART:
2478       /* ??? Assumes STRICT_LOW_PART not used on multi-word registers.  */
2479       do
2480         reg = XEXP (reg, 0);
2481       while (GET_CODE (reg) == SUBREG
2482              || GET_CODE (reg) == ZERO_EXTRACT
2483              || GET_CODE (reg) == SIGN_EXTRACT
2484              || GET_CODE (reg) == STRICT_LOW_PART);
2485       if (GET_CODE (reg) == MEM)
2486         break;
2487       not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live, REGNO (reg));
2488       /* Fall through.  */
2489
2490     case REG:
2491       regno_last = regno_first = REGNO (reg);
2492       if (regno_first < FIRST_PSEUDO_REGISTER)
2493         regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
2494       break;
2495
2496     case SUBREG:
2497       if (GET_CODE (SUBREG_REG (reg)) == REG)
2498         {
2499           enum machine_mode outer_mode = GET_MODE (reg);
2500           enum machine_mode inner_mode = GET_MODE (SUBREG_REG (reg));
2501
2502           /* Identify the range of registers affected.  This is moderately
2503              tricky for hard registers.  See alter_subreg.  */
2504
2505           regno_last = regno_first = REGNO (SUBREG_REG (reg));
2506           if (regno_first < FIRST_PSEUDO_REGISTER)
2507             {
2508               regno_first += subreg_regno_offset (regno_first, inner_mode,
2509                                                   SUBREG_BYTE (reg),
2510                                                   outer_mode);
2511               regno_last = (regno_first
2512                             + HARD_REGNO_NREGS (regno_first, outer_mode) - 1);
2513
2514               /* Since we've just adjusted the register number ranges, make
2515                  sure REG matches.  Otherwise some_was_live will be clear
2516                  when it shouldn't have been, and we'll create incorrect
2517                  REG_UNUSED notes.  */
2518               reg = gen_rtx_REG (outer_mode, regno_first);
2519             }
2520           else
2521             {
2522               /* If the number of words in the subreg is less than the number
2523                  of words in the full register, we have a well-defined partial
2524                  set.  Otherwise the high bits are undefined.
2525
2526                  This is only really applicable to pseudos, since we just took
2527                  care of multi-word hard registers.  */
2528               if (((GET_MODE_SIZE (outer_mode)
2529                     + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
2530                   < ((GET_MODE_SIZE (inner_mode)
2531                       + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
2532                 not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live,
2533                                                             regno_first);
2534
2535               reg = SUBREG_REG (reg);
2536             }
2537         }
2538       else
2539         reg = SUBREG_REG (reg);
2540       break;
2541
2542     default:
2543       break;
2544     }
2545
2546   /* If this set is a MEM, then it kills any aliased writes.
2547      If this set is a REG, then it kills any MEMs which use the reg.  */
2548   if (optimize && (flags & PROP_SCAN_DEAD_CODE))
2549     {
2550       if (GET_CODE (reg) == REG)
2551         invalidate_mems_from_set (pbi, reg);
2552
2553       /* If the memory reference had embedded side effects (autoincrement
2554          address modes.  Then we may need to kill some entries on the
2555          memory set list.  */
2556       if (insn && GET_CODE (reg) == MEM)
2557         invalidate_mems_from_autoinc (pbi, insn);
2558
2559       if (GET_CODE (reg) == MEM && ! side_effects_p (reg)
2560           /* ??? With more effort we could track conditional memory life.  */
2561           && ! cond
2562           /* There are no REG_INC notes for SP, so we can't assume we'll see
2563              everything that invalidates it.  To be safe, don't eliminate any
2564              stores though SP; none of them should be redundant anyway.  */
2565           && ! reg_mentioned_p (stack_pointer_rtx, reg))
2566         add_to_mem_set_list (pbi, canon_rtx (reg));
2567     }
2568
2569   if (GET_CODE (reg) == REG
2570       && ! (regno_first == FRAME_POINTER_REGNUM
2571             && (! reload_completed || frame_pointer_needed))
2572 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
2573       && ! (regno_first == HARD_FRAME_POINTER_REGNUM
2574             && (! reload_completed || frame_pointer_needed))
2575 #endif
2576 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
2577       && ! (regno_first == ARG_POINTER_REGNUM && fixed_regs[regno_first])
2578 #endif
2579       )
2580     {
2581       int some_was_live = 0, some_was_dead = 0;
2582
2583       for (i = regno_first; i <= regno_last; ++i)
2584         {
2585           int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
2586           if (pbi->local_set)
2587             {
2588               /* Order of the set operation matters here since both
2589                  sets may be the same.  */
2590               CLEAR_REGNO_REG_SET (pbi->cond_local_set, i);
2591               if (cond != NULL_RTX
2592                   && ! REGNO_REG_SET_P (pbi->local_set, i))
2593                 SET_REGNO_REG_SET (pbi->cond_local_set, i);
2594               else
2595                 SET_REGNO_REG_SET (pbi->local_set, i);
2596             }
2597           if (code != CLOBBER)
2598             SET_REGNO_REG_SET (pbi->new_set, i);
2599
2600           some_was_live |= needed_regno;
2601           some_was_dead |= ! needed_regno;
2602         }
2603
2604 #ifdef HAVE_conditional_execution
2605       /* Consider conditional death in deciding that the register needs
2606          a death note.  */
2607       if (some_was_live && ! not_dead
2608           /* The stack pointer is never dead.  Well, not strictly true,
2609              but it's very difficult to tell from here.  Hopefully
2610              combine_stack_adjustments will fix up the most egregious
2611              errors.  */
2612           && regno_first != STACK_POINTER_REGNUM)
2613         {
2614           for (i = regno_first; i <= regno_last; ++i)
2615             if (! mark_regno_cond_dead (pbi, i, cond))
2616               not_dead |= ((unsigned long) 1) << (i - regno_first);
2617         }
2618 #endif
2619
2620       /* Additional data to record if this is the final pass.  */
2621       if (flags & (PROP_LOG_LINKS | PROP_REG_INFO
2622                    | PROP_DEATH_NOTES | PROP_AUTOINC))
2623         {
2624           rtx y;
2625           int blocknum = pbi->bb->index;
2626
2627           y = NULL_RTX;
2628           if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
2629             {
2630               y = pbi->reg_next_use[regno_first];
2631
2632               /* The next use is no longer next, since a store intervenes.  */
2633               for (i = regno_first; i <= regno_last; ++i)
2634                 pbi->reg_next_use[i] = 0;
2635             }
2636
2637           if (flags & PROP_REG_INFO)
2638             {
2639               for (i = regno_first; i <= regno_last; ++i)
2640                 {
2641                   /* Count (weighted) references, stores, etc.  This counts a
2642                      register twice if it is modified, but that is correct.  */
2643                   REG_N_SETS (i) += 1;
2644                   REG_N_REFS (i) += 1;
2645                   REG_FREQ (i) += REG_FREQ_FROM_BB (pbi->bb);
2646
2647                   /* The insns where a reg is live are normally counted
2648                      elsewhere, but we want the count to include the insn
2649                      where the reg is set, and the normal counting mechanism
2650                      would not count it.  */
2651                   REG_LIVE_LENGTH (i) += 1;
2652                 }
2653
2654               /* If this is a hard reg, record this function uses the reg.  */
2655               if (regno_first < FIRST_PSEUDO_REGISTER)
2656                 {
2657                   for (i = regno_first; i <= regno_last; i++)
2658                     regs_ever_live[i] = 1;
2659                 }
2660               else
2661                 {
2662                   /* Keep track of which basic blocks each reg appears in.  */
2663                   if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
2664                     REG_BASIC_BLOCK (regno_first) = blocknum;
2665                   else if (REG_BASIC_BLOCK (regno_first) != blocknum)
2666                     REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
2667                 }
2668             }
2669
2670           if (! some_was_dead)
2671             {
2672               if (flags & PROP_LOG_LINKS)
2673                 {
2674                   /* Make a logical link from the next following insn
2675                      that uses this register, back to this insn.
2676                      The following insns have already been processed.
2677
2678                      We don't build a LOG_LINK for hard registers containing
2679                      in ASM_OPERANDs.  If these registers get replaced,
2680                      we might wind up changing the semantics of the insn,
2681                      even if reload can make what appear to be valid
2682                      assignments later.  */
2683                   if (y && (BLOCK_NUM (y) == blocknum)
2684                       && (regno_first >= FIRST_PSEUDO_REGISTER
2685                           || asm_noperands (PATTERN (y)) < 0))
2686                     LOG_LINKS (y) = alloc_INSN_LIST (insn, LOG_LINKS (y));
2687                 }
2688             }
2689           else if (not_dead)
2690             ;
2691           else if (! some_was_live)
2692             {
2693               if (flags & PROP_REG_INFO)
2694                 REG_N_DEATHS (regno_first) += 1;
2695
2696               if (flags & PROP_DEATH_NOTES)
2697                 {
2698                   /* Note that dead stores have already been deleted
2699                      when possible.  If we get here, we have found a
2700                      dead store that cannot be eliminated (because the
2701                      same insn does something useful).  Indicate this
2702                      by marking the reg being set as dying here.  */
2703                   REG_NOTES (insn)
2704                     = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
2705                 }
2706             }
2707           else
2708             {
2709               if (flags & PROP_DEATH_NOTES)
2710                 {
2711                   /* This is a case where we have a multi-word hard register
2712                      and some, but not all, of the words of the register are
2713                      needed in subsequent insns.  Write REG_UNUSED notes
2714                      for those parts that were not needed.  This case should
2715                      be rare.  */
2716
2717                   for (i = regno_first; i <= regno_last; ++i)
2718                     if (! REGNO_REG_SET_P (pbi->reg_live, i))
2719                       REG_NOTES (insn)
2720                         = alloc_EXPR_LIST (REG_UNUSED,
2721                                            gen_rtx_REG (reg_raw_mode[i], i),
2722                                            REG_NOTES (insn));
2723                 }
2724             }
2725         }
2726
2727       /* Mark the register as being dead.  */
2728       if (some_was_live
2729           /* The stack pointer is never dead.  Well, not strictly true,
2730              but it's very difficult to tell from here.  Hopefully
2731              combine_stack_adjustments will fix up the most egregious
2732              errors.  */
2733           && regno_first != STACK_POINTER_REGNUM)
2734         {
2735           for (i = regno_first; i <= regno_last; ++i)
2736             if (!(not_dead & (((unsigned long) 1) << (i - regno_first))))
2737               CLEAR_REGNO_REG_SET (pbi->reg_live, i);
2738         }
2739     }
2740   else if (GET_CODE (reg) == REG)
2741     {
2742       if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
2743         pbi->reg_next_use[regno_first] = 0;
2744     }
2745
2746   /* If this is the last pass and this is a SCRATCH, show it will be dying
2747      here and count it.  */
2748   else if (GET_CODE (reg) == SCRATCH)
2749     {
2750       if (flags & PROP_DEATH_NOTES)
2751         REG_NOTES (insn)
2752           = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
2753     }
2754 }
2755 \f
2756 #ifdef HAVE_conditional_execution
2757 /* Mark REGNO conditionally dead.
2758    Return true if the register is now unconditionally dead.  */
2759
2760 static int
2761 mark_regno_cond_dead (pbi, regno, cond)
2762      struct propagate_block_info *pbi;
2763      int regno;
2764      rtx cond;
2765 {
2766   /* If this is a store to a predicate register, the value of the
2767      predicate is changing, we don't know that the predicate as seen
2768      before is the same as that seen after.  Flush all dependent
2769      conditions from reg_cond_dead.  This will make all such
2770      conditionally live registers unconditionally live.  */
2771   if (REGNO_REG_SET_P (pbi->reg_cond_reg, regno))
2772     flush_reg_cond_reg (pbi, regno);
2773
2774   /* If this is an unconditional store, remove any conditional
2775      life that may have existed.  */
2776   if (cond == NULL_RTX)
2777     splay_tree_remove (pbi->reg_cond_dead, regno);
2778   else
2779     {
2780       splay_tree_node node;
2781       struct reg_cond_life_info *rcli;
2782       rtx ncond;
2783
2784       /* Otherwise this is a conditional set.  Record that fact.
2785          It may have been conditionally used, or there may be a
2786          subsequent set with a complimentary condition.  */
2787
2788       node = splay_tree_lookup (pbi->reg_cond_dead, regno);
2789       if (node == NULL)
2790         {
2791           /* The register was unconditionally live previously.
2792              Record the current condition as the condition under
2793              which it is dead.  */
2794           rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
2795           rcli->condition = cond;
2796           rcli->stores = cond;
2797           rcli->orig_condition = const0_rtx;
2798           splay_tree_insert (pbi->reg_cond_dead, regno,
2799                              (splay_tree_value) rcli);
2800
2801           SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
2802
2803           /* Not unconditionally dead.  */
2804           return 0;
2805         }
2806       else
2807         {
2808           /* The register was conditionally live previously.
2809              Add the new condition to the old.  */
2810           rcli = (struct reg_cond_life_info *) node->value;
2811           ncond = rcli->condition;
2812           ncond = ior_reg_cond (ncond, cond, 1);
2813           if (rcli->stores == const0_rtx)
2814             rcli->stores = cond;
2815           else if (rcli->stores != const1_rtx)
2816             rcli->stores = ior_reg_cond (rcli->stores, cond, 1);
2817
2818           /* If the register is now unconditionally dead, remove the entry
2819              in the splay_tree.  A register is unconditionally dead if the
2820              dead condition ncond is true.  A register is also unconditionally
2821              dead if the sum of all conditional stores is an unconditional
2822              store (stores is true), and the dead condition is identically the
2823              same as the original dead condition initialized at the end of
2824              the block.  This is a pointer compare, not an rtx_equal_p
2825              compare.  */
2826           if (ncond == const1_rtx
2827               || (ncond == rcli->orig_condition && rcli->stores == const1_rtx))
2828             splay_tree_remove (pbi->reg_cond_dead, regno);
2829           else
2830             {
2831               rcli->condition = ncond;
2832
2833               SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
2834
2835               /* Not unconditionally dead.  */
2836               return 0;
2837             }
2838         }
2839     }
2840
2841   return 1;
2842 }
2843
2844 /* Called from splay_tree_delete for pbi->reg_cond_life.  */
2845
2846 static void
2847 free_reg_cond_life_info (value)
2848      splay_tree_value value;
2849 {
2850   struct reg_cond_life_info *rcli = (struct reg_cond_life_info *) value;
2851   free (rcli);
2852 }
2853
2854 /* Helper function for flush_reg_cond_reg.  */
2855
2856 static int
2857 flush_reg_cond_reg_1 (node, data)
2858      splay_tree_node node;
2859      void *data;
2860 {
2861   struct reg_cond_life_info *rcli;
2862   int *xdata = (int *) data;
2863   unsigned int regno = xdata[0];
2864
2865   /* Don't need to search if last flushed value was farther on in
2866      the in-order traversal.  */
2867   if (xdata[1] >= (int) node->key)
2868     return 0;
2869
2870   /* Splice out portions of the expression that refer to regno.  */
2871   rcli = (struct reg_cond_life_info *) node->value;
2872   rcli->condition = elim_reg_cond (rcli->condition, regno);
2873   if (rcli->stores != const0_rtx && rcli->stores != const1_rtx)
2874     rcli->stores = elim_reg_cond (rcli->stores, regno);
2875
2876   /* If the entire condition is now false, signal the node to be removed.  */
2877   if (rcli->condition == const0_rtx)
2878     {
2879       xdata[1] = node->key;
2880       return -1;
2881     }
2882   else if (rcli->condition == const1_rtx)
2883     abort ();
2884
2885   return 0;
2886 }
2887
2888 /* Flush all (sub) expressions referring to REGNO from REG_COND_LIVE.  */
2889
2890 static void
2891 flush_reg_cond_reg (pbi, regno)
2892      struct propagate_block_info *pbi;
2893      int regno;
2894 {
2895   int pair[2];
2896
2897   pair[0] = regno;
2898   pair[1] = -1;
2899   while (splay_tree_foreach (pbi->reg_cond_dead,
2900                              flush_reg_cond_reg_1, pair) == -1)
2901     splay_tree_remove (pbi->reg_cond_dead, pair[1]);
2902
2903   CLEAR_REGNO_REG_SET (pbi->reg_cond_reg, regno);
2904 }
2905
2906 /* Logical arithmetic on predicate conditions.  IOR, NOT and AND.
2907    For ior/and, the ADD flag determines whether we want to add the new
2908    condition X to the old one unconditionally.  If it is zero, we will
2909    only return a new expression if X allows us to simplify part of
2910    OLD, otherwise we return NULL to the caller.
2911    If ADD is nonzero, we will return a new condition in all cases.  The
2912    toplevel caller of one of these functions should always pass 1 for
2913    ADD.  */
2914
2915 static rtx
2916 ior_reg_cond (old, x, add)
2917      rtx old, x;
2918      int add;
2919 {
2920   rtx op0, op1;
2921
2922   if (GET_RTX_CLASS (GET_CODE (old)) == '<')
2923     {
2924       if (GET_RTX_CLASS (GET_CODE (x)) == '<'
2925           && REVERSE_CONDEXEC_PREDICATES_P (GET_CODE (x), GET_CODE (old))
2926           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
2927         return const1_rtx;
2928       if (GET_CODE (x) == GET_CODE (old)
2929           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
2930         return old;
2931       if (! add)
2932         return NULL;
2933       return gen_rtx_IOR (0, old, x);
2934     }
2935
2936   switch (GET_CODE (old))
2937     {
2938     case IOR:
2939       op0 = ior_reg_cond (XEXP (old, 0), x, 0);
2940       op1 = ior_reg_cond (XEXP (old, 1), x, 0);
2941       if (op0 != NULL || op1 != NULL)
2942         {
2943           if (op0 == const0_rtx)
2944             return op1 ? op1 : gen_rtx_IOR (0, XEXP (old, 1), x);
2945           if (op1 == const0_rtx)
2946             return op0 ? op0 : gen_rtx_IOR (0, XEXP (old, 0), x);
2947           if (op0 == const1_rtx || op1 == const1_rtx)
2948             return const1_rtx;
2949           if (op0 == NULL)
2950             op0 = gen_rtx_IOR (0, XEXP (old, 0), x);
2951           else if (rtx_equal_p (x, op0))
2952             /* (x | A) | x ~ (x | A).  */
2953             return old;
2954           if (op1 == NULL)
2955             op1 = gen_rtx_IOR (0, XEXP (old, 1), x);
2956           else if (rtx_equal_p (x, op1))
2957             /* (A | x) | x ~ (A | x).  */
2958             return old;
2959           return gen_rtx_IOR (0, op0, op1);
2960         }
2961       if (! add)
2962         return NULL;
2963       return gen_rtx_IOR (0, old, x);
2964
2965     case AND:
2966       op0 = ior_reg_cond (XEXP (old, 0), x, 0);
2967       op1 = ior_reg_cond (XEXP (old, 1), x, 0);
2968       if (op0 != NULL || op1 != NULL)
2969         {
2970           if (op0 == const1_rtx)
2971             return op1 ? op1 : gen_rtx_IOR (0, XEXP (old, 1), x);
2972           if (op1 == const1_rtx)
2973             return op0 ? op0 : gen_rtx_IOR (0, XEXP (old, 0), x);
2974           if (op0 == const0_rtx || op1 == const0_rtx)
2975             return const0_rtx;
2976           if (op0 == NULL)
2977             op0 = gen_rtx_IOR (0, XEXP (old, 0), x);
2978           else if (rtx_equal_p (x, op0))
2979             /* (x & A) | x ~ x.  */
2980             return op0;
2981           if (op1 == NULL)
2982             op1 = gen_rtx_IOR (0, XEXP (old, 1), x);
2983           else if (rtx_equal_p (x, op1))
2984             /* (A & x) | x ~ x.  */
2985             return op1;
2986           return gen_rtx_AND (0, op0, op1);
2987         }
2988       if (! add)
2989         return NULL;
2990       return gen_rtx_IOR (0, old, x);
2991
2992     case NOT:
2993       op0 = and_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
2994       if (op0 != NULL)
2995         return not_reg_cond (op0);
2996       if (! add)
2997         return NULL;
2998       return gen_rtx_IOR (0, old, x);
2999
3000     default:
3001       abort ();
3002     }
3003 }
3004
3005 static rtx
3006 not_reg_cond (x)
3007      rtx x;
3008 {
3009   enum rtx_code x_code;
3010
3011   if (x == const0_rtx)
3012     return const1_rtx;
3013   else if (x == const1_rtx)
3014     return const0_rtx;
3015   x_code = GET_CODE (x);
3016   if (x_code == NOT)
3017     return XEXP (x, 0);
3018   if (GET_RTX_CLASS (x_code) == '<'
3019       && GET_CODE (XEXP (x, 0)) == REG)
3020     {
3021       if (XEXP (x, 1) != const0_rtx)
3022         abort ();
3023
3024       return gen_rtx_fmt_ee (reverse_condition (x_code),
3025                              VOIDmode, XEXP (x, 0), const0_rtx);
3026     }
3027   return gen_rtx_NOT (0, x);
3028 }
3029
3030 static rtx
3031 and_reg_cond (old, x, add)
3032      rtx old, x;
3033      int add;
3034 {
3035   rtx op0, op1;
3036
3037   if (GET_RTX_CLASS (GET_CODE (old)) == '<')
3038     {
3039       if (GET_RTX_CLASS (GET_CODE (x)) == '<'
3040           && GET_CODE (x) == reverse_condition (GET_CODE (old))
3041           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
3042         return const0_rtx;
3043       if (GET_CODE (x) == GET_CODE (old)
3044           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
3045         return old;
3046       if (! add)
3047         return NULL;
3048       return gen_rtx_AND (0, old, x);
3049     }
3050
3051   switch (GET_CODE (old))
3052     {
3053     case IOR:
3054       op0 = and_reg_cond (XEXP (old, 0), x, 0);
3055       op1 = and_reg_cond (XEXP (old, 1), x, 0);
3056       if (op0 != NULL || op1 != NULL)
3057         {
3058           if (op0 == const0_rtx)
3059             return op1 ? op1 : gen_rtx_AND (0, XEXP (old, 1), x);
3060           if (op1 == const0_rtx)
3061             return op0 ? op0 : gen_rtx_AND (0, XEXP (old, 0), x);
3062           if (op0 == const1_rtx || op1 == const1_rtx)
3063             return const1_rtx;
3064           if (op0 == NULL)
3065             op0 = gen_rtx_AND (0, XEXP (old, 0), x);
3066           else if (rtx_equal_p (x, op0))
3067             /* (x | A) & x ~ x.  */
3068             return op0;
3069           if (op1 == NULL)
3070             op1 = gen_rtx_AND (0, XEXP (old, 1), x);
3071           else if (rtx_equal_p (x, op1))
3072             /* (A | x) & x ~ x.  */
3073             return op1;
3074           return gen_rtx_IOR (0, op0, op1);
3075         }
3076       if (! add)
3077         return NULL;
3078       return gen_rtx_AND (0, old, x);
3079
3080     case AND:
3081       op0 = and_reg_cond (XEXP (old, 0), x, 0);
3082       op1 = and_reg_cond (XEXP (old, 1), x, 0);
3083       if (op0 != NULL || op1 != NULL)
3084         {
3085           if (op0 == const1_rtx)
3086             return op1 ? op1 : gen_rtx_AND (0, XEXP (old, 1), x);
3087           if (op1 == const1_rtx)
3088             return op0 ? op0 : gen_rtx_AND (0, XEXP (old, 0), x);
3089           if (op0 == const0_rtx || op1 == const0_rtx)
3090             return const0_rtx;
3091           if (op0 == NULL)
3092             op0 = gen_rtx_AND (0, XEXP (old, 0), x);
3093           else if (rtx_equal_p (x, op0))
3094             /* (x & A) & x ~ (x & A).  */
3095             return old;
3096           if (op1 == NULL)
3097             op1 = gen_rtx_AND (0, XEXP (old, 1), x);
3098           else if (rtx_equal_p (x, op1))
3099             /* (A & x) & x ~ (A & x).  */
3100             return old;
3101           return gen_rtx_AND (0, op0, op1);
3102         }
3103       if (! add)
3104         return NULL;
3105       return gen_rtx_AND (0, old, x);
3106
3107     case NOT:
3108       op0 = ior_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
3109       if (op0 != NULL)
3110         return not_reg_cond (op0);
3111       if (! add)
3112         return NULL;
3113       return gen_rtx_AND (0, old, x);
3114
3115     default:
3116       abort ();
3117     }
3118 }
3119
3120 /* Given a condition X, remove references to reg REGNO and return the
3121    new condition.  The removal will be done so that all conditions
3122    involving REGNO are considered to evaluate to false.  This function
3123    is used when the value of REGNO changes.  */
3124
3125 static rtx
3126 elim_reg_cond (x, regno)
3127      rtx x;
3128      unsigned int regno;
3129 {
3130   rtx op0, op1;
3131
3132   if (GET_RTX_CLASS (GET_CODE (x)) == '<')
3133     {
3134       if (REGNO (XEXP (x, 0)) == regno)
3135         return const0_rtx;
3136       return x;
3137     }
3138
3139   switch (GET_CODE (x))
3140     {
3141     case AND:
3142       op0 = elim_reg_cond (XEXP (x, 0), regno);
3143       op1 = elim_reg_cond (XEXP (x, 1), regno);
3144       if (op0 == const0_rtx || op1 == const0_rtx)
3145         return const0_rtx;
3146       if (op0 == const1_rtx)
3147         return op1;
3148       if (op1 == const1_rtx)
3149         return op0;
3150       if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
3151         return x;
3152       return gen_rtx_AND (0, op0, op1);
3153
3154     case IOR:
3155       op0 = elim_reg_cond (XEXP (x, 0), regno);
3156       op1 = elim_reg_cond (XEXP (x, 1), regno);
3157       if (op0 == const1_rtx || op1 == const1_rtx)
3158         return const1_rtx;
3159       if (op0 == const0_rtx)
3160         return op1;
3161       if (op1 == const0_rtx)
3162         return op0;
3163       if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
3164         return x;
3165       return gen_rtx_IOR (0, op0, op1);
3166
3167     case NOT:
3168       op0 = elim_reg_cond (XEXP (x, 0), regno);
3169       if (op0 == const0_rtx)
3170         return const1_rtx;
3171       if (op0 == const1_rtx)
3172         return const0_rtx;
3173       if (op0 != XEXP (x, 0))
3174         return not_reg_cond (op0);
3175       return x;
3176
3177     default:
3178       abort ();
3179     }
3180 }
3181 #endif /* HAVE_conditional_execution */
3182 \f
3183 #ifdef AUTO_INC_DEC
3184
3185 /* Try to substitute the auto-inc expression INC as the address inside
3186    MEM which occurs in INSN.  Currently, the address of MEM is an expression
3187    involving INCR_REG, and INCR is the next use of INCR_REG; it is an insn
3188    that has a single set whose source is a PLUS of INCR_REG and something
3189    else.  */
3190
3191 static void
3192 attempt_auto_inc (pbi, inc, insn, mem, incr, incr_reg)
3193      struct propagate_block_info *pbi;
3194      rtx inc, insn, mem, incr, incr_reg;
3195 {
3196   int regno = REGNO (incr_reg);
3197   rtx set = single_set (incr);
3198   rtx q = SET_DEST (set);
3199   rtx y = SET_SRC (set);
3200   int opnum = XEXP (y, 0) == incr_reg ? 0 : 1;
3201
3202   /* Make sure this reg appears only once in this insn.  */
3203   if (count_occurrences (PATTERN (insn), incr_reg, 1) != 1)
3204     return;
3205
3206   if (dead_or_set_p (incr, incr_reg)
3207       /* Mustn't autoinc an eliminable register.  */
3208       && (regno >= FIRST_PSEUDO_REGISTER
3209           || ! TEST_HARD_REG_BIT (elim_reg_set, regno)))
3210     {
3211       /* This is the simple case.  Try to make the auto-inc.  If
3212          we can't, we are done.  Otherwise, we will do any
3213          needed updates below.  */
3214       if (! validate_change (insn, &XEXP (mem, 0), inc, 0))
3215         return;
3216     }
3217   else if (GET_CODE (q) == REG
3218            /* PREV_INSN used here to check the semi-open interval
3219               [insn,incr).  */
3220            && ! reg_used_between_p (q,  PREV_INSN (insn), incr)
3221            /* We must also check for sets of q as q may be
3222               a call clobbered hard register and there may
3223               be a call between PREV_INSN (insn) and incr.  */
3224            && ! reg_set_between_p (q,  PREV_INSN (insn), incr))
3225     {
3226       /* We have *p followed sometime later by q = p+size.
3227          Both p and q must be live afterward,
3228          and q is not used between INSN and its assignment.
3229          Change it to q = p, ...*q..., q = q+size.
3230          Then fall into the usual case.  */
3231       rtx insns, temp;
3232
3233       start_sequence ();
3234       emit_move_insn (q, incr_reg);
3235       insns = get_insns ();
3236       end_sequence ();
3237
3238       /* If we can't make the auto-inc, or can't make the
3239          replacement into Y, exit.  There's no point in making
3240          the change below if we can't do the auto-inc and doing
3241          so is not correct in the pre-inc case.  */
3242
3243       XEXP (inc, 0) = q;
3244       validate_change (insn, &XEXP (mem, 0), inc, 1);
3245       validate_change (incr, &XEXP (y, opnum), q, 1);
3246       if (! apply_change_group ())
3247         return;
3248
3249       /* We now know we'll be doing this change, so emit the
3250          new insn(s) and do the updates.  */
3251       emit_insns_before (insns, insn);
3252
3253       if (pbi->bb->head == insn)
3254         pbi->bb->head = insns;
3255
3256       /* INCR will become a NOTE and INSN won't contain a
3257          use of INCR_REG.  If a use of INCR_REG was just placed in
3258          the insn before INSN, make that the next use.
3259          Otherwise, invalidate it.  */
3260       if (GET_CODE (PREV_INSN (insn)) == INSN
3261           && GET_CODE (PATTERN (PREV_INSN (insn))) == SET
3262           && SET_SRC (PATTERN (PREV_INSN (insn))) == incr_reg)
3263         pbi->reg_next_use[regno] = PREV_INSN (insn);
3264       else
3265         pbi->reg_next_use[regno] = 0;
3266
3267       incr_reg = q;
3268       regno = REGNO (q);
3269
3270       /* REGNO is now used in INCR which is below INSN, but
3271          it previously wasn't live here.  If we don't mark
3272          it as live, we'll put a REG_DEAD note for it
3273          on this insn, which is incorrect.  */
3274       SET_REGNO_REG_SET (pbi->reg_live, regno);
3275
3276       /* If there are any calls between INSN and INCR, show
3277          that REGNO now crosses them.  */
3278       for (temp = insn; temp != incr; temp = NEXT_INSN (temp))
3279         if (GET_CODE (temp) == CALL_INSN)
3280           REG_N_CALLS_CROSSED (regno)++;
3281
3282       /* Invalidate alias info for Q since we just changed its value.  */
3283       clear_reg_alias_info (q);
3284     }
3285   else
3286     return;
3287
3288   /* If we haven't returned, it means we were able to make the
3289      auto-inc, so update the status.  First, record that this insn
3290      has an implicit side effect.  */
3291
3292   REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, incr_reg, REG_NOTES (insn));
3293
3294   /* Modify the old increment-insn to simply copy
3295      the already-incremented value of our register.  */
3296   if (! validate_change (incr, &SET_SRC (set), incr_reg, 0))
3297     abort ();
3298
3299   /* If that makes it a no-op (copying the register into itself) delete
3300      it so it won't appear to be a "use" and a "set" of this
3301      register.  */
3302   if (REGNO (SET_DEST (set)) == REGNO (incr_reg))
3303     {
3304       /* If the original source was dead, it's dead now.  */
3305       rtx note;
3306
3307       while ((note = find_reg_note (incr, REG_DEAD, NULL_RTX)) != NULL_RTX)
3308         {
3309           remove_note (incr, note);
3310           if (XEXP (note, 0) != incr_reg)
3311             CLEAR_REGNO_REG_SET (pbi->reg_live, REGNO (XEXP (note, 0)));
3312         }
3313
3314       PUT_CODE (incr, NOTE);
3315       NOTE_LINE_NUMBER (incr) = NOTE_INSN_DELETED;
3316       NOTE_SOURCE_FILE (incr) = 0;
3317     }
3318
3319   if (regno >= FIRST_PSEUDO_REGISTER)
3320     {
3321       /* Count an extra reference to the reg.  When a reg is
3322          incremented, spilling it is worse, so we want to make
3323          that less likely.  */
3324       REG_FREQ (regno) += REG_FREQ_FROM_BB (pbi->bb);
3325
3326       /* Count the increment as a setting of the register,
3327          even though it isn't a SET in rtl.  */
3328       REG_N_SETS (regno)++;
3329     }
3330 }
3331
3332 /* X is a MEM found in INSN.  See if we can convert it into an auto-increment
3333    reference.  */
3334
3335 static void
3336 find_auto_inc (pbi, x, insn)
3337      struct propagate_block_info *pbi;
3338      rtx x;
3339      rtx insn;
3340 {
3341   rtx addr = XEXP (x, 0);
3342   HOST_WIDE_INT offset = 0;
3343   rtx set, y, incr, inc_val;
3344   int regno;
3345   int size = GET_MODE_SIZE (GET_MODE (x));
3346
3347   if (GET_CODE (insn) == JUMP_INSN)
3348     return;
3349
3350   /* Here we detect use of an index register which might be good for
3351      postincrement, postdecrement, preincrement, or predecrement.  */
3352
3353   if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
3354     offset = INTVAL (XEXP (addr, 1)), addr = XEXP (addr, 0);
3355
3356   if (GET_CODE (addr) != REG)
3357     return;
3358
3359   regno = REGNO (addr);
3360
3361   /* Is the next use an increment that might make auto-increment? */
3362   incr = pbi->reg_next_use[regno];
3363   if (incr == 0 || BLOCK_NUM (incr) != BLOCK_NUM (insn))
3364     return;
3365   set = single_set (incr);
3366   if (set == 0 || GET_CODE (set) != SET)
3367     return;
3368   y = SET_SRC (set);
3369
3370   if (GET_CODE (y) != PLUS)
3371     return;
3372
3373   if (REG_P (XEXP (y, 0)) && REGNO (XEXP (y, 0)) == REGNO (addr))
3374     inc_val = XEXP (y, 1);
3375   else if (REG_P (XEXP (y, 1)) && REGNO (XEXP (y, 1)) == REGNO (addr))
3376     inc_val = XEXP (y, 0);
3377   else
3378     return;
3379
3380   if (GET_CODE (inc_val) == CONST_INT)
3381     {
3382       if (HAVE_POST_INCREMENT
3383           && (INTVAL (inc_val) == size && offset == 0))
3384         attempt_auto_inc (pbi, gen_rtx_POST_INC (Pmode, addr), insn, x,
3385                           incr, addr);
3386       else if (HAVE_POST_DECREMENT
3387                && (INTVAL (inc_val) == -size && offset == 0))
3388         attempt_auto_inc (pbi, gen_rtx_POST_DEC (Pmode, addr), insn, x,
3389                           incr, addr);
3390       else if (HAVE_PRE_INCREMENT
3391                && (INTVAL (inc_val) == size && offset == size))
3392         attempt_auto_inc (pbi, gen_rtx_PRE_INC (Pmode, addr), insn, x,
3393                           incr, addr);
3394       else if (HAVE_PRE_DECREMENT
3395                && (INTVAL (inc_val) == -size && offset == -size))
3396         attempt_auto_inc (pbi, gen_rtx_PRE_DEC (Pmode, addr), insn, x,
3397                           incr, addr);
3398       else if (HAVE_POST_MODIFY_DISP && offset == 0)
3399         attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
3400                                                     gen_rtx_PLUS (Pmode,
3401                                                                   addr,
3402                                                                   inc_val)),
3403                           insn, x, incr, addr);
3404     }
3405   else if (GET_CODE (inc_val) == REG
3406            && ! reg_set_between_p (inc_val, PREV_INSN (insn),
3407                                    NEXT_INSN (incr)))
3408
3409     {
3410       if (HAVE_POST_MODIFY_REG && offset == 0)
3411         attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
3412                                                     gen_rtx_PLUS (Pmode,
3413                                                                   addr,
3414                                                                   inc_val)),
3415                           insn, x, incr, addr);
3416     }
3417 }
3418
3419 #endif /* AUTO_INC_DEC */
3420 \f
3421 static void
3422 mark_used_reg (pbi, reg, cond, insn)
3423      struct propagate_block_info *pbi;
3424      rtx reg;
3425      rtx cond ATTRIBUTE_UNUSED;
3426      rtx insn;
3427 {
3428   unsigned int regno_first, regno_last, i;
3429   int some_was_live, some_was_dead, some_not_set;
3430
3431   regno_last = regno_first = REGNO (reg);
3432   if (regno_first < FIRST_PSEUDO_REGISTER)
3433     regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
3434
3435   /* Find out if any of this register is live after this instruction.  */
3436   some_was_live = some_was_dead = 0;
3437   for (i = regno_first; i <= regno_last; ++i)
3438     {
3439       int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
3440       some_was_live |= needed_regno;
3441       some_was_dead |= ! needed_regno;
3442     }
3443
3444   /* Find out if any of the register was set this insn.  */
3445   some_not_set = 0;
3446   for (i = regno_first; i <= regno_last; ++i)
3447     some_not_set |= ! REGNO_REG_SET_P (pbi->new_set, i);
3448
3449   if (pbi->flags & (PROP_LOG_LINKS | PROP_AUTOINC))
3450     {
3451       /* Record where each reg is used, so when the reg is set we know
3452          the next insn that uses it.  */
3453       pbi->reg_next_use[regno_first] = insn;
3454     }
3455
3456   if (pbi->flags & PROP_REG_INFO)
3457     {
3458       if (regno_first < FIRST_PSEUDO_REGISTER)
3459         {
3460           /* If this is a register we are going to try to eliminate,
3461              don't mark it live here.  If we are successful in
3462              eliminating it, it need not be live unless it is used for
3463              pseudos, in which case it will have been set live when it
3464              was allocated to the pseudos.  If the register will not
3465              be eliminated, reload will set it live at that point.
3466
3467              Otherwise, record that this function uses this register.  */
3468           /* ??? The PPC backend tries to "eliminate" on the pic
3469              register to itself.  This should be fixed.  In the mean
3470              time, hack around it.  */
3471
3472           if (! (TEST_HARD_REG_BIT (elim_reg_set, regno_first)
3473                  && (regno_first == FRAME_POINTER_REGNUM
3474                      || regno_first == ARG_POINTER_REGNUM)))
3475             for (i = regno_first; i <= regno_last; ++i)
3476               regs_ever_live[i] = 1;
3477         }
3478       else
3479         {
3480           /* Keep track of which basic block each reg appears in.  */
3481
3482           int blocknum = pbi->bb->index;
3483           if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
3484             REG_BASIC_BLOCK (regno_first) = blocknum;
3485           else if (REG_BASIC_BLOCK (regno_first) != blocknum)
3486             REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
3487
3488           /* Count (weighted) number of uses of each reg.  */
3489           REG_FREQ (regno_first) += REG_FREQ_FROM_BB (pbi->bb);
3490           REG_N_REFS (regno_first)++;
3491         }
3492     }
3493
3494   /* Record and count the insns in which a reg dies.  If it is used in
3495      this insn and was dead below the insn then it dies in this insn.
3496      If it was set in this insn, we do not make a REG_DEAD note;
3497      likewise if we already made such a note.  */
3498   if ((pbi->flags & (PROP_DEATH_NOTES | PROP_REG_INFO))
3499       && some_was_dead
3500       && some_not_set)
3501     {
3502       /* Check for the case where the register dying partially
3503          overlaps the register set by this insn.  */
3504       if (regno_first != regno_last)
3505         for (i = regno_first; i <= regno_last; ++i)
3506           some_was_live |= REGNO_REG_SET_P (pbi->new_set, i);
3507
3508       /* If none of the words in X is needed, make a REG_DEAD note.
3509          Otherwise, we must make partial REG_DEAD notes.  */
3510       if (! some_was_live)
3511         {
3512           if ((pbi->flags & PROP_DEATH_NOTES)
3513               && ! find_regno_note (insn, REG_DEAD, regno_first))
3514             REG_NOTES (insn)
3515               = alloc_EXPR_LIST (REG_DEAD, reg, REG_NOTES (insn));
3516
3517           if (pbi->flags & PROP_REG_INFO)
3518             REG_N_DEATHS (regno_first)++;
3519         }
3520       else
3521         {
3522           /* Don't make a REG_DEAD note for a part of a register
3523              that is set in the insn.  */
3524           for (i = regno_first; i <= regno_last; ++i)
3525             if (! REGNO_REG_SET_P (pbi->reg_live, i)
3526                 && ! dead_or_set_regno_p (insn, i))
3527               REG_NOTES (insn)
3528                 = alloc_EXPR_LIST (REG_DEAD,
3529                                    gen_rtx_REG (reg_raw_mode[i], i),
3530                                    REG_NOTES (insn));
3531         }
3532     }
3533
3534   /* Mark the register as being live.  */
3535   for (i = regno_first; i <= regno_last; ++i)
3536     {
3537       SET_REGNO_REG_SET (pbi->reg_live, i);
3538
3539 #ifdef HAVE_conditional_execution
3540       /* If this is a conditional use, record that fact.  If it is later
3541          conditionally set, we'll know to kill the register.  */
3542       if (cond != NULL_RTX)
3543         {
3544           splay_tree_node node;
3545           struct reg_cond_life_info *rcli;
3546           rtx ncond;
3547
3548           if (some_was_live)
3549             {
3550               node = splay_tree_lookup (pbi->reg_cond_dead, i);
3551               if (node == NULL)
3552                 {
3553                   /* The register was unconditionally live previously.
3554                      No need to do anything.  */
3555                 }
3556               else
3557                 {
3558                   /* The register was conditionally live previously.
3559                      Subtract the new life cond from the old death cond.  */
3560                   rcli = (struct reg_cond_life_info *) node->value;
3561                   ncond = rcli->condition;
3562                   ncond = and_reg_cond (ncond, not_reg_cond (cond), 1);
3563
3564                   /* If the register is now unconditionally live,
3565                      remove the entry in the splay_tree.  */
3566                   if (ncond == const0_rtx)
3567                     splay_tree_remove (pbi->reg_cond_dead, i);
3568                   else
3569                     {
3570                       rcli->condition = ncond;
3571                       SET_REGNO_REG_SET (pbi->reg_cond_reg,
3572                                          REGNO (XEXP (cond, 0)));
3573                     }
3574                 }
3575             }
3576           else
3577             {
3578               /* The register was not previously live at all.  Record
3579                  the condition under which it is still dead.  */
3580               rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
3581               rcli->condition = not_reg_cond (cond);
3582               rcli->stores = const0_rtx;
3583               rcli->orig_condition = const0_rtx;
3584               splay_tree_insert (pbi->reg_cond_dead, i,
3585                                  (splay_tree_value) rcli);
3586
3587               SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
3588             }
3589         }
3590       else if (some_was_live)
3591         {
3592           /* The register may have been conditionally live previously, but
3593              is now unconditionally live.  Remove it from the conditionally
3594              dead list, so that a conditional set won't cause us to think
3595              it dead.  */
3596           splay_tree_remove (pbi->reg_cond_dead, i);
3597         }
3598 #endif
3599     }
3600 }
3601
3602 /* Scan expression X and store a 1-bit in NEW_LIVE for each reg it uses.
3603    This is done assuming the registers needed from X are those that
3604    have 1-bits in PBI->REG_LIVE.
3605
3606    INSN is the containing instruction.  If INSN is dead, this function
3607    is not called.  */
3608
3609 static void
3610 mark_used_regs (pbi, x, cond, insn)
3611      struct propagate_block_info *pbi;
3612      rtx x, cond, insn;
3613 {
3614   RTX_CODE code;
3615   int regno;
3616   int flags = pbi->flags;
3617
3618  retry:
3619   code = GET_CODE (x);
3620   switch (code)
3621     {
3622     case LABEL_REF:
3623     case SYMBOL_REF:
3624     case CONST_INT:
3625     case CONST:
3626     case CONST_DOUBLE:
3627     case PC:
3628     case ADDR_VEC:
3629     case ADDR_DIFF_VEC:
3630       return;
3631
3632 #ifdef HAVE_cc0
3633     case CC0:
3634       pbi->cc0_live = 1;
3635       return;
3636 #endif
3637
3638     case CLOBBER:
3639       /* If we are clobbering a MEM, mark any registers inside the address
3640          as being used.  */
3641       if (GET_CODE (XEXP (x, 0)) == MEM)
3642         mark_used_regs (pbi, XEXP (XEXP (x, 0), 0), cond, insn);
3643       return;
3644
3645     case MEM:
3646       /* Don't bother watching stores to mems if this is not the
3647          final pass.  We'll not be deleting dead stores this round.  */
3648       if (optimize && (flags & PROP_SCAN_DEAD_CODE))
3649         {
3650           /* Invalidate the data for the last MEM stored, but only if MEM is
3651              something that can be stored into.  */
3652           if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
3653               && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
3654             /* Needn't clear the memory set list.  */
3655             ;
3656           else
3657             {
3658               rtx temp = pbi->mem_set_list;
3659               rtx prev = NULL_RTX;
3660               rtx next;
3661
3662               while (temp)
3663                 {
3664                   next = XEXP (temp, 1);
3665                   if (anti_dependence (XEXP (temp, 0), x))
3666                     {
3667                       /* Splice temp out of the list.  */
3668                       if (prev)
3669                         XEXP (prev, 1) = next;
3670                       else
3671                         pbi->mem_set_list = next;
3672                       free_EXPR_LIST_node (temp);
3673                       pbi->mem_set_list_len--;
3674                     }
3675                   else
3676                     prev = temp;
3677                   temp = next;
3678                 }
3679             }
3680
3681           /* If the memory reference had embedded side effects (autoincrement
3682              address modes.  Then we may need to kill some entries on the
3683              memory set list.  */
3684           if (insn)
3685             invalidate_mems_from_autoinc (pbi, insn);
3686         }
3687
3688 #ifdef AUTO_INC_DEC
3689       if (flags & PROP_AUTOINC)
3690         find_auto_inc (pbi, x, insn);
3691 #endif
3692       break;
3693
3694     case SUBREG:
3695 #ifdef CLASS_CANNOT_CHANGE_MODE
3696       if (GET_CODE (SUBREG_REG (x)) == REG
3697           && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER
3698           && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (x),
3699                                          GET_MODE (SUBREG_REG (x))))
3700         REG_CHANGES_MODE (REGNO (SUBREG_REG (x))) = 1;
3701 #endif
3702
3703       /* While we're here, optimize this case.  */
3704       x = SUBREG_REG (x);
3705       if (GET_CODE (x) != REG)
3706         goto retry;
3707       /* Fall through.  */
3708
3709     case REG:
3710       /* See a register other than being set => mark it as needed.  */
3711       mark_used_reg (pbi, x, cond, insn);
3712       return;
3713
3714     case SET:
3715       {
3716         rtx testreg = SET_DEST (x);
3717         int mark_dest = 0;
3718
3719         /* If storing into MEM, don't show it as being used.  But do
3720            show the address as being used.  */
3721         if (GET_CODE (testreg) == MEM)
3722           {
3723 #ifdef AUTO_INC_DEC
3724             if (flags & PROP_AUTOINC)
3725               find_auto_inc (pbi, testreg, insn);
3726 #endif
3727             mark_used_regs (pbi, XEXP (testreg, 0), cond, insn);
3728             mark_used_regs (pbi, SET_SRC (x), cond, insn);
3729             return;
3730           }
3731
3732         /* Storing in STRICT_LOW_PART is like storing in a reg
3733            in that this SET might be dead, so ignore it in TESTREG.
3734            but in some other ways it is like using the reg.
3735
3736            Storing in a SUBREG or a bit field is like storing the entire
3737            register in that if the register's value is not used
3738            then this SET is not needed.  */
3739         while (GET_CODE (testreg) == STRICT_LOW_PART
3740                || GET_CODE (testreg) == ZERO_EXTRACT
3741                || GET_CODE (testreg) == SIGN_EXTRACT
3742                || GET_CODE (testreg) == SUBREG)
3743           {
3744 #ifdef CLASS_CANNOT_CHANGE_MODE
3745             if (GET_CODE (testreg) == SUBREG
3746                 && GET_CODE (SUBREG_REG (testreg)) == REG
3747                 && REGNO (SUBREG_REG (testreg)) >= FIRST_PSEUDO_REGISTER
3748                 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (SUBREG_REG (testreg)),
3749                                                GET_MODE (testreg)))
3750               REG_CHANGES_MODE (REGNO (SUBREG_REG (testreg))) = 1;
3751 #endif
3752
3753             /* Modifying a single register in an alternate mode
3754                does not use any of the old value.  But these other
3755                ways of storing in a register do use the old value.  */
3756             if (GET_CODE (testreg) == SUBREG
3757                 && !((REG_BYTES (SUBREG_REG (testreg))
3758                       + UNITS_PER_WORD - 1) / UNITS_PER_WORD
3759                      > (REG_BYTES (testreg)
3760                         + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
3761               ;
3762             else
3763               mark_dest = 1;
3764
3765             testreg = XEXP (testreg, 0);
3766           }
3767
3768         /* If this is a store into a register or group of registers,
3769            recursively scan the value being stored.  */
3770
3771         if ((GET_CODE (testreg) == PARALLEL
3772              && GET_MODE (testreg) == BLKmode)
3773             || (GET_CODE (testreg) == REG
3774                 && (regno = REGNO (testreg),
3775                     ! (regno == FRAME_POINTER_REGNUM
3776                        && (! reload_completed || frame_pointer_needed)))
3777 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
3778                 && ! (regno == HARD_FRAME_POINTER_REGNUM
3779                       && (! reload_completed || frame_pointer_needed))
3780 #endif
3781 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3782                 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
3783 #endif
3784                 ))
3785           {
3786             if (mark_dest)
3787               mark_used_regs (pbi, SET_DEST (x), cond, insn);
3788             mark_used_regs (pbi, SET_SRC (x), cond, insn);
3789             return;
3790           }
3791       }
3792       break;
3793
3794     case ASM_OPERANDS:
3795     case UNSPEC_VOLATILE:
3796     case TRAP_IF:
3797     case ASM_INPUT:
3798       {
3799         /* Traditional and volatile asm instructions must be considered to use
3800            and clobber all hard registers, all pseudo-registers and all of
3801            memory.  So must TRAP_IF and UNSPEC_VOLATILE operations.
3802
3803            Consider for instance a volatile asm that changes the fpu rounding
3804            mode.  An insn should not be moved across this even if it only uses
3805            pseudo-regs because it might give an incorrectly rounded result.
3806
3807            ?!? Unfortunately, marking all hard registers as live causes massive
3808            problems for the register allocator and marking all pseudos as live
3809            creates mountains of uninitialized variable warnings.
3810
3811            So for now, just clear the memory set list and mark any regs
3812            we can find in ASM_OPERANDS as used.  */
3813         if (code != ASM_OPERANDS || MEM_VOLATILE_P (x))
3814           {
3815             free_EXPR_LIST_list (&pbi->mem_set_list);
3816             pbi->mem_set_list_len = 0;
3817           }
3818
3819         /* For all ASM_OPERANDS, we must traverse the vector of input operands.
3820            We can not just fall through here since then we would be confused
3821            by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
3822            traditional asms unlike their normal usage.  */
3823         if (code == ASM_OPERANDS)
3824           {
3825             int j;
3826
3827             for (j = 0; j < ASM_OPERANDS_INPUT_LENGTH (x); j++)
3828               mark_used_regs (pbi, ASM_OPERANDS_INPUT (x, j), cond, insn);
3829           }
3830         break;
3831       }
3832
3833     case COND_EXEC:
3834       if (cond != NULL_RTX)
3835         abort ();
3836
3837       mark_used_regs (pbi, COND_EXEC_TEST (x), NULL_RTX, insn);
3838
3839       cond = COND_EXEC_TEST (x);
3840       x = COND_EXEC_CODE (x);
3841       goto retry;
3842
3843     case PHI:
3844       /* We _do_not_ want to scan operands of phi nodes.  Operands of
3845          a phi function are evaluated only when control reaches this
3846          block along a particular edge.  Therefore, regs that appear
3847          as arguments to phi should not be added to the global live at
3848          start.  */
3849       return;
3850
3851     default:
3852       break;
3853     }
3854
3855   /* Recursively scan the operands of this expression.  */
3856
3857   {
3858     const char * const fmt = GET_RTX_FORMAT (code);
3859     int i;
3860
3861     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3862       {
3863         if (fmt[i] == 'e')
3864           {
3865             /* Tail recursive case: save a function call level.  */
3866             if (i == 0)
3867               {
3868                 x = XEXP (x, 0);
3869                 goto retry;
3870               }
3871             mark_used_regs (pbi, XEXP (x, i), cond, insn);
3872           }
3873         else if (fmt[i] == 'E')
3874           {
3875             int j;
3876             for (j = 0; j < XVECLEN (x, i); j++)
3877               mark_used_regs (pbi, XVECEXP (x, i, j), cond, insn);
3878           }
3879       }
3880   }
3881 }
3882 \f
3883 #ifdef AUTO_INC_DEC
3884
3885 static int
3886 try_pre_increment_1 (pbi, insn)
3887      struct propagate_block_info *pbi;
3888      rtx insn;
3889 {
3890   /* Find the next use of this reg.  If in same basic block,
3891      make it do pre-increment or pre-decrement if appropriate.  */
3892   rtx x = single_set (insn);
3893   HOST_WIDE_INT amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
3894                           * INTVAL (XEXP (SET_SRC (x), 1)));
3895   int regno = REGNO (SET_DEST (x));
3896   rtx y = pbi->reg_next_use[regno];
3897   if (y != 0
3898       && SET_DEST (x) != stack_pointer_rtx
3899       && BLOCK_NUM (y) == BLOCK_NUM (insn)
3900       /* Don't do this if the reg dies, or gets set in y; a standard addressing
3901          mode would be better.  */
3902       && ! dead_or_set_p (y, SET_DEST (x))
3903       && try_pre_increment (y, SET_DEST (x), amount))
3904     {
3905       /* We have found a suitable auto-increment and already changed
3906          insn Y to do it.  So flush this increment instruction.  */
3907       propagate_block_delete_insn (pbi->bb, insn);
3908
3909       /* Count a reference to this reg for the increment insn we are
3910          deleting.  When a reg is incremented, spilling it is worse,
3911          so we want to make that less likely.  */
3912       if (regno >= FIRST_PSEUDO_REGISTER)
3913         {
3914           REG_FREQ (regno) += REG_FREQ_FROM_BB (pbi->bb);
3915           REG_N_SETS (regno)++;
3916         }
3917
3918       /* Flush any remembered memories depending on the value of
3919          the incremented register.  */
3920       invalidate_mems_from_set (pbi, SET_DEST (x));
3921
3922       return 1;
3923     }
3924   return 0;
3925 }
3926
3927 /* Try to change INSN so that it does pre-increment or pre-decrement
3928    addressing on register REG in order to add AMOUNT to REG.
3929    AMOUNT is negative for pre-decrement.
3930    Returns 1 if the change could be made.
3931    This checks all about the validity of the result of modifying INSN.  */
3932
3933 static int
3934 try_pre_increment (insn, reg, amount)
3935      rtx insn, reg;
3936      HOST_WIDE_INT amount;
3937 {
3938   rtx use;
3939
3940   /* Nonzero if we can try to make a pre-increment or pre-decrement.
3941      For example, addl $4,r1; movl (r1),... can become movl +(r1),...  */
3942   int pre_ok = 0;
3943   /* Nonzero if we can try to make a post-increment or post-decrement.
3944      For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
3945      It is possible for both PRE_OK and POST_OK to be nonzero if the machine
3946      supports both pre-inc and post-inc, or both pre-dec and post-dec.  */
3947   int post_ok = 0;
3948
3949   /* Nonzero if the opportunity actually requires post-inc or post-dec.  */
3950   int do_post = 0;
3951
3952   /* From the sign of increment, see which possibilities are conceivable
3953      on this target machine.  */
3954   if (HAVE_PRE_INCREMENT && amount > 0)
3955     pre_ok = 1;
3956   if (HAVE_POST_INCREMENT && amount > 0)
3957     post_ok = 1;
3958
3959   if (HAVE_PRE_DECREMENT && amount < 0)
3960     pre_ok = 1;
3961   if (HAVE_POST_DECREMENT && amount < 0)
3962     post_ok = 1;
3963
3964   if (! (pre_ok || post_ok))
3965     return 0;
3966
3967   /* It is not safe to add a side effect to a jump insn
3968      because if the incremented register is spilled and must be reloaded
3969      there would be no way to store the incremented value back in memory.  */
3970
3971   if (GET_CODE (insn) == JUMP_INSN)
3972     return 0;
3973
3974   use = 0;
3975   if (pre_ok)
3976     use = find_use_as_address (PATTERN (insn), reg, 0);
3977   if (post_ok && (use == 0 || use == (rtx) 1))
3978     {
3979       use = find_use_as_address (PATTERN (insn), reg, -amount);
3980       do_post = 1;
3981     }
3982
3983   if (use == 0 || use == (rtx) 1)
3984     return 0;
3985
3986   if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
3987     return 0;
3988
3989   /* See if this combination of instruction and addressing mode exists.  */
3990   if (! validate_change (insn, &XEXP (use, 0),
3991                          gen_rtx_fmt_e (amount > 0
3992                                         ? (do_post ? POST_INC : PRE_INC)
3993                                         : (do_post ? POST_DEC : PRE_DEC),
3994                                         Pmode, reg), 0))
3995     return 0;
3996
3997   /* Record that this insn now has an implicit side effect on X.  */
3998   REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, reg, REG_NOTES (insn));
3999   return 1;
4000 }
4001
4002 #endif /* AUTO_INC_DEC */
4003 \f
4004 /* Find the place in the rtx X where REG is used as a memory address.
4005    Return the MEM rtx that so uses it.
4006    If PLUSCONST is nonzero, search instead for a memory address equivalent to
4007    (plus REG (const_int PLUSCONST)).
4008
4009    If such an address does not appear, return 0.
4010    If REG appears more than once, or is used other than in such an address,
4011    return (rtx)1.  */
4012
4013 rtx
4014 find_use_as_address (x, reg, plusconst)
4015      rtx x;
4016      rtx reg;
4017      HOST_WIDE_INT plusconst;
4018 {
4019   enum rtx_code code = GET_CODE (x);
4020   const char * const fmt = GET_RTX_FORMAT (code);
4021   int i;
4022   rtx value = 0;
4023   rtx tem;
4024
4025   if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
4026     return x;
4027
4028   if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
4029       && XEXP (XEXP (x, 0), 0) == reg
4030       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4031       && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
4032     return x;
4033
4034   if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
4035     {
4036       /* If REG occurs inside a MEM used in a bit-field reference,
4037          that is unacceptable.  */
4038       if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
4039         return (rtx) (HOST_WIDE_INT) 1;
4040     }
4041
4042   if (x == reg)
4043     return (rtx) (HOST_WIDE_INT) 1;
4044
4045   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4046     {
4047       if (fmt[i] == 'e')
4048         {
4049           tem = find_use_as_address (XEXP (x, i), reg, plusconst);
4050           if (value == 0)
4051             value = tem;
4052           else if (tem != 0)
4053             return (rtx) (HOST_WIDE_INT) 1;
4054         }
4055       else if (fmt[i] == 'E')
4056         {
4057           int j;
4058           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4059             {
4060               tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
4061               if (value == 0)
4062                 value = tem;
4063               else if (tem != 0)
4064                 return (rtx) (HOST_WIDE_INT) 1;
4065             }
4066         }
4067     }
4068
4069   return value;
4070 }
4071 \f
4072 /* Write information about registers and basic blocks into FILE.
4073    This is part of making a debugging dump.  */
4074
4075 void
4076 dump_regset (r, outf)
4077      regset r;
4078      FILE *outf;
4079 {
4080   int i;
4081   if (r == NULL)
4082     {
4083       fputs (" (nil)", outf);
4084       return;
4085     }
4086
4087   EXECUTE_IF_SET_IN_REG_SET (r, 0, i,
4088     {
4089       fprintf (outf, " %d", i);
4090       if (i < FIRST_PSEUDO_REGISTER)
4091         fprintf (outf, " [%s]",
4092                  reg_names[i]);
4093     });
4094 }
4095
4096 /* Print a human-reaable representation of R on the standard error
4097    stream.  This function is designed to be used from within the
4098    debugger.  */
4099
4100 void
4101 debug_regset (r)
4102      regset r;
4103 {
4104   dump_regset (r, stderr);
4105   putc ('\n', stderr);
4106 }
4107
4108 /* Dump the rtl into the current debugging dump file, then abort.  */
4109
4110 static void
4111 print_rtl_and_abort_fcn (file, line, function)
4112      const char *file;
4113      int line;
4114      const char *function;
4115 {
4116   if (rtl_dump_file)
4117     {
4118       print_rtl_with_bb (rtl_dump_file, get_insns ());
4119       fclose (rtl_dump_file);
4120     }
4121
4122   fancy_abort (file, line, function);
4123 }
4124
4125 /* Recompute register set/reference counts immediately prior to register
4126    allocation.
4127
4128    This avoids problems with set/reference counts changing to/from values
4129    which have special meanings to the register allocators.
4130
4131    Additionally, the reference counts are the primary component used by the
4132    register allocators to prioritize pseudos for allocation to hard regs.
4133    More accurate reference counts generally lead to better register allocation.
4134
4135    F is the first insn to be scanned.
4136
4137    LOOP_STEP denotes how much loop_depth should be incremented per
4138    loop nesting level in order to increase the ref count more for
4139    references in a loop.
4140
4141    It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and
4142    possibly other information which is used by the register allocators.  */
4143
4144 void
4145 recompute_reg_usage (f, loop_step)
4146      rtx f ATTRIBUTE_UNUSED;
4147      int loop_step ATTRIBUTE_UNUSED;
4148 {
4149   allocate_reg_life_data ();
4150   update_life_info (NULL, UPDATE_LIFE_LOCAL, PROP_REG_INFO);
4151 }
4152
4153 /* Optionally removes all the REG_DEAD and REG_UNUSED notes from a set of
4154    blocks.  If BLOCKS is NULL, assume the universal set.  Returns a count
4155    of the number of registers that died.  */
4156
4157 int
4158 count_or_remove_death_notes (blocks, kill)
4159      sbitmap blocks;
4160      int kill;
4161 {
4162   int i, count = 0;
4163
4164   for (i = n_basic_blocks - 1; i >= 0; --i)
4165     {
4166       basic_block bb;
4167       rtx insn;
4168
4169       if (blocks && ! TEST_BIT (blocks, i))
4170         continue;
4171
4172       bb = BASIC_BLOCK (i);
4173
4174       for (insn = bb->head;; insn = NEXT_INSN (insn))
4175         {
4176           if (INSN_P (insn))
4177             {
4178               rtx *pprev = &REG_NOTES (insn);
4179               rtx link = *pprev;
4180
4181               while (link)
4182                 {
4183                   switch (REG_NOTE_KIND (link))
4184                     {
4185                     case REG_DEAD:
4186                       if (GET_CODE (XEXP (link, 0)) == REG)
4187                         {
4188                           rtx reg = XEXP (link, 0);
4189                           int n;
4190
4191                           if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
4192                             n = 1;
4193                           else
4194                             n = HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg));
4195                           count += n;
4196                         }
4197                       /* Fall through.  */
4198
4199                     case REG_UNUSED:
4200                       if (kill)
4201                         {
4202                           rtx next = XEXP (link, 1);
4203                           free_EXPR_LIST_node (link);
4204                           *pprev = link = next;
4205                           break;
4206                         }
4207                       /* Fall through.  */
4208
4209                     default:
4210                       pprev = &XEXP (link, 1);
4211                       link = *pprev;
4212                       break;
4213                     }
4214                 }
4215             }
4216
4217           if (insn == bb->end)
4218             break;
4219         }
4220     }
4221
4222   return count;
4223 }
4224 /* Clear LOG_LINKS fields of insns in a selected blocks or whole chain
4225    if blocks is NULL.  */
4226
4227 static void
4228 clear_log_links (blocks)
4229      sbitmap blocks;
4230 {
4231   rtx insn;
4232   int i;
4233
4234   if (!blocks)
4235     {
4236       for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4237         if (INSN_P (insn))
4238           free_INSN_LIST_list (&LOG_LINKS (insn));
4239     }
4240   else
4241     EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
4242       {
4243         basic_block bb = BASIC_BLOCK (i);
4244
4245         for (insn = bb->head; insn != NEXT_INSN (bb->end);
4246              insn = NEXT_INSN (insn))
4247           if (INSN_P (insn))
4248             free_INSN_LIST_list (&LOG_LINKS (insn));
4249       });
4250 }
4251
4252 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
4253    correspond to the hard registers, if any, set in that map.  This
4254    could be done far more efficiently by having all sorts of special-cases
4255    with moving single words, but probably isn't worth the trouble.  */
4256
4257 void
4258 reg_set_to_hard_reg_set (to, from)
4259      HARD_REG_SET *to;
4260      bitmap from;
4261 {
4262   int i;
4263
4264   EXECUTE_IF_SET_IN_BITMAP
4265     (from, 0, i,
4266      {
4267        if (i >= FIRST_PSEUDO_REGISTER)
4268          return;
4269        SET_HARD_REG_BIT (*to, i);
4270      });
4271 }