39c70860ebf618f4f855e1d868dfb2ca6b07633b
[platform/upstream/gcc.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 /* The obstack on which the flow graph components are allocated.  */
178
179 struct obstack flow_obstack;
180 static char *flow_firstobj;
181
182 /* Number of basic blocks in the current function.  */
183
184 int n_basic_blocks;
185
186 /* Number of edges in the current function.  */
187
188 int n_edges;
189
190 /* The basic block array.  */
191
192 varray_type basic_block_info;
193
194 /* The special entry and exit blocks.  */
195
196 struct basic_block_def entry_exit_blocks[2]
197 = {{NULL,                       /* head */
198     NULL,                       /* end */
199     NULL,                       /* head_tree */
200     NULL,                       /* end_tree */
201     NULL,                       /* pred */
202     NULL,                       /* succ */
203     NULL,                       /* local_set */
204     NULL,                       /* cond_local_set */
205     NULL,                       /* global_live_at_start */
206     NULL,                       /* global_live_at_end */
207     NULL,                       /* aux */
208     ENTRY_BLOCK,                /* index */
209     0,                          /* loop_depth */
210     0,                          /* count */
211     0,                          /* frequency */
212     0                           /* flags */
213   },
214   {
215     NULL,                       /* head */
216     NULL,                       /* end */
217     NULL,                       /* head_tree */
218     NULL,                       /* end_tree */
219     NULL,                       /* pred */
220     NULL,                       /* succ */
221     NULL,                       /* local_set */
222     NULL,                       /* cond_local_set */
223     NULL,                       /* global_live_at_start */
224     NULL,                       /* global_live_at_end */
225     NULL,                       /* aux */
226     EXIT_BLOCK,                 /* index */
227     0,                          /* loop_depth */
228     0,                          /* count */
229     0,                          /* frequency */
230     0                           /* flags */
231   }
232 };
233
234 /* Nonzero if the second flow pass has completed.  */
235 int flow2_completed;
236
237 /* Maximum register number used in this function, plus one.  */
238
239 int max_regno;
240
241 /* Indexed by n, giving various register information */
242
243 varray_type reg_n_info;
244
245 /* Size of a regset for the current function,
246    in (1) bytes and (2) elements.  */
247
248 int regset_bytes;
249 int regset_size;
250
251 /* Regset of regs live when calls to `setjmp'-like functions happen.  */
252 /* ??? Does this exist only for the setjmp-clobbered warning message?  */
253
254 regset regs_live_at_setjmp;
255
256 /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers
257    that have to go in the same hard reg.
258    The first two regs in the list are a pair, and the next two
259    are another pair, etc.  */
260 rtx regs_may_share;
261
262 /* Callback that determines if it's ok for a function to have no
263    noreturn attribute.  */
264 int (*lang_missing_noreturn_ok_p) PARAMS ((tree));
265
266 /* Set of registers that may be eliminable.  These are handled specially
267    in updating regs_ever_live.  */
268
269 static HARD_REG_SET elim_reg_set;
270
271 /* The basic block structure for every insn, indexed by uid.  */
272
273 varray_type basic_block_for_insn;
274
275 /* The labels mentioned in non-jump rtl.  Valid during find_basic_blocks.  */
276 /* ??? Should probably be using LABEL_NUSES instead.  It would take a
277    bit of surgery to be able to use or co-opt the routines in jump.  */
278
279 static rtx label_value_list;
280 static rtx tail_recursion_label_list;
281
282 /* Holds information for tracking conditional register life information.  */
283 struct reg_cond_life_info
284 {
285   /* A boolean expression of conditions under which a register is dead.  */
286   rtx condition;
287   /* Conditions under which a register is dead at the basic block end.  */
288   rtx orig_condition;
289
290   /* A boolean expression of conditions under which a register has been
291      stored into.  */
292   rtx stores;
293
294   /* ??? Could store mask of bytes that are dead, so that we could finally
295      track lifetimes of multi-word registers accessed via subregs.  */
296 };
297
298 /* For use in communicating between propagate_block and its subroutines.
299    Holds all information needed to compute life and def-use information.  */
300
301 struct propagate_block_info
302 {
303   /* The basic block we're considering.  */
304   basic_block bb;
305
306   /* Bit N is set if register N is conditionally or unconditionally live.  */
307   regset reg_live;
308
309   /* Bit N is set if register N is set this insn.  */
310   regset new_set;
311
312   /* Element N is the next insn that uses (hard or pseudo) register N
313      within the current basic block; or zero, if there is no such insn.  */
314   rtx *reg_next_use;
315
316   /* Contains a list of all the MEMs we are tracking for dead store
317      elimination.  */
318   rtx mem_set_list;
319
320   /* If non-null, record the set of registers set unconditionally in the
321      basic block.  */
322   regset local_set;
323
324   /* If non-null, record the set of registers set conditionally in the
325      basic block.  */
326   regset cond_local_set;
327
328 #ifdef HAVE_conditional_execution
329   /* Indexed by register number, holds a reg_cond_life_info for each
330      register that is not unconditionally live or dead.  */
331   splay_tree reg_cond_dead;
332
333   /* Bit N is set if register N is in an expression in reg_cond_dead.  */
334   regset reg_cond_reg;
335 #endif
336
337   /* The length of mem_set_list.  */
338   int mem_set_list_len;
339
340   /* Non-zero if the value of CC0 is live.  */
341   int cc0_live;
342
343   /* Flags controling the set of information propagate_block collects.  */
344   int flags;
345 };
346
347 /* Maximum length of pbi->mem_set_list before we start dropping
348    new elements on the floor.  */
349 #define MAX_MEM_SET_LIST_LEN    100
350
351 /* Store the data structures necessary for depth-first search.  */
352 struct depth_first_search_dsS {
353   /* stack for backtracking during the algorithm */
354   basic_block *stack;
355
356   /* number of edges in the stack.  That is, positions 0, ..., sp-1
357      have edges.  */
358   unsigned int sp;
359
360   /* record of basic blocks already seen by depth-first search */
361   sbitmap visited_blocks;
362 };
363 typedef struct depth_first_search_dsS *depth_first_search_ds;
364
365 /* Have print_rtl_and_abort give the same information that fancy_abort
366    does.  */
367 #define print_rtl_and_abort() \
368   print_rtl_and_abort_fcn (__FILE__, __LINE__, __FUNCTION__)
369
370 /* Forward declarations */
371 static bool try_crossjump_to_edge       PARAMS ((int, edge, edge));
372 static bool try_crossjump_bb            PARAMS ((int, basic_block));
373 static bool outgoing_edges_match        PARAMS ((basic_block, basic_block));
374 static int flow_find_cross_jump         PARAMS ((int, basic_block, basic_block,
375                                                  rtx *, rtx *));
376 static int count_basic_blocks           PARAMS ((rtx));
377 static void find_basic_blocks_1         PARAMS ((rtx));
378 static rtx find_label_refs              PARAMS ((rtx, rtx));
379 static void make_edges                  PARAMS ((rtx, int, int, int));
380 static void make_label_edge             PARAMS ((sbitmap *, basic_block,
381                                                  rtx, int));
382 static void make_eh_edge                PARAMS ((sbitmap *, basic_block, rtx));
383
384 static void commit_one_edge_insertion   PARAMS ((edge));
385
386 static void delete_unreachable_blocks   PARAMS ((void));
387 static int can_delete_note_p            PARAMS ((rtx));
388 static int can_delete_label_p           PARAMS ((rtx));
389 static int tail_recursion_label_p       PARAMS ((rtx));
390 static int merge_blocks_move_predecessor_nojumps PARAMS ((basic_block,
391                                                           basic_block));
392 static int merge_blocks_move_successor_nojumps PARAMS ((basic_block,
393                                                         basic_block));
394 static int merge_blocks                 PARAMS ((edge,basic_block,basic_block,
395                                                  int));
396 static bool try_optimize_cfg            PARAMS ((int));
397 static bool can_fallthru                PARAMS ((basic_block, basic_block));
398 static bool try_redirect_by_replacing_jump PARAMS ((edge, basic_block));
399 static bool try_simplify_condjump       PARAMS ((basic_block));
400 static bool try_forward_edges           PARAMS ((int, basic_block));
401 static void tidy_fallthru_edges         PARAMS ((void));
402 static int verify_wide_reg_1            PARAMS ((rtx *, void *));
403 static void verify_wide_reg             PARAMS ((int, rtx, rtx));
404 static void verify_local_live_at_start  PARAMS ((regset, basic_block));
405 static void notice_stack_pointer_modification_1 PARAMS ((rtx, rtx, void *));
406 static void notice_stack_pointer_modification PARAMS ((rtx));
407 static void mark_reg                    PARAMS ((rtx, void *));
408 static void mark_regs_live_at_end       PARAMS ((regset));
409 static int set_phi_alternative_reg      PARAMS ((rtx, int, int, void *));
410 static void calculate_global_regs_live  PARAMS ((sbitmap, sbitmap, int));
411 static void propagate_block_delete_insn PARAMS ((basic_block, rtx));
412 static rtx propagate_block_delete_libcall PARAMS ((basic_block, rtx, rtx));
413 static int insn_dead_p                  PARAMS ((struct propagate_block_info *,
414                                                  rtx, int, rtx));
415 static int libcall_dead_p               PARAMS ((struct propagate_block_info *,
416                                                  rtx, rtx));
417 static void mark_set_regs               PARAMS ((struct propagate_block_info *,
418                                                  rtx, rtx));
419 static void mark_set_1                  PARAMS ((struct propagate_block_info *,
420                                                  enum rtx_code, rtx, rtx,
421                                                  rtx, int));
422 #ifdef HAVE_conditional_execution
423 static int mark_regno_cond_dead         PARAMS ((struct propagate_block_info *,
424                                                  int, rtx));
425 static void free_reg_cond_life_info     PARAMS ((splay_tree_value));
426 static int flush_reg_cond_reg_1         PARAMS ((splay_tree_node, void *));
427 static void flush_reg_cond_reg          PARAMS ((struct propagate_block_info *,
428                                                  int));
429 static rtx elim_reg_cond                PARAMS ((rtx, unsigned int));
430 static rtx ior_reg_cond                 PARAMS ((rtx, rtx, int));
431 static rtx not_reg_cond                 PARAMS ((rtx));
432 static rtx and_reg_cond                 PARAMS ((rtx, rtx, int));
433 #endif
434 #ifdef AUTO_INC_DEC
435 static void attempt_auto_inc            PARAMS ((struct propagate_block_info *,
436                                                  rtx, rtx, rtx, rtx, rtx));
437 static void find_auto_inc               PARAMS ((struct propagate_block_info *,
438                                                  rtx, rtx));
439 static int try_pre_increment_1          PARAMS ((struct propagate_block_info *,
440                                                  rtx));
441 static int try_pre_increment            PARAMS ((rtx, rtx, HOST_WIDE_INT));
442 #endif
443 static void mark_used_reg               PARAMS ((struct propagate_block_info *,
444                                                  rtx, rtx, rtx));
445 static void mark_used_regs              PARAMS ((struct propagate_block_info *,
446                                                  rtx, rtx, rtx));
447 void dump_flow_info                     PARAMS ((FILE *));
448 void debug_flow_info                    PARAMS ((void));
449 static void print_rtl_and_abort_fcn     PARAMS ((const char *, int,
450                                                  const char *))
451                                         ATTRIBUTE_NORETURN;
452
453 static void add_to_mem_set_list         PARAMS ((struct propagate_block_info *,
454                                                  rtx));
455 static void invalidate_mems_from_autoinc PARAMS ((struct propagate_block_info *,
456                                                   rtx));
457 static void invalidate_mems_from_set    PARAMS ((struct propagate_block_info *,
458                                                  rtx));
459 static void remove_fake_successors      PARAMS ((basic_block));
460 static void flow_nodes_print            PARAMS ((const char *, const sbitmap,
461                                                  FILE *));
462 static void flow_edge_list_print        PARAMS ((const char *, const edge *,
463                                                  int, FILE *));
464 static void flow_loops_cfg_dump         PARAMS ((const struct loops *,
465                                                  FILE *));
466 static int flow_loop_nested_p           PARAMS ((struct loop *,
467                                                  struct loop *));
468 static int flow_loop_entry_edges_find   PARAMS ((basic_block, const sbitmap,
469                                                  edge **));
470 static int flow_loop_exit_edges_find    PARAMS ((const sbitmap, edge **));
471 static int flow_loop_nodes_find PARAMS ((basic_block, basic_block, sbitmap));
472 static void flow_dfs_compute_reverse_init
473   PARAMS ((depth_first_search_ds));
474 static void flow_dfs_compute_reverse_add_bb
475   PARAMS ((depth_first_search_ds, basic_block));
476 static basic_block flow_dfs_compute_reverse_execute
477   PARAMS ((depth_first_search_ds));
478 static void flow_dfs_compute_reverse_finish
479   PARAMS ((depth_first_search_ds));
480 static void flow_loop_pre_header_scan PARAMS ((struct loop *));
481 static basic_block flow_loop_pre_header_find PARAMS ((basic_block,
482                                                       const sbitmap *));
483 static void flow_loop_tree_node_add     PARAMS ((struct loop *, struct loop *));
484 static void flow_loops_tree_build       PARAMS ((struct loops *));
485 static int flow_loop_level_compute      PARAMS ((struct loop *, int));
486 static int flow_loops_level_compute     PARAMS ((struct loops *));
487 static void delete_dead_jumptables      PARAMS ((void));
488 static bool back_edge_of_syntactic_loop_p PARAMS ((basic_block, basic_block));
489 static bool need_fake_edge_p            PARAMS ((rtx));
490 \f
491 /* Find basic blocks of the current function.
492    F is the first insn of the function and NREGS the number of register
493    numbers in use.  */
494
495 void
496 find_basic_blocks (f, nregs, file)
497      rtx f;
498      int nregs ATTRIBUTE_UNUSED;
499      FILE *file ATTRIBUTE_UNUSED;
500 {
501   int max_uid;
502   timevar_push (TV_CFG);
503
504   /* Flush out existing data.  */
505   if (basic_block_info != NULL)
506     {
507       int i;
508
509       clear_edges ();
510
511       /* Clear bb->aux on all extant basic blocks.  We'll use this as a
512          tag for reuse during create_basic_block, just in case some pass
513          copies around basic block notes improperly.  */
514       for (i = 0; i < n_basic_blocks; ++i)
515         BASIC_BLOCK (i)->aux = NULL;
516
517       VARRAY_FREE (basic_block_info);
518     }
519
520   n_basic_blocks = count_basic_blocks (f);
521
522   /* Size the basic block table.  The actual structures will be allocated
523      by find_basic_blocks_1, since we want to keep the structure pointers
524      stable across calls to find_basic_blocks.  */
525   /* ??? This whole issue would be much simpler if we called find_basic_blocks
526      exactly once, and thereafter we don't have a single long chain of
527      instructions at all until close to the end of compilation when we
528      actually lay them out.  */
529
530   VARRAY_BB_INIT (basic_block_info, n_basic_blocks, "basic_block_info");
531
532   find_basic_blocks_1 (f);
533
534   /* Record the block to which an insn belongs.  */
535   /* ??? This should be done another way, by which (perhaps) a label is
536      tagged directly with the basic block that it starts.  It is used for
537      more than that currently, but IMO that is the only valid use.  */
538
539   max_uid = get_max_uid ();
540 #ifdef AUTO_INC_DEC
541   /* Leave space for insns life_analysis makes in some cases for auto-inc.
542      These cases are rare, so we don't need too much space.  */
543   max_uid += max_uid / 10;
544 #endif
545
546   compute_bb_for_insn (max_uid);
547
548   /* Discover the edges of our cfg.  */
549   make_edges (label_value_list, 0, n_basic_blocks - 1, 0);
550
551   /* Do very simple cleanup now, for the benefit of code that runs between
552      here and cleanup_cfg, e.g. thread_prologue_and_epilogue_insns.  */
553   tidy_fallthru_edges ();
554
555   mark_critical_edges ();
556
557 #ifdef ENABLE_CHECKING
558   verify_flow_info ();
559 #endif
560   timevar_pop (TV_CFG);
561 }
562
563 void
564 check_function_return_warnings ()
565 {
566   if (warn_missing_noreturn
567       && !TREE_THIS_VOLATILE (cfun->decl)
568       && EXIT_BLOCK_PTR->pred == NULL
569       && (lang_missing_noreturn_ok_p
570           && !lang_missing_noreturn_ok_p (cfun->decl)))
571     warning ("function might be possible candidate for attribute `noreturn'");
572
573   /* If we have a path to EXIT, then we do return.  */
574   if (TREE_THIS_VOLATILE (cfun->decl)
575       && EXIT_BLOCK_PTR->pred != NULL)
576     warning ("`noreturn' function does return");
577
578   /* If the clobber_return_insn appears in some basic block, then we
579      do reach the end without returning a value.  */
580   else if (warn_return_type
581            && cfun->x_clobber_return_insn != NULL
582            && EXIT_BLOCK_PTR->pred != NULL)
583     {
584       int max_uid = get_max_uid ();
585
586       /* If clobber_return_insn was excised by jump1, then renumber_insns
587          can make max_uid smaller than the number still recorded in our rtx.
588          That's fine, since this is a quick way of verifying that the insn
589          is no longer in the chain.  */
590       if (INSN_UID (cfun->x_clobber_return_insn) < max_uid)
591         {
592           /* Recompute insn->block mapping, since the initial mapping is
593              set before we delete unreachable blocks.  */
594           compute_bb_for_insn (max_uid);
595
596           if (BLOCK_FOR_INSN (cfun->x_clobber_return_insn) != NULL)
597             warning ("control reaches end of non-void function");
598         }
599     }
600 }
601
602 /* Count the basic blocks of the function.  */
603
604 static int
605 count_basic_blocks (f)
606      rtx f;
607 {
608   register rtx insn;
609   register RTX_CODE prev_code;
610   register int count = 0;
611   int saw_abnormal_edge = 0;
612
613   prev_code = JUMP_INSN;
614   for (insn = f; insn; insn = NEXT_INSN (insn))
615     {
616       enum rtx_code code = GET_CODE (insn);
617
618       if (code == CODE_LABEL
619           || (GET_RTX_CLASS (code) == 'i'
620               && (prev_code == JUMP_INSN
621                   || prev_code == BARRIER
622                   || saw_abnormal_edge)))
623         {
624           saw_abnormal_edge = 0;
625           count++;
626         }
627
628       /* Record whether this insn created an edge.  */
629       if (code == CALL_INSN)
630         {
631           rtx note;
632
633           /* If there is a nonlocal goto label and the specified
634              region number isn't -1, we have an edge.  */
635           if (nonlocal_goto_handler_labels
636               && ((note = find_reg_note (insn, REG_EH_REGION, NULL_RTX)) == 0
637                   || INTVAL (XEXP (note, 0)) >= 0))
638             saw_abnormal_edge = 1;
639
640           else if (can_throw_internal (insn))
641             saw_abnormal_edge = 1;
642         }
643       else if (flag_non_call_exceptions
644                && code == INSN
645                && can_throw_internal (insn))
646         saw_abnormal_edge = 1;
647
648       if (code != NOTE)
649         prev_code = code;
650     }
651
652   /* The rest of the compiler works a bit smoother when we don't have to
653      check for the edge case of do-nothing functions with no basic blocks.  */
654   if (count == 0)
655     {
656       emit_insn (gen_rtx_USE (VOIDmode, const0_rtx));
657       count = 1;
658     }
659
660   return count;
661 }
662
663 /* Scan a list of insns for labels referred to other than by jumps.
664    This is used to scan the alternatives of a call placeholder.  */
665 static rtx
666 find_label_refs (f, lvl)
667      rtx f;
668      rtx lvl;
669 {
670   rtx insn;
671
672   for (insn = f; insn; insn = NEXT_INSN (insn))
673     if (INSN_P (insn) && GET_CODE (insn) != JUMP_INSN)
674       {
675         rtx note;
676
677         /* Make a list of all labels referred to other than by jumps
678            (which just don't have the REG_LABEL notes).
679
680            Make a special exception for labels followed by an ADDR*VEC,
681            as this would be a part of the tablejump setup code.
682
683            Make a special exception to registers loaded with label
684            values just before jump insns that use them.  */
685
686         for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
687           if (REG_NOTE_KIND (note) == REG_LABEL)
688             {
689               rtx lab = XEXP (note, 0), next;
690
691               if ((next = next_nonnote_insn (lab)) != NULL
692                        && GET_CODE (next) == JUMP_INSN
693                        && (GET_CODE (PATTERN (next)) == ADDR_VEC
694                            || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
695                 ;
696               else if (GET_CODE (lab) == NOTE)
697                 ;
698               else if (GET_CODE (NEXT_INSN (insn)) == JUMP_INSN
699                        && find_reg_note (NEXT_INSN (insn), REG_LABEL, lab))
700                 ;
701               else
702                 lvl = alloc_EXPR_LIST (0, XEXP (note, 0), lvl);
703             }
704       }
705
706   return lvl;
707 }
708
709 /* Assume that someone emitted code with control flow instructions to the
710    basic block.  Update the data structure.  */
711 void
712 find_sub_basic_blocks (bb)
713      basic_block bb;
714 {
715   rtx insn = bb->head;
716   rtx end = bb->end;
717   rtx jump_insn = NULL_RTX;
718   edge falltru = 0;
719   basic_block first_bb = bb;
720   int i;
721
722   if (insn == bb->end)
723     return;
724
725   if (GET_CODE (insn) == CODE_LABEL)
726     insn = NEXT_INSN (insn);
727
728   /* Scan insn chain and try to find new basic block boundaries.  */
729   while (1)
730     {
731       enum rtx_code code = GET_CODE (insn);
732       switch (code)
733         {
734         case BARRIER:
735           if (!jump_insn)
736             abort ();
737           break;
738         /* On code label, split current basic block.  */
739         case CODE_LABEL:
740           falltru = split_block (bb, PREV_INSN (insn));
741           if (jump_insn)
742             bb->end = jump_insn;
743           bb = falltru->dest;
744           remove_edge (falltru);
745           jump_insn = 0;
746           if (LABEL_ALTERNATE_NAME (insn))
747             make_edge (NULL, ENTRY_BLOCK_PTR, bb, 0);
748           break;
749         case INSN:
750         case JUMP_INSN:
751           /* In case we've previously split insn on the JUMP_INSN, move the
752              block header to proper place.  */
753           if (jump_insn)
754             {
755               falltru = split_block (bb, PREV_INSN (insn));
756               bb->end = jump_insn;
757               bb = falltru->dest;
758               remove_edge (falltru);
759               jump_insn = 0;
760             }
761           /* We need some special care for those expressions.  */
762           if (GET_CODE (insn) == JUMP_INSN)
763             {
764               if (GET_CODE (PATTERN (insn)) == ADDR_VEC
765                   || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
766                 abort();
767               jump_insn = insn;
768             }
769           break;
770         default:
771           break;
772         }
773       if (insn == end)
774         break;
775       insn = NEXT_INSN (insn);
776     }
777
778   /* In case expander replaced normal insn by sequence terminating by
779      return and barrier, or possibly other sequence not behaving like
780      ordinary jump, we need to take care and move basic block boundary.  */
781   if (jump_insn && GET_CODE (bb->end) != JUMP_INSN)
782     bb->end = jump_insn;
783
784   /* We've possibly replaced the conditional jump by conditional jump
785      followed by cleanup at fallthru edge, so the outgoing edges may
786      be dead.  */
787   purge_dead_edges (bb);
788
789   /* Now re-scan and wire in all edges.  This expect simple (conditional)
790      jumps at the end of each new basic blocks.  */
791   make_edges (NULL, first_bb->index, bb->index, 1);
792
793   /* Update branch probabilities.  Expect only (un)conditional jumps
794      to be created with only the forward edges.  */
795   for (i = first_bb->index; i <= bb->index; i++)
796     {
797       edge e,f;
798       basic_block b = BASIC_BLOCK (i);
799       if (b != first_bb)
800         {
801           b->count = 0;
802           b->frequency = 0;
803           for (e = b->pred; e; e=e->pred_next)
804             {
805               b->count += e->count;
806               b->frequency += EDGE_FREQUENCY (e);
807             }
808         }
809       if (b->succ && b->succ->succ_next && !b->succ->succ_next->succ_next)
810         {
811           rtx note = find_reg_note (b->end, REG_BR_PROB, NULL);
812           int probability;
813
814           if (!note)
815             continue;
816           probability = INTVAL (XEXP (find_reg_note (b->end,
817                                                      REG_BR_PROB,
818                                                      NULL), 0));
819           e = BRANCH_EDGE (b);
820           e->probability = probability;
821           e->count = ((b->count * probability + REG_BR_PROB_BASE / 2)
822                       / REG_BR_PROB_BASE);
823           f = FALLTHRU_EDGE (b);
824           f->probability = REG_BR_PROB_BASE - probability;
825           f->count = b->count - e->count;
826         }
827       if (b->succ && !b->succ->succ_next)
828         {
829           e = b->succ;
830           e->probability = REG_BR_PROB_BASE;
831           e->count = b->count;
832         }
833     }
834 }
835
836 /* Find all basic blocks of the function whose first insn is F.
837
838    Collect and return a list of labels whose addresses are taken.  This
839    will be used in make_edges for use with computed gotos.  */
840
841 static void
842 find_basic_blocks_1 (f)
843      rtx f;
844 {
845   register rtx insn, next;
846   int i = 0;
847   rtx bb_note = NULL_RTX;
848   rtx lvl = NULL_RTX;
849   rtx trll = NULL_RTX;
850   rtx head = NULL_RTX;
851   rtx end = NULL_RTX;
852
853   /* We process the instructions in a slightly different way than we did
854      previously.  This is so that we see a NOTE_BASIC_BLOCK after we have
855      closed out the previous block, so that it gets attached at the proper
856      place.  Since this form should be equivalent to the previous,
857      count_basic_blocks continues to use the old form as a check.  */
858
859   for (insn = f; insn; insn = next)
860     {
861       enum rtx_code code = GET_CODE (insn);
862
863       next = NEXT_INSN (insn);
864
865       switch (code)
866         {
867         case NOTE:
868           {
869             int kind = NOTE_LINE_NUMBER (insn);
870
871             /* Look for basic block notes with which to keep the
872                basic_block_info pointers stable.  Unthread the note now;
873                we'll put it back at the right place in create_basic_block.
874                Or not at all if we've already found a note in this block.  */
875             if (kind == NOTE_INSN_BASIC_BLOCK)
876               {
877                 if (bb_note == NULL_RTX)
878                   bb_note = insn;
879                 else
880                   next = flow_delete_insn (insn);
881               }
882             break;
883           }
884
885         case CODE_LABEL:
886           /* A basic block starts at a label.  If we've closed one off due
887              to a barrier or some such, no need to do it again.  */
888           if (head != NULL_RTX)
889             {
890               create_basic_block (i++, head, end, bb_note);
891               bb_note = NULL_RTX;
892             }
893
894           head = end = insn;
895           break;
896
897         case JUMP_INSN:
898           /* A basic block ends at a jump.  */
899           if (head == NULL_RTX)
900             head = insn;
901           else
902             {
903               /* ??? Make a special check for table jumps.  The way this
904                  happens is truly and amazingly gross.  We are about to
905                  create a basic block that contains just a code label and
906                  an addr*vec jump insn.  Worse, an addr_diff_vec creates
907                  its own natural loop.
908
909                  Prevent this bit of brain damage, pasting things together
910                  correctly in make_edges.
911
912                  The correct solution involves emitting the table directly
913                  on the tablejump instruction as a note, or JUMP_LABEL.  */
914
915               if (GET_CODE (PATTERN (insn)) == ADDR_VEC
916                   || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
917                 {
918                   head = end = NULL;
919                   n_basic_blocks--;
920                   break;
921                 }
922             }
923           end = insn;
924           goto new_bb_inclusive;
925
926         case BARRIER:
927           /* A basic block ends at a barrier.  It may be that an unconditional
928              jump already closed the basic block -- no need to do it again.  */
929           if (head == NULL_RTX)
930             break;
931           goto new_bb_exclusive;
932
933         case CALL_INSN:
934           {
935             /* Record whether this call created an edge.  */
936             rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
937             int region = (note ? INTVAL (XEXP (note, 0)) : 0);
938
939             if (GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
940               {
941                 /* Scan each of the alternatives for label refs.  */
942                 lvl = find_label_refs (XEXP (PATTERN (insn), 0), lvl);
943                 lvl = find_label_refs (XEXP (PATTERN (insn), 1), lvl);
944                 lvl = find_label_refs (XEXP (PATTERN (insn), 2), lvl);
945                 /* Record its tail recursion label, if any.  */
946                 if (XEXP (PATTERN (insn), 3) != NULL_RTX)
947                   trll = alloc_EXPR_LIST (0, XEXP (PATTERN (insn), 3), trll);
948               }
949
950             /* A basic block ends at a call that can either throw or
951                do a non-local goto.  */
952             if ((nonlocal_goto_handler_labels && region >= 0)
953                 || can_throw_internal (insn))
954               {
955               new_bb_inclusive:
956                 if (head == NULL_RTX)
957                   head = insn;
958                 end = insn;
959
960               new_bb_exclusive:
961                 create_basic_block (i++, head, end, bb_note);
962                 head = end = NULL_RTX;
963                 bb_note = NULL_RTX;
964                 break;
965               }
966           }
967           /* Fall through.  */
968
969         case INSN:
970           /* Non-call exceptions generate new blocks just like calls.  */
971           if (flag_non_call_exceptions && can_throw_internal (insn))
972             goto new_bb_inclusive;
973
974           if (head == NULL_RTX)
975             head = insn;
976           end = insn;
977           break;
978
979         default:
980           abort ();
981         }
982
983       if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
984         {
985           rtx note;
986
987           /* Make a list of all labels referred to other than by jumps.
988
989              Make a special exception for labels followed by an ADDR*VEC,
990              as this would be a part of the tablejump setup code.
991
992              Make a special exception to registers loaded with label
993              values just before jump insns that use them.  */
994
995           for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
996             if (REG_NOTE_KIND (note) == REG_LABEL)
997               {
998                 rtx lab = XEXP (note, 0), next;
999
1000                 if ((next = next_nonnote_insn (lab)) != NULL
1001                          && GET_CODE (next) == JUMP_INSN
1002                          && (GET_CODE (PATTERN (next)) == ADDR_VEC
1003                              || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
1004                   ;
1005                 else if (GET_CODE (lab) == NOTE)
1006                   ;
1007                 else if (GET_CODE (NEXT_INSN (insn)) == JUMP_INSN
1008                          && find_reg_note (NEXT_INSN (insn), REG_LABEL, lab))
1009                   ;
1010                 else
1011                   lvl = alloc_EXPR_LIST (0, XEXP (note, 0), lvl);
1012               }
1013         }
1014     }
1015
1016   if (head != NULL_RTX)
1017     create_basic_block (i++, head, end, bb_note);
1018   else if (bb_note)
1019     flow_delete_insn (bb_note);
1020
1021   if (i != n_basic_blocks)
1022     abort ();
1023
1024   label_value_list = lvl;
1025   tail_recursion_label_list = trll;
1026 }
1027
1028 /* Tidy the CFG by deleting unreachable code and whatnot.  */
1029
1030 void
1031 cleanup_cfg (mode)
1032      int mode;
1033 {
1034   int i;
1035
1036   timevar_push (TV_CLEANUP_CFG);
1037   delete_unreachable_blocks ();
1038   if (try_optimize_cfg (mode))
1039     delete_unreachable_blocks ();
1040   mark_critical_edges ();
1041
1042   /* Kill the data we won't maintain.  */
1043   free_EXPR_LIST_list (&label_value_list);
1044   free_EXPR_LIST_list (&tail_recursion_label_list);
1045   timevar_pop (TV_CLEANUP_CFG);
1046
1047   /* Clear bb->aux on all basic blocks.  */
1048   for (i = 0; i < n_basic_blocks; ++i)
1049     BASIC_BLOCK (i)->aux = NULL;
1050 }
1051
1052 /* Create a new basic block consisting of the instructions between
1053    HEAD and END inclusive.  Reuses the note and basic block struct
1054    in BB_NOTE, if any.  */
1055
1056 void
1057 create_basic_block (index, head, end, bb_note)
1058      int index;
1059      rtx head, end, bb_note;
1060 {
1061   basic_block bb;
1062
1063   if (bb_note
1064       && ! RTX_INTEGRATED_P (bb_note)
1065       && (bb = NOTE_BASIC_BLOCK (bb_note)) != NULL
1066       && bb->aux == NULL)
1067     {
1068       /* If we found an existing note, thread it back onto the chain.  */
1069
1070       rtx after;
1071
1072       if (GET_CODE (head) == CODE_LABEL)
1073         after = head;
1074       else
1075         {
1076           after = PREV_INSN (head);
1077           head = bb_note;
1078         }
1079
1080       if (after != bb_note && NEXT_INSN (after) != bb_note)
1081         reorder_insns (bb_note, bb_note, after);
1082     }
1083   else
1084     {
1085       /* Otherwise we must create a note and a basic block structure.
1086          Since we allow basic block structs in rtl, give the struct
1087          the same lifetime by allocating it off the function obstack
1088          rather than using malloc.  */
1089
1090       bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*bb));
1091       memset (bb, 0, sizeof (*bb));
1092
1093       if (GET_CODE (head) == CODE_LABEL)
1094         bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, head);
1095       else
1096         {
1097           bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, head);
1098           head = bb_note;
1099         }
1100       NOTE_BASIC_BLOCK (bb_note) = bb;
1101     }
1102
1103   /* Always include the bb note in the block.  */
1104   if (NEXT_INSN (end) == bb_note)
1105     end = bb_note;
1106
1107   bb->head = head;
1108   bb->end = end;
1109   bb->index = index;
1110   BASIC_BLOCK (index) = bb;
1111
1112   /* Tag the block so that we know it has been used when considering
1113      other basic block notes.  */
1114   bb->aux = bb;
1115 }
1116 \f
1117 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
1118    note associated with the BLOCK.  */
1119
1120 rtx
1121 first_insn_after_basic_block_note (block)
1122      basic_block block;
1123 {
1124   rtx insn;
1125
1126   /* Get the first instruction in the block.  */
1127   insn = block->head;
1128
1129   if (insn == NULL_RTX)
1130     return NULL_RTX;
1131   if (GET_CODE (insn) == CODE_LABEL)
1132     insn = NEXT_INSN (insn);
1133   if (!NOTE_INSN_BASIC_BLOCK_P (insn))
1134     abort ();
1135
1136   return NEXT_INSN (insn);
1137 }
1138
1139 /* Records the basic block struct in BB_FOR_INSN, for every instruction
1140    indexed by INSN_UID.  MAX is the size of the array.  */
1141
1142 void
1143 compute_bb_for_insn (max)
1144      int max;
1145 {
1146   int i;
1147
1148   if (basic_block_for_insn)
1149     VARRAY_FREE (basic_block_for_insn);
1150   VARRAY_BB_INIT (basic_block_for_insn, max, "basic_block_for_insn");
1151
1152   for (i = 0; i < n_basic_blocks; ++i)
1153     {
1154       basic_block bb = BASIC_BLOCK (i);
1155       rtx insn, end;
1156
1157       end = bb->end;
1158       insn = bb->head;
1159       while (1)
1160         {
1161           int uid = INSN_UID (insn);
1162           if (uid < max)
1163             VARRAY_BB (basic_block_for_insn, uid) = bb;
1164           if (insn == end)
1165             break;
1166           insn = NEXT_INSN (insn);
1167         }
1168     }
1169 }
1170
1171 /* Free the memory associated with the edge structures.  */
1172
1173 void
1174 clear_edges ()
1175 {
1176   int i;
1177   edge n, e;
1178
1179   for (i = 0; i < n_basic_blocks; ++i)
1180     {
1181       basic_block bb = BASIC_BLOCK (i);
1182
1183       for (e = bb->succ; e; e = n)
1184         {
1185           n = e->succ_next;
1186           free (e);
1187         }
1188
1189       bb->succ = 0;
1190       bb->pred = 0;
1191     }
1192
1193   for (e = ENTRY_BLOCK_PTR->succ; e; e = n)
1194     {
1195       n = e->succ_next;
1196       free (e);
1197     }
1198
1199   ENTRY_BLOCK_PTR->succ = 0;
1200   EXIT_BLOCK_PTR->pred = 0;
1201
1202   n_edges = 0;
1203 }
1204
1205 /* Identify the edges between basic blocks MIN to MAX.
1206
1207    NONLOCAL_LABEL_LIST is a list of non-local labels in the function.  Blocks
1208    that are otherwise unreachable may be reachable with a non-local goto.
1209
1210    BB_EH_END is an array indexed by basic block number in which we record
1211    the list of exception regions active at the end of the basic block.  */
1212
1213 static void
1214 make_edges (label_value_list, min, max, update_p)
1215      rtx label_value_list;
1216      int min, max, update_p;
1217 {
1218   int i;
1219   sbitmap *edge_cache = NULL;
1220
1221   /* Assume no computed jump; revise as we create edges.  */
1222   current_function_has_computed_jump = 0;
1223
1224   /* Heavy use of computed goto in machine-generated code can lead to
1225      nearly fully-connected CFGs.  In that case we spend a significant
1226      amount of time searching the edge lists for duplicates.  */
1227   if (forced_labels || label_value_list)
1228     {
1229       edge_cache = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
1230       sbitmap_vector_zero (edge_cache, n_basic_blocks);
1231
1232       if (update_p)
1233         for (i = min; i <= max; ++i)
1234           {
1235             edge e;
1236             for (e = BASIC_BLOCK (i)->succ; e ; e = e->succ_next)
1237               if (e->dest != EXIT_BLOCK_PTR)
1238                 SET_BIT (edge_cache[i], e->dest->index);
1239           }
1240     }
1241
1242   /* By nature of the way these get numbered, block 0 is always the entry.  */
1243   make_edge (edge_cache, ENTRY_BLOCK_PTR, BASIC_BLOCK (0), EDGE_FALLTHRU);
1244
1245   for (i = min; i <= max; ++i)
1246     {
1247       basic_block bb = BASIC_BLOCK (i);
1248       rtx insn, x;
1249       enum rtx_code code;
1250       int force_fallthru = 0;
1251
1252       if (GET_CODE (bb->head) == CODE_LABEL
1253           && LABEL_ALTERNATE_NAME (bb->head))
1254         make_edge (NULL, ENTRY_BLOCK_PTR, bb, 0);
1255
1256       /* Examine the last instruction of the block, and discover the
1257          ways we can leave the block.  */
1258
1259       insn = bb->end;
1260       code = GET_CODE (insn);
1261
1262       /* A branch.  */
1263       if (code == JUMP_INSN)
1264         {
1265           rtx tmp;
1266
1267           /* Recognize exception handling placeholders.  */
1268           if (GET_CODE (PATTERN (insn)) == RESX)
1269             make_eh_edge (edge_cache, bb, insn);
1270
1271           /* Recognize a non-local goto as a branch outside the
1272              current function.  */
1273           else if (find_reg_note (insn, REG_NON_LOCAL_GOTO, NULL_RTX))
1274             ;
1275
1276           /* ??? Recognize a tablejump and do the right thing.  */
1277           else if ((tmp = JUMP_LABEL (insn)) != NULL_RTX
1278                    && (tmp = NEXT_INSN (tmp)) != NULL_RTX
1279                    && GET_CODE (tmp) == JUMP_INSN
1280                    && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
1281                        || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
1282             {
1283               rtvec vec;
1284               int j;
1285
1286               if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
1287                 vec = XVEC (PATTERN (tmp), 0);
1288               else
1289                 vec = XVEC (PATTERN (tmp), 1);
1290
1291               for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
1292                 make_label_edge (edge_cache, bb,
1293                                  XEXP (RTVEC_ELT (vec, j), 0), 0);
1294
1295               /* Some targets (eg, ARM) emit a conditional jump that also
1296                  contains the out-of-range target.  Scan for these and
1297                  add an edge if necessary.  */
1298               if ((tmp = single_set (insn)) != NULL
1299                   && SET_DEST (tmp) == pc_rtx
1300                   && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
1301                   && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF)
1302                 make_label_edge (edge_cache, bb,
1303                                  XEXP (XEXP (SET_SRC (tmp), 2), 0), 0);
1304
1305 #ifdef CASE_DROPS_THROUGH
1306               /* Silly VAXen.  The ADDR_VEC is going to be in the way of
1307                  us naturally detecting fallthru into the next block.  */
1308               force_fallthru = 1;
1309 #endif
1310             }
1311
1312           /* If this is a computed jump, then mark it as reaching
1313              everything on the label_value_list and forced_labels list.  */
1314           else if (computed_jump_p (insn))
1315             {
1316               current_function_has_computed_jump = 1;
1317
1318               for (x = label_value_list; x; x = XEXP (x, 1))
1319                 make_label_edge (edge_cache, bb, XEXP (x, 0), EDGE_ABNORMAL);
1320
1321               for (x = forced_labels; x; x = XEXP (x, 1))
1322                 make_label_edge (edge_cache, bb, XEXP (x, 0), EDGE_ABNORMAL);
1323             }
1324
1325           /* Returns create an exit out.  */
1326           else if (returnjump_p (insn))
1327             make_edge (edge_cache, bb, EXIT_BLOCK_PTR, 0);
1328
1329           /* Otherwise, we have a plain conditional or unconditional jump.  */
1330           else
1331             {
1332               if (! JUMP_LABEL (insn))
1333                 abort ();
1334               make_label_edge (edge_cache, bb, JUMP_LABEL (insn), 0);
1335             }
1336         }
1337
1338       /* If this is a sibling call insn, then this is in effect a
1339          combined call and return, and so we need an edge to the
1340          exit block.  No need to worry about EH edges, since we
1341          wouldn't have created the sibling call in the first place.  */
1342
1343       if (code == CALL_INSN && SIBLING_CALL_P (insn))
1344         make_edge (edge_cache, bb, EXIT_BLOCK_PTR,
1345                    EDGE_ABNORMAL | EDGE_ABNORMAL_CALL);
1346
1347       /* If this is a CALL_INSN, then mark it as reaching the active EH
1348          handler for this CALL_INSN.  If we're handling non-call
1349          exceptions then any insn can reach any of the active handlers.
1350
1351          Also mark the CALL_INSN as reaching any nonlocal goto handler.  */
1352
1353       else if (code == CALL_INSN || flag_non_call_exceptions)
1354         {
1355           /* Add any appropriate EH edges.  */
1356           make_eh_edge (edge_cache, bb, insn);
1357
1358           if (code == CALL_INSN && nonlocal_goto_handler_labels)
1359             {
1360               /* ??? This could be made smarter: in some cases it's possible
1361                  to tell that certain calls will not do a nonlocal goto.
1362
1363                  For example, if the nested functions that do the nonlocal
1364                  gotos do not have their addresses taken, then only calls to
1365                  those functions or to other nested functions that use them
1366                  could possibly do nonlocal gotos.  */
1367               /* We do know that a REG_EH_REGION note with a value less
1368                  than 0 is guaranteed not to perform a non-local goto.  */
1369               rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
1370               if (!note || INTVAL (XEXP (note, 0)) >=  0)
1371                 for (x = nonlocal_goto_handler_labels; x; x = XEXP (x, 1))
1372                   make_label_edge (edge_cache, bb, XEXP (x, 0),
1373                                    EDGE_ABNORMAL | EDGE_ABNORMAL_CALL);
1374             }
1375         }
1376
1377       /* Find out if we can drop through to the next block.  */
1378       insn = next_nonnote_insn (insn);
1379       if (!insn || (i + 1 == n_basic_blocks && force_fallthru))
1380         make_edge (edge_cache, bb, EXIT_BLOCK_PTR, EDGE_FALLTHRU);
1381       else if (i + 1 < n_basic_blocks)
1382         {
1383           rtx tmp = BLOCK_HEAD (i + 1);
1384           if (GET_CODE (tmp) == NOTE)
1385             tmp = next_nonnote_insn (tmp);
1386           if (force_fallthru || insn == tmp)
1387             make_edge (edge_cache, bb, BASIC_BLOCK (i + 1), EDGE_FALLTHRU);
1388         }
1389     }
1390
1391   if (edge_cache)
1392     sbitmap_vector_free (edge_cache);
1393 }
1394
1395 /* Create an edge between two basic blocks.  FLAGS are auxiliary information
1396    about the edge that is accumulated between calls.  */
1397
1398 void
1399 make_edge (edge_cache, src, dst, flags)
1400      sbitmap *edge_cache;
1401      basic_block src, dst;
1402      int flags;
1403 {
1404   int use_edge_cache;
1405   edge e;
1406
1407   /* Don't bother with edge cache for ENTRY or EXIT; there aren't that
1408      many edges to them, and we didn't allocate memory for it.  */
1409   use_edge_cache = (edge_cache
1410                     && src != ENTRY_BLOCK_PTR
1411                     && dst != EXIT_BLOCK_PTR);
1412
1413   /* Make sure we don't add duplicate edges.  */
1414   switch (use_edge_cache)
1415     {
1416     default:
1417       /* Quick test for non-existance of the edge.  */
1418       if (! TEST_BIT (edge_cache[src->index], dst->index))
1419         break;
1420
1421       /* The edge exists; early exit if no work to do.  */
1422       if (flags == 0)
1423         return;
1424
1425       /* FALLTHRU */
1426     case 0:
1427       for (e = src->succ; e; e = e->succ_next)
1428         if (e->dest == dst)
1429           {
1430             e->flags |= flags;
1431             return;
1432           }
1433       break;
1434     }
1435
1436   e = (edge) xcalloc (1, sizeof (*e));
1437   n_edges++;
1438
1439   e->succ_next = src->succ;
1440   e->pred_next = dst->pred;
1441   e->src = src;
1442   e->dest = dst;
1443   e->flags = flags;
1444
1445   src->succ = e;
1446   dst->pred = e;
1447
1448   if (use_edge_cache)
1449     SET_BIT (edge_cache[src->index], dst->index);
1450 }
1451
1452 /* Create an edge from a basic block to a label.  */
1453
1454 static void
1455 make_label_edge (edge_cache, src, label, flags)
1456      sbitmap *edge_cache;
1457      basic_block src;
1458      rtx label;
1459      int flags;
1460 {
1461   if (GET_CODE (label) != CODE_LABEL)
1462     abort ();
1463
1464   /* If the label was never emitted, this insn is junk, but avoid a
1465      crash trying to refer to BLOCK_FOR_INSN (label).  This can happen
1466      as a result of a syntax error and a diagnostic has already been
1467      printed.  */
1468
1469   if (INSN_UID (label) == 0)
1470     return;
1471
1472   make_edge (edge_cache, src, BLOCK_FOR_INSN (label), flags);
1473 }
1474
1475 /* Create the edges generated by INSN in REGION.  */
1476
1477 static void
1478 make_eh_edge (edge_cache, src, insn)
1479      sbitmap *edge_cache;
1480      basic_block src;
1481      rtx insn;
1482 {
1483   int is_call = (GET_CODE (insn) == CALL_INSN ? EDGE_ABNORMAL_CALL : 0);
1484   rtx handlers, i;
1485
1486   handlers = reachable_handlers (insn);
1487
1488   for (i = handlers; i; i = XEXP (i, 1))
1489     make_label_edge (edge_cache, src, XEXP (i, 0),
1490                      EDGE_ABNORMAL | EDGE_EH | is_call);
1491
1492   free_INSN_LIST_list (&handlers);
1493 }
1494
1495 /* Identify critical edges and set the bits appropriately.  */
1496
1497 void
1498 mark_critical_edges ()
1499 {
1500   int i, n = n_basic_blocks;
1501   basic_block bb;
1502
1503   /* We begin with the entry block.  This is not terribly important now,
1504      but could be if a front end (Fortran) implemented alternate entry
1505      points.  */
1506   bb = ENTRY_BLOCK_PTR;
1507   i = -1;
1508
1509   while (1)
1510     {
1511       edge e;
1512
1513       /* (1) Critical edges must have a source with multiple successors.  */
1514       if (bb->succ && bb->succ->succ_next)
1515         {
1516           for (e = bb->succ; e; e = e->succ_next)
1517             {
1518               /* (2) Critical edges must have a destination with multiple
1519                  predecessors.  Note that we know there is at least one
1520                  predecessor -- the edge we followed to get here.  */
1521               if (e->dest->pred->pred_next)
1522                 e->flags |= EDGE_CRITICAL;
1523               else
1524                 e->flags &= ~EDGE_CRITICAL;
1525             }
1526         }
1527       else
1528         {
1529           for (e = bb->succ; e; e = e->succ_next)
1530             e->flags &= ~EDGE_CRITICAL;
1531         }
1532
1533       if (++i >= n)
1534         break;
1535       bb = BASIC_BLOCK (i);
1536     }
1537 }
1538 \f
1539 /* Mark the back edges in DFS traversal.
1540    Return non-zero if a loop (natural or otherwise) is present.
1541    Inspired by Depth_First_Search_PP described in:
1542
1543      Advanced Compiler Design and Implementation
1544      Steven Muchnick
1545      Morgan Kaufmann, 1997
1546
1547    and heavily borrowed from flow_depth_first_order_compute.  */
1548
1549 bool
1550 mark_dfs_back_edges ()
1551 {
1552   edge *stack;
1553   int *pre;
1554   int *post;
1555   int sp;
1556   int prenum = 1;
1557   int postnum = 1;
1558   sbitmap visited;
1559   bool found = false;
1560
1561   /* Allocate the preorder and postorder number arrays.  */
1562   pre = (int *) xcalloc (n_basic_blocks, sizeof (int));
1563   post = (int *) xcalloc (n_basic_blocks, sizeof (int));
1564
1565   /* Allocate stack for back-tracking up CFG.  */
1566   stack = (edge *) xmalloc ((n_basic_blocks + 1) * sizeof (edge));
1567   sp = 0;
1568
1569   /* Allocate bitmap to track nodes that have been visited.  */
1570   visited = sbitmap_alloc (n_basic_blocks);
1571
1572   /* None of the nodes in the CFG have been visited yet.  */
1573   sbitmap_zero (visited);
1574
1575   /* Push the first edge on to the stack.  */
1576   stack[sp++] = ENTRY_BLOCK_PTR->succ;
1577
1578   while (sp)
1579     {
1580       edge e;
1581       basic_block src;
1582       basic_block dest;
1583
1584       /* Look at the edge on the top of the stack.  */
1585       e = stack[sp - 1];
1586       src = e->src;
1587       dest = e->dest;
1588       e->flags &= ~EDGE_DFS_BACK;
1589
1590       /* Check if the edge destination has been visited yet.  */
1591       if (dest != EXIT_BLOCK_PTR && ! TEST_BIT (visited, dest->index))
1592         {
1593           /* Mark that we have visited the destination.  */
1594           SET_BIT (visited, dest->index);
1595
1596           pre[dest->index] = prenum++;
1597
1598           if (dest->succ)
1599             {
1600               /* Since the DEST node has been visited for the first
1601                  time, check its successors.  */
1602               stack[sp++] = dest->succ;
1603             }
1604           else
1605             post[dest->index] = postnum++;
1606         }
1607       else
1608         {
1609           if (dest != EXIT_BLOCK_PTR && src != ENTRY_BLOCK_PTR
1610               && pre[src->index] >= pre[dest->index]
1611               && post[dest->index] == 0)
1612             e->flags |= EDGE_DFS_BACK, found = true;
1613
1614           if (! e->succ_next && src != ENTRY_BLOCK_PTR)
1615             post[src->index] = postnum++;
1616
1617           if (e->succ_next)
1618             stack[sp - 1] = e->succ_next;
1619           else
1620             sp--;
1621         }
1622     }
1623
1624   free (pre);
1625   free (post);
1626   free (stack);
1627   sbitmap_free (visited);
1628
1629   return found;
1630 }
1631 \f
1632 /* Split a block BB after insn INSN creating a new fallthru edge.
1633    Return the new edge.  Note that to keep other parts of the compiler happy,
1634    this function renumbers all the basic blocks so that the new
1635    one has a number one greater than the block split.  */
1636
1637 edge
1638 split_block (bb, insn)
1639      basic_block bb;
1640      rtx insn;
1641 {
1642   basic_block new_bb;
1643   edge new_edge;
1644   edge e;
1645   rtx bb_note;
1646   int i, j;
1647
1648   /* There is no point splitting the block after its end.  */
1649   if (bb->end == insn)
1650     return 0;
1651
1652   /* Create the new structures.  */
1653   new_bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*new_bb));
1654   new_edge = (edge) xcalloc (1, sizeof (*new_edge));
1655   n_edges++;
1656
1657   memset (new_bb, 0, sizeof (*new_bb));
1658
1659   new_bb->head = NEXT_INSN (insn);
1660   new_bb->end = bb->end;
1661   bb->end = insn;
1662
1663   new_bb->succ = bb->succ;
1664   bb->succ = new_edge;
1665   new_bb->pred = new_edge;
1666   new_bb->count = bb->count;
1667   new_bb->frequency = bb->frequency;
1668   new_bb->loop_depth = bb->loop_depth;
1669
1670   new_edge->src = bb;
1671   new_edge->dest = new_bb;
1672   new_edge->flags = EDGE_FALLTHRU;
1673   new_edge->probability = REG_BR_PROB_BASE;
1674   new_edge->count = bb->count;
1675
1676   /* Redirect the src of the successor edges of bb to point to new_bb.  */
1677   for (e = new_bb->succ; e; e = e->succ_next)
1678     e->src = new_bb;
1679
1680   /* Place the new block just after the block being split.  */
1681   VARRAY_GROW (basic_block_info, ++n_basic_blocks);
1682
1683   /* Some parts of the compiler expect blocks to be number in
1684      sequential order so insert the new block immediately after the
1685      block being split..  */
1686   j = bb->index;
1687   for (i = n_basic_blocks - 1; i > j + 1; --i)
1688     {
1689       basic_block tmp = BASIC_BLOCK (i - 1);
1690       BASIC_BLOCK (i) = tmp;
1691       tmp->index = i;
1692     }
1693
1694   BASIC_BLOCK (i) = new_bb;
1695   new_bb->index = i;
1696
1697   if (GET_CODE (new_bb->head) == CODE_LABEL)
1698     {
1699       /* Create the basic block note.  */
1700       bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK,
1701                                  new_bb->head);
1702       NOTE_BASIC_BLOCK (bb_note) = new_bb;
1703
1704       /* If the only thing in this new block was the label, make sure
1705          the block note gets included.  */
1706       if (new_bb->head == new_bb->end)
1707         new_bb->end = bb_note;
1708     }
1709   else
1710     {
1711       /* Create the basic block note.  */
1712       bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK,
1713                                   new_bb->head);
1714       NOTE_BASIC_BLOCK (bb_note) = new_bb;
1715       new_bb->head = bb_note;
1716     }
1717
1718   update_bb_for_insn (new_bb);
1719
1720   if (bb->global_live_at_start)
1721     {
1722       new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1723       new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1724       COPY_REG_SET (new_bb->global_live_at_end, bb->global_live_at_end);
1725
1726       /* We now have to calculate which registers are live at the end
1727          of the split basic block and at the start of the new basic
1728          block.  Start with those registers that are known to be live
1729          at the end of the original basic block and get
1730          propagate_block to determine which registers are live.  */
1731       COPY_REG_SET (new_bb->global_live_at_start, bb->global_live_at_end);
1732       propagate_block (new_bb, new_bb->global_live_at_start, NULL, NULL, 0);
1733       COPY_REG_SET (bb->global_live_at_end,
1734                     new_bb->global_live_at_start);
1735     }
1736
1737   return new_edge;
1738 }
1739
1740 /* Return label in the head of basic block.  Create one if it doesn't exist.  */
1741 rtx
1742 block_label (block)
1743      basic_block block;
1744 {
1745   if (block == EXIT_BLOCK_PTR)
1746     return NULL_RTX;
1747   if (GET_CODE (block->head) != CODE_LABEL)
1748     {
1749       block->head = emit_label_before (gen_label_rtx (), block->head);
1750       if (basic_block_for_insn)
1751         set_block_for_insn (block->head, block);
1752     }
1753   return block->head;
1754 }
1755
1756 /* Return true if the block has no effect and only forwards control flow to
1757    its single destination.  */
1758 bool
1759 forwarder_block_p (bb)
1760      basic_block bb;
1761 {
1762   rtx insn = bb->head;
1763   if (bb == EXIT_BLOCK_PTR || bb == ENTRY_BLOCK_PTR
1764       || !bb->succ || bb->succ->succ_next)
1765     return false;
1766
1767   while (insn != bb->end)
1768     {
1769       if (active_insn_p (insn))
1770         return false;
1771       insn = NEXT_INSN (insn);
1772     }
1773   return (!active_insn_p (insn)
1774           || (GET_CODE (insn) == JUMP_INSN && onlyjump_p (insn)));
1775 }
1776
1777 /* Return nonzero if we can reach target from src by falling trought.  */
1778 static bool
1779 can_fallthru (src, target)
1780      basic_block src, target;
1781 {
1782   rtx insn = src->end;
1783   rtx insn2 = target->head;
1784
1785   if (src->index + 1 == target->index && !active_insn_p (insn2))
1786     insn2 = next_active_insn (insn2);
1787   /* ??? Later we may add code to move jump tables offline.  */
1788   return next_active_insn (insn) == insn2;
1789 }
1790
1791 /* Attempt to perform edge redirection by replacing possibly complex jump
1792    instruction by unconditional jump or removing jump completely.
1793    This can apply only if all edges now point to the same block.
1794
1795    The parameters and return values are equivalent to redirect_edge_and_branch.
1796  */
1797 static bool
1798 try_redirect_by_replacing_jump (e, target)
1799      edge e;
1800      basic_block target;
1801 {
1802   basic_block src = e->src;
1803   rtx insn = src->end, kill_from;
1804   edge tmp;
1805   rtx set;
1806   int fallthru = 0;
1807
1808   /* Verify that all targets will be TARGET.  */
1809   for (tmp = src->succ; tmp; tmp = tmp->succ_next)
1810     if (tmp->dest != target && tmp != e)
1811       break;
1812   if (tmp || !onlyjump_p (insn))
1813     return false;
1814
1815   /* Avoid removing branch with side effects.  */
1816   set = single_set (insn);
1817   if (!set || side_effects_p (set))
1818     return false;
1819
1820   /* In case we zap a conditional jump, we'll need to kill
1821      the cc0 setter too.  */
1822   kill_from = insn;
1823 #ifdef HAVE_cc0
1824   if (reg_mentioned_p (cc0_rtx, PATTERN (insn)))
1825     kill_from = PREV_INSN (insn);
1826 #endif
1827
1828   /* See if we can create the fallthru edge.  */
1829   if (can_fallthru (src, target))
1830     {
1831       src->end = PREV_INSN (kill_from);
1832       if (rtl_dump_file)
1833         fprintf (rtl_dump_file, "Removing jump %i.\n", INSN_UID (insn));
1834       fallthru = 1;
1835
1836       /* Selectivly unlink whole insn chain.  */
1837       flow_delete_insn_chain (kill_from, PREV_INSN (target->head));
1838     }
1839   /* If this already is simplejump, redirect it.  */
1840   else if (simplejump_p (insn))
1841     {
1842       if (e->dest == target)
1843         return false;
1844       if (rtl_dump_file)
1845         fprintf (rtl_dump_file, "Redirecting jump %i from %i to %i.\n",
1846                  INSN_UID (insn), e->dest->index, target->index);
1847       redirect_jump (insn, block_label (target), 0);
1848     }
1849   /* Or replace possibly complicated jump insn by simple jump insn.  */
1850   else
1851     {
1852       rtx target_label = block_label (target);
1853       rtx barrier;
1854
1855       src->end = emit_jump_insn_before (gen_jump (target_label), kill_from);
1856       JUMP_LABEL (src->end) = target_label;
1857       LABEL_NUSES (target_label)++;
1858       if (basic_block_for_insn)
1859         set_block_for_new_insns (src->end, src);
1860       if (rtl_dump_file)
1861         fprintf (rtl_dump_file, "Replacing insn %i by jump %i\n",
1862                  INSN_UID (insn), INSN_UID (src->end));
1863
1864       flow_delete_insn_chain (kill_from, insn);
1865
1866       barrier = next_nonnote_insn (src->end);
1867       if (!barrier || GET_CODE (barrier) != BARRIER)
1868         emit_barrier_after (src->end);
1869     }
1870
1871   /* Keep only one edge out and set proper flags.  */
1872   while (src->succ->succ_next)
1873     remove_edge (src->succ);
1874   e = src->succ;
1875   if (fallthru)
1876     e->flags = EDGE_FALLTHRU;
1877   else
1878     e->flags = 0;
1879   e->probability = REG_BR_PROB_BASE;
1880   e->count = src->count;
1881
1882   /* We don't want a block to end on a line-number note since that has
1883      the potential of changing the code between -g and not -g.  */
1884   while (GET_CODE (e->src->end) == NOTE
1885          && NOTE_LINE_NUMBER (e->src->end) >= 0)
1886     {
1887       rtx prev = PREV_INSN (e->src->end);
1888       flow_delete_insn (e->src->end);
1889       e->src->end = prev;
1890     }
1891
1892   if (e->dest != target)
1893     redirect_edge_succ (e, target);
1894   return true;
1895 }
1896
1897 /* Return last loop_beg note appearing after INSN, before start of next
1898    basic block.  Return INSN if there are no such notes.
1899
1900    When emmiting jump to redirect an fallthru edge, it should always
1901    appear after the LOOP_BEG notes, as loop optimizer expect loop to
1902    eighter start by fallthru edge or jump following the LOOP_BEG note
1903    jumping to the loop exit test.  */
1904 rtx
1905 last_loop_beg_note (insn)
1906      rtx insn;
1907 {
1908   rtx last = insn;
1909   insn = NEXT_INSN (insn);
1910   while (GET_CODE (insn) == NOTE
1911          && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK)
1912     {
1913       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1914         last = insn;
1915       insn = NEXT_INSN (insn);
1916     }
1917   return last;
1918 }
1919
1920 /* Attempt to change code to redirect edge E to TARGET.
1921    Don't do that on expense of adding new instructions or reordering
1922    basic blocks.
1923
1924    Function can be also called with edge destionation equivalent to the
1925    TARGET.  Then it should try the simplifications and do nothing if
1926    none is possible.
1927
1928    Return true if transformation suceeded.  We still return flase in case
1929    E already destinated TARGET and we didn't managed to simplify instruction
1930    stream.  */
1931 bool
1932 redirect_edge_and_branch (e, target)
1933      edge e;
1934      basic_block target;
1935 {
1936   rtx tmp;
1937   rtx old_label = e->dest->head;
1938   basic_block src = e->src;
1939   rtx insn = src->end;
1940
1941   if (e->flags & EDGE_COMPLEX)
1942     return false;
1943
1944   if (try_redirect_by_replacing_jump (e, target))
1945     return true;
1946   /* Do this fast path late, as we want above code to simplify for cases
1947      where called on single edge leaving basic block containing nontrivial
1948      jump insn.  */
1949   else if (e->dest == target)
1950     return false;
1951
1952   /* We can only redirect non-fallthru edges of jump insn.  */
1953   if (e->flags & EDGE_FALLTHRU)
1954     return false;
1955   if (GET_CODE (insn) != JUMP_INSN)
1956     return false;
1957
1958   /* Recognize a tablejump and adjust all matching cases.  */
1959   if ((tmp = JUMP_LABEL (insn)) != NULL_RTX
1960       && (tmp = NEXT_INSN (tmp)) != NULL_RTX
1961       && GET_CODE (tmp) == JUMP_INSN
1962       && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
1963           || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
1964     {
1965       rtvec vec;
1966       int j;
1967       rtx new_label = block_label (target);
1968
1969       if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
1970         vec = XVEC (PATTERN (tmp), 0);
1971       else
1972         vec = XVEC (PATTERN (tmp), 1);
1973
1974       for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
1975         if (XEXP (RTVEC_ELT (vec, j), 0) == old_label)
1976           {
1977             RTVEC_ELT (vec, j) = gen_rtx_LABEL_REF (Pmode, new_label);
1978             --LABEL_NUSES (old_label);
1979             ++LABEL_NUSES (new_label);
1980           }
1981
1982       /* Handle casesi dispatch insns */
1983       if ((tmp = single_set (insn)) != NULL
1984           && SET_DEST (tmp) == pc_rtx
1985           && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
1986           && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF
1987           && XEXP (XEXP (SET_SRC (tmp), 2), 0) == old_label)
1988         {
1989           XEXP (SET_SRC (tmp), 2) = gen_rtx_LABEL_REF (VOIDmode,
1990                                                        new_label);
1991           --LABEL_NUSES (old_label);
1992           ++LABEL_NUSES (new_label);
1993         }
1994     }
1995   else
1996     {
1997       /* ?? We may play the games with moving the named labels from
1998          one basic block to the other in case only one computed_jump is
1999          available.  */
2000       if (computed_jump_p (insn))
2001         return false;
2002
2003       /* A return instruction can't be redirected.  */
2004       if (returnjump_p (insn))
2005         return false;
2006
2007       /* If the insn doesn't go where we think, we're confused.  */
2008       if (JUMP_LABEL (insn) != old_label)
2009         abort ();
2010       redirect_jump (insn, block_label (target), 0);
2011     }
2012
2013   if (rtl_dump_file)
2014     fprintf (rtl_dump_file, "Edge %i->%i redirected to %i\n",
2015              e->src->index, e->dest->index, target->index);
2016   if (e->dest != target)
2017     redirect_edge_succ_nodup (e, target);
2018   return true;
2019 }
2020
2021 /* Redirect edge even at the expense of creating new jump insn or
2022    basic block.  Return new basic block if created, NULL otherwise.
2023    Abort if converison is impossible.  */
2024 basic_block
2025 redirect_edge_and_branch_force (e, target)
2026      edge e;
2027      basic_block target;
2028 {
2029   basic_block new_bb;
2030   edge new_edge;
2031   rtx label;
2032   rtx bb_note;
2033   int i, j;
2034
2035   if (redirect_edge_and_branch (e, target))
2036     return NULL;
2037   if (e->dest == target)
2038     return NULL;
2039   if (e->flags & EDGE_ABNORMAL)
2040     abort ();
2041   if (!(e->flags & EDGE_FALLTHRU))
2042     abort ();
2043
2044   e->flags &= ~EDGE_FALLTHRU;
2045   label = block_label (target);
2046   /* Case of the fallthru block.  */
2047   if (!e->src->succ->succ_next)
2048     {
2049       e->src->end = emit_jump_insn_after (gen_jump (label),
2050                                           last_loop_beg_note (e->src->end));
2051       JUMP_LABEL (e->src->end) = label;
2052       LABEL_NUSES (label)++;
2053       if (basic_block_for_insn)
2054         set_block_for_new_insns (e->src->end, e->src);
2055       emit_barrier_after (e->src->end);
2056       if (rtl_dump_file)
2057         fprintf (rtl_dump_file,
2058                  "Emitting jump insn %i to redirect edge %i->%i to %i\n",
2059                  INSN_UID (e->src->end), e->src->index, e->dest->index,
2060                  target->index);
2061       redirect_edge_succ (e, target);
2062       return NULL;
2063     }
2064   /* Redirecting fallthru edge of the conditional needs extra work.  */
2065
2066   if (rtl_dump_file)
2067     fprintf (rtl_dump_file,
2068              "Emitting jump insn %i in new BB to redirect edge %i->%i to %i\n",
2069              INSN_UID (e->src->end), e->src->index, e->dest->index,
2070              target->index);
2071
2072   /* Create the new structures.  */
2073   new_bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*new_bb));
2074   new_edge = (edge) xcalloc (1, sizeof (*new_edge));
2075   n_edges++;
2076
2077   memset (new_bb, 0, sizeof (*new_bb));
2078
2079   new_bb->end = new_bb->head = last_loop_beg_note (e->src->end);
2080   new_bb->succ = NULL;
2081   new_bb->pred = new_edge;
2082   new_bb->count = e->count;
2083   new_bb->frequency = EDGE_FREQUENCY (e);
2084   new_bb->loop_depth = e->dest->loop_depth;
2085
2086   new_edge->flags = EDGE_FALLTHRU;
2087   new_edge->probability = e->probability;
2088   new_edge->count = e->count;
2089
2090   if (target->global_live_at_start)
2091     {
2092       new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
2093       new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
2094       COPY_REG_SET (new_bb->global_live_at_start,
2095                     target->global_live_at_start);
2096       COPY_REG_SET (new_bb->global_live_at_end, new_bb->global_live_at_start);
2097     }
2098
2099   /* Wire edge in.  */
2100   new_edge->src = e->src;
2101   new_edge->dest = new_bb;
2102   new_edge->succ_next = e->src->succ;
2103   e->src->succ = new_edge;
2104   new_edge->pred_next = NULL;
2105
2106   /* Redirect old edge.  */
2107   redirect_edge_succ (e, target);
2108   redirect_edge_pred (e, new_bb);
2109   e->probability = REG_BR_PROB_BASE;
2110
2111   /* Place the new block just after the block being split.  */
2112   VARRAY_GROW (basic_block_info, ++n_basic_blocks);
2113
2114   /* Some parts of the compiler expect blocks to be number in
2115      sequential order so insert the new block immediately after the
2116      block being split..  */
2117   j = new_edge->src->index;
2118   for (i = n_basic_blocks - 1; i > j + 1; --i)
2119     {
2120       basic_block tmp = BASIC_BLOCK (i - 1);
2121       BASIC_BLOCK (i) = tmp;
2122       tmp->index = i;
2123     }
2124
2125   BASIC_BLOCK (i) = new_bb;
2126   new_bb->index = i;
2127
2128   /* Create the basic block note.  */
2129   bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, new_bb->head);
2130   NOTE_BASIC_BLOCK (bb_note) = new_bb;
2131   new_bb->head = bb_note;
2132
2133   new_bb->end = emit_jump_insn_after (gen_jump (label), new_bb->head);
2134   JUMP_LABEL (new_bb->end) = label;
2135   LABEL_NUSES (label)++;
2136   if (basic_block_for_insn)
2137     set_block_for_new_insns (new_bb->end, new_bb);
2138   emit_barrier_after (new_bb->end);
2139   return new_bb;
2140 }
2141
2142 /* Helper function for split_edge.  Return true in case edge BB2 to BB1
2143    is back edge of syntactic loop.  */
2144 static bool
2145 back_edge_of_syntactic_loop_p (bb1, bb2)
2146         basic_block bb1, bb2;
2147 {
2148   rtx insn;
2149   int count = 0;
2150
2151   if (bb1->index > bb2->index)
2152     return false;
2153
2154   if (bb1->index == bb2->index)
2155     return true;
2156
2157   for (insn = bb1->end; insn != bb2->head && count >= 0;
2158        insn = NEXT_INSN (insn))
2159     if (GET_CODE (insn) == NOTE)
2160       {
2161         if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
2162           count++;
2163         if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
2164           count--;
2165       }
2166
2167   return count >= 0;
2168 }
2169
2170 /* Split a (typically critical) edge.  Return the new block.
2171    Abort on abnormal edges.
2172
2173    ??? The code generally expects to be called on critical edges.
2174    The case of a block ending in an unconditional jump to a
2175    block with multiple predecessors is not handled optimally.  */
2176
2177 basic_block
2178 split_edge (edge_in)
2179      edge edge_in;
2180 {
2181   basic_block old_pred, bb, old_succ;
2182   edge edge_out;
2183   rtx bb_note;
2184   int i, j;
2185
2186   /* Abnormal edges cannot be split.  */
2187   if ((edge_in->flags & EDGE_ABNORMAL) != 0)
2188     abort ();
2189
2190   old_pred = edge_in->src;
2191   old_succ = edge_in->dest;
2192
2193   /* Create the new structures.  */
2194   bb = (basic_block) obstack_alloc (&flow_obstack, sizeof (*bb));
2195   edge_out = (edge) xcalloc (1, sizeof (*edge_out));
2196   n_edges++;
2197
2198   memset (bb, 0, sizeof (*bb));
2199
2200   /* ??? This info is likely going to be out of date very soon.  */
2201   if (old_succ->global_live_at_start)
2202     {
2203       bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
2204       bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
2205       COPY_REG_SET (bb->global_live_at_start, old_succ->global_live_at_start);
2206       COPY_REG_SET (bb->global_live_at_end, old_succ->global_live_at_start);
2207     }
2208
2209   /* Wire them up.  */
2210   bb->succ = edge_out;
2211   bb->count = edge_in->count;
2212   bb->frequency = EDGE_FREQUENCY (edge_in);
2213
2214   edge_in->flags &= ~EDGE_CRITICAL;
2215
2216   edge_out->pred_next = old_succ->pred;
2217   edge_out->succ_next = NULL;
2218   edge_out->src = bb;
2219   edge_out->dest = old_succ;
2220   edge_out->flags = EDGE_FALLTHRU;
2221   edge_out->probability = REG_BR_PROB_BASE;
2222   edge_out->count = edge_in->count;
2223
2224   old_succ->pred = edge_out;
2225
2226   /* Tricky case -- if there existed a fallthru into the successor
2227      (and we're not it) we must add a new unconditional jump around
2228      the new block we're actually interested in.
2229
2230      Further, if that edge is critical, this means a second new basic
2231      block must be created to hold it.  In order to simplify correct
2232      insn placement, do this before we touch the existing basic block
2233      ordering for the block we were really wanting.  */
2234   if ((edge_in->flags & EDGE_FALLTHRU) == 0)
2235     {
2236       edge e;
2237       for (e = edge_out->pred_next; e; e = e->pred_next)
2238         if (e->flags & EDGE_FALLTHRU)
2239           break;
2240
2241       if (e)
2242         {
2243           basic_block jump_block;
2244           rtx pos;
2245
2246           if ((e->flags & EDGE_CRITICAL) == 0
2247               && e->src != ENTRY_BLOCK_PTR)
2248             {
2249               /* Non critical -- we can simply add a jump to the end
2250                  of the existing predecessor.  */
2251               jump_block = e->src;
2252             }
2253           else
2254             {
2255               /* We need a new block to hold the jump.  The simplest
2256                  way to do the bulk of the work here is to recursively
2257                  call ourselves.  */
2258               jump_block = split_edge (e);
2259               e = jump_block->succ;
2260             }
2261
2262           /* Now add the jump insn ...  */
2263           pos = emit_jump_insn_after (gen_jump (old_succ->head),
2264                                       last_loop_beg_note (jump_block->end));
2265           jump_block->end = pos;
2266           if (basic_block_for_insn)
2267             set_block_for_new_insns (pos, jump_block);
2268           emit_barrier_after (pos);
2269
2270           /* ... let jump know that label is in use, ...  */
2271           JUMP_LABEL (pos) = old_succ->head;
2272           ++LABEL_NUSES (old_succ->head);
2273
2274           /* ... and clear fallthru on the outgoing edge.  */
2275           e->flags &= ~EDGE_FALLTHRU;
2276
2277           /* Continue splitting the interesting edge.  */
2278         }
2279     }
2280
2281   /* Place the new block just in front of the successor.  */
2282   VARRAY_GROW (basic_block_info, ++n_basic_blocks);
2283   if (old_succ == EXIT_BLOCK_PTR)
2284     j = n_basic_blocks - 1;
2285   else
2286     j = old_succ->index;
2287   for (i = n_basic_blocks - 1; i > j; --i)
2288     {
2289       basic_block tmp = BASIC_BLOCK (i - 1);
2290       BASIC_BLOCK (i) = tmp;
2291       tmp->index = i;
2292     }
2293   BASIC_BLOCK (i) = bb;
2294   bb->index = i;
2295
2296   /* Create the basic block note.
2297
2298      Where we place the note can have a noticable impact on the generated
2299      code.  Consider this cfg:
2300
2301                         E
2302                         |
2303                         0
2304                        / \
2305                    +->1-->2--->E
2306                    |  |
2307                    +--+
2308
2309       If we need to insert an insn on the edge from block 0 to block 1,
2310       we want to ensure the instructions we insert are outside of any
2311       loop notes that physically sit between block 0 and block 1.  Otherwise
2312       we confuse the loop optimizer into thinking the loop is a phony.  */
2313   if (old_succ != EXIT_BLOCK_PTR
2314       && PREV_INSN (old_succ->head)
2315       && GET_CODE (PREV_INSN (old_succ->head)) == NOTE
2316       && NOTE_LINE_NUMBER (PREV_INSN (old_succ->head)) == NOTE_INSN_LOOP_BEG
2317       && !back_edge_of_syntactic_loop_p (old_succ, old_pred))
2318     bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK,
2319                                 PREV_INSN (old_succ->head));
2320   else if (old_succ != EXIT_BLOCK_PTR)
2321     bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, old_succ->head);
2322   else
2323     bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, get_last_insn ());
2324   NOTE_BASIC_BLOCK (bb_note) = bb;
2325   bb->head = bb->end = bb_note;
2326
2327   /* For non-fallthry edges, we must adjust the predecessor's
2328      jump instruction to target our new block.  */
2329   if ((edge_in->flags & EDGE_FALLTHRU) == 0)
2330     {
2331       if (!redirect_edge_and_branch (edge_in, bb))
2332         abort ();
2333     }
2334   else
2335     redirect_edge_succ (edge_in, bb);
2336
2337   return bb;
2338 }
2339
2340 /* Queue instructions for insertion on an edge between two basic blocks.
2341    The new instructions and basic blocks (if any) will not appear in the
2342    CFG until commit_edge_insertions is called.  */
2343
2344 void
2345 insert_insn_on_edge (pattern, e)
2346      rtx pattern;
2347      edge e;
2348 {
2349   /* We cannot insert instructions on an abnormal critical edge.
2350      It will be easier to find the culprit if we die now.  */
2351   if ((e->flags & (EDGE_ABNORMAL|EDGE_CRITICAL))
2352       == (EDGE_ABNORMAL|EDGE_CRITICAL))
2353     abort ();
2354
2355   if (e->insns == NULL_RTX)
2356     start_sequence ();
2357   else
2358     push_to_sequence (e->insns);
2359
2360   emit_insn (pattern);
2361
2362   e->insns = get_insns ();
2363   end_sequence ();
2364 }
2365
2366 /* Update the CFG for the instructions queued on edge E.  */
2367
2368 static void
2369 commit_one_edge_insertion (e)
2370      edge e;
2371 {
2372   rtx before = NULL_RTX, after = NULL_RTX, insns, tmp, last;
2373   basic_block bb;
2374
2375   /* Pull the insns off the edge now since the edge might go away.  */
2376   insns = e->insns;
2377   e->insns = NULL_RTX;
2378
2379   /* Figure out where to put these things.  If the destination has
2380      one predecessor, insert there.  Except for the exit block.  */
2381   if (e->dest->pred->pred_next == NULL
2382       && e->dest != EXIT_BLOCK_PTR)
2383     {
2384       bb = e->dest;
2385
2386       /* Get the location correct wrt a code label, and "nice" wrt
2387          a basic block note, and before everything else.  */
2388       tmp = bb->head;
2389       if (GET_CODE (tmp) == CODE_LABEL)
2390         tmp = NEXT_INSN (tmp);
2391       if (NOTE_INSN_BASIC_BLOCK_P (tmp))
2392         tmp = NEXT_INSN (tmp);
2393       if (tmp == bb->head)
2394         before = tmp;
2395       else
2396         after = PREV_INSN (tmp);
2397     }
2398
2399   /* If the source has one successor and the edge is not abnormal,
2400      insert there.  Except for the entry block.  */
2401   else if ((e->flags & EDGE_ABNORMAL) == 0
2402            && e->src->succ->succ_next == NULL
2403            && e->src != ENTRY_BLOCK_PTR)
2404     {
2405       bb = e->src;
2406       /* It is possible to have a non-simple jump here.  Consider a target
2407          where some forms of unconditional jumps clobber a register.  This
2408          happens on the fr30 for example.
2409
2410          We know this block has a single successor, so we can just emit
2411          the queued insns before the jump.  */
2412       if (GET_CODE (bb->end) == JUMP_INSN)
2413         {
2414           before = bb->end;
2415           while (GET_CODE (PREV_INSN (before)) == NOTE
2416                  && NOTE_LINE_NUMBER (PREV_INSN (before)) == NOTE_INSN_LOOP_BEG)
2417             before = PREV_INSN (before);
2418         }
2419       else
2420         {
2421           /* We'd better be fallthru, or we've lost track of what's what.  */
2422           if ((e->flags & EDGE_FALLTHRU) == 0)
2423             abort ();
2424
2425           after = bb->end;
2426         }
2427     }
2428
2429   /* Otherwise we must split the edge.  */
2430   else
2431     {
2432       bb = split_edge (e);
2433       after = bb->end;
2434     }
2435
2436   /* Now that we've found the spot, do the insertion.  */
2437
2438   /* Set the new block number for these insns, if structure is allocated.  */
2439   if (basic_block_for_insn)
2440     {
2441       rtx i;
2442       for (i = insns; i != NULL_RTX; i = NEXT_INSN (i))
2443         set_block_for_insn (i, bb);
2444     }
2445
2446   if (before)
2447     {
2448       emit_insns_before (insns, before);
2449       if (before == bb->head)
2450         bb->head = insns;
2451
2452       last = prev_nonnote_insn (before);
2453     }
2454   else
2455     {
2456       last = emit_insns_after (insns, after);
2457       if (after == bb->end)
2458         bb->end = last;
2459     }
2460
2461   if (returnjump_p (last))
2462     {
2463       /* ??? Remove all outgoing edges from BB and add one for EXIT.
2464          This is not currently a problem because this only happens
2465          for the (single) epilogue, which already has a fallthru edge
2466          to EXIT.  */
2467
2468       e = bb->succ;
2469       if (e->dest != EXIT_BLOCK_PTR
2470           || e->succ_next != NULL
2471           || (e->flags & EDGE_FALLTHRU) == 0)
2472         abort ();
2473       e->flags &= ~EDGE_FALLTHRU;
2474
2475       emit_barrier_after (last);
2476       bb->end = last;
2477
2478       if (before)
2479         flow_delete_insn (before);
2480     }
2481   else if (GET_CODE (last) == JUMP_INSN)
2482     abort ();
2483   find_sub_basic_blocks (bb);
2484 }
2485
2486 /* Update the CFG for all queued instructions.  */
2487
2488 void
2489 commit_edge_insertions ()
2490 {
2491   int i;
2492   basic_block bb;
2493   compute_bb_for_insn (get_max_uid ());
2494
2495 #ifdef ENABLE_CHECKING
2496   verify_flow_info ();
2497 #endif
2498
2499   i = -1;
2500   bb = ENTRY_BLOCK_PTR;
2501   while (1)
2502     {
2503       edge e, next;
2504
2505       for (e = bb->succ; e; e = next)
2506         {
2507           next = e->succ_next;
2508           if (e->insns)
2509             commit_one_edge_insertion (e);
2510         }
2511
2512       if (++i >= n_basic_blocks)
2513         break;
2514       bb = BASIC_BLOCK (i);
2515     }
2516 }
2517
2518 /* Return true if we need to add fake edge to exit.
2519    Helper function for the flow_call_edges_add.  */
2520 static bool
2521 need_fake_edge_p (insn)
2522      rtx insn;
2523 {
2524   if (!INSN_P (insn))
2525     return false;
2526
2527   if ((GET_CODE (insn) == CALL_INSN
2528        && !SIBLING_CALL_P (insn)
2529        && !find_reg_note (insn, REG_NORETURN, NULL)
2530        && !find_reg_note (insn, REG_ALWAYS_RETURN, NULL)
2531        && !CONST_OR_PURE_CALL_P (insn)))
2532     return true;
2533
2534   return ((GET_CODE (PATTERN (insn)) == ASM_OPERANDS
2535            && MEM_VOLATILE_P (PATTERN (insn)))
2536           || (GET_CODE (PATTERN (insn)) == PARALLEL
2537               && asm_noperands (insn) != -1
2538               && MEM_VOLATILE_P (XVECEXP (PATTERN (insn), 0, 0)))
2539           || GET_CODE (PATTERN (insn)) == ASM_INPUT);
2540 }
2541
2542 /* Add fake edges to the function exit for any non constant and non noreturn
2543    calls, volatile inline assembly in the bitmap of blocks specified by
2544    BLOCKS or to the whole CFG if BLOCKS is zero.  Return the nuber of blocks
2545    that were split.
2546
2547    The goal is to expose cases in which entering a basic block does not imply
2548    that all subsequent instructions must be executed.  */
2549
2550 int
2551 flow_call_edges_add (blocks)
2552      sbitmap blocks;
2553 {
2554   int i;
2555   int blocks_split = 0;
2556   int bb_num = 0;
2557   basic_block *bbs;
2558   bool check_last_block = false;
2559
2560   /* Map bb indicies into basic block pointers since split_block
2561      will renumber the basic blocks.  */
2562
2563   bbs = xmalloc (n_basic_blocks * sizeof (*bbs));
2564
2565   if (! blocks)
2566     {
2567       for (i = 0; i < n_basic_blocks; i++)
2568         bbs[bb_num++] = BASIC_BLOCK (i);
2569       check_last_block = true;
2570     }
2571   else
2572     {
2573       EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
2574       {
2575         bbs[bb_num++] = BASIC_BLOCK (i);
2576         if (i == n_basic_blocks - 1)
2577           check_last_block = true;
2578       });
2579     }
2580
2581   /* In the last basic block, before epilogue generation, there will be
2582      a fallthru edge to EXIT.  Special care is required if the last insn
2583      of the last basic block is a call because make_edge folds duplicate
2584      edges, which would result in the fallthru edge also being marked
2585      fake, which would result in the fallthru edge being removed by
2586      remove_fake_edges, which would result in an invalid CFG.
2587
2588      Moreover, we can't elide the outgoing fake edge, since the block
2589      profiler needs to take this into account in order to solve the minimal
2590      spanning tree in the case that the call doesn't return.
2591
2592      Handle this by adding a dummy instruction in a new last basic block.  */
2593   if (check_last_block
2594       && need_fake_edge_p (BASIC_BLOCK (n_basic_blocks - 1)->end))
2595     {
2596        edge e;
2597        for (e = BASIC_BLOCK (n_basic_blocks - 1)->succ; e; e = e->succ_next)
2598          if (e->dest == EXIT_BLOCK_PTR)
2599             break;
2600        insert_insn_on_edge (gen_rtx_USE (VOIDmode, const0_rtx), e);
2601        commit_edge_insertions ();
2602     }
2603
2604
2605   /* Now add fake edges to the function exit for any non constant
2606      calls since there is no way that we can determine if they will
2607      return or not...  */
2608
2609   for (i = 0; i < bb_num; i++)
2610     {
2611       basic_block bb = bbs[i];
2612       rtx insn;
2613       rtx prev_insn;
2614
2615       for (insn = bb->end; ; insn = prev_insn)
2616         {
2617           prev_insn = PREV_INSN (insn);
2618           if (need_fake_edge_p (insn))
2619             {
2620               edge e;
2621
2622               /* The above condition should be enought to verify that there is
2623                  no edge to the exit block in CFG already.  Calling make_edge in
2624                  such case would make us to mark that edge as fake and remove it
2625                  later.  */
2626 #ifdef ENABLE_CHECKING
2627               if (insn == bb->end)
2628                 for (e = bb->succ; e; e = e->succ_next)
2629                   if (e->dest == EXIT_BLOCK_PTR)
2630                     abort ();
2631 #endif
2632
2633               /* Note that the following may create a new basic block
2634                  and renumber the existing basic blocks.  */
2635               e = split_block (bb, insn);
2636               if (e)
2637                 blocks_split++;
2638
2639               make_edge (NULL, bb, EXIT_BLOCK_PTR, EDGE_FAKE);
2640             }
2641           if (insn == bb->head)
2642             break;
2643         }
2644     }
2645
2646   if (blocks_split)
2647     verify_flow_info ();
2648
2649   free (bbs);
2650   return blocks_split;
2651 }
2652 \f
2653 /* Find unreachable blocks.  An unreachable block will have 0 in
2654    the reachable bit in block->flags.  A non-zero value indicates the
2655    block is reachable.  */
2656
2657 void
2658 find_unreachable_blocks ()
2659 {
2660   edge e;
2661   int i, n;
2662   basic_block *tos, *worklist;
2663
2664   n = n_basic_blocks;
2665   tos = worklist = (basic_block *) xmalloc (sizeof (basic_block) * n);
2666
2667   /* Clear all the reachability flags.  */
2668
2669   for (i = 0; i < n; ++i)
2670     BASIC_BLOCK (i)->flags &= ~BB_REACHABLE;
2671
2672   /* Add our starting points to the worklist.  Almost always there will
2673      be only one.  It isn't inconcievable that we might one day directly
2674      support Fortran alternate entry points.  */
2675
2676   for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
2677     {
2678       *tos++ = e->dest;
2679
2680       /* Mark the block reachable.  */
2681       e->dest->flags |= BB_REACHABLE;
2682     }
2683
2684   /* Iterate: find everything reachable from what we've already seen.  */
2685
2686   while (tos != worklist)
2687     {
2688       basic_block b = *--tos;
2689
2690       for (e = b->succ; e; e = e->succ_next)
2691         if (!(e->dest->flags & BB_REACHABLE))
2692           {
2693             *tos++ = e->dest;
2694             e->dest->flags |= BB_REACHABLE;
2695           }
2696     }
2697
2698   free (worklist);
2699 }
2700
2701 /* Delete all unreachable basic blocks.   */
2702 static void
2703 delete_unreachable_blocks ()
2704 {
2705   int i;
2706
2707   find_unreachable_blocks ();
2708
2709   /* Delete all unreachable basic blocks.  Count down so that we
2710      don't interfere with the block renumbering that happens in
2711      flow_delete_block.  */
2712
2713   for (i = n_basic_blocks - 1; i >= 0; --i)
2714     {
2715       basic_block b = BASIC_BLOCK (i);
2716
2717       if (!(b->flags & BB_REACHABLE))
2718         flow_delete_block (b);
2719     }
2720
2721   tidy_fallthru_edges ();
2722 }
2723
2724 /* Return true if NOTE is not one of the ones that must be kept paired,
2725    so that we may simply delete them.  */
2726
2727 static int
2728 can_delete_note_p (note)
2729      rtx note;
2730 {
2731   return (NOTE_LINE_NUMBER (note) == NOTE_INSN_DELETED
2732           || NOTE_LINE_NUMBER (note) == NOTE_INSN_BASIC_BLOCK);
2733 }
2734
2735 /* Unlink a chain of insns between START and FINISH, leaving notes
2736    that must be paired.  */
2737
2738 void
2739 flow_delete_insn_chain (start, finish)
2740      rtx start, finish;
2741 {
2742   /* Unchain the insns one by one.  It would be quicker to delete all
2743      of these with a single unchaining, rather than one at a time, but
2744      we need to keep the NOTE's.  */
2745
2746   rtx next;
2747
2748   while (1)
2749     {
2750       next = NEXT_INSN (start);
2751       if (GET_CODE (start) == NOTE && !can_delete_note_p (start))
2752         ;
2753       else if (GET_CODE (start) == CODE_LABEL
2754                && ! can_delete_label_p (start))
2755         {
2756           const char *name = LABEL_NAME (start);
2757           PUT_CODE (start, NOTE);
2758           NOTE_LINE_NUMBER (start) = NOTE_INSN_DELETED_LABEL;
2759           NOTE_SOURCE_FILE (start) = name;
2760         }
2761       else
2762         next = flow_delete_insn (start);
2763
2764       if (start == finish)
2765         break;
2766       start = next;
2767     }
2768 }
2769
2770 /* Delete the insns in a (non-live) block.  We physically delete every
2771    non-deleted-note insn, and update the flow graph appropriately.
2772
2773    Return nonzero if we deleted an exception handler.  */
2774
2775 /* ??? Preserving all such notes strikes me as wrong.  It would be nice
2776    to post-process the stream to remove empty blocks, loops, ranges, etc.  */
2777
2778 int
2779 flow_delete_block (b)
2780      basic_block b;
2781 {
2782   int deleted_handler = 0;
2783   rtx insn, end, tmp;
2784
2785   /* If the head of this block is a CODE_LABEL, then it might be the
2786      label for an exception handler which can't be reached.
2787
2788      We need to remove the label from the exception_handler_label list
2789      and remove the associated NOTE_INSN_EH_REGION_BEG and
2790      NOTE_INSN_EH_REGION_END notes.  */
2791
2792   insn = b->head;
2793
2794   never_reached_warning (insn);
2795
2796   if (GET_CODE (insn) == CODE_LABEL)
2797     maybe_remove_eh_handler (insn);
2798
2799   /* Include any jump table following the basic block.  */
2800   end = b->end;
2801   if (GET_CODE (end) == JUMP_INSN
2802       && (tmp = JUMP_LABEL (end)) != NULL_RTX
2803       && (tmp = NEXT_INSN (tmp)) != NULL_RTX
2804       && GET_CODE (tmp) == JUMP_INSN
2805       && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
2806           || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
2807     end = tmp;
2808
2809   /* Include any barrier that may follow the basic block.  */
2810   tmp = next_nonnote_insn (end);
2811   if (tmp && GET_CODE (tmp) == BARRIER)
2812     end = tmp;
2813
2814   /* Selectively delete the entire chain.  */
2815   flow_delete_insn_chain (insn, end);
2816
2817   /* Remove the edges into and out of this block.  Note that there may
2818      indeed be edges in, if we are removing an unreachable loop.  */
2819   {
2820     edge e, next, *q;
2821
2822     for (e = b->pred; e; e = next)
2823       {
2824         for (q = &e->src->succ; *q != e; q = &(*q)->succ_next)
2825           continue;
2826         *q = e->succ_next;
2827         next = e->pred_next;
2828         n_edges--;
2829         free (e);
2830       }
2831     for (e = b->succ; e; e = next)
2832       {
2833         for (q = &e->dest->pred; *q != e; q = &(*q)->pred_next)
2834           continue;
2835         *q = e->pred_next;
2836         next = e->succ_next;
2837         n_edges--;
2838         free (e);
2839       }
2840
2841     b->pred = NULL;
2842     b->succ = NULL;
2843   }
2844
2845   /* Remove the basic block from the array, and compact behind it.  */
2846   expunge_block (b);
2847
2848   return deleted_handler;
2849 }
2850
2851 /* Remove block B from the basic block array and compact behind it.  */
2852
2853 void
2854 expunge_block (b)
2855      basic_block b;
2856 {
2857   int i, n = n_basic_blocks;
2858
2859   for (i = b->index; i + 1 < n; ++i)
2860     {
2861       basic_block x = BASIC_BLOCK (i + 1);
2862       BASIC_BLOCK (i) = x;
2863       x->index = i;
2864     }
2865
2866   basic_block_info->num_elements--;
2867   n_basic_blocks--;
2868 }
2869
2870 /* Delete INSN by patching it out.  Return the next insn.  */
2871
2872 rtx
2873 flow_delete_insn (insn)
2874      rtx insn;
2875 {
2876   rtx prev = PREV_INSN (insn);
2877   rtx next = NEXT_INSN (insn);
2878   rtx note;
2879
2880   PREV_INSN (insn) = NULL_RTX;
2881   NEXT_INSN (insn) = NULL_RTX;
2882   INSN_DELETED_P (insn) = 1;
2883
2884   if (prev)
2885     NEXT_INSN (prev) = next;
2886   if (next)
2887     PREV_INSN (next) = prev;
2888   else
2889     set_last_insn (prev);
2890
2891   if (GET_CODE (insn) == CODE_LABEL)
2892     remove_node_from_expr_list (insn, &nonlocal_goto_handler_labels);
2893
2894   /* If deleting a jump, decrement the use count of the label.  Deleting
2895      the label itself should happen in the normal course of block merging.  */
2896   if (GET_CODE (insn) == JUMP_INSN
2897       && JUMP_LABEL (insn)
2898       && GET_CODE (JUMP_LABEL (insn)) == CODE_LABEL)
2899     LABEL_NUSES (JUMP_LABEL (insn))--;
2900
2901   /* Also if deleting an insn that references a label.  */
2902   else if ((note = find_reg_note (insn, REG_LABEL, NULL_RTX)) != NULL_RTX
2903            && GET_CODE (XEXP (note, 0)) == CODE_LABEL)
2904     LABEL_NUSES (XEXP (note, 0))--;
2905
2906   if (GET_CODE (insn) == JUMP_INSN
2907       && (GET_CODE (PATTERN (insn)) == ADDR_VEC
2908           || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC))
2909     {
2910       rtx pat = PATTERN (insn);
2911       int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
2912       int len = XVECLEN (pat, diff_vec_p);
2913       int i;
2914
2915       for (i = 0; i < len; i++)
2916         LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))--;
2917     }
2918
2919   return next;
2920 }
2921
2922 /* True if a given label can be deleted.  */
2923
2924 static int
2925 can_delete_label_p (label)
2926      rtx label;
2927 {
2928   rtx x;
2929
2930   if (LABEL_PRESERVE_P (label))
2931     return 0;
2932
2933   for (x = forced_labels; x; x = XEXP (x, 1))
2934     if (label == XEXP (x, 0))
2935       return 0;
2936   for (x = label_value_list; x; x = XEXP (x, 1))
2937     if (label == XEXP (x, 0))
2938       return 0;
2939   for (x = exception_handler_labels; x; x = XEXP (x, 1))
2940     if (label == XEXP (x, 0))
2941       return 0;
2942
2943   /* User declared labels must be preserved.  */
2944   if (LABEL_NAME (label) != 0)
2945     return 0;
2946
2947   return 1;
2948 }
2949
2950 static int
2951 tail_recursion_label_p (label)
2952      rtx label;
2953 {
2954   rtx x;
2955
2956   for (x = tail_recursion_label_list; x; x = XEXP (x, 1))
2957     if (label == XEXP (x, 0))
2958       return 1;
2959
2960   return 0;
2961 }
2962
2963 /* Blocks A and B are to be merged into a single block A.  The insns
2964    are already contiguous, hence `nomove'.  */
2965
2966 void
2967 merge_blocks_nomove (a, b)
2968      basic_block a, b;
2969 {
2970   edge e;
2971   rtx b_head, b_end, a_end;
2972   rtx del_first = NULL_RTX, del_last = NULL_RTX;
2973   int b_empty = 0;
2974
2975   /* If there was a CODE_LABEL beginning B, delete it.  */
2976   b_head = b->head;
2977   b_end = b->end;
2978   if (GET_CODE (b_head) == CODE_LABEL)
2979     {
2980       /* Detect basic blocks with nothing but a label.  This can happen
2981          in particular at the end of a function.  */
2982       if (b_head == b_end)
2983         b_empty = 1;
2984       del_first = del_last = b_head;
2985       b_head = NEXT_INSN (b_head);
2986     }
2987
2988   /* Delete the basic block note.  */
2989   if (NOTE_INSN_BASIC_BLOCK_P (b_head))
2990     {
2991       if (b_head == b_end)
2992         b_empty = 1;
2993       if (! del_last)
2994         del_first = b_head;
2995       del_last = b_head;
2996       b_head = NEXT_INSN (b_head);
2997     }
2998
2999   /* If there was a jump out of A, delete it.  */
3000   a_end = a->end;
3001   if (GET_CODE (a_end) == JUMP_INSN)
3002     {
3003       rtx prev;
3004
3005       for (prev = PREV_INSN (a_end); ; prev = PREV_INSN (prev))
3006         if (GET_CODE (prev) != NOTE
3007             || NOTE_LINE_NUMBER (prev) == NOTE_INSN_BASIC_BLOCK
3008             || prev == a->head)
3009           break;
3010
3011       del_first = a_end;
3012
3013 #ifdef HAVE_cc0
3014       /* If this was a conditional jump, we need to also delete
3015          the insn that set cc0.  */
3016       if (only_sets_cc0_p (prev))
3017         {
3018           rtx tmp = prev;
3019           prev = prev_nonnote_insn (prev);
3020           if (!prev)
3021             prev = a->head;
3022           del_first = tmp;
3023         }
3024 #endif
3025
3026       a_end = prev;
3027     }
3028   else if (GET_CODE (NEXT_INSN (a_end)) == BARRIER)
3029     del_first = NEXT_INSN (a_end);
3030
3031   /* Delete everything marked above as well as crap that might be
3032      hanging out between the two blocks.  */
3033   flow_delete_insn_chain (del_first, del_last);
3034
3035   /* Normally there should only be one successor of A and that is B, but
3036      partway though the merge of blocks for conditional_execution we'll
3037      be merging a TEST block with THEN and ELSE successors.  Free the
3038      whole lot of them and hope the caller knows what they're doing.  */
3039   while (a->succ)
3040     remove_edge (a->succ);
3041
3042   /* Adjust the edges out of B for the new owner.  */
3043   for (e = b->succ; e; e = e->succ_next)
3044     e->src = a;
3045   a->succ = b->succ;
3046
3047   /* B hasn't quite yet ceased to exist.  Attempt to prevent mishap.  */
3048   b->pred = b->succ = NULL;
3049
3050   /* Reassociate the insns of B with A.  */
3051   if (!b_empty)
3052     {
3053       if (basic_block_for_insn)
3054         {
3055           BLOCK_FOR_INSN (b_head) = a;
3056           while (b_head != b_end)
3057             {
3058               b_head = NEXT_INSN (b_head);
3059               BLOCK_FOR_INSN (b_head) = a;
3060             }
3061         }
3062       a_end = b_end;
3063     }
3064   a->end = a_end;
3065
3066   expunge_block (b);
3067 }
3068
3069 /* Blocks A and B are to be merged into a single block.  A has no incoming
3070    fallthru edge, so it can be moved before B without adding or modifying
3071    any jumps (aside from the jump from A to B).  */
3072
3073 static int
3074 merge_blocks_move_predecessor_nojumps (a, b)
3075      basic_block a, b;
3076 {
3077   rtx start, end, barrier;
3078   int index;
3079
3080   start = a->head;
3081   end = a->end;
3082
3083   barrier = next_nonnote_insn (end);
3084   if (GET_CODE (barrier) != BARRIER)
3085     abort ();
3086   flow_delete_insn (barrier);
3087
3088   /* Move block and loop notes out of the chain so that we do not
3089      disturb their order.
3090
3091      ??? A better solution would be to squeeze out all the non-nested notes
3092      and adjust the block trees appropriately.   Even better would be to have
3093      a tighter connection between block trees and rtl so that this is not
3094      necessary.  */
3095   start = squeeze_notes (start, end);
3096
3097   /* Scramble the insn chain.  */
3098   if (end != PREV_INSN (b->head))
3099     reorder_insns (start, end, PREV_INSN (b->head));
3100
3101   if (rtl_dump_file)
3102     {
3103       fprintf (rtl_dump_file, "Moved block %d before %d and merged.\n",
3104                a->index, b->index);
3105     }
3106
3107   /* Swap the records for the two blocks around.  Although we are deleting B,
3108      A is now where B was and we want to compact the BB array from where
3109      A used to be.  */
3110   BASIC_BLOCK (a->index) = b;
3111   BASIC_BLOCK (b->index) = a;
3112   index = a->index;
3113   a->index = b->index;
3114   b->index = index;
3115
3116   /* Now blocks A and B are contiguous.  Merge them.  */
3117   merge_blocks_nomove (a, b);
3118
3119   return 1;
3120 }
3121
3122 /* Blocks A and B are to be merged into a single block.  B has no outgoing
3123    fallthru edge, so it can be moved after A without adding or modifying
3124    any jumps (aside from the jump from A to B).  */
3125
3126 static int
3127 merge_blocks_move_successor_nojumps (a, b)
3128      basic_block a, b;
3129 {
3130   rtx start, end, barrier;
3131
3132   start = b->head;
3133   end = b->end;
3134   barrier = NEXT_INSN (end);
3135
3136   /* Recognize a jump table following block B.  */
3137   if (barrier
3138       && GET_CODE (barrier) == CODE_LABEL
3139       && NEXT_INSN (barrier)
3140       && GET_CODE (NEXT_INSN (barrier)) == JUMP_INSN
3141       && (GET_CODE (PATTERN (NEXT_INSN (barrier))) == ADDR_VEC
3142           || GET_CODE (PATTERN (NEXT_INSN (barrier))) == ADDR_DIFF_VEC))
3143     {
3144       end = NEXT_INSN (barrier);
3145       barrier = NEXT_INSN (end);
3146     }
3147
3148   /* There had better have been a barrier there.  Delete it.  */
3149   if (barrier && GET_CODE (barrier) == BARRIER)
3150     flow_delete_insn (barrier);
3151
3152   /* Move block and loop notes out of the chain so that we do not
3153      disturb their order.
3154
3155      ??? A better solution would be to squeeze out all the non-nested notes
3156      and adjust the block trees appropriately.   Even better would be to have
3157      a tighter connection between block trees and rtl so that this is not
3158      necessary.  */
3159   start = squeeze_notes (start, end);
3160
3161   /* Scramble the insn chain.  */
3162   reorder_insns (start, end, a->end);
3163
3164   /* Now blocks A and B are contiguous.  Merge them.  */
3165   merge_blocks_nomove (a, b);
3166
3167   if (rtl_dump_file)
3168     {
3169       fprintf (rtl_dump_file, "Moved block %d after %d and merged.\n",
3170                b->index, a->index);
3171     }
3172
3173   return 1;
3174 }
3175
3176 /* Attempt to merge basic blocks that are potentially non-adjacent.
3177    Return true iff the attempt succeeded.  */
3178
3179 static int
3180 merge_blocks (e, b, c, mode)
3181      edge e;
3182      basic_block b, c;
3183      int mode;
3184 {
3185   /* If C has a tail recursion label, do not merge.  There is no
3186      edge recorded from the call_placeholder back to this label, as
3187      that would make optimize_sibling_and_tail_recursive_calls more
3188      complex for no gain.  */
3189   if (GET_CODE (c->head) == CODE_LABEL
3190       && tail_recursion_label_p (c->head))
3191     return 0;
3192
3193   /* If B has a fallthru edge to C, no need to move anything.  */
3194   if (e->flags & EDGE_FALLTHRU)
3195     {
3196       merge_blocks_nomove (b, c);
3197
3198       if (rtl_dump_file)
3199         {
3200           fprintf (rtl_dump_file, "Merged %d and %d without moving.\n",
3201                    b->index, c->index);
3202         }
3203
3204       return 1;
3205     }
3206   /* Otherwise we will need to move code around.  Do that only if expensive
3207      transformations are allowed.  */
3208   else if (mode & CLEANUP_EXPENSIVE)
3209     {
3210       edge tmp_edge, c_fallthru_edge;
3211       int c_has_outgoing_fallthru;
3212       int b_has_incoming_fallthru;
3213
3214       /* Avoid overactive code motion, as the forwarder blocks should be
3215          eliminated by edge redirection instead.  One exception might have
3216          been if B is a forwarder block and C has no fallthru edge, but
3217          that should be cleaned up by bb-reorder instead.  */
3218       if (forwarder_block_p (b) || forwarder_block_p (c))
3219         return 0;
3220
3221       /* We must make sure to not munge nesting of lexical blocks,
3222          and loop notes.  This is done by squeezing out all the notes
3223          and leaving them there to lie.  Not ideal, but functional.  */
3224
3225       for (tmp_edge = c->succ; tmp_edge; tmp_edge = tmp_edge->succ_next)
3226         if (tmp_edge->flags & EDGE_FALLTHRU)
3227           break;
3228       c_has_outgoing_fallthru = (tmp_edge != NULL);
3229       c_fallthru_edge = tmp_edge;
3230
3231       for (tmp_edge = b->pred; tmp_edge; tmp_edge = tmp_edge->pred_next)
3232         if (tmp_edge->flags & EDGE_FALLTHRU)
3233           break;
3234       b_has_incoming_fallthru = (tmp_edge != NULL);
3235
3236       /* If B does not have an incoming fallthru, then it can be moved
3237          immediately before C without introducing or modifying jumps.
3238          C cannot be the first block, so we do not have to worry about
3239          accessing a non-existent block.  */
3240       if (! b_has_incoming_fallthru)
3241         return merge_blocks_move_predecessor_nojumps (b, c);
3242
3243       /* Otherwise, we're going to try to move C after B.  If C does
3244          not have an outgoing fallthru, then it can be moved
3245          immediately after B without introducing or modifying jumps.  */
3246       if (! c_has_outgoing_fallthru)
3247         return merge_blocks_move_successor_nojumps (b, c);
3248
3249       /* Otherwise, we'll need to insert an extra jump, and possibly
3250          a new block to contain it.  We can't redirect to EXIT_BLOCK_PTR,
3251          as we don't have explicit return instructions before epilogues
3252          are generated, so give up on that case.  */
3253
3254       if (c_fallthru_edge->dest != EXIT_BLOCK_PTR
3255           && merge_blocks_move_successor_nojumps (b, c))
3256         {
3257           basic_block target = c_fallthru_edge->dest;
3258           rtx barrier;
3259           basic_block new;
3260
3261           /* This is a dirty hack to avoid code duplication.
3262
3263              Set edge to point to wrong basic block, so
3264              redirect_edge_and_branch_force will do the trick
3265              and rewire edge back to the original location.  */
3266           redirect_edge_succ (c_fallthru_edge, ENTRY_BLOCK_PTR);
3267           new = redirect_edge_and_branch_force (c_fallthru_edge, target);
3268
3269           /* We've just created barrier, but another barrier is
3270              already present in the stream.  Avoid the duplicate.  */
3271           barrier = next_nonnote_insn (new ? new->end : b->end);
3272           if (GET_CODE (barrier) != BARRIER)
3273             abort ();
3274           flow_delete_insn (barrier);
3275
3276           return 1;
3277         }
3278
3279       return 0;
3280     }
3281   return 0;
3282 }
3283
3284 /* Simplify a conditional jump around an unconditional jump.
3285    Return true if something changed.  */
3286
3287 static bool
3288 try_simplify_condjump (cbranch_block)
3289      basic_block cbranch_block;
3290 {
3291   basic_block jump_block, jump_dest_block, cbranch_dest_block;
3292   edge cbranch_jump_edge, cbranch_fallthru_edge;
3293   rtx cbranch_insn;
3294
3295   /* Verify that there are exactly two successors.  */
3296   if (!cbranch_block->succ
3297       || !cbranch_block->succ->succ_next
3298       || cbranch_block->succ->succ_next->succ_next)
3299     return false;
3300
3301   /* Verify that we've got a normal conditional branch at the end
3302      of the block.  */
3303   cbranch_insn = cbranch_block->end;
3304   if (!any_condjump_p (cbranch_insn))
3305     return false;
3306
3307   cbranch_fallthru_edge = FALLTHRU_EDGE (cbranch_block);
3308   cbranch_jump_edge = BRANCH_EDGE (cbranch_block);
3309
3310   /* The next block must not have multiple predecessors, must not
3311      be the last block in the function, and must contain just the
3312      unconditional jump.  */
3313   jump_block = cbranch_fallthru_edge->dest;
3314   if (jump_block->pred->pred_next
3315       || jump_block->index == n_basic_blocks - 1
3316       || !forwarder_block_p (jump_block))
3317     return false;
3318   jump_dest_block = jump_block->succ->dest;
3319
3320   /* The conditional branch must target the block after the
3321      unconditional branch.  */
3322   cbranch_dest_block = cbranch_jump_edge->dest;
3323
3324   if (!can_fallthru (jump_block, cbranch_dest_block))
3325     return false;
3326
3327   /* Invert the conditional branch.  Prevent jump.c from deleting
3328      "unreachable" instructions.  */
3329   LABEL_NUSES (JUMP_LABEL (cbranch_insn))++;
3330   if (!invert_jump (cbranch_insn, block_label (jump_dest_block), 1))
3331     {
3332       LABEL_NUSES (JUMP_LABEL (cbranch_insn))--;
3333       return false;
3334     }
3335
3336   if (rtl_dump_file)
3337     fprintf (rtl_dump_file, "Simplifying condjump %i around jump %i\n",
3338              INSN_UID (cbranch_insn), INSN_UID (jump_block->end));
3339
3340   /* Success.  Update the CFG to match.  Note that after this point
3341      the edge variable names appear backwards; the redirection is done
3342      this way to preserve edge profile data.  */
3343   redirect_edge_succ_nodup (cbranch_jump_edge, cbranch_dest_block);
3344   redirect_edge_succ_nodup (cbranch_fallthru_edge, jump_dest_block);
3345   cbranch_jump_edge->flags |= EDGE_FALLTHRU;
3346   cbranch_fallthru_edge->flags &= ~EDGE_FALLTHRU;
3347
3348   /* Delete the block with the unconditional jump, and clean up the mess.  */
3349   flow_delete_block (jump_block);
3350   tidy_fallthru_edge (cbranch_jump_edge, cbranch_block, cbranch_dest_block);
3351
3352   return true;
3353 }
3354
3355 /* Attempt to forward edges leaving basic block B.
3356    Return true if sucessful.  */
3357
3358 static bool
3359 try_forward_edges (mode, b)
3360      basic_block b;
3361      int mode;
3362 {
3363   bool changed = false;
3364   edge e, next;
3365
3366   for (e = b->succ; e ; e = next)
3367     {
3368       basic_block target, first;
3369       int counter;
3370
3371       next = e->succ_next;
3372
3373       /* Skip complex edges because we don't know how to update them.
3374
3375          Still handle fallthru edges, as we can suceed to forward fallthru
3376          edge to the same place as the branch edge of conditional branch
3377          and turn conditional branch to an unconditonal branch.  */
3378       if (e->flags & EDGE_COMPLEX)
3379         continue;
3380
3381       target = first = e->dest;
3382       counter = 0;
3383
3384       /* Look for the real destination of the jump.
3385          Avoid inifinite loop in the infinite empty loop by counting
3386          up to n_basic_blocks.  */
3387       while (forwarder_block_p (target)
3388              && target->succ->dest != EXIT_BLOCK_PTR
3389              && counter < n_basic_blocks)
3390         {
3391           /* Bypass trivial infinite loops.  */
3392           if (target == target->succ->dest)
3393             counter = n_basic_blocks;
3394
3395           /* Avoid killing of loop pre-headers, as it is the place loop
3396              optimizer wants to hoist code to.
3397
3398              For fallthru forwarders, the LOOP_BEG note must appear between
3399              the header of block and CODE_LABEL of the loop, for non forwarders
3400              it must appear before the JUMP_INSN.  */
3401           if (mode & CLEANUP_PRE_LOOP)
3402             {
3403               rtx insn = (target->succ->flags & EDGE_FALLTHRU
3404                           ? target->head : prev_nonnote_insn (target->end));
3405
3406               if (GET_CODE (insn) != NOTE)
3407                 insn = NEXT_INSN (insn);
3408
3409               for (;insn && GET_CODE (insn) != CODE_LABEL && !INSN_P (insn);
3410                    insn = NEXT_INSN (insn))
3411                 if (GET_CODE (insn) == NOTE
3412                     && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
3413                   break;
3414
3415               if (GET_CODE (insn) == NOTE)
3416                 break;
3417             }
3418           target = target->succ->dest, counter++;
3419         }
3420
3421       if (counter >= n_basic_blocks)
3422         {
3423           if (rtl_dump_file)
3424             fprintf (rtl_dump_file, "Infinite loop in BB %i.\n",
3425                      target->index);
3426         }
3427       else if (target == first)
3428         ; /* We didn't do anything.  */
3429       else
3430         {
3431           /* Save the values now, as the edge may get removed.  */
3432           gcov_type edge_count = e->count;
3433           int edge_probability = e->probability;
3434
3435           if (redirect_edge_and_branch (e, target))
3436             {
3437               /* We successfully forwarded the edge.  Now update profile
3438                  data: for each edge we traversed in the chain, remove
3439                  the original edge's execution count.  */
3440               int edge_frequency = ((edge_probability * b->frequency
3441                                      + REG_BR_PROB_BASE / 2)
3442                                     / REG_BR_PROB_BASE);
3443
3444               do
3445                 {
3446                   first->count -= edge_count;
3447                   first->succ->count -= edge_count;
3448                   first->frequency -= edge_frequency;
3449                   first = first->succ->dest;
3450                 }
3451               while (first != target);
3452
3453               changed = true;
3454             }
3455           else
3456             {
3457               if (rtl_dump_file)
3458                 fprintf (rtl_dump_file, "Forwarding edge %i->%i to %i failed.\n",
3459                          b->index, e->dest->index, target->index);
3460             }
3461         }
3462     }
3463
3464   return changed;
3465 }
3466
3467 /* Look through the insns at the end of BB1 and BB2 and find the longest
3468    sequence that are equivalent.  Store the first insns for that sequence
3469    in *F1 and *F2 and return the sequence length.
3470
3471    To simplify callers of this function, if the blocks match exactly,
3472    store the head of the blocks in *F1 and *F2.  */
3473
3474 static int
3475 flow_find_cross_jump (mode, bb1, bb2, f1, f2)
3476      int mode ATTRIBUTE_UNUSED;
3477      basic_block bb1, bb2;
3478      rtx *f1, *f2;
3479 {
3480   rtx i1, i2, p1, p2, last1, last2, afterlast1, afterlast2;
3481   int ninsns = 0;
3482
3483   /* Skip simple jumps at the end of the blocks.  Complex jumps still
3484      need to be compared for equivalence, which we'll do below.  */
3485
3486   i1 = bb1->end;
3487   if (onlyjump_p (i1)
3488       || (returnjump_p (i1) && !side_effects_p (PATTERN (i1))))
3489     i1 = PREV_INSN (i1);
3490   i2 = bb2->end;
3491   if (onlyjump_p (i2)
3492       || (returnjump_p (i2) && !side_effects_p (PATTERN (i2))))
3493     i2 = PREV_INSN (i2);
3494
3495   last1 = afterlast1 = last2 = afterlast2 = NULL_RTX;
3496   while (true)
3497     {
3498       /* Ignore notes.  */
3499       while ((GET_CODE (i1) == NOTE && i1 != bb1->head))
3500         i1 = PREV_INSN (i1);
3501       while ((GET_CODE (i2) == NOTE && i2 != bb2->head))
3502         i2 = PREV_INSN (i2);
3503
3504       if (i1 == bb1->head || i2 == bb2->head)
3505         break;
3506
3507       /* Verify that I1 and I2 are equivalent.  */
3508
3509       if (GET_CODE (i1) != GET_CODE (i2))
3510         break;
3511
3512       p1 = PATTERN (i1);
3513       p2 = PATTERN (i2);
3514
3515       /* If this is a CALL_INSN, compare register usage information.
3516          If we don't check this on stack register machines, the two
3517          CALL_INSNs might be merged leaving reg-stack.c with mismatching
3518          numbers of stack registers in the same basic block.
3519          If we don't check this on machines with delay slots, a delay slot may
3520          be filled that clobbers a parameter expected by the subroutine.
3521
3522          ??? We take the simple route for now and assume that if they're
3523          equal, they were constructed identically.  */
3524
3525       if (GET_CODE (i1) == CALL_INSN
3526           && ! rtx_equal_p (CALL_INSN_FUNCTION_USAGE (i1),
3527                             CALL_INSN_FUNCTION_USAGE (i2)))
3528         break;
3529
3530 #ifdef STACK_REGS
3531       /* If cross_jump_death_matters is not 0, the insn's mode
3532          indicates whether or not the insn contains any stack-like
3533          regs.  */
3534
3535       if ((mode & CLEANUP_POST_REGSTACK) && stack_regs_mentioned (i1))
3536         {
3537           /* If register stack conversion has already been done, then
3538              death notes must also be compared before it is certain that
3539              the two instruction streams match.  */
3540
3541           rtx note;
3542           HARD_REG_SET i1_regset, i2_regset;
3543
3544           CLEAR_HARD_REG_SET (i1_regset);
3545           CLEAR_HARD_REG_SET (i2_regset);
3546
3547           for (note = REG_NOTES (i1); note; note = XEXP (note, 1))
3548             if (REG_NOTE_KIND (note) == REG_DEAD
3549                 && STACK_REG_P (XEXP (note, 0)))
3550               SET_HARD_REG_BIT (i1_regset, REGNO (XEXP (note, 0)));
3551
3552           for (note = REG_NOTES (i2); note; note = XEXP (note, 1))
3553             if (REG_NOTE_KIND (note) == REG_DEAD
3554                 && STACK_REG_P (XEXP (note, 0)))
3555               SET_HARD_REG_BIT (i2_regset, REGNO (XEXP (note, 0)));
3556
3557           GO_IF_HARD_REG_EQUAL (i1_regset, i2_regset, done);
3558
3559           break;
3560
3561         done:
3562           ;
3563         }
3564 #endif
3565
3566       if (GET_CODE (p1) != GET_CODE (p2))
3567         break;
3568
3569       if (! rtx_renumbered_equal_p (p1, p2))
3570         {
3571           /* The following code helps take care of G++ cleanups.  */
3572           rtx equiv1 = find_reg_equal_equiv_note (i1);
3573           rtx equiv2 = find_reg_equal_equiv_note (i2);
3574
3575           if (equiv1 && equiv2
3576               /* If the equivalences are not to a constant, they may
3577                  reference pseudos that no longer exist, so we can't
3578                  use them.  */
3579               && CONSTANT_P (XEXP (equiv1, 0))
3580               && rtx_equal_p (XEXP (equiv1, 0), XEXP (equiv2, 0)))
3581             {
3582               rtx s1 = single_set (i1);
3583               rtx s2 = single_set (i2);
3584               if (s1 != 0 && s2 != 0
3585                   && rtx_renumbered_equal_p (SET_DEST (s1), SET_DEST (s2)))
3586                 {
3587                   validate_change (i1, &SET_SRC (s1), XEXP (equiv1, 0), 1);
3588                   validate_change (i2, &SET_SRC (s2), XEXP (equiv2, 0), 1);
3589                   if (! rtx_renumbered_equal_p (p1, p2))
3590                     cancel_changes (0);
3591                   else if (apply_change_group ())
3592                     goto win;
3593                 }
3594             }
3595           break;
3596         }
3597
3598     win:
3599       /* Don't begin a cross-jump with a USE or CLOBBER insn.  */
3600       if (GET_CODE (p1) != USE && GET_CODE (p1) != CLOBBER)
3601         {
3602           afterlast1 = last1, afterlast2 = last2;
3603           last1 = i1, last2 = i2;
3604           ninsns++;
3605         }
3606       i1 = PREV_INSN (i1);
3607       i2 = PREV_INSN (i2);
3608     }
3609
3610 #ifdef HAVE_cc0
3611   if (ninsns)
3612     {
3613       /* Don't allow the insn after a compare to be shared by
3614          cross-jumping unless the compare is also shared.  */
3615       if (reg_mentioned_p (cc0_rtx, last1) && ! sets_cc0_p (last1))
3616         last1 = afterlast1, last2 = afterlast2, ninsns--;
3617     }
3618 #endif
3619
3620   /* Include preceeding notes and labels in the cross-jump.  One,
3621      this may bring us to the head of the blocks as requested above.
3622      Two, it keeps line number notes as matched as may be.  */
3623   if (ninsns)
3624     {
3625       while (last1 != bb1->head && GET_CODE (PREV_INSN (last1)) == NOTE)
3626         last1 = PREV_INSN (last1);
3627       if (last1 != bb1->head && GET_CODE (PREV_INSN (last1)) == CODE_LABEL)
3628         last1 = PREV_INSN (last1);
3629       while (last2 != bb2->head && GET_CODE (PREV_INSN (last2)) == NOTE)
3630         last2 = PREV_INSN (last2);
3631       if (last2 != bb2->head && GET_CODE (PREV_INSN (last2)) == CODE_LABEL)
3632         last2 = PREV_INSN (last2);
3633
3634       *f1 = last1;
3635       *f2 = last2;
3636     }
3637
3638   return ninsns;
3639 }
3640
3641 /* Return true iff outgoing edges of BB1 and BB2 match, together with
3642    the branch instruction.  This means that if we commonize the control
3643    flow before end of the basic block, the semantic remains unchanged.
3644
3645    We may assume that there exists one edge with a common destination.  */
3646
3647 static bool
3648 outgoing_edges_match (bb1, bb2)
3649      basic_block bb1;
3650      basic_block bb2;
3651 {
3652   /* If BB1 has only one successor, we must be looking at an unconditional
3653      jump.  Which, by the assumption above, means that we only need to check
3654      that BB2 has one successor.  */
3655   if (bb1->succ && !bb1->succ->succ_next)
3656     return (bb2->succ && !bb2->succ->succ_next);
3657
3658   /* Match conditional jumps - this may get tricky when fallthru and branch
3659      edges are crossed.  */
3660   if (bb1->succ
3661       && bb1->succ->succ_next
3662       && !bb1->succ->succ_next->succ_next
3663       && any_condjump_p (bb1->end))
3664     {
3665       edge b1, f1, b2, f2;
3666       bool reverse, match;
3667       rtx set1, set2, cond1, cond2;
3668       enum rtx_code code1, code2;
3669
3670       if (!bb2->succ
3671           || !bb2->succ->succ_next
3672           || bb1->succ->succ_next->succ_next
3673           || !any_condjump_p (bb2->end))
3674         return false;
3675
3676       b1 = BRANCH_EDGE (bb1);
3677       b2 = BRANCH_EDGE (bb2);
3678       f1 = FALLTHRU_EDGE (bb1);
3679       f2 = FALLTHRU_EDGE (bb2);
3680
3681       /* Get around possible forwarders on fallthru edges.  Other cases
3682          should be optimized out already.  */
3683       if (forwarder_block_p (f1->dest))
3684         f1 = f1->dest->succ;
3685       if (forwarder_block_p (f2->dest))
3686         f2 = f2->dest->succ;
3687
3688       /* To simplify use of this function, return false if there are
3689          unneeded forwarder blocks.  These will get eliminated later
3690          during cleanup_cfg.  */
3691       if (forwarder_block_p (f1->dest)
3692           || forwarder_block_p (f2->dest)
3693           || forwarder_block_p (b1->dest)
3694           || forwarder_block_p (b2->dest))
3695         return false;
3696
3697       if (f1->dest == f2->dest && b1->dest == b2->dest)
3698         reverse = false;
3699       else if (f1->dest == b2->dest && b1->dest == f2->dest)
3700         reverse = true;
3701       else
3702         return false;
3703
3704       set1 = pc_set (bb1->end);
3705       set2 = pc_set (bb2->end);
3706       if ((XEXP (SET_SRC (set1), 1) == pc_rtx)
3707           != (XEXP (SET_SRC (set2), 1) == pc_rtx))
3708         reverse = !reverse;
3709
3710       cond1 = XEXP (SET_SRC (set1), 0);
3711       cond2 = XEXP (SET_SRC (set2), 0);
3712       code1 = GET_CODE (cond1);
3713       if (reverse)
3714         code2 = reversed_comparison_code (cond2, bb2->end);
3715       else
3716         code2 = GET_CODE (cond2);
3717       if (code2 == UNKNOWN)
3718         return false;
3719
3720       /* Verify codes and operands match.  */
3721       match = ((code1 == code2
3722                 && rtx_renumbered_equal_p (XEXP (cond1, 0), XEXP (cond2, 0))
3723                 && rtx_renumbered_equal_p (XEXP (cond1, 1), XEXP (cond2, 1)))
3724                || (code1 == swap_condition (code2)
3725                    && rtx_renumbered_equal_p (XEXP (cond1, 1),
3726                                               XEXP (cond2, 0))
3727                    && rtx_renumbered_equal_p (XEXP (cond1, 0),
3728                                               XEXP (cond2, 1))));
3729
3730       /* If we return true, we will join the blocks.  Which means that
3731          we will only have one branch prediction bit to work with.  Thus
3732          we require the existing branches to have probabilities that are
3733          roughly similar.  */
3734       /* ??? We should use bb->frequency to allow merging in infrequently
3735          executed blocks, but at the moment it is not available when
3736          cleanup_cfg is run.  */
3737       if (match && !optimize_size)
3738         {
3739           rtx note1, note2;
3740           int prob1, prob2;
3741           note1 = find_reg_note (bb1->end, REG_BR_PROB, 0);
3742           note2 = find_reg_note (bb2->end, REG_BR_PROB, 0);
3743
3744           if (note1 && note2)
3745             {
3746               prob1 = INTVAL (XEXP (note1, 0));
3747               prob2 = INTVAL (XEXP (note2, 0));
3748               if (reverse)
3749                 prob2 = REG_BR_PROB_BASE - prob2;
3750
3751               /* Fail if the difference in probabilities is
3752                  greater than 5%.  */
3753               if (abs (prob1 - prob2) > REG_BR_PROB_BASE / 20)
3754                 return false;
3755             }
3756           else if (note1 || note2)
3757             return false;
3758         }
3759
3760       if (rtl_dump_file && match)
3761         fprintf (rtl_dump_file, "Conditionals in bb %i and %i match.\n",
3762                  bb1->index, bb2->index);
3763
3764       return match;
3765     }
3766
3767   /* ??? We can handle computed jumps too.  This may be important for
3768      inlined functions containing switch statements.  Also jumps w/o
3769      fallthru edges can be handled by simply matching whole insn.  */
3770   return false;
3771 }
3772
3773 /* E1 and E2 are edges with the same destination block.  Search their
3774    predecessors for common code.  If found, redirect control flow from
3775    (maybe the middle of) E1->SRC to (maybe the middle of) E2->SRC.  */
3776
3777 static bool
3778 try_crossjump_to_edge (mode, e1, e2)
3779      int mode;
3780      edge e1, e2;
3781 {
3782   int nmatch;
3783   basic_block src1 = e1->src, src2 = e2->src;
3784   basic_block redirect_to;
3785   rtx newpos1, newpos2;
3786   edge s;
3787   rtx last;
3788   rtx label;
3789   rtx note;
3790
3791   /* Search backward through forwarder blocks.  We don't need to worry
3792      about multiple entry or chained forwarders, as they will be optimized
3793      away.  We do this to look past the unconditional jump following a
3794      conditional jump that is required due to the current CFG shape.  */
3795   if (src1->pred
3796       && !src1->pred->pred_next
3797       && forwarder_block_p (src1))
3798     {
3799       e1 = src1->pred;
3800       src1 = e1->src;
3801     }
3802   if (src2->pred
3803       && !src2->pred->pred_next
3804       && forwarder_block_p (src2))
3805     {
3806       e2 = src2->pred;
3807       src2 = e2->src;
3808     }
3809
3810   /* Nothing to do if we reach ENTRY, or a common source block.  */
3811   if (src1 == ENTRY_BLOCK_PTR || src2 == ENTRY_BLOCK_PTR)
3812     return false;
3813   if (src1 == src2)
3814     return false;
3815
3816   /* Seeing more than 1 forwarder blocks would confuse us later...  */
3817   if (forwarder_block_p (e1->dest)
3818       && forwarder_block_p (e1->dest->succ->dest))
3819     return false;
3820   if (forwarder_block_p (e2->dest)
3821       && forwarder_block_p (e2->dest->succ->dest))
3822     return false;
3823
3824   /* Likewise with dead code (possibly newly created by the other optimizations
3825      of cfg_cleanup).  */
3826   if (!src1->pred || !src2->pred)
3827     return false;
3828
3829   /* Likewise with complex edges.
3830      ??? We should be able to handle most complex edges later with some
3831      care.  */
3832   if (e1->flags & EDGE_COMPLEX)
3833     return false;
3834
3835   /* Look for the common insn sequence, part the first ...  */
3836   if (!outgoing_edges_match (src1, src2))
3837     return false;
3838
3839   /* ... and part the second.  */
3840   nmatch = flow_find_cross_jump (mode, src1, src2, &newpos1, &newpos2);
3841   if (!nmatch)
3842     return false;
3843
3844   /* Avoid splitting if possible.  */
3845   if (newpos2 == src2->head)
3846     redirect_to = src2;
3847   else
3848     {
3849       if (rtl_dump_file)
3850         fprintf (rtl_dump_file, "Splitting bb %i before %i insns\n",
3851                  src2->index, nmatch);
3852       redirect_to = split_block (src2, PREV_INSN (newpos2))->dest;
3853     }
3854
3855   if (rtl_dump_file)
3856     fprintf (rtl_dump_file,
3857              "Cross jumping from bb %i to bb %i; %i common insns\n",
3858              src1->index, src2->index, nmatch);
3859
3860   redirect_to->count += src1->count;
3861   redirect_to->frequency += src1->frequency;
3862
3863   /* Recompute the frequencies and counts of outgoing edges.  */
3864   for (s = redirect_to->succ; s; s = s->succ_next)
3865     {
3866       edge s2;
3867       basic_block d = s->dest;
3868
3869       if (forwarder_block_p (d))
3870         d = d->succ->dest;
3871       for (s2 = src1->succ; ; s2 = s2->succ_next)
3872         {
3873           basic_block d2 = s2->dest;
3874           if (forwarder_block_p (d2))
3875             d2 = d2->succ->dest;
3876           if (d == d2)
3877             break;
3878         }
3879       s->count += s2->count;
3880
3881       /* Take care to update possible forwarder blocks.  We verified
3882          that there is no more than one in the chain, so we can't run
3883          into infinite loop.  */
3884       if (forwarder_block_p (s->dest))
3885         {
3886           s->dest->succ->count += s2->count;
3887           s->dest->count += s2->count;
3888           s->dest->frequency += EDGE_FREQUENCY (s);
3889         }
3890       if (forwarder_block_p (s2->dest))
3891         {
3892           s2->dest->succ->count -= s2->count;
3893           s2->dest->count -= s2->count;
3894           s2->dest->frequency -= EDGE_FREQUENCY (s);
3895         }
3896       if (!redirect_to->frequency && !src1->frequency)
3897         s->probability = (s->probability + s2->probability) / 2;
3898       else
3899         s->probability =
3900           ((s->probability * redirect_to->frequency +
3901             s2->probability * src1->frequency)
3902            / (redirect_to->frequency + src1->frequency));
3903     }
3904
3905   note = find_reg_note (redirect_to->end, REG_BR_PROB, 0);
3906   if (note)
3907     XEXP (note, 0) = GEN_INT (BRANCH_EDGE (redirect_to)->probability);
3908
3909   /* Edit SRC1 to go to REDIRECT_TO at NEWPOS1.  */
3910
3911   /* Skip possible basic block header.  */
3912   if (GET_CODE (newpos1) == CODE_LABEL)
3913     newpos1 = NEXT_INSN (newpos1);
3914   if (GET_CODE (newpos1) == NOTE)
3915     newpos1 = NEXT_INSN (newpos1);
3916   last = src1->end;
3917
3918   /* Emit the jump insn.   */
3919   label = block_label (redirect_to);
3920   src1->end = emit_jump_insn_before (gen_jump (label), newpos1);
3921   JUMP_LABEL (src1->end) = label;
3922   LABEL_NUSES (label)++;
3923   if (basic_block_for_insn)
3924     set_block_for_new_insns (src1->end, src1);
3925
3926   /* Delete the now unreachable instructions.  */
3927   flow_delete_insn_chain (newpos1, last);
3928
3929   /* Make sure there is a barrier after the new jump.  */
3930   last = next_nonnote_insn (src1->end);
3931   if (!last || GET_CODE (last) != BARRIER)
3932     emit_barrier_after (src1->end);
3933
3934   /* Update CFG.  */
3935   while (src1->succ)
3936     remove_edge (src1->succ);
3937   make_edge (NULL, src1, redirect_to, 0);
3938   src1->succ->probability = REG_BR_PROB_BASE;
3939   src1->succ->count = src1->count;
3940
3941   return true;
3942 }
3943
3944 /* Search the predecessors of BB for common insn sequences.  When found,
3945    share code between them by redirecting control flow.  Return true if
3946    any changes made.  */
3947
3948 static bool
3949 try_crossjump_bb (mode, bb)
3950      int mode;
3951      basic_block bb;
3952 {
3953   edge e, e2, nexte2, nexte, fallthru;
3954   bool changed;
3955
3956   /* Nothing to do if there is not at least two incomming edges.  */
3957   if (!bb->pred || !bb->pred->pred_next)
3958     return false;
3959
3960   /* It is always cheapest to redirect a block that ends in a branch to
3961      a block that falls through into BB, as that adds no branches to the
3962      program.  We'll try that combination first.  */
3963   for (fallthru = bb->pred; fallthru; fallthru = fallthru->pred_next)
3964     if (fallthru->flags & EDGE_FALLTHRU)
3965       break;
3966
3967   changed = false;
3968   for (e = bb->pred; e; e = nexte)
3969     {
3970       nexte = e->pred_next;
3971
3972       /* Elide complex edges now, as neither try_crossjump_to_edge
3973          nor outgoing_edges_match can handle them.  */
3974       if (e->flags & EDGE_COMPLEX)
3975         continue;
3976
3977       /* As noted above, first try with the fallthru predecessor.  */
3978       if (fallthru)
3979         {
3980           /* Don't combine the fallthru edge into anything else.
3981              If there is a match, we'll do it the other way around.  */
3982           if (e == fallthru)
3983             continue;
3984
3985           if (try_crossjump_to_edge (mode, e, fallthru))
3986             {
3987               changed = true;
3988               nexte = bb->pred;
3989               continue;
3990             }
3991         }
3992
3993       /* Non-obvious work limiting check: Recognize that we're going
3994          to call try_crossjump_bb on every basic block.  So if we have
3995          two blocks with lots of outgoing edges (a switch) and they
3996          share lots of common destinations, then we would do the
3997          cross-jump check once for each common destination.
3998
3999          Now, if the blocks actually are cross-jump candidates, then
4000          all of their destinations will be shared.  Which means that
4001          we only need check them for cross-jump candidacy once.  We
4002          can eliminate redundant checks of crossjump(A,B) by arbitrarily
4003          choosing to do the check from the block for which the edge
4004          in question is the first successor of A.  */
4005       if (e->src->succ != e)
4006         continue;
4007
4008       for (e2 = bb->pred; e2; e2 = nexte2)
4009         {
4010           nexte2 = e2->pred_next;
4011
4012           if (e2 == e)
4013             continue;
4014
4015           /* We've already checked the fallthru edge above.  */
4016           if (e2 == fallthru)
4017             continue;
4018
4019           /* Again, neither try_crossjump_to_edge nor outgoing_edges_match
4020              can handle complex edges.  */
4021           if (e2->flags & EDGE_COMPLEX)
4022             continue;
4023
4024           /* The "first successor" check above only prevents multiple
4025              checks of crossjump(A,B).  In order to prevent redundant
4026              checks of crossjump(B,A), require that A be the block
4027              with the lowest index.  */
4028           if (e->src->index > e2->src->index)
4029             continue;
4030
4031           if (try_crossjump_to_edge (mode, e, e2))
4032             {
4033               changed = true;
4034               nexte = bb->pred;
4035               break;
4036             }
4037         }
4038     }
4039
4040   return changed;
4041 }
4042
4043 /* Do simple CFG optimizations - basic block merging, simplifying of jump
4044    instructions etc.  Return nonzero if changes were made.  */
4045
4046 static bool
4047 try_optimize_cfg (mode)
4048      int mode;
4049 {
4050   int i;
4051   bool changed_overall = false;
4052   bool changed;
4053   int iterations = 0;
4054
4055   /* Attempt to merge blocks as made possible by edge removal.  If a block
4056      has only one successor, and the successor has only one predecessor,
4057      they may be combined.  */
4058
4059   do
4060     {
4061       changed = false;
4062       iterations++;
4063
4064       if (rtl_dump_file)
4065         fprintf (rtl_dump_file, "\n\ntry_optimize_cfg iteration %i\n\n",
4066                  iterations);
4067
4068       for (i = 0; i < n_basic_blocks;)
4069         {
4070           basic_block c, b = BASIC_BLOCK (i);
4071           edge s;
4072           bool changed_here = false;
4073
4074           /* Delete trivially dead basic blocks.  */
4075           while (b->pred == NULL)
4076             {
4077               c = BASIC_BLOCK (b->index - 1);
4078               if (rtl_dump_file)
4079                 fprintf (rtl_dump_file, "Deleting block %i.\n", b->index);
4080               flow_delete_block (b);
4081               changed = true;
4082               b = c;
4083             }
4084
4085           /* Remove code labels no longer used.  Don't do this before
4086              CALL_PLACEHOLDER is removed, as some branches may be hidden
4087              within.  */
4088           if (b->pred->pred_next == NULL
4089               && (b->pred->flags & EDGE_FALLTHRU)
4090               && !(b->pred->flags & EDGE_COMPLEX)
4091               && GET_CODE (b->head) == CODE_LABEL
4092               && (!(mode & CLEANUP_PRE_SIBCALL)
4093                   || !tail_recursion_label_p (b->head))
4094               /* If previous block ends with condjump jumping to next BB,
4095                  we can't delete the label.  */
4096               && (b->pred->src == ENTRY_BLOCK_PTR
4097                   || !reg_mentioned_p (b->head, b->pred->src->end)))
4098             {
4099               rtx label = b->head;
4100               b->head = NEXT_INSN (b->head);
4101               flow_delete_insn_chain (label, label);
4102               if (rtl_dump_file)
4103                 fprintf (rtl_dump_file, "Deleted label in block %i.\n",
4104                          b->index);
4105             }
4106
4107           /* If we fall through an empty block, we can remove it.  */
4108           if (b->pred->pred_next == NULL
4109               && (b->pred->flags & EDGE_FALLTHRU)
4110               && GET_CODE (b->head) != CODE_LABEL
4111               && forwarder_block_p (b)
4112               /* Note that forwarder_block_p true ensures that there
4113                  is a successor for this block.  */
4114               && (b->succ->flags & EDGE_FALLTHRU)
4115               && n_basic_blocks > 1)
4116             {
4117               if (rtl_dump_file)
4118                 fprintf (rtl_dump_file, "Deleting fallthru block %i.\n",
4119                          b->index);
4120               c = BASIC_BLOCK (b->index ? b->index - 1 : 1);
4121               redirect_edge_succ_nodup (b->pred, b->succ->dest);
4122               flow_delete_block (b);
4123               changed = true;
4124               b = c;
4125             }
4126
4127           /* Merge blocks.  Loop because chains of blocks might be
4128              combineable.  */
4129           while ((s = b->succ) != NULL
4130                  && s->succ_next == NULL
4131                  && !(s->flags & EDGE_COMPLEX)
4132                  && (c = s->dest) != EXIT_BLOCK_PTR
4133                  && c->pred->pred_next == NULL
4134                  /* If the jump insn has side effects,
4135                     we can't kill the edge.  */
4136                  && (GET_CODE (b->end) != JUMP_INSN
4137                      || onlyjump_p (b->end))
4138                  && merge_blocks (s, b, c, mode))
4139             changed_here = true;
4140
4141           /* Simplify branch over branch.  */
4142           if ((mode & CLEANUP_EXPENSIVE) && try_simplify_condjump (b))
4143             changed_here = true;
4144
4145           /* If B has a single outgoing edge, but uses a non-trivial jump
4146              instruction without side-effects, we can either delete the
4147              jump entirely, or replace it with a simple unconditional jump.
4148              Use redirect_edge_and_branch to do the dirty work.  */
4149           if (b->succ
4150               && ! b->succ->succ_next
4151               && b->succ->dest != EXIT_BLOCK_PTR
4152               && onlyjump_p (b->end)
4153               && redirect_edge_and_branch (b->succ, b->succ->dest))
4154             changed_here = true;
4155
4156           /* Simplify branch to branch.  */
4157           if (try_forward_edges (mode, b))
4158             changed_here = true;
4159
4160           /* Look for shared code between blocks.  */
4161           if ((mode & CLEANUP_CROSSJUMP)
4162               && try_crossjump_bb (mode, b))
4163             changed_here = true;
4164
4165           /* Don't get confused by the index shift caused by deleting
4166              blocks.  */
4167           if (!changed_here)
4168             i = b->index + 1;
4169           else
4170             changed = true;
4171         }
4172
4173       if ((mode & CLEANUP_CROSSJUMP)
4174           && try_crossjump_bb (mode, EXIT_BLOCK_PTR))
4175         changed = true;
4176
4177 #ifdef ENABLE_CHECKING
4178       if (changed)
4179         verify_flow_info ();
4180 #endif
4181
4182       changed_overall |= changed;
4183     }
4184   while (changed);
4185   return changed_overall;
4186 }
4187
4188 /* The given edge should potentially be a fallthru edge.  If that is in
4189    fact true, delete the jump and barriers that are in the way.  */
4190
4191 void
4192 tidy_fallthru_edge (e, b, c)
4193      edge e;
4194      basic_block b, c;
4195 {
4196   rtx q;
4197
4198   /* ??? In a late-running flow pass, other folks may have deleted basic
4199      blocks by nopping out blocks, leaving multiple BARRIERs between here
4200      and the target label. They ought to be chastized and fixed.
4201
4202      We can also wind up with a sequence of undeletable labels between
4203      one block and the next.
4204
4205      So search through a sequence of barriers, labels, and notes for
4206      the head of block C and assert that we really do fall through.  */
4207
4208   if (next_real_insn (b->end) != next_real_insn (PREV_INSN (c->head)))
4209     return;
4210
4211   /* Remove what will soon cease being the jump insn from the source block.
4212      If block B consisted only of this single jump, turn it into a deleted
4213      note.  */
4214   q = b->end;
4215   if (GET_CODE (q) == JUMP_INSN
4216       && onlyjump_p (q)
4217       && (any_uncondjump_p (q)
4218           || (b->succ == e && e->succ_next == NULL)))
4219     {
4220 #ifdef HAVE_cc0
4221       /* If this was a conditional jump, we need to also delete
4222          the insn that set cc0.  */
4223       if (any_condjump_p (q) && only_sets_cc0_p (PREV_INSN (q)))
4224         q = PREV_INSN (q);
4225 #endif
4226
4227       if (b->head == q)
4228         {
4229           PUT_CODE (q, NOTE);
4230           NOTE_LINE_NUMBER (q) = NOTE_INSN_DELETED;
4231           NOTE_SOURCE_FILE (q) = 0;
4232         }
4233       else
4234         {
4235           q = PREV_INSN (q);
4236
4237           /* We don't want a block to end on a line-number note since that has
4238              the potential of changing the code between -g and not -g.  */
4239           while (GET_CODE (q) == NOTE && NOTE_LINE_NUMBER (q) >= 0)
4240             q = PREV_INSN (q);
4241         }
4242
4243       b->end = q;
4244     }
4245
4246   /* Selectively unlink the sequence.  */
4247   if (q != PREV_INSN (c->head))
4248     flow_delete_insn_chain (NEXT_INSN (q), PREV_INSN (c->head));
4249
4250   e->flags |= EDGE_FALLTHRU;
4251 }
4252
4253 /* Fix up edges that now fall through, or rather should now fall through
4254    but previously required a jump around now deleted blocks.  Simplify
4255    the search by only examining blocks numerically adjacent, since this
4256    is how find_basic_blocks created them.  */
4257
4258 static void
4259 tidy_fallthru_edges ()
4260 {
4261   int i;
4262
4263   for (i = 1; i < n_basic_blocks; ++i)
4264     {
4265       basic_block b = BASIC_BLOCK (i - 1);
4266       basic_block c = BASIC_BLOCK (i);
4267       edge s;
4268
4269       /* We care about simple conditional or unconditional jumps with
4270          a single successor.
4271
4272          If we had a conditional branch to the next instruction when
4273          find_basic_blocks was called, then there will only be one
4274          out edge for the block which ended with the conditional
4275          branch (since we do not create duplicate edges).
4276
4277          Furthermore, the edge will be marked as a fallthru because we
4278          merge the flags for the duplicate edges.  So we do not want to
4279          check that the edge is not a FALLTHRU edge.  */
4280       if ((s = b->succ) != NULL
4281           && ! (s->flags & EDGE_COMPLEX)
4282           && s->succ_next == NULL
4283           && s->dest == c
4284           /* If the jump insn has side effects, we can't tidy the edge.  */
4285           && (GET_CODE (b->end) != JUMP_INSN
4286               || onlyjump_p (b->end)))
4287         tidy_fallthru_edge (s, b, c);
4288     }
4289 }
4290 \f
4291 /* Perform data flow analysis.
4292    F is the first insn of the function; FLAGS is a set of PROP_* flags
4293    to be used in accumulating flow info.  */
4294
4295 void
4296 life_analysis (f, file, flags)
4297      rtx f;
4298      FILE *file;
4299      int flags;
4300 {
4301 #ifdef ELIMINABLE_REGS
4302   register int i;
4303   static struct {int from, to; } eliminables[] = ELIMINABLE_REGS;
4304 #endif
4305
4306   /* Record which registers will be eliminated.  We use this in
4307      mark_used_regs.  */
4308
4309   CLEAR_HARD_REG_SET (elim_reg_set);
4310
4311 #ifdef ELIMINABLE_REGS
4312   for (i = 0; i < (int) ARRAY_SIZE (eliminables); i++)
4313     SET_HARD_REG_BIT (elim_reg_set, eliminables[i].from);
4314 #else
4315   SET_HARD_REG_BIT (elim_reg_set, FRAME_POINTER_REGNUM);
4316 #endif
4317
4318   if (! optimize)
4319     flags &= ~(PROP_LOG_LINKS | PROP_AUTOINC | PROP_ALLOW_CFG_CHANGES);
4320
4321   /* The post-reload life analysis have (on a global basis) the same
4322      registers live as was computed by reload itself.  elimination
4323      Otherwise offsets and such may be incorrect.
4324
4325      Reload will make some registers as live even though they do not
4326      appear in the rtl.
4327
4328      We don't want to create new auto-incs after reload, since they
4329      are unlikely to be useful and can cause problems with shared
4330      stack slots.  */
4331   if (reload_completed)
4332     flags &= ~(PROP_REG_INFO | PROP_AUTOINC);
4333
4334   /* We want alias analysis information for local dead store elimination.  */
4335   if (optimize && (flags & PROP_SCAN_DEAD_CODE))
4336     init_alias_analysis ();
4337
4338   /* Always remove no-op moves.  Do this before other processing so
4339      that we don't have to keep re-scanning them.  */
4340   delete_noop_moves (f);
4341
4342   /* Some targets can emit simpler epilogues if they know that sp was
4343      not ever modified during the function.  After reload, of course,
4344      we've already emitted the epilogue so there's no sense searching.  */
4345   if (! reload_completed)
4346     notice_stack_pointer_modification (f);
4347
4348   /* Allocate and zero out data structures that will record the
4349      data from lifetime analysis.  */
4350   allocate_reg_life_data ();
4351   allocate_bb_life_data ();
4352
4353   /* Find the set of registers live on function exit.  */
4354   mark_regs_live_at_end (EXIT_BLOCK_PTR->global_live_at_start);
4355
4356   /* "Update" life info from zero.  It'd be nice to begin the
4357      relaxation with just the exit and noreturn blocks, but that set
4358      is not immediately handy.  */
4359
4360   if (flags & PROP_REG_INFO)
4361     memset (regs_ever_live, 0, sizeof (regs_ever_live));
4362   update_life_info (NULL, UPDATE_LIFE_GLOBAL, flags);
4363
4364   /* Clean up.  */
4365   if (optimize && (flags & PROP_SCAN_DEAD_CODE))
4366     end_alias_analysis ();
4367
4368   if (file)
4369     dump_flow_info (file);
4370
4371   free_basic_block_vars (1);
4372
4373 #ifdef ENABLE_CHECKING
4374   {
4375     rtx insn;
4376
4377     /* Search for any REG_LABEL notes which reference deleted labels.  */
4378     for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4379       {
4380         rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
4381
4382         if (inote && GET_CODE (inote) == NOTE_INSN_DELETED_LABEL)
4383           abort ();
4384       }
4385   }
4386 #endif
4387   /* Removing dead insns should've made jumptables really dead.  */
4388   delete_dead_jumptables ();
4389 }
4390
4391 /* A subroutine of verify_wide_reg, called through for_each_rtx.
4392    Search for REGNO.  If found, abort if it is not wider than word_mode.  */
4393
4394 static int
4395 verify_wide_reg_1 (px, pregno)
4396      rtx *px;
4397      void *pregno;
4398 {
4399   rtx x = *px;
4400   unsigned int regno = *(int *) pregno;
4401
4402   if (GET_CODE (x) == REG && REGNO (x) == regno)
4403     {
4404       if (GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD)
4405         abort ();
4406       return 1;
4407     }
4408   return 0;
4409 }
4410
4411 /* A subroutine of verify_local_live_at_start.  Search through insns
4412    between HEAD and END looking for register REGNO.  */
4413
4414 static void
4415 verify_wide_reg (regno, head, end)
4416      int regno;
4417      rtx head, end;
4418 {
4419   while (1)
4420     {
4421       if (INSN_P (head)
4422           && for_each_rtx (&PATTERN (head), verify_wide_reg_1, &regno))
4423         return;
4424       if (head == end)
4425         break;
4426       head = NEXT_INSN (head);
4427     }
4428
4429   /* We didn't find the register at all.  Something's way screwy.  */
4430   if (rtl_dump_file)
4431     fprintf (rtl_dump_file, "Aborting in verify_wide_reg; reg %d\n", regno);
4432   print_rtl_and_abort ();
4433 }
4434
4435 /* A subroutine of update_life_info.  Verify that there are no untoward
4436    changes in live_at_start during a local update.  */
4437
4438 static void
4439 verify_local_live_at_start (new_live_at_start, bb)
4440      regset new_live_at_start;
4441      basic_block bb;
4442 {
4443   if (reload_completed)
4444     {
4445       /* After reload, there are no pseudos, nor subregs of multi-word
4446          registers.  The regsets should exactly match.  */
4447       if (! REG_SET_EQUAL_P (new_live_at_start, bb->global_live_at_start))
4448         {
4449           if (rtl_dump_file)
4450             {
4451               fprintf (rtl_dump_file,
4452                        "live_at_start mismatch in bb %d, aborting\n",
4453                        bb->index);
4454               debug_bitmap_file (rtl_dump_file, bb->global_live_at_start);
4455               debug_bitmap_file (rtl_dump_file, new_live_at_start);
4456             }
4457           print_rtl_and_abort ();
4458         }
4459     }
4460   else
4461     {
4462       int i;
4463
4464       /* Find the set of changed registers.  */
4465       XOR_REG_SET (new_live_at_start, bb->global_live_at_start);
4466
4467       EXECUTE_IF_SET_IN_REG_SET (new_live_at_start, 0, i,
4468         {
4469           /* No registers should die.  */
4470           if (REGNO_REG_SET_P (bb->global_live_at_start, i))
4471             {
4472               if (rtl_dump_file)
4473                 fprintf (rtl_dump_file,
4474                          "Register %d died unexpectedly in block %d\n", i,
4475                          bb->index);
4476               print_rtl_and_abort ();
4477             }
4478
4479           /* Verify that the now-live register is wider than word_mode.  */
4480           verify_wide_reg (i, bb->head, bb->end);
4481         });
4482     }
4483 }
4484
4485 /* Updates life information starting with the basic blocks set in BLOCKS.
4486    If BLOCKS is null, consider it to be the universal set.
4487
4488    If EXTENT is UPDATE_LIFE_LOCAL, such as after splitting or peepholeing,
4489    we are only expecting local modifications to basic blocks.  If we find
4490    extra registers live at the beginning of a block, then we either killed
4491    useful data, or we have a broken split that wants data not provided.
4492    If we find registers removed from live_at_start, that means we have
4493    a broken peephole that is killing a register it shouldn't.
4494
4495    ??? This is not true in one situation -- when a pre-reload splitter
4496    generates subregs of a multi-word pseudo, current life analysis will
4497    lose the kill.  So we _can_ have a pseudo go live.  How irritating.
4498
4499    Including PROP_REG_INFO does not properly refresh regs_ever_live
4500    unless the caller resets it to zero.  */
4501
4502 void
4503 update_life_info (blocks, extent, prop_flags)
4504      sbitmap blocks;
4505      enum update_life_extent extent;
4506      int prop_flags;
4507 {
4508   regset tmp;
4509   regset_head tmp_head;
4510   int i;
4511
4512   tmp = INITIALIZE_REG_SET (tmp_head);
4513
4514   /* Changes to the CFG are only allowed when
4515      doing a global update for the entire CFG.  */
4516   if ((prop_flags & PROP_ALLOW_CFG_CHANGES)
4517       && (extent == UPDATE_LIFE_LOCAL || blocks))
4518     abort ();
4519
4520   /* For a global update, we go through the relaxation process again.  */
4521   if (extent != UPDATE_LIFE_LOCAL)
4522     {
4523       for ( ; ; )
4524         {
4525           int changed = 0;
4526
4527           calculate_global_regs_live (blocks, blocks,
4528                                 prop_flags & (PROP_SCAN_DEAD_CODE
4529                                               | PROP_ALLOW_CFG_CHANGES));
4530
4531           if ((prop_flags & (PROP_KILL_DEAD_CODE | PROP_ALLOW_CFG_CHANGES))
4532               != (PROP_KILL_DEAD_CODE | PROP_ALLOW_CFG_CHANGES))
4533             break;
4534
4535           /* Removing dead code may allow the CFG to be simplified which
4536              in turn may allow for further dead code detection / removal.  */
4537           for (i = n_basic_blocks - 1; i >= 0; --i)
4538             {
4539               basic_block bb = BASIC_BLOCK (i);
4540
4541               COPY_REG_SET (tmp, bb->global_live_at_end);
4542               changed |= propagate_block (bb, tmp, NULL, NULL,
4543                                 prop_flags & (PROP_SCAN_DEAD_CODE
4544                                               | PROP_KILL_DEAD_CODE));
4545             }
4546
4547           if (! changed || ! try_optimize_cfg (CLEANUP_EXPENSIVE))
4548             break;
4549
4550           delete_unreachable_blocks ();
4551           mark_critical_edges ();
4552         }
4553
4554       /* If asked, remove notes from the blocks we'll update.  */
4555       if (extent == UPDATE_LIFE_GLOBAL_RM_NOTES)
4556         count_or_remove_death_notes (blocks, 1);
4557     }
4558
4559   if (blocks)
4560     {
4561       EXECUTE_IF_SET_IN_SBITMAP (blocks, 0, i,
4562         {
4563           basic_block bb = BASIC_BLOCK (i);
4564
4565           COPY_REG_SET (tmp, bb->global_live_at_end);
4566           propagate_block (bb, tmp, NULL, NULL, prop_flags);
4567
4568           if (extent == UPDATE_LIFE_LOCAL)
4569             verify_local_live_at_start (tmp, bb);
4570         });
4571     }
4572   else
4573     {
4574       for (i = n_basic_blocks - 1; i >= 0; --i)
4575         {
4576           basic_block bb = BASIC_BLOCK (i);
4577
4578           COPY_REG_SET (tmp, bb->global_live_at_end);
4579           propagate_block (bb, tmp, NULL, NULL, prop_flags);
4580
4581           if (extent == UPDATE_LIFE_LOCAL)
4582             verify_local_live_at_start (tmp, bb);
4583         }
4584     }
4585
4586   FREE_REG_SET (tmp);
4587
4588   if (prop_flags & PROP_REG_INFO)
4589     {
4590       /* The only pseudos that are live at the beginning of the function
4591          are those that were not set anywhere in the function.  local-alloc
4592          doesn't know how to handle these correctly, so mark them as not
4593          local to any one basic block.  */
4594       EXECUTE_IF_SET_IN_REG_SET (ENTRY_BLOCK_PTR->global_live_at_end,
4595                                  FIRST_PSEUDO_REGISTER, i,
4596                                  { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
4597
4598       /* We have a problem with any pseudoreg that lives across the setjmp.
4599          ANSI says that if a user variable does not change in value between
4600          the setjmp and the longjmp, then the longjmp preserves it.  This
4601          includes longjmp from a place where the pseudo appears dead.
4602          (In principle, the value still exists if it is in scope.)
4603          If the pseudo goes in a hard reg, some other value may occupy
4604          that hard reg where this pseudo is dead, thus clobbering the pseudo.
4605          Conclusion: such a pseudo must not go in a hard reg.  */
4606       EXECUTE_IF_SET_IN_REG_SET (regs_live_at_setjmp,
4607                                  FIRST_PSEUDO_REGISTER, i,
4608                                  {
4609                                    if (regno_reg_rtx[i] != 0)
4610                                      {
4611                                        REG_LIVE_LENGTH (i) = -1;
4612                                        REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
4613                                      }
4614                                  });
4615     }
4616 }
4617
4618 /* Free the variables allocated by find_basic_blocks.
4619
4620    KEEP_HEAD_END_P is non-zero if basic_block_info is not to be freed.  */
4621
4622 void
4623 free_basic_block_vars (keep_head_end_p)
4624      int keep_head_end_p;
4625 {
4626   if (basic_block_for_insn)
4627     {
4628       VARRAY_FREE (basic_block_for_insn);
4629       basic_block_for_insn = NULL;
4630     }
4631
4632   if (! keep_head_end_p)
4633     {
4634       if (basic_block_info)
4635         {
4636           clear_edges ();
4637           VARRAY_FREE (basic_block_info);
4638         }
4639       n_basic_blocks = 0;
4640
4641       ENTRY_BLOCK_PTR->aux = NULL;
4642       ENTRY_BLOCK_PTR->global_live_at_end = NULL;
4643       EXIT_BLOCK_PTR->aux = NULL;
4644       EXIT_BLOCK_PTR->global_live_at_start = NULL;
4645     }
4646 }
4647
4648 /* Delete any insns that copy a register to itself.  */
4649
4650 void
4651 delete_noop_moves (f)
4652      rtx f ATTRIBUTE_UNUSED;
4653 {
4654   int i;
4655   rtx insn, next;
4656   basic_block bb;
4657
4658   for (i = 0; i < n_basic_blocks; i++)
4659     {
4660       bb = BASIC_BLOCK (i);
4661       for (insn = bb->head; insn != NEXT_INSN (bb->end); insn = next)
4662         {
4663           next = NEXT_INSN (insn);
4664           if (INSN_P (insn) && noop_move_p (insn))
4665             {
4666               /* Do not call flow_delete_insn here to not confuse backward
4667                  pointers of LIBCALL block.  */
4668               PUT_CODE (insn, NOTE);
4669               NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
4670               NOTE_SOURCE_FILE (insn) = 0;
4671             }
4672         }
4673     }
4674 }
4675
4676 /* Delete any jump tables never referenced.  We can't delete them at the
4677    time of removing tablejump insn as they are referenced by the preceeding
4678    insns computing the destination, so we delay deleting and garbagecollect
4679    them once life information is computed.  */
4680 static void
4681 delete_dead_jumptables ()
4682 {
4683   rtx insn, next;
4684   for (insn = get_insns (); insn; insn = next)
4685     {
4686       next = NEXT_INSN (insn);
4687       if (GET_CODE (insn) == CODE_LABEL
4688           && LABEL_NUSES (insn) == 0
4689           && GET_CODE (next) == JUMP_INSN
4690           && (GET_CODE (PATTERN (next)) == ADDR_VEC
4691               || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
4692         {
4693           if (rtl_dump_file)
4694             fprintf (rtl_dump_file, "Dead jumptable %i removed\n", INSN_UID (insn));
4695           flow_delete_insn (NEXT_INSN (insn));
4696           flow_delete_insn (insn);
4697           next = NEXT_INSN (next);
4698         }
4699     }
4700 }
4701
4702 /* Determine if the stack pointer is constant over the life of the function.
4703    Only useful before prologues have been emitted.  */
4704
4705 static void
4706 notice_stack_pointer_modification_1 (x, pat, data)
4707      rtx x;
4708      rtx pat ATTRIBUTE_UNUSED;
4709      void *data ATTRIBUTE_UNUSED;
4710 {
4711   if (x == stack_pointer_rtx
4712       /* The stack pointer is only modified indirectly as the result
4713          of a push until later in flow.  See the comments in rtl.texi
4714          regarding Embedded Side-Effects on Addresses.  */
4715       || (GET_CODE (x) == MEM
4716           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == 'a'
4717           && XEXP (XEXP (x, 0), 0) == stack_pointer_rtx))
4718     current_function_sp_is_unchanging = 0;
4719 }
4720
4721 static void
4722 notice_stack_pointer_modification (f)
4723      rtx f;
4724 {
4725   rtx insn;
4726
4727   /* Assume that the stack pointer is unchanging if alloca hasn't
4728      been used.  */
4729   current_function_sp_is_unchanging = !current_function_calls_alloca;
4730   if (! current_function_sp_is_unchanging)
4731     return;
4732
4733   for (insn = f; insn; insn = NEXT_INSN (insn))
4734     {
4735       if (INSN_P (insn))
4736         {
4737           /* Check if insn modifies the stack pointer.  */
4738           note_stores (PATTERN (insn), notice_stack_pointer_modification_1,
4739                        NULL);
4740           if (! current_function_sp_is_unchanging)
4741             return;
4742         }
4743     }
4744 }
4745
4746 /* Mark a register in SET.  Hard registers in large modes get all
4747    of their component registers set as well.  */
4748
4749 static void
4750 mark_reg (reg, xset)
4751      rtx reg;
4752      void *xset;
4753 {
4754   regset set = (regset) xset;
4755   int regno = REGNO (reg);
4756
4757   if (GET_MODE (reg) == BLKmode)
4758     abort ();
4759
4760   SET_REGNO_REG_SET (set, regno);
4761   if (regno < FIRST_PSEUDO_REGISTER)
4762     {
4763       int n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
4764       while (--n > 0)
4765         SET_REGNO_REG_SET (set, regno + n);
4766     }
4767 }
4768
4769 /* Mark those regs which are needed at the end of the function as live
4770    at the end of the last basic block.  */
4771
4772 static void
4773 mark_regs_live_at_end (set)
4774      regset set;
4775 {
4776   unsigned int i;
4777
4778   /* If exiting needs the right stack value, consider the stack pointer
4779      live at the end of the function.  */
4780   if ((HAVE_epilogue && reload_completed)
4781       || ! EXIT_IGNORE_STACK
4782       || (! FRAME_POINTER_REQUIRED
4783           && ! current_function_calls_alloca
4784           && flag_omit_frame_pointer)
4785       || current_function_sp_is_unchanging)
4786     {
4787       SET_REGNO_REG_SET (set, STACK_POINTER_REGNUM);
4788     }
4789
4790   /* Mark the frame pointer if needed at the end of the function.  If
4791      we end up eliminating it, it will be removed from the live list
4792      of each basic block by reload.  */
4793
4794   if (! reload_completed || frame_pointer_needed)
4795     {
4796       SET_REGNO_REG_SET (set, FRAME_POINTER_REGNUM);
4797 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
4798       /* If they are different, also mark the hard frame pointer as live.  */
4799       if (! LOCAL_REGNO (HARD_FRAME_POINTER_REGNUM))
4800         SET_REGNO_REG_SET (set, HARD_FRAME_POINTER_REGNUM);
4801 #endif
4802     }
4803
4804 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
4805   /* Many architectures have a GP register even without flag_pic.
4806      Assume the pic register is not in use, or will be handled by
4807      other means, if it is not fixed.  */
4808   if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
4809       && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
4810     SET_REGNO_REG_SET (set, PIC_OFFSET_TABLE_REGNUM);
4811 #endif
4812
4813   /* Mark all global registers, and all registers used by the epilogue
4814      as being live at the end of the function since they may be
4815      referenced by our caller.  */
4816   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4817     if (global_regs[i] || EPILOGUE_USES (i))
4818       SET_REGNO_REG_SET (set, i);
4819
4820   if (HAVE_epilogue && reload_completed)
4821     {
4822       /* Mark all call-saved registers that we actually used.  */
4823       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4824         if (regs_ever_live[i] && ! LOCAL_REGNO (i)
4825             && ! TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
4826           SET_REGNO_REG_SET (set, i);
4827     }
4828
4829 #ifdef EH_RETURN_DATA_REGNO
4830   /* Mark the registers that will contain data for the handler.  */
4831   if (reload_completed && current_function_calls_eh_return)
4832     for (i = 0; ; ++i)
4833       {
4834         unsigned regno = EH_RETURN_DATA_REGNO(i);
4835         if (regno == INVALID_REGNUM)
4836           break;
4837         SET_REGNO_REG_SET (set, regno);
4838       }
4839 #endif
4840 #ifdef EH_RETURN_STACKADJ_RTX
4841   if ((! HAVE_epilogue || ! reload_completed)
4842       && current_function_calls_eh_return)
4843     {
4844       rtx tmp = EH_RETURN_STACKADJ_RTX;
4845       if (tmp && REG_P (tmp))
4846         mark_reg (tmp, set);
4847     }
4848 #endif
4849 #ifdef EH_RETURN_HANDLER_RTX
4850   if ((! HAVE_epilogue || ! reload_completed)
4851       && current_function_calls_eh_return)
4852     {
4853       rtx tmp = EH_RETURN_HANDLER_RTX;
4854       if (tmp && REG_P (tmp))
4855         mark_reg (tmp, set);
4856     }
4857 #endif
4858
4859   /* Mark function return value.  */
4860   diddle_return_value (mark_reg, set);
4861 }
4862
4863 /* Callback function for for_each_successor_phi.  DATA is a regset.
4864    Sets the SRC_REGNO, the regno of the phi alternative for phi node
4865    INSN, in the regset.  */
4866
4867 static int
4868 set_phi_alternative_reg (insn, dest_regno, src_regno, data)
4869      rtx insn ATTRIBUTE_UNUSED;
4870      int dest_regno ATTRIBUTE_UNUSED;
4871      int src_regno;
4872      void *data;
4873 {
4874   regset live = (regset) data;
4875   SET_REGNO_REG_SET (live, src_regno);
4876   return 0;
4877 }
4878
4879 /* Propagate global life info around the graph of basic blocks.  Begin
4880    considering blocks with their corresponding bit set in BLOCKS_IN.
4881    If BLOCKS_IN is null, consider it the universal set.
4882
4883    BLOCKS_OUT is set for every block that was changed.  */
4884
4885 static void
4886 calculate_global_regs_live (blocks_in, blocks_out, flags)
4887      sbitmap blocks_in, blocks_out;
4888      int flags;
4889 {
4890   basic_block *queue, *qhead, *qtail, *qend;
4891   regset tmp, new_live_at_end, call_used;
4892   regset_head tmp_head, call_used_head;
4893   regset_head new_live_at_end_head;
4894   int i;
4895
4896   tmp = INITIALIZE_REG_SET (tmp_head);
4897   new_live_at_end = INITIALIZE_REG_SET (new_live_at_end_head);
4898   call_used = INITIALIZE_REG_SET (call_used_head);
4899
4900   /* Inconveniently, this is only redily available in hard reg set form.  */
4901   for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
4902     if (call_used_regs[i])
4903       SET_REGNO_REG_SET (call_used, i);
4904
4905   /* Create a worklist.  Allocate an extra slot for ENTRY_BLOCK, and one
4906      because the `head == tail' style test for an empty queue doesn't
4907      work with a full queue.  */
4908   queue = (basic_block *) xmalloc ((n_basic_blocks + 2) * sizeof (*queue));
4909   qtail = queue;
4910   qhead = qend = queue + n_basic_blocks + 2;
4911
4912   /* Queue the blocks set in the initial mask.  Do this in reverse block
4913      number order so that we are more likely for the first round to do
4914      useful work.  We use AUX non-null to flag that the block is queued.  */
4915   if (blocks_in)
4916     {
4917       /* Clear out the garbage that might be hanging out in bb->aux.  */
4918       for (i = n_basic_blocks - 1; i >= 0; --i)
4919         BASIC_BLOCK (i)->aux = NULL;
4920
4921       EXECUTE_IF_SET_IN_SBITMAP (blocks_in, 0, i,
4922         {
4923           basic_block bb = BASIC_BLOCK (i);
4924           *--qhead = bb;
4925           bb->aux = bb;
4926         });
4927     }
4928   else
4929     {
4930       for (i = 0; i < n_basic_blocks; ++i)
4931         {
4932           basic_block bb = BASIC_BLOCK (i);
4933           *--qhead = bb;
4934           bb->aux = bb;
4935         }
4936     }
4937
4938   if (blocks_out)
4939     sbitmap_zero (blocks_out);
4940
4941   /* We work through the queue until there are no more blocks.  What
4942      is live at the end of this block is precisely the union of what
4943      is live at the beginning of all its successors.  So, we set its
4944      GLOBAL_LIVE_AT_END field based on the GLOBAL_LIVE_AT_START field
4945      for its successors.  Then, we compute GLOBAL_LIVE_AT_START for
4946      this block by walking through the instructions in this block in
4947      reverse order and updating as we go.  If that changed
4948      GLOBAL_LIVE_AT_START, we add the predecessors of the block to the
4949      queue; they will now need to recalculate GLOBAL_LIVE_AT_END.
4950
4951      We are guaranteed to terminate, because GLOBAL_LIVE_AT_START
4952      never shrinks.  If a register appears in GLOBAL_LIVE_AT_START, it
4953      must either be live at the end of the block, or used within the
4954      block.  In the latter case, it will certainly never disappear
4955      from GLOBAL_LIVE_AT_START.  In the former case, the register
4956      could go away only if it disappeared from GLOBAL_LIVE_AT_START
4957      for one of the successor blocks.  By induction, that cannot
4958      occur.  */
4959   while (qhead != qtail)
4960     {
4961       int rescan, changed;
4962       basic_block bb;
4963       edge e;
4964
4965       bb = *qhead++;
4966       if (qhead == qend)
4967         qhead = queue;
4968       bb->aux = NULL;
4969
4970       /* Begin by propagating live_at_start from the successor blocks.  */
4971       CLEAR_REG_SET (new_live_at_end);
4972       for (e = bb->succ; e; e = e->succ_next)
4973         {
4974           basic_block sb = e->dest;
4975
4976           /* Call-clobbered registers die across exception and call edges.  */
4977           /* ??? Abnormal call edges ignored for the moment, as this gets
4978              confused by sibling call edges, which crashes reg-stack.  */
4979           if (e->flags & EDGE_EH)
4980             {
4981               bitmap_operation (tmp, sb->global_live_at_start,
4982                                 call_used, BITMAP_AND_COMPL);
4983               IOR_REG_SET (new_live_at_end, tmp);
4984             }
4985           else
4986             IOR_REG_SET (new_live_at_end, sb->global_live_at_start);
4987         }
4988
4989       /* The all-important stack pointer must always be live.  */
4990       SET_REGNO_REG_SET (new_live_at_end, STACK_POINTER_REGNUM);
4991
4992       /* Before reload, there are a few registers that must be forced
4993          live everywhere -- which might not already be the case for
4994          blocks within infinite loops.  */
4995       if (! reload_completed)
4996         {
4997           /* Any reference to any pseudo before reload is a potential
4998              reference of the frame pointer.  */
4999           SET_REGNO_REG_SET (new_live_at_end, FRAME_POINTER_REGNUM);
5000
5001 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
5002           /* Pseudos with argument area equivalences may require
5003              reloading via the argument pointer.  */
5004           if (fixed_regs[ARG_POINTER_REGNUM])
5005             SET_REGNO_REG_SET (new_live_at_end, ARG_POINTER_REGNUM);
5006 #endif
5007
5008           /* Any constant, or pseudo with constant equivalences, may
5009              require reloading from memory using the pic register.  */
5010           if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
5011               && fixed_regs[PIC_OFFSET_TABLE_REGNUM])
5012             SET_REGNO_REG_SET (new_live_at_end, PIC_OFFSET_TABLE_REGNUM);
5013         }
5014
5015       /* Regs used in phi nodes are not included in
5016          global_live_at_start, since they are live only along a
5017          particular edge.  Set those regs that are live because of a
5018          phi node alternative corresponding to this particular block.  */
5019       if (in_ssa_form)
5020         for_each_successor_phi (bb, &set_phi_alternative_reg,
5021                                 new_live_at_end);
5022
5023       if (bb == ENTRY_BLOCK_PTR)
5024         {
5025           COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
5026           continue;
5027         }
5028
5029       /* On our first pass through this block, we'll go ahead and continue.
5030          Recognize first pass by local_set NULL.  On subsequent passes, we
5031          get to skip out early if live_at_end wouldn't have changed.  */
5032
5033       if (bb->local_set == NULL)
5034         {
5035           bb->local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5036           bb->cond_local_set = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5037           rescan = 1;
5038         }
5039       else
5040         {
5041           /* If any bits were removed from live_at_end, we'll have to
5042              rescan the block.  This wouldn't be necessary if we had
5043              precalculated local_live, however with PROP_SCAN_DEAD_CODE
5044              local_live is really dependent on live_at_end.  */
5045           CLEAR_REG_SET (tmp);
5046           rescan = bitmap_operation (tmp, bb->global_live_at_end,
5047                                      new_live_at_end, BITMAP_AND_COMPL);
5048
5049           if (! rescan)
5050             {
5051               /* If any of the registers in the new live_at_end set are
5052                  conditionally set in this basic block, we must rescan.
5053                  This is because conditional lifetimes at the end of the
5054                  block do not just take the live_at_end set into account,
5055                  but also the liveness at the start of each successor
5056                  block.  We can miss changes in those sets if we only
5057                  compare the new live_at_end against the previous one.  */
5058               CLEAR_REG_SET (tmp);
5059               rescan = bitmap_operation (tmp, new_live_at_end,
5060                                          bb->cond_local_set, BITMAP_AND);
5061             }
5062
5063           if (! rescan)
5064             {
5065               /* Find the set of changed bits.  Take this opportunity
5066                  to notice that this set is empty and early out.  */
5067               CLEAR_REG_SET (tmp);
5068               changed = bitmap_operation (tmp, bb->global_live_at_end,
5069                                           new_live_at_end, BITMAP_XOR);
5070               if (! changed)
5071                 continue;
5072
5073               /* If any of the changed bits overlap with local_set,
5074                  we'll have to rescan the block.  Detect overlap by
5075                  the AND with ~local_set turning off bits.  */
5076               rescan = bitmap_operation (tmp, tmp, bb->local_set,
5077                                          BITMAP_AND_COMPL);
5078             }
5079         }
5080
5081       /* Let our caller know that BB changed enough to require its
5082          death notes updated.  */
5083       if (blocks_out)
5084         SET_BIT (blocks_out, bb->index);
5085
5086       if (! rescan)
5087         {
5088           /* Add to live_at_start the set of all registers in
5089              new_live_at_end that aren't in the old live_at_end.  */
5090
5091           bitmap_operation (tmp, new_live_at_end, bb->global_live_at_end,
5092                             BITMAP_AND_COMPL);
5093           COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
5094
5095           changed = bitmap_operation (bb->global_live_at_start,
5096                                       bb->global_live_at_start,
5097                                       tmp, BITMAP_IOR);
5098           if (! changed)
5099             continue;
5100         }
5101       else
5102         {
5103           COPY_REG_SET (bb->global_live_at_end, new_live_at_end);
5104
5105           /* Rescan the block insn by insn to turn (a copy of) live_at_end
5106              into live_at_start.  */
5107           propagate_block (bb, new_live_at_end, bb->local_set,
5108                            bb->cond_local_set, flags);
5109
5110           /* If live_at start didn't change, no need to go farther.  */
5111           if (REG_SET_EQUAL_P (bb->global_live_at_start, new_live_at_end))
5112             continue;
5113
5114           COPY_REG_SET (bb->global_live_at_start, new_live_at_end);
5115         }
5116
5117       /* Queue all predecessors of BB so that we may re-examine
5118          their live_at_end.  */
5119       for (e = bb->pred; e; e = e->pred_next)
5120         {
5121           basic_block pb = e->src;
5122           if (pb->aux == NULL)
5123             {
5124               *qtail++ = pb;
5125               if (qtail == qend)
5126                 qtail = queue;
5127               pb->aux = pb;
5128             }
5129         }
5130     }
5131
5132   FREE_REG_SET (tmp);
5133   FREE_REG_SET (new_live_at_end);
5134   FREE_REG_SET (call_used);
5135
5136   if (blocks_out)
5137     {
5138       EXECUTE_IF_SET_IN_SBITMAP (blocks_out, 0, i,
5139         {
5140           basic_block bb = BASIC_BLOCK (i);
5141           FREE_REG_SET (bb->local_set);
5142           FREE_REG_SET (bb->cond_local_set);
5143         });
5144     }
5145   else
5146     {
5147       for (i = n_basic_blocks - 1; i >= 0; --i)
5148         {
5149           basic_block bb = BASIC_BLOCK (i);
5150           FREE_REG_SET (bb->local_set);
5151           FREE_REG_SET (bb->cond_local_set);
5152         }
5153     }
5154
5155   free (queue);
5156 }
5157 \f
5158 /* Subroutines of life analysis.  */
5159
5160 /* Allocate the permanent data structures that represent the results
5161    of life analysis.  Not static since used also for stupid life analysis.  */
5162
5163 void
5164 allocate_bb_life_data ()
5165 {
5166   register int i;
5167
5168   for (i = 0; i < n_basic_blocks; i++)
5169     {
5170       basic_block bb = BASIC_BLOCK (i);
5171
5172       bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5173       bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5174     }
5175
5176   ENTRY_BLOCK_PTR->global_live_at_end
5177     = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5178   EXIT_BLOCK_PTR->global_live_at_start
5179     = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5180
5181   regs_live_at_setjmp = OBSTACK_ALLOC_REG_SET (&flow_obstack);
5182 }
5183
5184 void
5185 allocate_reg_life_data ()
5186 {
5187   int i;
5188
5189   max_regno = max_reg_num ();
5190
5191   /* Recalculate the register space, in case it has grown.  Old style
5192      vector oriented regsets would set regset_{size,bytes} here also.  */
5193   allocate_reg_info (max_regno, FALSE, FALSE);
5194
5195   /* Reset all the data we'll collect in propagate_block and its
5196      subroutines.  */
5197   for (i = 0; i < max_regno; i++)
5198     {
5199       REG_N_SETS (i) = 0;
5200       REG_N_REFS (i) = 0;
5201       REG_N_DEATHS (i) = 0;
5202       REG_N_CALLS_CROSSED (i) = 0;
5203       REG_LIVE_LENGTH (i) = 0;
5204       REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN;
5205     }
5206 }
5207
5208 /* Delete dead instructions for propagate_block.  */
5209
5210 static void
5211 propagate_block_delete_insn (bb, insn)
5212      basic_block bb;
5213      rtx insn;
5214 {
5215   rtx inote = find_reg_note (insn, REG_LABEL, NULL_RTX);
5216
5217   /* If the insn referred to a label, and that label was attached to
5218      an ADDR_VEC, it's safe to delete the ADDR_VEC.  In fact, it's
5219      pretty much mandatory to delete it, because the ADDR_VEC may be
5220      referencing labels that no longer exist.
5221
5222      INSN may reference a deleted label, particularly when a jump
5223      table has been optimized into a direct jump.  There's no
5224      real good way to fix up the reference to the deleted label
5225      when the label is deleted, so we just allow it here.
5226
5227      After dead code elimination is complete, we do search for
5228      any REG_LABEL notes which reference deleted labels as a
5229      sanity check.  */
5230
5231   if (inote && GET_CODE (inote) == CODE_LABEL)
5232     {
5233       rtx label = XEXP (inote, 0);
5234       rtx next;
5235
5236       /* The label may be forced if it has been put in the constant
5237          pool.  If that is the only use we must discard the table
5238          jump following it, but not the label itself.  */
5239       if (LABEL_NUSES (label) == 1 + LABEL_PRESERVE_P (label)
5240           && (next = next_nonnote_insn (label)) != NULL
5241           && GET_CODE (next) == JUMP_INSN
5242           && (GET_CODE (PATTERN (next)) == ADDR_VEC
5243               || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC))
5244         {
5245           rtx pat = PATTERN (next);
5246           int diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
5247           int len = XVECLEN (pat, diff_vec_p);
5248           int i;
5249
5250           for (i = 0; i < len; i++)
5251             LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0))--;
5252
5253           flow_delete_insn (next);
5254         }
5255     }
5256
5257   if (bb->end == insn)
5258     bb->end = PREV_INSN (insn);
5259   flow_delete_insn (insn);
5260 }
5261
5262 /* Delete dead libcalls for propagate_block.  Return the insn
5263    before the libcall.  */
5264
5265 static rtx
5266 propagate_block_delete_libcall (bb, insn, note)
5267      basic_block bb;
5268      rtx insn, note;
5269 {
5270   rtx first = XEXP (note, 0);
5271   rtx before = PREV_INSN (first);
5272
5273   if (insn == bb->end)
5274     bb->end = before;
5275
5276   flow_delete_insn_chain (first, insn);
5277   return before;
5278 }
5279
5280 /* Update the life-status of regs for one insn.  Return the previous insn.  */
5281
5282 rtx
5283 propagate_one_insn (pbi, insn)
5284      struct propagate_block_info *pbi;
5285      rtx insn;
5286 {
5287   rtx prev = PREV_INSN (insn);
5288   int flags = pbi->flags;
5289   int insn_is_dead = 0;
5290   int libcall_is_dead = 0;
5291   rtx note;
5292   int i;
5293
5294   if (! INSN_P (insn))
5295     return prev;
5296
5297   note = find_reg_note (insn, REG_RETVAL, NULL_RTX);
5298   if (flags & PROP_SCAN_DEAD_CODE)
5299     {
5300       insn_is_dead = insn_dead_p (pbi, PATTERN (insn), 0, REG_NOTES (insn));
5301       libcall_is_dead = (insn_is_dead && note != 0
5302                          && libcall_dead_p (pbi, note, insn));
5303     }
5304
5305   /* If an instruction consists of just dead store(s) on final pass,
5306      delete it.  */
5307   if ((flags & PROP_KILL_DEAD_CODE) && insn_is_dead)
5308     {
5309       /* If we're trying to delete a prologue or epilogue instruction
5310          that isn't flagged as possibly being dead, something is wrong.
5311          But if we are keeping the stack pointer depressed, we might well
5312          be deleting insns that are used to compute the amount to update
5313          it by, so they are fine.  */
5314       if (reload_completed
5315           && !(TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
5316                 && (TYPE_RETURNS_STACK_DEPRESSED
5317                     (TREE_TYPE (current_function_decl))))
5318           && (((HAVE_epilogue || HAVE_prologue)
5319                && prologue_epilogue_contains (insn))
5320               || (HAVE_sibcall_epilogue
5321                   && sibcall_epilogue_contains (insn)))
5322           && find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
5323         abort ();
5324
5325       /* Record sets.  Do this even for dead instructions, since they
5326          would have killed the values if they hadn't been deleted.  */
5327       mark_set_regs (pbi, PATTERN (insn), insn);
5328
5329       /* CC0 is now known to be dead.  Either this insn used it,
5330          in which case it doesn't anymore, or clobbered it,
5331          so the next insn can't use it.  */
5332       pbi->cc0_live = 0;
5333
5334       if (libcall_is_dead)
5335         prev = propagate_block_delete_libcall (pbi->bb, insn, note);
5336       else
5337         propagate_block_delete_insn (pbi->bb, insn);
5338
5339       return prev;
5340     }
5341
5342   /* See if this is an increment or decrement that can be merged into
5343      a following memory address.  */
5344 #ifdef AUTO_INC_DEC
5345   {
5346     register rtx x = single_set (insn);
5347
5348     /* Does this instruction increment or decrement a register?  */
5349     if ((flags & PROP_AUTOINC)
5350         && x != 0
5351         && GET_CODE (SET_DEST (x)) == REG
5352         && (GET_CODE (SET_SRC (x)) == PLUS
5353             || GET_CODE (SET_SRC (x)) == MINUS)
5354         && XEXP (SET_SRC (x), 0) == SET_DEST (x)
5355         && GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
5356         /* Ok, look for a following memory ref we can combine with.
5357            If one is found, change the memory ref to a PRE_INC
5358            or PRE_DEC, cancel this insn, and return 1.
5359            Return 0 if nothing has been done.  */
5360         && try_pre_increment_1 (pbi, insn))
5361       return prev;
5362   }
5363 #endif /* AUTO_INC_DEC */
5364
5365   CLEAR_REG_SET (pbi->new_set);
5366
5367   /* If this is not the final pass, and this insn is copying the value of
5368      a library call and it's dead, don't scan the insns that perform the
5369      library call, so that the call's arguments are not marked live.  */
5370   if (libcall_is_dead)
5371     {
5372       /* Record the death of the dest reg.  */
5373       mark_set_regs (pbi, PATTERN (insn), insn);
5374
5375       insn = XEXP (note, 0);
5376       return PREV_INSN (insn);
5377     }
5378   else if (GET_CODE (PATTERN (insn)) == SET
5379            && SET_DEST (PATTERN (insn)) == stack_pointer_rtx
5380            && GET_CODE (SET_SRC (PATTERN (insn))) == PLUS
5381            && XEXP (SET_SRC (PATTERN (insn)), 0) == stack_pointer_rtx
5382            && GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 1)) == CONST_INT)
5383     /* We have an insn to pop a constant amount off the stack.
5384        (Such insns use PLUS regardless of the direction of the stack,
5385        and any insn to adjust the stack by a constant is always a pop.)
5386        These insns, if not dead stores, have no effect on life.  */
5387     ;
5388   else
5389     {
5390       /* Any regs live at the time of a call instruction must not go
5391          in a register clobbered by calls.  Find all regs now live and
5392          record this for them.  */
5393
5394       if (GET_CODE (insn) == CALL_INSN && (flags & PROP_REG_INFO))
5395         EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
5396                                    { REG_N_CALLS_CROSSED (i)++; });
5397
5398       /* Record sets.  Do this even for dead instructions, since they
5399          would have killed the values if they hadn't been deleted.  */
5400       mark_set_regs (pbi, PATTERN (insn), insn);
5401
5402       if (GET_CODE (insn) == CALL_INSN)
5403         {
5404           register int i;
5405           rtx note, cond;
5406
5407           cond = NULL_RTX;
5408           if (GET_CODE (PATTERN (insn)) == COND_EXEC)
5409             cond = COND_EXEC_TEST (PATTERN (insn));
5410
5411           /* Non-constant calls clobber memory.  */
5412           if (! CONST_OR_PURE_CALL_P (insn))
5413             {
5414               free_EXPR_LIST_list (&pbi->mem_set_list);
5415               pbi->mem_set_list_len = 0;
5416             }
5417
5418           /* There may be extra registers to be clobbered.  */
5419           for (note = CALL_INSN_FUNCTION_USAGE (insn);
5420                note;
5421                note = XEXP (note, 1))
5422             if (GET_CODE (XEXP (note, 0)) == CLOBBER)
5423               mark_set_1 (pbi, CLOBBER, XEXP (XEXP (note, 0), 0),
5424                           cond, insn, pbi->flags);
5425
5426           /* Calls change all call-used and global registers.  */
5427           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
5428             if (TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
5429               {
5430                 /* We do not want REG_UNUSED notes for these registers.  */
5431                 mark_set_1 (pbi, CLOBBER, gen_rtx_REG (reg_raw_mode[i], i),
5432                             cond, insn,
5433                             pbi->flags & ~(PROP_DEATH_NOTES | PROP_REG_INFO));
5434               }
5435         }
5436
5437       /* If an insn doesn't use CC0, it becomes dead since we assume
5438          that every insn clobbers it.  So show it dead here;
5439          mark_used_regs will set it live if it is referenced.  */
5440       pbi->cc0_live = 0;
5441
5442       /* Record uses.  */
5443       if (! insn_is_dead)
5444         mark_used_regs (pbi, PATTERN (insn), NULL_RTX, insn);
5445
5446       /* Sometimes we may have inserted something before INSN (such as a move)
5447          when we make an auto-inc.  So ensure we will scan those insns.  */
5448 #ifdef AUTO_INC_DEC
5449       prev = PREV_INSN (insn);
5450 #endif
5451
5452       if (! insn_is_dead && GET_CODE (insn) == CALL_INSN)
5453         {
5454           register int i;
5455           rtx note, cond;
5456
5457           cond = NULL_RTX;
5458           if (GET_CODE (PATTERN (insn)) == COND_EXEC)
5459             cond = COND_EXEC_TEST (PATTERN (insn));
5460
5461           /* Calls use their arguments.  */
5462           for (note = CALL_INSN_FUNCTION_USAGE (insn);
5463                note;
5464                note = XEXP (note, 1))
5465             if (GET_CODE (XEXP (note, 0)) == USE)
5466               mark_used_regs (pbi, XEXP (XEXP (note, 0), 0),
5467                               cond, insn);
5468
5469           /* The stack ptr is used (honorarily) by a CALL insn.  */
5470           SET_REGNO_REG_SET (pbi->reg_live, STACK_POINTER_REGNUM);
5471
5472           /* Calls may also reference any of the global registers,
5473              so they are made live.  */
5474           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
5475             if (global_regs[i])
5476               mark_used_reg (pbi, gen_rtx_REG (reg_raw_mode[i], i),
5477                              cond, insn);
5478         }
5479     }
5480
5481   /* On final pass, update counts of how many insns in which each reg
5482      is live.  */
5483   if (flags & PROP_REG_INFO)
5484     EXECUTE_IF_SET_IN_REG_SET (pbi->reg_live, 0, i,
5485                                { REG_LIVE_LENGTH (i)++; });
5486
5487   return prev;
5488 }
5489
5490 /* Initialize a propagate_block_info struct for public consumption.
5491    Note that the structure itself is opaque to this file, but that
5492    the user can use the regsets provided here.  */
5493
5494 struct propagate_block_info *
5495 init_propagate_block_info (bb, live, local_set, cond_local_set, flags)
5496      basic_block bb;
5497      regset live, local_set, cond_local_set;
5498      int flags;
5499 {
5500   struct propagate_block_info *pbi = xmalloc (sizeof (*pbi));
5501
5502   pbi->bb = bb;
5503   pbi->reg_live = live;
5504   pbi->mem_set_list = NULL_RTX;
5505   pbi->mem_set_list_len = 0;
5506   pbi->local_set = local_set;
5507   pbi->cond_local_set = cond_local_set;
5508   pbi->cc0_live = 0;
5509   pbi->flags = flags;
5510
5511   if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
5512     pbi->reg_next_use = (rtx *) xcalloc (max_reg_num (), sizeof (rtx));
5513   else
5514     pbi->reg_next_use = NULL;
5515
5516   pbi->new_set = BITMAP_XMALLOC ();
5517
5518 #ifdef HAVE_conditional_execution
5519   pbi->reg_cond_dead = splay_tree_new (splay_tree_compare_ints, NULL,
5520                                        free_reg_cond_life_info);
5521   pbi->reg_cond_reg = BITMAP_XMALLOC ();
5522
5523   /* If this block ends in a conditional branch, for each register live
5524      from one side of the branch and not the other, record the register
5525      as conditionally dead.  */
5526   if (GET_CODE (bb->end) == JUMP_INSN
5527       && any_condjump_p (bb->end))
5528     {
5529       regset_head diff_head;
5530       regset diff = INITIALIZE_REG_SET (diff_head);
5531       basic_block bb_true, bb_false;
5532       rtx cond_true, cond_false, set_src;
5533       int i;
5534
5535       /* Identify the successor blocks.  */
5536       bb_true = bb->succ->dest;
5537       if (bb->succ->succ_next != NULL)
5538         {
5539           bb_false = bb->succ->succ_next->dest;
5540
5541           if (bb->succ->flags & EDGE_FALLTHRU)
5542             {
5543               basic_block t = bb_false;
5544               bb_false = bb_true;
5545               bb_true = t;
5546             }
5547           else if (! (bb->succ->succ_next->flags & EDGE_FALLTHRU))
5548             abort ();
5549         }
5550       else
5551         {
5552           /* This can happen with a conditional jump to the next insn.  */
5553           if (JUMP_LABEL (bb->end) != bb_true->head)
5554             abort ();
5555
5556           /* Simplest way to do nothing.  */
5557           bb_false = bb_true;
5558         }
5559
5560       /* Extract the condition from the branch.  */
5561       set_src = SET_SRC (pc_set (bb->end));
5562       cond_true = XEXP (set_src, 0);
5563       cond_false = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond_true)),
5564                                    GET_MODE (cond_true), XEXP (cond_true, 0),
5565                                    XEXP (cond_true, 1));
5566       if (GET_CODE (XEXP (set_src, 1)) == PC)
5567         {
5568           rtx t = cond_false;
5569           cond_false = cond_true;
5570           cond_true = t;
5571         }
5572
5573       /* Compute which register lead different lives in the successors.  */
5574       if (bitmap_operation (diff, bb_true->global_live_at_start,
5575                             bb_false->global_live_at_start, BITMAP_XOR))
5576         {
5577           rtx reg = XEXP (cond_true, 0);
5578
5579           if (GET_CODE (reg) == SUBREG)
5580             reg = SUBREG_REG (reg);
5581
5582           if (GET_CODE (reg) != REG)
5583             abort ();
5584
5585           SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (reg));
5586
5587           /* For each such register, mark it conditionally dead.  */
5588           EXECUTE_IF_SET_IN_REG_SET
5589             (diff, 0, i,
5590              {
5591                struct reg_cond_life_info *rcli;
5592                rtx cond;
5593
5594                rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
5595
5596                if (REGNO_REG_SET_P (bb_true->global_live_at_start, i))
5597                  cond = cond_false;
5598                else
5599                  cond = cond_true;
5600                rcli->condition = cond;
5601                rcli->stores = const0_rtx;
5602                rcli->orig_condition = cond;
5603
5604                splay_tree_insert (pbi->reg_cond_dead, i,
5605                                   (splay_tree_value) rcli);
5606              });
5607         }
5608
5609       FREE_REG_SET (diff);
5610     }
5611 #endif
5612
5613   /* If this block has no successors, any stores to the frame that aren't
5614      used later in the block are dead.  So make a pass over the block
5615      recording any such that are made and show them dead at the end.  We do
5616      a very conservative and simple job here.  */
5617   if (optimize
5618       && ! (TREE_CODE (TREE_TYPE (current_function_decl)) == FUNCTION_TYPE
5619             && (TYPE_RETURNS_STACK_DEPRESSED
5620                 (TREE_TYPE (current_function_decl))))
5621       && (flags & PROP_SCAN_DEAD_CODE)
5622       && (bb->succ == NULL
5623           || (bb->succ->succ_next == NULL
5624               && bb->succ->dest == EXIT_BLOCK_PTR
5625               && ! current_function_calls_eh_return)))
5626     {
5627       rtx insn, set;
5628       for (insn = bb->end; insn != bb->head; insn = PREV_INSN (insn))
5629         if (GET_CODE (insn) == INSN
5630             && (set = single_set (insn))
5631             && GET_CODE (SET_DEST (set)) == MEM)
5632           {
5633             rtx mem = SET_DEST (set);
5634             rtx canon_mem = canon_rtx (mem);
5635
5636             /* This optimization is performed by faking a store to the
5637                memory at the end of the block.  This doesn't work for
5638                unchanging memories because multiple stores to unchanging
5639                memory is illegal and alias analysis doesn't consider it.  */
5640             if (RTX_UNCHANGING_P (canon_mem))
5641               continue;
5642
5643             if (XEXP (canon_mem, 0) == frame_pointer_rtx
5644                 || (GET_CODE (XEXP (canon_mem, 0)) == PLUS
5645                     && XEXP (XEXP (canon_mem, 0), 0) == frame_pointer_rtx
5646                     && GET_CODE (XEXP (XEXP (canon_mem, 0), 1)) == CONST_INT))
5647               add_to_mem_set_list (pbi, canon_mem);
5648           }
5649     }
5650
5651   return pbi;
5652 }
5653
5654 /* Release a propagate_block_info struct.  */
5655
5656 void
5657 free_propagate_block_info (pbi)
5658      struct propagate_block_info *pbi;
5659 {
5660   free_EXPR_LIST_list (&pbi->mem_set_list);
5661
5662   BITMAP_XFREE (pbi->new_set);
5663
5664 #ifdef HAVE_conditional_execution
5665   splay_tree_delete (pbi->reg_cond_dead);
5666   BITMAP_XFREE (pbi->reg_cond_reg);
5667 #endif
5668
5669   if (pbi->reg_next_use)
5670     free (pbi->reg_next_use);
5671
5672   free (pbi);
5673 }
5674
5675 /* Compute the registers live at the beginning of a basic block BB from
5676    those live at the end.
5677
5678    When called, REG_LIVE contains those live at the end.  On return, it
5679    contains those live at the beginning.
5680
5681    LOCAL_SET, if non-null, will be set with all registers killed
5682    unconditionally by this basic block.
5683    Likewise, COND_LOCAL_SET, if non-null, will be set with all registers
5684    killed conditionally by this basic block.  If there is any unconditional
5685    set of a register, then the corresponding bit will be set in LOCAL_SET
5686    and cleared in COND_LOCAL_SET.
5687    It is valid for LOCAL_SET and COND_LOCAL_SET to be the same set.  In this
5688    case, the resulting set will be equal to the union of the two sets that
5689    would otherwise be computed.
5690
5691    Return non-zero if an INSN is deleted (i.e. by dead code removal).  */
5692
5693 int
5694 propagate_block (bb, live, local_set, cond_local_set, flags)
5695      basic_block bb;
5696      regset live;
5697      regset local_set;
5698      regset cond_local_set;
5699      int flags;
5700 {
5701   struct propagate_block_info *pbi;
5702   rtx insn, prev;
5703   int changed;
5704
5705   pbi = init_propagate_block_info (bb, live, local_set, cond_local_set, flags);
5706
5707   if (flags & PROP_REG_INFO)
5708     {
5709       register int i;
5710
5711       /* Process the regs live at the end of the block.
5712          Mark them as not local to any one basic block.  */
5713       EXECUTE_IF_SET_IN_REG_SET (live, 0, i,
5714                                  { REG_BASIC_BLOCK (i) = REG_BLOCK_GLOBAL; });
5715     }
5716
5717   /* Scan the block an insn at a time from end to beginning.  */
5718
5719   changed = 0;
5720   for (insn = bb->end;; insn = prev)
5721     {
5722       /* If this is a call to `setjmp' et al, warn if any
5723          non-volatile datum is live.  */
5724       if ((flags & PROP_REG_INFO)
5725           && GET_CODE (insn) == CALL_INSN
5726           && find_reg_note (insn, REG_SETJMP, NULL))
5727         IOR_REG_SET (regs_live_at_setjmp, pbi->reg_live);
5728
5729       prev = propagate_one_insn (pbi, insn);
5730       changed |= NEXT_INSN (prev) != insn;
5731
5732       if (insn == bb->head)
5733         break;
5734     }
5735
5736   free_propagate_block_info (pbi);
5737
5738   return changed;
5739 }
5740 \f
5741 /* Return 1 if X (the body of an insn, or part of it) is just dead stores
5742    (SET expressions whose destinations are registers dead after the insn).
5743    NEEDED is the regset that says which regs are alive after the insn.
5744
5745    Unless CALL_OK is non-zero, an insn is needed if it contains a CALL.
5746
5747    If X is the entire body of an insn, NOTES contains the reg notes
5748    pertaining to the insn.  */
5749
5750 static int
5751 insn_dead_p (pbi, x, call_ok, notes)
5752      struct propagate_block_info *pbi;
5753      rtx x;
5754      int call_ok;
5755      rtx notes ATTRIBUTE_UNUSED;
5756 {
5757   enum rtx_code code = GET_CODE (x);
5758
5759 #ifdef AUTO_INC_DEC
5760   /* If flow is invoked after reload, we must take existing AUTO_INC
5761      expresions into account.  */
5762   if (reload_completed)
5763     {
5764       for (; notes; notes = XEXP (notes, 1))
5765         {
5766           if (REG_NOTE_KIND (notes) == REG_INC)
5767             {
5768               int regno = REGNO (XEXP (notes, 0));
5769
5770               /* Don't delete insns to set global regs.  */
5771               if ((regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
5772                   || REGNO_REG_SET_P (pbi->reg_live, regno))
5773                 return 0;
5774             }
5775         }
5776     }
5777 #endif
5778
5779   /* If setting something that's a reg or part of one,
5780      see if that register's altered value will be live.  */
5781
5782   if (code == SET)
5783     {
5784       rtx r = SET_DEST (x);
5785
5786 #ifdef HAVE_cc0
5787       if (GET_CODE (r) == CC0)
5788         return ! pbi->cc0_live;
5789 #endif
5790
5791       /* A SET that is a subroutine call cannot be dead.  */
5792       if (GET_CODE (SET_SRC (x)) == CALL)
5793         {
5794           if (! call_ok)
5795             return 0;
5796         }
5797
5798       /* Don't eliminate loads from volatile memory or volatile asms.  */
5799       else if (volatile_refs_p (SET_SRC (x)))
5800         return 0;
5801
5802       if (GET_CODE (r) == MEM)
5803         {
5804           rtx temp, canon_r;
5805
5806           if (MEM_VOLATILE_P (r) || GET_MODE (r) == BLKmode)
5807             return 0;
5808
5809           canon_r = canon_rtx (r);
5810
5811           /* Walk the set of memory locations we are currently tracking
5812              and see if one is an identical match to this memory location.
5813              If so, this memory write is dead (remember, we're walking
5814              backwards from the end of the block to the start).  Since
5815              rtx_equal_p does not check the alias set or flags, we also
5816              must have the potential for them to conflict (anti_dependence).  */
5817           for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1))
5818             if (anti_dependence (r, XEXP (temp, 0)))
5819               {
5820                 rtx mem = XEXP (temp, 0);
5821
5822                 if (rtx_equal_p (XEXP (canon_r, 0), XEXP (mem, 0))
5823                     && (GET_MODE_SIZE (GET_MODE (canon_r))
5824                         <= GET_MODE_SIZE (GET_MODE (mem))))
5825                   return 1;
5826
5827 #ifdef AUTO_INC_DEC
5828                 /* Check if memory reference matches an auto increment. Only
5829                    post increment/decrement or modify are valid.  */
5830                 if (GET_MODE (mem) == GET_MODE (r)
5831                     && (GET_CODE (XEXP (mem, 0)) == POST_DEC
5832                         || GET_CODE (XEXP (mem, 0)) == POST_INC
5833                         || GET_CODE (XEXP (mem, 0)) == POST_MODIFY)
5834                     && GET_MODE (XEXP (mem, 0)) == GET_MODE (r)
5835                     && rtx_equal_p (XEXP (XEXP (mem, 0), 0), XEXP (r, 0)))
5836                   return 1;
5837 #endif
5838               }
5839         }
5840       else
5841         {
5842           while (GET_CODE (r) == SUBREG
5843                  || GET_CODE (r) == STRICT_LOW_PART
5844                  || GET_CODE (r) == ZERO_EXTRACT)
5845             r = XEXP (r, 0);
5846
5847           if (GET_CODE (r) == REG)
5848             {
5849               int regno = REGNO (r);
5850
5851               /* Obvious.  */
5852               if (REGNO_REG_SET_P (pbi->reg_live, regno))
5853                 return 0;
5854
5855               /* If this is a hard register, verify that subsequent
5856                  words are not needed.  */
5857               if (regno < FIRST_PSEUDO_REGISTER)
5858                 {
5859                   int n = HARD_REGNO_NREGS (regno, GET_MODE (r));
5860
5861                   while (--n > 0)
5862                     if (REGNO_REG_SET_P (pbi->reg_live, regno+n))
5863                       return 0;
5864                 }
5865
5866               /* Don't delete insns to set global regs.  */
5867               if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
5868                 return 0;
5869
5870               /* Make sure insns to set the stack pointer aren't deleted.  */
5871               if (regno == STACK_POINTER_REGNUM)
5872                 return 0;
5873
5874               /* ??? These bits might be redundant with the force live bits
5875                  in calculate_global_regs_live.  We would delete from
5876                  sequential sets; whether this actually affects real code
5877                  for anything but the stack pointer I don't know.  */
5878               /* Make sure insns to set the frame pointer aren't deleted.  */
5879               if (regno == FRAME_POINTER_REGNUM
5880                   && (! reload_completed || frame_pointer_needed))
5881                 return 0;
5882 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
5883               if (regno == HARD_FRAME_POINTER_REGNUM
5884                   && (! reload_completed || frame_pointer_needed))
5885                 return 0;
5886 #endif
5887
5888 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
5889               /* Make sure insns to set arg pointer are never deleted
5890                  (if the arg pointer isn't fixed, there will be a USE
5891                  for it, so we can treat it normally).  */
5892               if (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
5893                 return 0;
5894 #endif
5895
5896               /* Otherwise, the set is dead.  */
5897               return 1;
5898             }
5899         }
5900     }
5901
5902   /* If performing several activities, insn is dead if each activity
5903      is individually dead.  Also, CLOBBERs and USEs can be ignored; a
5904      CLOBBER or USE that's inside a PARALLEL doesn't make the insn
5905      worth keeping.  */
5906   else if (code == PARALLEL)
5907     {
5908       int i = XVECLEN (x, 0);
5909
5910       for (i--; i >= 0; i--)
5911         if (GET_CODE (XVECEXP (x, 0, i)) != CLOBBER
5912             && GET_CODE (XVECEXP (x, 0, i)) != USE
5913             && ! insn_dead_p (pbi, XVECEXP (x, 0, i), call_ok, NULL_RTX))
5914           return 0;
5915
5916       return 1;
5917     }
5918
5919   /* A CLOBBER of a pseudo-register that is dead serves no purpose.  That
5920      is not necessarily true for hard registers.  */
5921   else if (code == CLOBBER && GET_CODE (XEXP (x, 0)) == REG
5922            && REGNO (XEXP (x, 0)) >= FIRST_PSEUDO_REGISTER
5923            && ! REGNO_REG_SET_P (pbi->reg_live, REGNO (XEXP (x, 0))))
5924     return 1;
5925
5926   /* We do not check other CLOBBER or USE here.  An insn consisting of just
5927      a CLOBBER or just a USE should not be deleted.  */
5928   return 0;
5929 }
5930
5931 /* If INSN is the last insn in a libcall, and assuming INSN is dead,
5932    return 1 if the entire library call is dead.
5933    This is true if INSN copies a register (hard or pseudo)
5934    and if the hard return reg of the call insn is dead.
5935    (The caller should have tested the destination of the SET inside
5936    INSN already for death.)
5937
5938    If this insn doesn't just copy a register, then we don't
5939    have an ordinary libcall.  In that case, cse could not have
5940    managed to substitute the source for the dest later on,
5941    so we can assume the libcall is dead.
5942
5943    PBI is the block info giving pseudoregs live before this insn.
5944    NOTE is the REG_RETVAL note of the insn.  */
5945
5946 static int
5947 libcall_dead_p (pbi, note, insn)
5948      struct propagate_block_info *pbi;
5949      rtx note;
5950      rtx insn;
5951 {
5952   rtx x = single_set (insn);
5953
5954   if (x)
5955     {
5956       register rtx r = SET_SRC (x);
5957
5958       if (GET_CODE (r) == REG)
5959         {
5960           rtx call = XEXP (note, 0);
5961           rtx call_pat;
5962           register int i;
5963
5964           /* Find the call insn.  */
5965           while (call != insn && GET_CODE (call) != CALL_INSN)
5966             call = NEXT_INSN (call);
5967
5968           /* If there is none, do nothing special,
5969              since ordinary death handling can understand these insns.  */
5970           if (call == insn)
5971             return 0;
5972
5973           /* See if the hard reg holding the value is dead.
5974              If this is a PARALLEL, find the call within it.  */
5975           call_pat = PATTERN (call);
5976           if (GET_CODE (call_pat) == PARALLEL)
5977             {
5978               for (i = XVECLEN (call_pat, 0) - 1; i >= 0; i--)
5979                 if (GET_CODE (XVECEXP (call_pat, 0, i)) == SET
5980                     && GET_CODE (SET_SRC (XVECEXP (call_pat, 0, i))) == CALL)
5981                   break;
5982
5983               /* This may be a library call that is returning a value
5984                  via invisible pointer.  Do nothing special, since
5985                  ordinary death handling can understand these insns.  */
5986               if (i < 0)
5987                 return 0;
5988
5989               call_pat = XVECEXP (call_pat, 0, i);
5990             }
5991
5992           return insn_dead_p (pbi, call_pat, 1, REG_NOTES (call));
5993         }
5994     }
5995   return 1;
5996 }
5997
5998 /* Return 1 if register REGNO was used before it was set, i.e. if it is
5999    live at function entry.  Don't count global register variables, variables
6000    in registers that can be used for function arg passing, or variables in
6001    fixed hard registers.  */
6002
6003 int
6004 regno_uninitialized (regno)
6005      int regno;
6006 {
6007   if (n_basic_blocks == 0
6008       || (regno < FIRST_PSEUDO_REGISTER
6009           && (global_regs[regno]
6010               || fixed_regs[regno]
6011               || FUNCTION_ARG_REGNO_P (regno))))
6012     return 0;
6013
6014   return REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno);
6015 }
6016
6017 /* 1 if register REGNO was alive at a place where `setjmp' was called
6018    and was set more than once or is an argument.
6019    Such regs may be clobbered by `longjmp'.  */
6020
6021 int
6022 regno_clobbered_at_setjmp (regno)
6023      int regno;
6024 {
6025   if (n_basic_blocks == 0)
6026     return 0;
6027
6028   return ((REG_N_SETS (regno) > 1
6029            || REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, regno))
6030           && REGNO_REG_SET_P (regs_live_at_setjmp, regno));
6031 }
6032 \f
6033 /* Add MEM to PBI->MEM_SET_LIST.  MEM should be canonical.  Respect the
6034    maximal list size; look for overlaps in mode and select the largest.  */
6035 static void
6036 add_to_mem_set_list (pbi, mem)
6037      struct propagate_block_info *pbi;
6038      rtx mem;
6039 {
6040   rtx i;
6041
6042   /* We don't know how large a BLKmode store is, so we must not
6043      take them into consideration.  */
6044   if (GET_MODE (mem) == BLKmode)
6045     return;
6046
6047   for (i = pbi->mem_set_list; i ; i = XEXP (i, 1))
6048     {
6049       rtx e = XEXP (i, 0);
6050       if (rtx_equal_p (XEXP (mem, 0), XEXP (e, 0)))
6051         {
6052           if (GET_MODE_SIZE (GET_MODE (mem)) > GET_MODE_SIZE (GET_MODE (e)))
6053             {
6054 #ifdef AUTO_INC_DEC
6055               /* If we must store a copy of the mem, we can just modify
6056                  the mode of the stored copy.  */
6057               if (pbi->flags & PROP_AUTOINC)
6058                 PUT_MODE (e, GET_MODE (mem));
6059               else
6060 #endif
6061                 XEXP (i, 0) = mem;
6062             }
6063           return;
6064         }
6065     }
6066
6067   if (pbi->mem_set_list_len < MAX_MEM_SET_LIST_LEN)
6068     {
6069 #ifdef AUTO_INC_DEC
6070       /* Store a copy of mem, otherwise the address may be
6071          scrogged by find_auto_inc.  */
6072       if (pbi->flags & PROP_AUTOINC)
6073         mem = shallow_copy_rtx (mem);
6074 #endif
6075       pbi->mem_set_list = alloc_EXPR_LIST (0, mem, pbi->mem_set_list);
6076       pbi->mem_set_list_len++;
6077     }
6078 }
6079
6080 /* INSN references memory, possibly using autoincrement addressing modes.
6081    Find any entries on the mem_set_list that need to be invalidated due
6082    to an address change.  */
6083
6084 static void
6085 invalidate_mems_from_autoinc (pbi, insn)
6086      struct propagate_block_info *pbi;
6087      rtx insn;
6088 {
6089   rtx note = REG_NOTES (insn);
6090   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
6091     if (REG_NOTE_KIND (note) == REG_INC)
6092       invalidate_mems_from_set (pbi, XEXP (note, 0));
6093 }
6094
6095 /* EXP is a REG.  Remove any dependant entries from pbi->mem_set_list.  */
6096
6097 static void
6098 invalidate_mems_from_set (pbi, exp)
6099      struct propagate_block_info *pbi;
6100      rtx exp;
6101 {
6102   rtx temp = pbi->mem_set_list;
6103   rtx prev = NULL_RTX;
6104   rtx next;
6105
6106   while (temp)
6107     {
6108       next = XEXP (temp, 1);
6109       if (reg_overlap_mentioned_p (exp, XEXP (temp, 0)))
6110         {
6111           /* Splice this entry out of the list.  */
6112           if (prev)
6113             XEXP (prev, 1) = next;
6114           else
6115             pbi->mem_set_list = next;
6116           free_EXPR_LIST_node (temp);
6117           pbi->mem_set_list_len--;
6118         }
6119       else
6120         prev = temp;
6121       temp = next;
6122     }
6123 }
6124
6125 /* Process the registers that are set within X.  Their bits are set to
6126    1 in the regset DEAD, because they are dead prior to this insn.
6127
6128    If INSN is nonzero, it is the insn being processed.
6129
6130    FLAGS is the set of operations to perform.  */
6131
6132 static void
6133 mark_set_regs (pbi, x, insn)
6134      struct propagate_block_info *pbi;
6135      rtx x, insn;
6136 {
6137   rtx cond = NULL_RTX;
6138   rtx link;
6139   enum rtx_code code;
6140
6141   if (insn)
6142     for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
6143       {
6144         if (REG_NOTE_KIND (link) == REG_INC)
6145           mark_set_1 (pbi, SET, XEXP (link, 0),
6146                       (GET_CODE (x) == COND_EXEC
6147                        ? COND_EXEC_TEST (x) : NULL_RTX),
6148                       insn, pbi->flags);
6149       }
6150  retry:
6151   switch (code = GET_CODE (x))
6152     {
6153     case SET:
6154     case CLOBBER:
6155       mark_set_1 (pbi, code, SET_DEST (x), cond, insn, pbi->flags);
6156       return;
6157
6158     case COND_EXEC:
6159       cond = COND_EXEC_TEST (x);
6160       x = COND_EXEC_CODE (x);
6161       goto retry;
6162
6163     case PARALLEL:
6164       {
6165         register int i;
6166         for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
6167           {
6168             rtx sub = XVECEXP (x, 0, i);
6169             switch (code = GET_CODE (sub))
6170               {
6171               case COND_EXEC:
6172                 if (cond != NULL_RTX)
6173                   abort ();
6174
6175                 cond = COND_EXEC_TEST (sub);
6176                 sub = COND_EXEC_CODE (sub);
6177                 if (GET_CODE (sub) != SET && GET_CODE (sub) != CLOBBER)
6178                   break;
6179                 /* Fall through.  */
6180
6181               case SET:
6182               case CLOBBER:
6183                 mark_set_1 (pbi, code, SET_DEST (sub), cond, insn, pbi->flags);
6184                 break;
6185
6186               default:
6187                 break;
6188               }
6189           }
6190         break;
6191       }
6192
6193     default:
6194       break;
6195     }
6196 }
6197
6198 /* Process a single set, which appears in INSN.  REG (which may not
6199    actually be a REG, it may also be a SUBREG, PARALLEL, etc.) is
6200    being set using the CODE (which may be SET, CLOBBER, or COND_EXEC).
6201    If the set is conditional (because it appear in a COND_EXEC), COND
6202    will be the condition.  */
6203
6204 static void
6205 mark_set_1 (pbi, code, reg, cond, insn, flags)
6206      struct propagate_block_info *pbi;
6207      enum rtx_code code;
6208      rtx reg, cond, insn;
6209      int flags;
6210 {
6211   int regno_first = -1, regno_last = -1;
6212   unsigned long not_dead = 0;
6213   int i;
6214
6215   /* Modifying just one hardware register of a multi-reg value or just a
6216      byte field of a register does not mean the value from before this insn
6217      is now dead.  Of course, if it was dead after it's unused now.  */
6218
6219   switch (GET_CODE (reg))
6220     {
6221     case PARALLEL:
6222       /* Some targets place small structures in registers for return values of
6223          functions.  We have to detect this case specially here to get correct
6224          flow information.  */
6225       for (i = XVECLEN (reg, 0) - 1; i >= 0; i--)
6226         if (XEXP (XVECEXP (reg, 0, i), 0) != 0)
6227           mark_set_1 (pbi, code, XEXP (XVECEXP (reg, 0, i), 0), cond, insn,
6228                       flags);
6229       return;
6230
6231     case ZERO_EXTRACT:
6232     case SIGN_EXTRACT:
6233     case STRICT_LOW_PART:
6234       /* ??? Assumes STRICT_LOW_PART not used on multi-word registers.  */
6235       do
6236         reg = XEXP (reg, 0);
6237       while (GET_CODE (reg) == SUBREG
6238              || GET_CODE (reg) == ZERO_EXTRACT
6239              || GET_CODE (reg) == SIGN_EXTRACT
6240              || GET_CODE (reg) == STRICT_LOW_PART);
6241       if (GET_CODE (reg) == MEM)
6242         break;
6243       not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live, REGNO (reg));
6244       /* Fall through.  */
6245
6246     case REG:
6247       regno_last = regno_first = REGNO (reg);
6248       if (regno_first < FIRST_PSEUDO_REGISTER)
6249         regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
6250       break;
6251
6252     case SUBREG:
6253       if (GET_CODE (SUBREG_REG (reg)) == REG)
6254         {
6255           enum machine_mode outer_mode = GET_MODE (reg);
6256           enum machine_mode inner_mode = GET_MODE (SUBREG_REG (reg));
6257
6258           /* Identify the range of registers affected.  This is moderately
6259              tricky for hard registers.  See alter_subreg.  */
6260
6261           regno_last = regno_first = REGNO (SUBREG_REG (reg));
6262           if (regno_first < FIRST_PSEUDO_REGISTER)
6263             {
6264               regno_first += subreg_regno_offset (regno_first, inner_mode,
6265                                                   SUBREG_BYTE (reg),
6266                                                   outer_mode);
6267               regno_last = (regno_first
6268                             + HARD_REGNO_NREGS (regno_first, outer_mode) - 1);
6269
6270               /* Since we've just adjusted the register number ranges, make
6271                  sure REG matches.  Otherwise some_was_live will be clear
6272                  when it shouldn't have been, and we'll create incorrect
6273                  REG_UNUSED notes.  */
6274               reg = gen_rtx_REG (outer_mode, regno_first);
6275             }
6276           else
6277             {
6278               /* If the number of words in the subreg is less than the number
6279                  of words in the full register, we have a well-defined partial
6280                  set.  Otherwise the high bits are undefined.
6281
6282                  This is only really applicable to pseudos, since we just took
6283                  care of multi-word hard registers.  */
6284               if (((GET_MODE_SIZE (outer_mode)
6285                     + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
6286                   < ((GET_MODE_SIZE (inner_mode)
6287                       + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
6288                 not_dead = (unsigned long) REGNO_REG_SET_P (pbi->reg_live,
6289                                                             regno_first);
6290
6291               reg = SUBREG_REG (reg);
6292             }
6293         }
6294       else
6295         reg = SUBREG_REG (reg);
6296       break;
6297
6298     default:
6299       break;
6300     }
6301
6302   /* If this set is a MEM, then it kills any aliased writes.
6303      If this set is a REG, then it kills any MEMs which use the reg.  */
6304   if (optimize && (flags & PROP_SCAN_DEAD_CODE))
6305     {
6306       if (GET_CODE (reg) == REG)
6307         invalidate_mems_from_set (pbi, reg);
6308
6309       /* If the memory reference had embedded side effects (autoincrement
6310          address modes.  Then we may need to kill some entries on the
6311          memory set list.  */
6312       if (insn && GET_CODE (reg) == MEM)
6313         invalidate_mems_from_autoinc (pbi, insn);
6314
6315       if (GET_CODE (reg) == MEM && ! side_effects_p (reg)
6316           /* ??? With more effort we could track conditional memory life.  */
6317           && ! cond
6318           /* There are no REG_INC notes for SP, so we can't assume we'll see
6319              everything that invalidates it.  To be safe, don't eliminate any
6320              stores though SP; none of them should be redundant anyway.  */
6321           && ! reg_mentioned_p (stack_pointer_rtx, reg))
6322         add_to_mem_set_list (pbi, canon_rtx (reg));
6323     }
6324
6325   if (GET_CODE (reg) == REG
6326       && ! (regno_first == FRAME_POINTER_REGNUM
6327             && (! reload_completed || frame_pointer_needed))
6328 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
6329       && ! (regno_first == HARD_FRAME_POINTER_REGNUM
6330             && (! reload_completed || frame_pointer_needed))
6331 #endif
6332 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
6333       && ! (regno_first == ARG_POINTER_REGNUM && fixed_regs[regno_first])
6334 #endif
6335       )
6336     {
6337       int some_was_live = 0, some_was_dead = 0;
6338
6339       for (i = regno_first; i <= regno_last; ++i)
6340         {
6341           int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
6342           if (pbi->local_set)
6343             {
6344               /* Order of the set operation matters here since both
6345                  sets may be the same.  */
6346               CLEAR_REGNO_REG_SET (pbi->cond_local_set, i);
6347               if (cond != NULL_RTX
6348                   && ! REGNO_REG_SET_P (pbi->local_set, i))
6349                 SET_REGNO_REG_SET (pbi->cond_local_set, i);
6350               else
6351                 SET_REGNO_REG_SET (pbi->local_set, i);
6352             }
6353           if (code != CLOBBER)
6354             SET_REGNO_REG_SET (pbi->new_set, i);
6355
6356           some_was_live |= needed_regno;
6357           some_was_dead |= ! needed_regno;
6358         }
6359
6360 #ifdef HAVE_conditional_execution
6361       /* Consider conditional death in deciding that the register needs
6362          a death note.  */
6363       if (some_was_live && ! not_dead
6364           /* The stack pointer is never dead.  Well, not strictly true,
6365              but it's very difficult to tell from here.  Hopefully
6366              combine_stack_adjustments will fix up the most egregious
6367              errors.  */
6368           && regno_first != STACK_POINTER_REGNUM)
6369         {
6370           for (i = regno_first; i <= regno_last; ++i)
6371             if (! mark_regno_cond_dead (pbi, i, cond))
6372               not_dead |= ((unsigned long) 1) << (i - regno_first);
6373         }
6374 #endif
6375
6376       /* Additional data to record if this is the final pass.  */
6377       if (flags & (PROP_LOG_LINKS | PROP_REG_INFO
6378                    | PROP_DEATH_NOTES | PROP_AUTOINC))
6379         {
6380           register rtx y;
6381           register int blocknum = pbi->bb->index;
6382
6383           y = NULL_RTX;
6384           if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
6385             {
6386               y = pbi->reg_next_use[regno_first];
6387
6388               /* The next use is no longer next, since a store intervenes.  */
6389               for (i = regno_first; i <= regno_last; ++i)
6390                 pbi->reg_next_use[i] = 0;
6391             }
6392
6393           if (flags & PROP_REG_INFO)
6394             {
6395               for (i = regno_first; i <= regno_last; ++i)
6396                 {
6397                   /* Count (weighted) references, stores, etc.  This counts a
6398                      register twice if it is modified, but that is correct.  */
6399                   REG_N_SETS (i) += 1;
6400                   REG_N_REFS (i) += 1;
6401                   REG_FREQ (i) += REG_FREQ_FROM_BB (pbi->bb);
6402
6403                   /* The insns where a reg is live are normally counted
6404                      elsewhere, but we want the count to include the insn
6405                      where the reg is set, and the normal counting mechanism
6406                      would not count it.  */
6407                   REG_LIVE_LENGTH (i) += 1;
6408                 }
6409
6410               /* If this is a hard reg, record this function uses the reg.  */
6411               if (regno_first < FIRST_PSEUDO_REGISTER)
6412                 {
6413                   for (i = regno_first; i <= regno_last; i++)
6414                     regs_ever_live[i] = 1;
6415                 }
6416               else
6417                 {
6418                   /* Keep track of which basic blocks each reg appears in.  */
6419                   if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
6420                     REG_BASIC_BLOCK (regno_first) = blocknum;
6421                   else if (REG_BASIC_BLOCK (regno_first) != blocknum)
6422                     REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
6423                 }
6424             }
6425
6426           if (! some_was_dead)
6427             {
6428               if (flags & PROP_LOG_LINKS)
6429                 {
6430                   /* Make a logical link from the next following insn
6431                      that uses this register, back to this insn.
6432                      The following insns have already been processed.
6433
6434                      We don't build a LOG_LINK for hard registers containing
6435                      in ASM_OPERANDs.  If these registers get replaced,
6436                      we might wind up changing the semantics of the insn,
6437                      even if reload can make what appear to be valid
6438                      assignments later.  */
6439                   if (y && (BLOCK_NUM (y) == blocknum)
6440                       && (regno_first >= FIRST_PSEUDO_REGISTER
6441                           || asm_noperands (PATTERN (y)) < 0))
6442                     LOG_LINKS (y) = alloc_INSN_LIST (insn, LOG_LINKS (y));
6443                 }
6444             }
6445           else if (not_dead)
6446             ;
6447           else if (! some_was_live)
6448             {
6449               if (flags & PROP_REG_INFO)
6450                 REG_N_DEATHS (regno_first) += 1;
6451
6452               if (flags & PROP_DEATH_NOTES)
6453                 {
6454                   /* Note that dead stores have already been deleted
6455                      when possible.  If we get here, we have found a
6456                      dead store that cannot be eliminated (because the
6457                      same insn does something useful).  Indicate this
6458                      by marking the reg being set as dying here.  */
6459                   REG_NOTES (insn)
6460                     = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
6461                 }
6462             }
6463           else
6464             {
6465               if (flags & PROP_DEATH_NOTES)
6466                 {
6467                   /* This is a case where we have a multi-word hard register
6468                      and some, but not all, of the words of the register are
6469                      needed in subsequent insns.  Write REG_UNUSED notes
6470                      for those parts that were not needed.  This case should
6471                      be rare.  */
6472
6473                   for (i = regno_first; i <= regno_last; ++i)
6474                     if (! REGNO_REG_SET_P (pbi->reg_live, i))
6475                       REG_NOTES (insn)
6476                         = alloc_EXPR_LIST (REG_UNUSED,
6477                                            gen_rtx_REG (reg_raw_mode[i], i),
6478                                            REG_NOTES (insn));
6479                 }
6480             }
6481         }
6482
6483       /* Mark the register as being dead.  */
6484       if (some_was_live
6485           /* The stack pointer is never dead.  Well, not strictly true,
6486              but it's very difficult to tell from here.  Hopefully
6487              combine_stack_adjustments will fix up the most egregious
6488              errors.  */
6489           && regno_first != STACK_POINTER_REGNUM)
6490         {
6491           for (i = regno_first; i <= regno_last; ++i)
6492             if (!(not_dead & (((unsigned long) 1) << (i - regno_first))))
6493               CLEAR_REGNO_REG_SET (pbi->reg_live, i);
6494         }
6495     }
6496   else if (GET_CODE (reg) == REG)
6497     {
6498       if (flags & (PROP_LOG_LINKS | PROP_AUTOINC))
6499         pbi->reg_next_use[regno_first] = 0;
6500     }
6501
6502   /* If this is the last pass and this is a SCRATCH, show it will be dying
6503      here and count it.  */
6504   else if (GET_CODE (reg) == SCRATCH)
6505     {
6506       if (flags & PROP_DEATH_NOTES)
6507         REG_NOTES (insn)
6508           = alloc_EXPR_LIST (REG_UNUSED, reg, REG_NOTES (insn));
6509     }
6510 }
6511 \f
6512 #ifdef HAVE_conditional_execution
6513 /* Mark REGNO conditionally dead.
6514    Return true if the register is now unconditionally dead.  */
6515
6516 static int
6517 mark_regno_cond_dead (pbi, regno, cond)
6518      struct propagate_block_info *pbi;
6519      int regno;
6520      rtx cond;
6521 {
6522   /* If this is a store to a predicate register, the value of the
6523      predicate is changing, we don't know that the predicate as seen
6524      before is the same as that seen after.  Flush all dependent
6525      conditions from reg_cond_dead.  This will make all such
6526      conditionally live registers unconditionally live.  */
6527   if (REGNO_REG_SET_P (pbi->reg_cond_reg, regno))
6528     flush_reg_cond_reg (pbi, regno);
6529
6530   /* If this is an unconditional store, remove any conditional
6531      life that may have existed.  */
6532   if (cond == NULL_RTX)
6533     splay_tree_remove (pbi->reg_cond_dead, regno);
6534   else
6535     {
6536       splay_tree_node node;
6537       struct reg_cond_life_info *rcli;
6538       rtx ncond;
6539
6540       /* Otherwise this is a conditional set.  Record that fact.
6541          It may have been conditionally used, or there may be a
6542          subsequent set with a complimentary condition.  */
6543
6544       node = splay_tree_lookup (pbi->reg_cond_dead, regno);
6545       if (node == NULL)
6546         {
6547           /* The register was unconditionally live previously.
6548              Record the current condition as the condition under
6549              which it is dead.  */
6550           rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
6551           rcli->condition = cond;
6552           rcli->stores = cond;
6553           rcli->orig_condition = const0_rtx;
6554           splay_tree_insert (pbi->reg_cond_dead, regno,
6555                              (splay_tree_value) rcli);
6556
6557           SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
6558
6559           /* Not unconditionaly dead.  */
6560           return 0;
6561         }
6562       else
6563         {
6564           /* The register was conditionally live previously.
6565              Add the new condition to the old.  */
6566           rcli = (struct reg_cond_life_info *) node->value;
6567           ncond = rcli->condition;
6568           ncond = ior_reg_cond (ncond, cond, 1);
6569           if (rcli->stores == const0_rtx)
6570             rcli->stores = cond;
6571           else if (rcli->stores != const1_rtx)
6572             rcli->stores = ior_reg_cond (rcli->stores, cond, 1);
6573
6574           /* If the register is now unconditionally dead, remove the entry
6575              in the splay_tree.  A register is unconditionally dead if the
6576              dead condition ncond is true.  A register is also unconditionally
6577              dead if the sum of all conditional stores is an unconditional
6578              store (stores is true), and the dead condition is identically the
6579              same as the original dead condition initialized at the end of
6580              the block.  This is a pointer compare, not an rtx_equal_p
6581              compare.  */
6582           if (ncond == const1_rtx
6583               || (ncond == rcli->orig_condition && rcli->stores == const1_rtx))
6584             splay_tree_remove (pbi->reg_cond_dead, regno);
6585           else
6586             {
6587               rcli->condition = ncond;
6588
6589               SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
6590
6591               /* Not unconditionaly dead.  */
6592               return 0;
6593             }
6594         }
6595     }
6596
6597   return 1;
6598 }
6599
6600 /* Called from splay_tree_delete for pbi->reg_cond_life.  */
6601
6602 static void
6603 free_reg_cond_life_info (value)
6604      splay_tree_value value;
6605 {
6606   struct reg_cond_life_info *rcli = (struct reg_cond_life_info *) value;
6607   free (rcli);
6608 }
6609
6610 /* Helper function for flush_reg_cond_reg.  */
6611
6612 static int
6613 flush_reg_cond_reg_1 (node, data)
6614      splay_tree_node node;
6615      void *data;
6616 {
6617   struct reg_cond_life_info *rcli;
6618   int *xdata = (int *) data;
6619   unsigned int regno = xdata[0];
6620
6621   /* Don't need to search if last flushed value was farther on in
6622      the in-order traversal.  */
6623   if (xdata[1] >= (int) node->key)
6624     return 0;
6625
6626   /* Splice out portions of the expression that refer to regno.  */
6627   rcli = (struct reg_cond_life_info *) node->value;
6628   rcli->condition = elim_reg_cond (rcli->condition, regno);
6629   if (rcli->stores != const0_rtx && rcli->stores != const1_rtx)
6630     rcli->stores = elim_reg_cond (rcli->stores, regno);
6631
6632   /* If the entire condition is now false, signal the node to be removed.  */
6633   if (rcli->condition == const0_rtx)
6634     {
6635       xdata[1] = node->key;
6636       return -1;
6637     }
6638   else if (rcli->condition == const1_rtx)
6639     abort ();
6640
6641   return 0;
6642 }
6643
6644 /* Flush all (sub) expressions referring to REGNO from REG_COND_LIVE.  */
6645
6646 static void
6647 flush_reg_cond_reg (pbi, regno)
6648      struct propagate_block_info *pbi;
6649      int regno;
6650 {
6651   int pair[2];
6652
6653   pair[0] = regno;
6654   pair[1] = -1;
6655   while (splay_tree_foreach (pbi->reg_cond_dead,
6656                              flush_reg_cond_reg_1, pair) == -1)
6657     splay_tree_remove (pbi->reg_cond_dead, pair[1]);
6658
6659   CLEAR_REGNO_REG_SET (pbi->reg_cond_reg, regno);
6660 }
6661
6662 /* Logical arithmetic on predicate conditions.  IOR, NOT and AND.
6663    For ior/and, the ADD flag determines whether we want to add the new
6664    condition X to the old one unconditionally.  If it is zero, we will
6665    only return a new expression if X allows us to simplify part of
6666    OLD, otherwise we return OLD unchanged to the caller.
6667    If ADD is nonzero, we will return a new condition in all cases.  The
6668    toplevel caller of one of these functions should always pass 1 for
6669    ADD.  */
6670
6671 static rtx
6672 ior_reg_cond (old, x, add)
6673      rtx old, x;
6674      int add;
6675 {
6676   rtx op0, op1;
6677
6678   if (GET_RTX_CLASS (GET_CODE (old)) == '<')
6679     {
6680       if (GET_RTX_CLASS (GET_CODE (x)) == '<'
6681           && REVERSE_CONDEXEC_PREDICATES_P (GET_CODE (x), GET_CODE (old))
6682           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
6683         return const1_rtx;
6684       if (GET_CODE (x) == GET_CODE (old)
6685           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
6686         return old;
6687       if (! add)
6688         return old;
6689       return gen_rtx_IOR (0, old, x);
6690     }
6691
6692   switch (GET_CODE (old))
6693     {
6694     case IOR:
6695       op0 = ior_reg_cond (XEXP (old, 0), x, 0);
6696       op1 = ior_reg_cond (XEXP (old, 1), x, 0);
6697       if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
6698         {
6699           if (op0 == const0_rtx)
6700             return op1;
6701           if (op1 == const0_rtx)
6702             return op0;
6703           if (op0 == const1_rtx || op1 == const1_rtx)
6704             return const1_rtx;
6705           if (op0 == XEXP (old, 0))
6706             op0 = gen_rtx_IOR (0, op0, x);
6707           else
6708             op1 = gen_rtx_IOR (0, op1, x);
6709           return gen_rtx_IOR (0, op0, op1);
6710         }
6711       if (! add)
6712         return old;
6713       return gen_rtx_IOR (0, old, x);
6714
6715     case AND:
6716       op0 = ior_reg_cond (XEXP (old, 0), x, 0);
6717       op1 = ior_reg_cond (XEXP (old, 1), x, 0);
6718       if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
6719         {
6720           if (op0 == const1_rtx)
6721             return op1;
6722           if (op1 == const1_rtx)
6723             return op0;
6724           if (op0 == const0_rtx || op1 == const0_rtx)
6725             return const0_rtx;
6726           if (op0 == XEXP (old, 0))
6727             op0 = gen_rtx_IOR (0, op0, x);
6728           else
6729             op1 = gen_rtx_IOR (0, op1, x);
6730           return gen_rtx_AND (0, op0, op1);
6731         }
6732       if (! add)
6733         return old;
6734       return gen_rtx_IOR (0, old, x);
6735
6736     case NOT:
6737       op0 = and_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
6738       if (op0 != XEXP (old, 0))
6739         return not_reg_cond (op0);
6740       if (! add)
6741         return old;
6742       return gen_rtx_IOR (0, old, x);
6743
6744     default:
6745       abort ();
6746     }
6747 }
6748
6749 static rtx
6750 not_reg_cond (x)
6751      rtx x;
6752 {
6753   enum rtx_code x_code;
6754
6755   if (x == const0_rtx)
6756     return const1_rtx;
6757   else if (x == const1_rtx)
6758     return const0_rtx;
6759   x_code = GET_CODE (x);
6760   if (x_code == NOT)
6761     return XEXP (x, 0);
6762   if (GET_RTX_CLASS (x_code) == '<'
6763       && GET_CODE (XEXP (x, 0)) == REG)
6764     {
6765       if (XEXP (x, 1) != const0_rtx)
6766         abort ();
6767
6768       return gen_rtx_fmt_ee (reverse_condition (x_code),
6769                              VOIDmode, XEXP (x, 0), const0_rtx);
6770     }
6771   return gen_rtx_NOT (0, x);
6772 }
6773
6774 static rtx
6775 and_reg_cond (old, x, add)
6776      rtx old, x;
6777      int add;
6778 {
6779   rtx op0, op1;
6780
6781   if (GET_RTX_CLASS (GET_CODE (old)) == '<')
6782     {
6783       if (GET_RTX_CLASS (GET_CODE (x)) == '<'
6784           && GET_CODE (x) == reverse_condition (GET_CODE (old))
6785           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
6786         return const0_rtx;
6787       if (GET_CODE (x) == GET_CODE (old)
6788           && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
6789         return old;
6790       if (! add)
6791         return old;
6792       return gen_rtx_AND (0, old, x);
6793     }
6794
6795   switch (GET_CODE (old))
6796     {
6797     case IOR:
6798       op0 = and_reg_cond (XEXP (old, 0), x, 0);
6799       op1 = and_reg_cond (XEXP (old, 1), x, 0);
6800       if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
6801         {
6802           if (op0 == const0_rtx)
6803             return op1;
6804           if (op1 == const0_rtx)
6805             return op0;
6806           if (op0 == const1_rtx || op1 == const1_rtx)
6807             return const1_rtx;
6808           if (op0 == XEXP (old, 0))
6809             op0 = gen_rtx_AND (0, op0, x);
6810           else
6811             op1 = gen_rtx_AND (0, op1, x);
6812           return gen_rtx_IOR (0, op0, op1);
6813         }
6814       if (! add)
6815         return old;
6816       return gen_rtx_AND (0, old, x);
6817
6818     case AND:
6819       op0 = and_reg_cond (XEXP (old, 0), x, 0);
6820       op1 = and_reg_cond (XEXP (old, 1), x, 0);
6821       if (op0 != XEXP (old, 0) || op1 != XEXP (old, 1))
6822         {
6823           if (op0 == const1_rtx)
6824             return op1;
6825           if (op1 == const1_rtx)
6826             return op0;
6827           if (op0 == const0_rtx || op1 == const0_rtx)
6828             return const0_rtx;
6829           if (op0 == XEXP (old, 0))
6830             op0 = gen_rtx_AND (0, op0, x);
6831           else
6832             op1 = gen_rtx_AND (0, op1, x);
6833           return gen_rtx_AND (0, op0, op1);
6834         }
6835       if (! add)
6836         return old;
6837
6838       /* If X is identical to one of the existing terms of the AND,
6839          then just return what we already have.  */
6840       /* ??? There really should be some sort of recursive check here in
6841          case there are nested ANDs.  */
6842       if ((GET_CODE (XEXP (old, 0)) == GET_CODE (x)
6843            && REGNO (XEXP (XEXP (old, 0), 0)) == REGNO (XEXP (x, 0)))
6844           || (GET_CODE (XEXP (old, 1)) == GET_CODE (x)
6845               && REGNO (XEXP (XEXP (old, 1), 0)) == REGNO (XEXP (x, 0))))
6846         return old;
6847
6848       return gen_rtx_AND (0, old, x);
6849
6850     case NOT:
6851       op0 = ior_reg_cond (XEXP (old, 0), not_reg_cond (x), 0);
6852       if (op0 != XEXP (old, 0))
6853         return not_reg_cond (op0);
6854       if (! add)
6855         return old;
6856       return gen_rtx_AND (0, old, x);
6857
6858     default:
6859       abort ();
6860     }
6861 }
6862
6863 /* Given a condition X, remove references to reg REGNO and return the
6864    new condition.  The removal will be done so that all conditions
6865    involving REGNO are considered to evaluate to false.  This function
6866    is used when the value of REGNO changes.  */
6867
6868 static rtx
6869 elim_reg_cond (x, regno)
6870      rtx x;
6871      unsigned int regno;
6872 {
6873   rtx op0, op1;
6874
6875   if (GET_RTX_CLASS (GET_CODE (x)) == '<')
6876     {
6877       if (REGNO (XEXP (x, 0)) == regno)
6878         return const0_rtx;
6879       return x;
6880     }
6881
6882   switch (GET_CODE (x))
6883     {
6884     case AND:
6885       op0 = elim_reg_cond (XEXP (x, 0), regno);
6886       op1 = elim_reg_cond (XEXP (x, 1), regno);
6887       if (op0 == const0_rtx || op1 == const0_rtx)
6888         return const0_rtx;
6889       if (op0 == const1_rtx)
6890         return op1;
6891       if (op1 == const1_rtx)
6892         return op0;
6893       if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
6894         return x;
6895       return gen_rtx_AND (0, op0, op1);
6896
6897     case IOR:
6898       op0 = elim_reg_cond (XEXP (x, 0), regno);
6899       op1 = elim_reg_cond (XEXP (x, 1), regno);
6900       if (op0 == const1_rtx || op1 == const1_rtx)
6901         return const1_rtx;
6902       if (op0 == const0_rtx)
6903         return op1;
6904       if (op1 == const0_rtx)
6905         return op0;
6906       if (op0 == XEXP (x, 0) && op1 == XEXP (x, 1))
6907         return x;
6908       return gen_rtx_IOR (0, op0, op1);
6909
6910     case NOT:
6911       op0 = elim_reg_cond (XEXP (x, 0), regno);
6912       if (op0 == const0_rtx)
6913         return const1_rtx;
6914       if (op0 == const1_rtx)
6915         return const0_rtx;
6916       if (op0 != XEXP (x, 0))
6917         return not_reg_cond (op0);
6918       return x;
6919
6920     default:
6921       abort ();
6922     }
6923 }
6924 #endif /* HAVE_conditional_execution */
6925 \f
6926 #ifdef AUTO_INC_DEC
6927
6928 /* Try to substitute the auto-inc expression INC as the address inside
6929    MEM which occurs in INSN.  Currently, the address of MEM is an expression
6930    involving INCR_REG, and INCR is the next use of INCR_REG; it is an insn
6931    that has a single set whose source is a PLUS of INCR_REG and something
6932    else.  */
6933
6934 static void
6935 attempt_auto_inc (pbi, inc, insn, mem, incr, incr_reg)
6936      struct propagate_block_info *pbi;
6937      rtx inc, insn, mem, incr, incr_reg;
6938 {
6939   int regno = REGNO (incr_reg);
6940   rtx set = single_set (incr);
6941   rtx q = SET_DEST (set);
6942   rtx y = SET_SRC (set);
6943   int opnum = XEXP (y, 0) == incr_reg ? 0 : 1;
6944
6945   /* Make sure this reg appears only once in this insn.  */
6946   if (count_occurrences (PATTERN (insn), incr_reg, 1) != 1)
6947     return;
6948
6949   if (dead_or_set_p (incr, incr_reg)
6950       /* Mustn't autoinc an eliminable register.  */
6951       && (regno >= FIRST_PSEUDO_REGISTER
6952           || ! TEST_HARD_REG_BIT (elim_reg_set, regno)))
6953     {
6954       /* This is the simple case.  Try to make the auto-inc.  If
6955          we can't, we are done.  Otherwise, we will do any
6956          needed updates below.  */
6957       if (! validate_change (insn, &XEXP (mem, 0), inc, 0))
6958         return;
6959     }
6960   else if (GET_CODE (q) == REG
6961            /* PREV_INSN used here to check the semi-open interval
6962               [insn,incr).  */
6963            && ! reg_used_between_p (q,  PREV_INSN (insn), incr)
6964            /* We must also check for sets of q as q may be
6965               a call clobbered hard register and there may
6966               be a call between PREV_INSN (insn) and incr.  */
6967            && ! reg_set_between_p (q,  PREV_INSN (insn), incr))
6968     {
6969       /* We have *p followed sometime later by q = p+size.
6970          Both p and q must be live afterward,
6971          and q is not used between INSN and its assignment.
6972          Change it to q = p, ...*q..., q = q+size.
6973          Then fall into the usual case.  */
6974       rtx insns, temp;
6975
6976       start_sequence ();
6977       emit_move_insn (q, incr_reg);
6978       insns = get_insns ();
6979       end_sequence ();
6980
6981       if (basic_block_for_insn)
6982         for (temp = insns; temp; temp = NEXT_INSN (temp))
6983           set_block_for_insn (temp, pbi->bb);
6984
6985       /* If we can't make the auto-inc, or can't make the
6986          replacement into Y, exit.  There's no point in making
6987          the change below if we can't do the auto-inc and doing
6988          so is not correct in the pre-inc case.  */
6989
6990       XEXP (inc, 0) = q;
6991       validate_change (insn, &XEXP (mem, 0), inc, 1);
6992       validate_change (incr, &XEXP (y, opnum), q, 1);
6993       if (! apply_change_group ())
6994         return;
6995
6996       /* We now know we'll be doing this change, so emit the
6997          new insn(s) and do the updates.  */
6998       emit_insns_before (insns, insn);
6999
7000       if (pbi->bb->head == insn)
7001         pbi->bb->head = insns;
7002
7003       /* INCR will become a NOTE and INSN won't contain a
7004          use of INCR_REG.  If a use of INCR_REG was just placed in
7005          the insn before INSN, make that the next use.
7006          Otherwise, invalidate it.  */
7007       if (GET_CODE (PREV_INSN (insn)) == INSN
7008           && GET_CODE (PATTERN (PREV_INSN (insn))) == SET
7009           && SET_SRC (PATTERN (PREV_INSN (insn))) == incr_reg)
7010         pbi->reg_next_use[regno] = PREV_INSN (insn);
7011       else
7012         pbi->reg_next_use[regno] = 0;
7013
7014       incr_reg = q;
7015       regno = REGNO (q);
7016
7017       /* REGNO is now used in INCR which is below INSN, but
7018          it previously wasn't live here.  If we don't mark
7019          it as live, we'll put a REG_DEAD note for it
7020          on this insn, which is incorrect.  */
7021       SET_REGNO_REG_SET (pbi->reg_live, regno);
7022
7023       /* If there are any calls between INSN and INCR, show
7024          that REGNO now crosses them.  */
7025       for (temp = insn; temp != incr; temp = NEXT_INSN (temp))
7026         if (GET_CODE (temp) == CALL_INSN)
7027           REG_N_CALLS_CROSSED (regno)++;
7028     }
7029   else
7030     return;
7031
7032   /* If we haven't returned, it means we were able to make the
7033      auto-inc, so update the status.  First, record that this insn
7034      has an implicit side effect.  */
7035
7036   REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, incr_reg, REG_NOTES (insn));
7037
7038   /* Modify the old increment-insn to simply copy
7039      the already-incremented value of our register.  */
7040   if (! validate_change (incr, &SET_SRC (set), incr_reg, 0))
7041     abort ();
7042
7043   /* If that makes it a no-op (copying the register into itself) delete
7044      it so it won't appear to be a "use" and a "set" of this
7045      register.  */
7046   if (REGNO (SET_DEST (set)) == REGNO (incr_reg))
7047     {
7048       /* If the original source was dead, it's dead now.  */
7049       rtx note;
7050
7051       while ((note = find_reg_note (incr, REG_DEAD, NULL_RTX)) != NULL_RTX)
7052         {
7053           remove_note (incr, note);
7054           if (XEXP (note, 0) != incr_reg)
7055             CLEAR_REGNO_REG_SET (pbi->reg_live, REGNO (XEXP (note, 0)));
7056         }
7057
7058       PUT_CODE (incr, NOTE);
7059       NOTE_LINE_NUMBER (incr) = NOTE_INSN_DELETED;
7060       NOTE_SOURCE_FILE (incr) = 0;
7061     }
7062
7063   if (regno >= FIRST_PSEUDO_REGISTER)
7064     {
7065       /* Count an extra reference to the reg.  When a reg is
7066          incremented, spilling it is worse, so we want to make
7067          that less likely.  */
7068       REG_FREQ (regno) += REG_FREQ_FROM_BB (pbi->bb);
7069
7070       /* Count the increment as a setting of the register,
7071          even though it isn't a SET in rtl.  */
7072       REG_N_SETS (regno)++;
7073     }
7074 }
7075
7076 /* X is a MEM found in INSN.  See if we can convert it into an auto-increment
7077    reference.  */
7078
7079 static void
7080 find_auto_inc (pbi, x, insn)
7081      struct propagate_block_info *pbi;
7082      rtx x;
7083      rtx insn;
7084 {
7085   rtx addr = XEXP (x, 0);
7086   HOST_WIDE_INT offset = 0;
7087   rtx set, y, incr, inc_val;
7088   int regno;
7089   int size = GET_MODE_SIZE (GET_MODE (x));
7090
7091   if (GET_CODE (insn) == JUMP_INSN)
7092     return;
7093
7094   /* Here we detect use of an index register which might be good for
7095      postincrement, postdecrement, preincrement, or predecrement.  */
7096
7097   if (GET_CODE (addr) == PLUS && GET_CODE (XEXP (addr, 1)) == CONST_INT)
7098     offset = INTVAL (XEXP (addr, 1)), addr = XEXP (addr, 0);
7099
7100   if (GET_CODE (addr) != REG)
7101     return;
7102
7103   regno = REGNO (addr);
7104
7105   /* Is the next use an increment that might make auto-increment? */
7106   incr = pbi->reg_next_use[regno];
7107   if (incr == 0 || BLOCK_NUM (incr) != BLOCK_NUM (insn))
7108     return;
7109   set = single_set (incr);
7110   if (set == 0 || GET_CODE (set) != SET)
7111     return;
7112   y = SET_SRC (set);
7113
7114   if (GET_CODE (y) != PLUS)
7115     return;
7116
7117   if (REG_P (XEXP (y, 0)) && REGNO (XEXP (y, 0)) == REGNO (addr))
7118     inc_val = XEXP (y, 1);
7119   else if (REG_P (XEXP (y, 1)) && REGNO (XEXP (y, 1)) == REGNO (addr))
7120     inc_val = XEXP (y, 0);
7121   else
7122     return;
7123
7124   if (GET_CODE (inc_val) == CONST_INT)
7125     {
7126       if (HAVE_POST_INCREMENT
7127           && (INTVAL (inc_val) == size && offset == 0))
7128         attempt_auto_inc (pbi, gen_rtx_POST_INC (Pmode, addr), insn, x,
7129                           incr, addr);
7130       else if (HAVE_POST_DECREMENT
7131                && (INTVAL (inc_val) == -size && offset == 0))
7132         attempt_auto_inc (pbi, gen_rtx_POST_DEC (Pmode, addr), insn, x,
7133                           incr, addr);
7134       else if (HAVE_PRE_INCREMENT
7135                && (INTVAL (inc_val) == size && offset == size))
7136         attempt_auto_inc (pbi, gen_rtx_PRE_INC (Pmode, addr), insn, x,
7137                           incr, addr);
7138       else if (HAVE_PRE_DECREMENT
7139                && (INTVAL (inc_val) == -size && offset == -size))
7140         attempt_auto_inc (pbi, gen_rtx_PRE_DEC (Pmode, addr), insn, x,
7141                           incr, addr);
7142       else if (HAVE_POST_MODIFY_DISP && offset == 0)
7143         attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
7144                                                     gen_rtx_PLUS (Pmode,
7145                                                                   addr,
7146                                                                   inc_val)),
7147                           insn, x, incr, addr);
7148     }
7149   else if (GET_CODE (inc_val) == REG
7150            && ! reg_set_between_p (inc_val, PREV_INSN (insn),
7151                                    NEXT_INSN (incr)))
7152
7153     {
7154       if (HAVE_POST_MODIFY_REG && offset == 0)
7155         attempt_auto_inc (pbi, gen_rtx_POST_MODIFY (Pmode, addr,
7156                                                     gen_rtx_PLUS (Pmode,
7157                                                                   addr,
7158                                                                   inc_val)),
7159                           insn, x, incr, addr);
7160     }
7161 }
7162
7163 #endif /* AUTO_INC_DEC */
7164 \f
7165 static void
7166 mark_used_reg (pbi, reg, cond, insn)
7167      struct propagate_block_info *pbi;
7168      rtx reg;
7169      rtx cond ATTRIBUTE_UNUSED;
7170      rtx insn;
7171 {
7172   unsigned int regno_first, regno_last, i;
7173   int some_was_live, some_was_dead, some_not_set;
7174
7175   regno_last = regno_first = REGNO (reg);
7176   if (regno_first < FIRST_PSEUDO_REGISTER)
7177     regno_last += HARD_REGNO_NREGS (regno_first, GET_MODE (reg)) - 1;
7178
7179   /* Find out if any of this register is live after this instruction.  */
7180   some_was_live = some_was_dead = 0;
7181   for (i = regno_first; i <= regno_last; ++i)
7182     {
7183       int needed_regno = REGNO_REG_SET_P (pbi->reg_live, i);
7184       some_was_live |= needed_regno;
7185       some_was_dead |= ! needed_regno;
7186     }
7187
7188   /* Find out if any of the register was set this insn.  */
7189   some_not_set = 0;
7190   for (i = regno_first; i <= regno_last; ++i)
7191     some_not_set |= ! REGNO_REG_SET_P (pbi->new_set, i);
7192
7193   if (pbi->flags & (PROP_LOG_LINKS | PROP_AUTOINC))
7194     {
7195       /* Record where each reg is used, so when the reg is set we know
7196          the next insn that uses it.  */
7197       pbi->reg_next_use[regno_first] = insn;
7198     }
7199
7200   if (pbi->flags & PROP_REG_INFO)
7201     {
7202       if (regno_first < FIRST_PSEUDO_REGISTER)
7203         {
7204           /* If this is a register we are going to try to eliminate,
7205              don't mark it live here.  If we are successful in
7206              eliminating it, it need not be live unless it is used for
7207              pseudos, in which case it will have been set live when it
7208              was allocated to the pseudos.  If the register will not
7209              be eliminated, reload will set it live at that point.
7210
7211              Otherwise, record that this function uses this register.  */
7212           /* ??? The PPC backend tries to "eliminate" on the pic
7213              register to itself.  This should be fixed.  In the mean
7214              time, hack around it.  */
7215
7216           if (! (TEST_HARD_REG_BIT (elim_reg_set, regno_first)
7217                  && (regno_first == FRAME_POINTER_REGNUM
7218                      || regno_first == ARG_POINTER_REGNUM)))
7219             for (i = regno_first; i <= regno_last; ++i)
7220               regs_ever_live[i] = 1;
7221         }
7222       else
7223         {
7224           /* Keep track of which basic block each reg appears in.  */
7225
7226           register int blocknum = pbi->bb->index;
7227           if (REG_BASIC_BLOCK (regno_first) == REG_BLOCK_UNKNOWN)
7228             REG_BASIC_BLOCK (regno_first) = blocknum;
7229           else if (REG_BASIC_BLOCK (regno_first) != blocknum)
7230             REG_BASIC_BLOCK (regno_first) = REG_BLOCK_GLOBAL;
7231
7232           /* Count (weighted) number of uses of each reg.  */
7233           REG_FREQ (regno_first) += REG_FREQ_FROM_BB (pbi->bb);
7234           REG_N_REFS (regno_first)++;
7235         }
7236     }
7237
7238   /* Record and count the insns in which a reg dies.  If it is used in
7239      this insn and was dead below the insn then it dies in this insn.
7240      If it was set in this insn, we do not make a REG_DEAD note;
7241      likewise if we already made such a note.  */
7242   if ((pbi->flags & (PROP_DEATH_NOTES | PROP_REG_INFO))
7243       && some_was_dead
7244       && some_not_set)
7245     {
7246       /* Check for the case where the register dying partially
7247          overlaps the register set by this insn.  */
7248       if (regno_first != regno_last)
7249         for (i = regno_first; i <= regno_last; ++i)
7250           some_was_live |= REGNO_REG_SET_P (pbi->new_set, i);
7251
7252       /* If none of the words in X is needed, make a REG_DEAD note.
7253          Otherwise, we must make partial REG_DEAD notes.  */
7254       if (! some_was_live)
7255         {
7256           if ((pbi->flags & PROP_DEATH_NOTES)
7257               && ! find_regno_note (insn, REG_DEAD, regno_first))
7258             REG_NOTES (insn)
7259               = alloc_EXPR_LIST (REG_DEAD, reg, REG_NOTES (insn));
7260
7261           if (pbi->flags & PROP_REG_INFO)
7262             REG_N_DEATHS (regno_first)++;
7263         }
7264       else
7265         {
7266           /* Don't make a REG_DEAD note for a part of a register
7267              that is set in the insn.  */
7268           for (i = regno_first; i <= regno_last; ++i)
7269             if (! REGNO_REG_SET_P (pbi->reg_live, i)
7270                 && ! dead_or_set_regno_p (insn, i))
7271               REG_NOTES (insn)
7272                 = alloc_EXPR_LIST (REG_DEAD,
7273                                    gen_rtx_REG (reg_raw_mode[i], i),
7274                                    REG_NOTES (insn));
7275         }
7276     }
7277
7278   /* Mark the register as being live.  */
7279   for (i = regno_first; i <= regno_last; ++i)
7280     {
7281       SET_REGNO_REG_SET (pbi->reg_live, i);
7282
7283 #ifdef HAVE_conditional_execution
7284       /* If this is a conditional use, record that fact.  If it is later
7285          conditionally set, we'll know to kill the register.  */
7286       if (cond != NULL_RTX)
7287         {
7288           splay_tree_node node;
7289           struct reg_cond_life_info *rcli;
7290           rtx ncond;
7291
7292           if (some_was_live)
7293             {
7294               node = splay_tree_lookup (pbi->reg_cond_dead, i);
7295               if (node == NULL)
7296                 {
7297                   /* The register was unconditionally live previously.
7298                      No need to do anything.  */
7299                 }
7300               else
7301                 {
7302                   /* The register was conditionally live previously.
7303                      Subtract the new life cond from the old death cond.  */
7304                   rcli = (struct reg_cond_life_info *) node->value;
7305                   ncond = rcli->condition;
7306                   ncond = and_reg_cond (ncond, not_reg_cond (cond), 1);
7307
7308                   /* If the register is now unconditionally live,
7309                      remove the entry in the splay_tree.  */
7310                   if (ncond == const0_rtx)
7311                     splay_tree_remove (pbi->reg_cond_dead, i);
7312                   else
7313                     {
7314                       rcli->condition = ncond;
7315                       SET_REGNO_REG_SET (pbi->reg_cond_reg,
7316                                          REGNO (XEXP (cond, 0)));
7317                     }
7318                 }
7319             }
7320           else
7321             {
7322               /* The register was not previously live at all.  Record
7323                  the condition under which it is still dead.  */
7324               rcli = (struct reg_cond_life_info *) xmalloc (sizeof (*rcli));
7325               rcli->condition = not_reg_cond (cond);
7326               rcli->stores = const0_rtx;
7327               rcli->orig_condition = const0_rtx;
7328               splay_tree_insert (pbi->reg_cond_dead, i,
7329                                  (splay_tree_value) rcli);
7330
7331               SET_REGNO_REG_SET (pbi->reg_cond_reg, REGNO (XEXP (cond, 0)));
7332             }
7333         }
7334       else if (some_was_live)
7335         {
7336           /* The register may have been conditionally live previously, but
7337              is now unconditionally live.  Remove it from the conditionally
7338              dead list, so that a conditional set won't cause us to think
7339              it dead.  */
7340           splay_tree_remove (pbi->reg_cond_dead, i);
7341         }
7342 #endif
7343     }
7344 }
7345
7346 /* Scan expression X and store a 1-bit in NEW_LIVE for each reg it uses.
7347    This is done assuming the registers needed from X are those that
7348    have 1-bits in PBI->REG_LIVE.
7349
7350    INSN is the containing instruction.  If INSN is dead, this function
7351    is not called.  */
7352
7353 static void
7354 mark_used_regs (pbi, x, cond, insn)
7355      struct propagate_block_info *pbi;
7356      rtx x, cond, insn;
7357 {
7358   register RTX_CODE code;
7359   register int regno;
7360   int flags = pbi->flags;
7361
7362  retry:
7363   code = GET_CODE (x);
7364   switch (code)
7365     {
7366     case LABEL_REF:
7367     case SYMBOL_REF:
7368     case CONST_INT:
7369     case CONST:
7370     case CONST_DOUBLE:
7371     case PC:
7372     case ADDR_VEC:
7373     case ADDR_DIFF_VEC:
7374       return;
7375
7376 #ifdef HAVE_cc0
7377     case CC0:
7378       pbi->cc0_live = 1;
7379       return;
7380 #endif
7381
7382     case CLOBBER:
7383       /* If we are clobbering a MEM, mark any registers inside the address
7384          as being used.  */
7385       if (GET_CODE (XEXP (x, 0)) == MEM)
7386         mark_used_regs (pbi, XEXP (XEXP (x, 0), 0), cond, insn);
7387       return;
7388
7389     case MEM:
7390       /* Don't bother watching stores to mems if this is not the
7391          final pass.  We'll not be deleting dead stores this round.  */
7392       if (optimize && (flags & PROP_SCAN_DEAD_CODE))
7393         {
7394           /* Invalidate the data for the last MEM stored, but only if MEM is
7395              something that can be stored into.  */
7396           if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
7397               && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
7398             /* Needn't clear the memory set list.  */
7399             ;
7400           else
7401             {
7402               rtx temp = pbi->mem_set_list;
7403               rtx prev = NULL_RTX;
7404               rtx next;
7405
7406               while (temp)
7407                 {
7408                   next = XEXP (temp, 1);
7409                   if (anti_dependence (XEXP (temp, 0), x))
7410                     {
7411                       /* Splice temp out of the list.  */
7412                       if (prev)
7413                         XEXP (prev, 1) = next;
7414                       else
7415                         pbi->mem_set_list = next;
7416                       free_EXPR_LIST_node (temp);
7417                       pbi->mem_set_list_len--;
7418                     }
7419                   else
7420                     prev = temp;
7421                   temp = next;
7422                 }
7423             }
7424
7425           /* If the memory reference had embedded side effects (autoincrement
7426              address modes.  Then we may need to kill some entries on the
7427              memory set list.  */
7428           if (insn)
7429             invalidate_mems_from_autoinc (pbi, insn);
7430         }
7431
7432 #ifdef AUTO_INC_DEC
7433       if (flags & PROP_AUTOINC)
7434         find_auto_inc (pbi, x, insn);
7435 #endif
7436       break;
7437
7438     case SUBREG:
7439 #ifdef CLASS_CANNOT_CHANGE_MODE
7440       if (GET_CODE (SUBREG_REG (x)) == REG
7441           && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER
7442           && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (x),
7443                                          GET_MODE (SUBREG_REG (x))))
7444         REG_CHANGES_MODE (REGNO (SUBREG_REG (x))) = 1;
7445 #endif
7446
7447       /* While we're here, optimize this case.  */
7448       x = SUBREG_REG (x);
7449       if (GET_CODE (x) != REG)
7450         goto retry;
7451       /* Fall through.  */
7452
7453     case REG:
7454       /* See a register other than being set => mark it as needed.  */
7455       mark_used_reg (pbi, x, cond, insn);
7456       return;
7457
7458     case SET:
7459       {
7460         register rtx testreg = SET_DEST (x);
7461         int mark_dest = 0;
7462
7463         /* If storing into MEM, don't show it as being used.  But do
7464            show the address as being used.  */
7465         if (GET_CODE (testreg) == MEM)
7466           {
7467 #ifdef AUTO_INC_DEC
7468             if (flags & PROP_AUTOINC)
7469               find_auto_inc (pbi, testreg, insn);
7470 #endif
7471             mark_used_regs (pbi, XEXP (testreg, 0), cond, insn);
7472             mark_used_regs (pbi, SET_SRC (x), cond, insn);
7473             return;
7474           }
7475
7476         /* Storing in STRICT_LOW_PART is like storing in a reg
7477            in that this SET might be dead, so ignore it in TESTREG.
7478            but in some other ways it is like using the reg.
7479
7480            Storing in a SUBREG or a bit field is like storing the entire
7481            register in that if the register's value is not used
7482            then this SET is not needed.  */
7483         while (GET_CODE (testreg) == STRICT_LOW_PART
7484                || GET_CODE (testreg) == ZERO_EXTRACT
7485                || GET_CODE (testreg) == SIGN_EXTRACT
7486                || GET_CODE (testreg) == SUBREG)
7487           {
7488 #ifdef CLASS_CANNOT_CHANGE_MODE
7489             if (GET_CODE (testreg) == SUBREG
7490                 && GET_CODE (SUBREG_REG (testreg)) == REG
7491                 && REGNO (SUBREG_REG (testreg)) >= FIRST_PSEUDO_REGISTER
7492                 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (SUBREG_REG (testreg)),
7493                                                GET_MODE (testreg)))
7494               REG_CHANGES_MODE (REGNO (SUBREG_REG (testreg))) = 1;
7495 #endif
7496
7497             /* Modifying a single register in an alternate mode
7498                does not use any of the old value.  But these other
7499                ways of storing in a register do use the old value.  */
7500             if (GET_CODE (testreg) == SUBREG
7501                 && !(REG_SIZE (SUBREG_REG (testreg)) > REG_SIZE (testreg)))
7502               ;
7503             else
7504               mark_dest = 1;
7505
7506             testreg = XEXP (testreg, 0);
7507           }
7508
7509         /* If this is a store into a register or group of registers,
7510            recursively scan the value being stored.  */
7511
7512         if ((GET_CODE (testreg) == PARALLEL
7513              && GET_MODE (testreg) == BLKmode)
7514             || (GET_CODE (testreg) == REG
7515                 && (regno = REGNO (testreg),
7516                     ! (regno == FRAME_POINTER_REGNUM
7517                        && (! reload_completed || frame_pointer_needed)))
7518 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
7519                 && ! (regno == HARD_FRAME_POINTER_REGNUM
7520                       && (! reload_completed || frame_pointer_needed))
7521 #endif
7522 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
7523                 && ! (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
7524 #endif
7525                 ))
7526           {
7527             if (mark_dest)
7528               mark_used_regs (pbi, SET_DEST (x), cond, insn);
7529             mark_used_regs (pbi, SET_SRC (x), cond, insn);
7530             return;
7531           }
7532       }
7533       break;
7534
7535     case ASM_OPERANDS:
7536     case UNSPEC_VOLATILE:
7537     case TRAP_IF:
7538     case ASM_INPUT:
7539       {
7540         /* Traditional and volatile asm instructions must be considered to use
7541            and clobber all hard registers, all pseudo-registers and all of
7542            memory.  So must TRAP_IF and UNSPEC_VOLATILE operations.
7543
7544            Consider for instance a volatile asm that changes the fpu rounding
7545            mode.  An insn should not be moved across this even if it only uses
7546            pseudo-regs because it might give an incorrectly rounded result.
7547
7548            ?!? Unfortunately, marking all hard registers as live causes massive
7549            problems for the register allocator and marking all pseudos as live
7550            creates mountains of uninitialized variable warnings.
7551
7552            So for now, just clear the memory set list and mark any regs
7553            we can find in ASM_OPERANDS as used.  */
7554         if (code != ASM_OPERANDS || MEM_VOLATILE_P (x))
7555           {
7556             free_EXPR_LIST_list (&pbi->mem_set_list);
7557             pbi->mem_set_list_len = 0;
7558           }
7559
7560         /* For all ASM_OPERANDS, we must traverse the vector of input operands.
7561            We can not just fall through here since then we would be confused
7562            by the ASM_INPUT rtx inside ASM_OPERANDS, which do not indicate
7563            traditional asms unlike their normal usage.  */
7564         if (code == ASM_OPERANDS)
7565           {
7566             int j;
7567
7568             for (j = 0; j < ASM_OPERANDS_INPUT_LENGTH (x); j++)
7569               mark_used_regs (pbi, ASM_OPERANDS_INPUT (x, j), cond, insn);
7570           }
7571         break;
7572       }
7573
7574     case COND_EXEC:
7575       if (cond != NULL_RTX)
7576         abort ();
7577
7578       mark_used_regs (pbi, COND_EXEC_TEST (x), NULL_RTX, insn);
7579
7580       cond = COND_EXEC_TEST (x);
7581       x = COND_EXEC_CODE (x);
7582       goto retry;
7583
7584     case PHI:
7585       /* We _do_not_ want to scan operands of phi nodes.  Operands of
7586          a phi function are evaluated only when control reaches this
7587          block along a particular edge.  Therefore, regs that appear
7588          as arguments to phi should not be added to the global live at
7589          start.  */
7590       return;
7591
7592     default:
7593       break;
7594     }
7595
7596   /* Recursively scan the operands of this expression.  */
7597
7598   {
7599     register const char * const fmt = GET_RTX_FORMAT (code);
7600     register int i;
7601
7602     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7603       {
7604         if (fmt[i] == 'e')
7605           {
7606             /* Tail recursive case: save a function call level.  */
7607             if (i == 0)
7608               {
7609                 x = XEXP (x, 0);
7610                 goto retry;
7611               }
7612             mark_used_regs (pbi, XEXP (x, i), cond, insn);
7613           }
7614         else if (fmt[i] == 'E')
7615           {
7616             register int j;
7617             for (j = 0; j < XVECLEN (x, i); j++)
7618               mark_used_regs (pbi, XVECEXP (x, i, j), cond, insn);
7619           }
7620       }
7621   }
7622 }
7623 \f
7624 #ifdef AUTO_INC_DEC
7625
7626 static int
7627 try_pre_increment_1 (pbi, insn)
7628      struct propagate_block_info *pbi;
7629      rtx insn;
7630 {
7631   /* Find the next use of this reg.  If in same basic block,
7632      make it do pre-increment or pre-decrement if appropriate.  */
7633   rtx x = single_set (insn);
7634   HOST_WIDE_INT amount = ((GET_CODE (SET_SRC (x)) == PLUS ? 1 : -1)
7635                           * INTVAL (XEXP (SET_SRC (x), 1)));
7636   int regno = REGNO (SET_DEST (x));
7637   rtx y = pbi->reg_next_use[regno];
7638   if (y != 0
7639       && SET_DEST (x) != stack_pointer_rtx
7640       && BLOCK_NUM (y) == BLOCK_NUM (insn)
7641       /* Don't do this if the reg dies, or gets set in y; a standard addressing
7642          mode would be better.  */
7643       && ! dead_or_set_p (y, SET_DEST (x))
7644       && try_pre_increment (y, SET_DEST (x), amount))
7645     {
7646       /* We have found a suitable auto-increment and already changed
7647          insn Y to do it.  So flush this increment instruction.  */
7648       propagate_block_delete_insn (pbi->bb, insn);
7649
7650       /* Count a reference to this reg for the increment insn we are
7651          deleting.  When a reg is incremented, spilling it is worse,
7652          so we want to make that less likely.  */
7653       if (regno >= FIRST_PSEUDO_REGISTER)
7654         {
7655           REG_FREQ (regno) += REG_FREQ_FROM_BB (pbi->bb);
7656           REG_N_SETS (regno)++;
7657         }
7658
7659       /* Flush any remembered memories depending on the value of
7660          the incremented register.  */
7661       invalidate_mems_from_set (pbi, SET_DEST (x));
7662
7663       return 1;
7664     }
7665   return 0;
7666 }
7667
7668 /* Try to change INSN so that it does pre-increment or pre-decrement
7669    addressing on register REG in order to add AMOUNT to REG.
7670    AMOUNT is negative for pre-decrement.
7671    Returns 1 if the change could be made.
7672    This checks all about the validity of the result of modifying INSN.  */
7673
7674 static int
7675 try_pre_increment (insn, reg, amount)
7676      rtx insn, reg;
7677      HOST_WIDE_INT amount;
7678 {
7679   register rtx use;
7680
7681   /* Nonzero if we can try to make a pre-increment or pre-decrement.
7682      For example, addl $4,r1; movl (r1),... can become movl +(r1),...  */
7683   int pre_ok = 0;
7684   /* Nonzero if we can try to make a post-increment or post-decrement.
7685      For example, addl $4,r1; movl -4(r1),... can become movl (r1)+,...
7686      It is possible for both PRE_OK and POST_OK to be nonzero if the machine
7687      supports both pre-inc and post-inc, or both pre-dec and post-dec.  */
7688   int post_ok = 0;
7689
7690   /* Nonzero if the opportunity actually requires post-inc or post-dec.  */
7691   int do_post = 0;
7692
7693   /* From the sign of increment, see which possibilities are conceivable
7694      on this target machine.  */
7695   if (HAVE_PRE_INCREMENT && amount > 0)
7696     pre_ok = 1;
7697   if (HAVE_POST_INCREMENT && amount > 0)
7698     post_ok = 1;
7699
7700   if (HAVE_PRE_DECREMENT && amount < 0)
7701     pre_ok = 1;
7702   if (HAVE_POST_DECREMENT && amount < 0)
7703     post_ok = 1;
7704
7705   if (! (pre_ok || post_ok))
7706     return 0;
7707
7708   /* It is not safe to add a side effect to a jump insn
7709      because if the incremented register is spilled and must be reloaded
7710      there would be no way to store the incremented value back in memory.  */
7711
7712   if (GET_CODE (insn) == JUMP_INSN)
7713     return 0;
7714
7715   use = 0;
7716   if (pre_ok)
7717     use = find_use_as_address (PATTERN (insn), reg, 0);
7718   if (post_ok && (use == 0 || use == (rtx) 1))
7719     {
7720       use = find_use_as_address (PATTERN (insn), reg, -amount);
7721       do_post = 1;
7722     }
7723
7724   if (use == 0 || use == (rtx) 1)
7725     return 0;
7726
7727   if (GET_MODE_SIZE (GET_MODE (use)) != (amount > 0 ? amount : - amount))
7728     return 0;
7729
7730   /* See if this combination of instruction and addressing mode exists.  */
7731   if (! validate_change (insn, &XEXP (use, 0),
7732                          gen_rtx_fmt_e (amount > 0
7733                                         ? (do_post ? POST_INC : PRE_INC)
7734                                         : (do_post ? POST_DEC : PRE_DEC),
7735                                         Pmode, reg), 0))
7736     return 0;
7737
7738   /* Record that this insn now has an implicit side effect on X.  */
7739   REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, reg, REG_NOTES (insn));
7740   return 1;
7741 }
7742
7743 #endif /* AUTO_INC_DEC */
7744 \f
7745 /* Find the place in the rtx X where REG is used as a memory address.
7746    Return the MEM rtx that so uses it.
7747    If PLUSCONST is nonzero, search instead for a memory address equivalent to
7748    (plus REG (const_int PLUSCONST)).
7749
7750    If such an address does not appear, return 0.
7751    If REG appears more than once, or is used other than in such an address,
7752    return (rtx)1.  */
7753
7754 rtx
7755 find_use_as_address (x, reg, plusconst)
7756      register rtx x;
7757      rtx reg;
7758      HOST_WIDE_INT plusconst;
7759 {
7760   enum rtx_code code = GET_CODE (x);
7761   const char * const fmt = GET_RTX_FORMAT (code);
7762   register int i;
7763   register rtx value = 0;
7764   register rtx tem;
7765
7766   if (code == MEM && XEXP (x, 0) == reg && plusconst == 0)
7767     return x;
7768
7769   if (code == MEM && GET_CODE (XEXP (x, 0)) == PLUS
7770       && XEXP (XEXP (x, 0), 0) == reg
7771       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7772       && INTVAL (XEXP (XEXP (x, 0), 1)) == plusconst)
7773     return x;
7774
7775   if (code == SIGN_EXTRACT || code == ZERO_EXTRACT)
7776     {
7777       /* If REG occurs inside a MEM used in a bit-field reference,
7778          that is unacceptable.  */
7779       if (find_use_as_address (XEXP (x, 0), reg, 0) != 0)
7780         return (rtx) (HOST_WIDE_INT) 1;
7781     }
7782
7783   if (x == reg)
7784     return (rtx) (HOST_WIDE_INT) 1;
7785
7786   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7787     {
7788       if (fmt[i] == 'e')
7789         {
7790           tem = find_use_as_address (XEXP (x, i), reg, plusconst);
7791           if (value == 0)
7792             value = tem;
7793           else if (tem != 0)
7794             return (rtx) (HOST_WIDE_INT) 1;
7795         }
7796       else if (fmt[i] == 'E')
7797         {
7798           register int j;
7799           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
7800             {
7801               tem = find_use_as_address (XVECEXP (x, i, j), reg, plusconst);
7802               if (value == 0)
7803                 value = tem;
7804               else if (tem != 0)
7805                 return (rtx) (HOST_WIDE_INT) 1;
7806             }
7807         }
7808     }
7809
7810   return value;
7811 }
7812 \f
7813 /* Write information about registers and basic blocks into FILE.
7814    This is part of making a debugging dump.  */
7815
7816 void
7817 dump_regset (r, outf)
7818      regset r;
7819      FILE *outf;
7820 {
7821   int i;
7822   if (r == NULL)
7823     {
7824       fputs (" (nil)", outf);
7825       return;
7826     }
7827
7828   EXECUTE_IF_SET_IN_REG_SET (r, 0, i,
7829     {
7830       fprintf (outf, " %d", i);
7831       if (i < FIRST_PSEUDO_REGISTER)
7832         fprintf (outf, " [%s]",
7833                  reg_names[i]);
7834     });
7835 }
7836
7837 /* Print a human-reaable representation of R on the standard error
7838    stream.  This function is designed to be used from within the
7839    debugger.  */
7840
7841 void
7842 debug_regset (r)
7843      regset r;
7844 {
7845   dump_regset (r, stderr);
7846   putc ('\n', stderr);
7847 }
7848
7849 void
7850 dump_flow_info (file)
7851      FILE *file;
7852 {
7853   register int i;
7854   static const char * const reg_class_names[] = REG_CLASS_NAMES;
7855
7856   fprintf (file, "%d registers.\n", max_regno);
7857   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
7858     if (REG_N_REFS (i))
7859       {
7860         enum reg_class class, altclass;
7861         fprintf (file, "\nRegister %d used %d times across %d insns",
7862                  i, REG_N_REFS (i), REG_LIVE_LENGTH (i));
7863         if (REG_BASIC_BLOCK (i) >= 0)
7864           fprintf (file, " in block %d", REG_BASIC_BLOCK (i));
7865         if (REG_N_SETS (i))
7866           fprintf (file, "; set %d time%s", REG_N_SETS (i),
7867                    (REG_N_SETS (i) == 1) ? "" : "s");
7868         if (REG_USERVAR_P (regno_reg_rtx[i]))
7869           fprintf (file, "; user var");
7870         if (REG_N_DEATHS (i) != 1)
7871           fprintf (file, "; dies in %d places", REG_N_DEATHS (i));
7872         if (REG_N_CALLS_CROSSED (i) == 1)
7873           fprintf (file, "; crosses 1 call");
7874         else if (REG_N_CALLS_CROSSED (i))
7875           fprintf (file, "; crosses %d calls", REG_N_CALLS_CROSSED (i));
7876         if (PSEUDO_REGNO_BYTES (i) != UNITS_PER_WORD)
7877           fprintf (file, "; %d bytes", PSEUDO_REGNO_BYTES (i));
7878         class = reg_preferred_class (i);
7879         altclass = reg_alternate_class (i);
7880         if (class != GENERAL_REGS || altclass != ALL_REGS)
7881           {
7882             if (altclass == ALL_REGS || class == ALL_REGS)
7883               fprintf (file, "; pref %s", reg_class_names[(int) class]);
7884             else if (altclass == NO_REGS)
7885               fprintf (file, "; %s or none", reg_class_names[(int) class]);
7886             else
7887               fprintf (file, "; pref %s, else %s",
7888                        reg_class_names[(int) class],
7889                        reg_class_names[(int) altclass]);
7890           }
7891         if (REG_POINTER (regno_reg_rtx[i]))
7892           fprintf (file, "; pointer");
7893         fprintf (file, ".\n");
7894       }
7895
7896   fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks, n_edges);
7897   for (i = 0; i < n_basic_blocks; i++)
7898     {
7899       register basic_block bb = BASIC_BLOCK (i);
7900       register edge e;
7901
7902       fprintf (file, "\nBasic block %d: first insn %d, last %d, loop_depth %d, count ",
7903                i, INSN_UID (bb->head), INSN_UID (bb->end), bb->loop_depth);
7904       fprintf (file, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) bb->count);
7905       fprintf (file, ", freq %i.\n", bb->frequency);
7906
7907       fprintf (file, "Predecessors: ");
7908       for (e = bb->pred; e; e = e->pred_next)
7909         dump_edge_info (file, e, 0);
7910
7911       fprintf (file, "\nSuccessors: ");
7912       for (e = bb->succ; e; e = e->succ_next)
7913         dump_edge_info (file, e, 1);
7914
7915       fprintf (file, "\nRegisters live at start:");
7916       dump_regset (bb->global_live_at_start, file);
7917
7918       fprintf (file, "\nRegisters live at end:");
7919       dump_regset (bb->global_live_at_end, file);
7920
7921       putc ('\n', file);
7922     }
7923
7924   putc ('\n', file);
7925 }
7926
7927 void
7928 debug_flow_info ()
7929 {
7930   dump_flow_info (stderr);
7931 }
7932
7933 void
7934 dump_edge_info (file, e, do_succ)
7935      FILE *file;
7936      edge e;
7937      int do_succ;
7938 {
7939   basic_block side = (do_succ ? e->dest : e->src);
7940
7941   if (side == ENTRY_BLOCK_PTR)
7942     fputs (" ENTRY", file);
7943   else if (side == EXIT_BLOCK_PTR)
7944     fputs (" EXIT", file);
7945   else
7946     fprintf (file, " %d", side->index);
7947
7948   if (e->probability)
7949     fprintf (file, " [%.1f%%] ", e->probability * 100.0 / REG_BR_PROB_BASE);
7950
7951   if (e->count)
7952     {
7953       fprintf (file, " count:");
7954       fprintf (file, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) e->count);
7955     }
7956
7957   if (e->flags)
7958     {
7959       static const char * const bitnames[] = {
7960         "fallthru", "crit", "ab", "abcall", "eh", "fake", "dfs_back"
7961       };
7962       int comma = 0;
7963       int i, flags = e->flags;
7964
7965       fputc (' ', file);
7966       fputc ('(', file);
7967       for (i = 0; flags; i++)
7968         if (flags & (1 << i))
7969           {
7970             flags &= ~(1 << i);
7971
7972             if (comma)
7973               fputc (',', file);
7974             if (i < (int) ARRAY_SIZE (bitnames))
7975               fputs (bitnames[i], file);
7976             else
7977               fprintf (file, "%d", i);
7978             comma = 1;
7979           }
7980       fputc (')', file);
7981     }
7982 }
7983 \f
7984 /* Print out one basic block with live information at start and end.  */
7985
7986 void
7987 dump_bb (bb, outf)
7988      basic_block bb;
7989      FILE *outf;
7990 {
7991   rtx insn;
7992   rtx last;
7993   edge e;
7994
7995   fprintf (outf, ";; Basic block %d, loop depth %d, count ",
7996            bb->index, bb->loop_depth);
7997   fprintf (outf, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) bb->count);
7998   putc ('\n', outf);
7999
8000   fputs (";; Predecessors: ", outf);
8001   for (e = bb->pred; e; e = e->pred_next)
8002     dump_edge_info (outf, e, 0);
8003   putc ('\n', outf);
8004
8005   fputs (";; Registers live at start:", outf);
8006   dump_regset (bb->global_live_at_start, outf);
8007   putc ('\n', outf);
8008
8009   for (insn = bb->head, last = NEXT_INSN (bb->end);
8010        insn != last;
8011        insn = NEXT_INSN (insn))
8012     print_rtl_single (outf, insn);
8013
8014   fputs (";; Registers live at end:", outf);
8015   dump_regset (bb->global_live_at_end, outf);
8016   putc ('\n', outf);
8017
8018   fputs (";; Successors: ", outf);
8019   for (e = bb->succ; e; e = e->succ_next)
8020     dump_edge_info (outf, e, 1);
8021   putc ('\n', outf);
8022 }
8023
8024 void
8025 debug_bb (bb)
8026      basic_block bb;
8027 {
8028   dump_bb (bb, stderr);
8029 }
8030
8031 void
8032 debug_bb_n (n)
8033      int n;
8034 {
8035   dump_bb (BASIC_BLOCK (n), stderr);
8036 }
8037
8038 /* Like print_rtl, but also print out live information for the start of each
8039    basic block.  */
8040
8041 void
8042 print_rtl_with_bb (outf, rtx_first)
8043      FILE *outf;
8044      rtx rtx_first;
8045 {
8046   register rtx tmp_rtx;
8047
8048   if (rtx_first == 0)
8049     fprintf (outf, "(nil)\n");
8050   else
8051     {
8052       int i;
8053       enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
8054       int max_uid = get_max_uid ();
8055       basic_block *start = (basic_block *)
8056         xcalloc (max_uid, sizeof (basic_block));
8057       basic_block *end = (basic_block *)
8058         xcalloc (max_uid, sizeof (basic_block));
8059       enum bb_state *in_bb_p = (enum bb_state *)
8060         xcalloc (max_uid, sizeof (enum bb_state));
8061
8062       for (i = n_basic_blocks - 1; i >= 0; i--)
8063         {
8064           basic_block bb = BASIC_BLOCK (i);
8065           rtx x;
8066
8067           start[INSN_UID (bb->head)] = bb;
8068           end[INSN_UID (bb->end)] = bb;
8069           for (x = bb->head; x != NULL_RTX; x = NEXT_INSN (x))
8070             {
8071               enum bb_state state = IN_MULTIPLE_BB;
8072               if (in_bb_p[INSN_UID (x)] == NOT_IN_BB)
8073                 state = IN_ONE_BB;
8074               in_bb_p[INSN_UID (x)] = state;
8075
8076               if (x == bb->end)
8077                 break;
8078             }
8079         }
8080
8081       for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
8082         {
8083           int did_output;
8084           basic_block bb;
8085
8086           if ((bb = start[INSN_UID (tmp_rtx)]) != NULL)
8087             {
8088               fprintf (outf, ";; Start of basic block %d, registers live:",
8089                        bb->index);
8090               dump_regset (bb->global_live_at_start, outf);
8091               putc ('\n', outf);
8092             }
8093
8094           if (in_bb_p[INSN_UID (tmp_rtx)] == NOT_IN_BB
8095               && GET_CODE (tmp_rtx) != NOTE
8096               && GET_CODE (tmp_rtx) != BARRIER)
8097             fprintf (outf, ";; Insn is not within a basic block\n");
8098           else if (in_bb_p[INSN_UID (tmp_rtx)] == IN_MULTIPLE_BB)
8099             fprintf (outf, ";; Insn is in multiple basic blocks\n");
8100
8101           did_output = print_rtl_single (outf, tmp_rtx);
8102
8103           if ((bb = end[INSN_UID (tmp_rtx)]) != NULL)
8104             {
8105               fprintf (outf, ";; End of basic block %d, registers live:\n",
8106                        bb->index);
8107               dump_regset (bb->global_live_at_end, outf);
8108               putc ('\n', outf);
8109             }
8110
8111           if (did_output)
8112             putc ('\n', outf);
8113         }
8114
8115       free (start);
8116       free (end);
8117       free (in_bb_p);
8118     }
8119
8120   if (current_function_epilogue_delay_list != 0)
8121     {
8122       fprintf (outf, "\n;; Insns in epilogue delay list:\n\n");
8123       for (tmp_rtx = current_function_epilogue_delay_list; tmp_rtx != 0;
8124            tmp_rtx = XEXP (tmp_rtx, 1))
8125         print_rtl_single (outf, XEXP (tmp_rtx, 0));
8126     }
8127 }
8128
8129 /* Dump the rtl into the current debugging dump file, then abort.  */
8130
8131 static void
8132 print_rtl_and_abort_fcn (file, line, function)
8133      const char *file;
8134      int line;
8135      const char *function;
8136 {
8137   if (rtl_dump_file)
8138     {
8139       print_rtl_with_bb (rtl_dump_file, get_insns ());
8140       fclose (rtl_dump_file);
8141     }
8142
8143   fancy_abort (file, line, function);
8144 }
8145
8146 /* Recompute register set/reference counts immediately prior to register
8147    allocation.
8148
8149    This avoids problems with set/reference counts changing to/from values
8150    which have special meanings to the register allocators.
8151
8152    Additionally, the reference counts are the primary component used by the
8153    register allocators to prioritize pseudos for allocation to hard regs.
8154    More accurate reference counts generally lead to better register allocation.
8155
8156    F is the first insn to be scanned.
8157
8158    LOOP_STEP denotes how much loop_depth should be incremented per
8159    loop nesting level in order to increase the ref count more for
8160    references in a loop.
8161
8162    It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and
8163    possibly other information which is used by the register allocators.  */
8164
8165 void
8166 recompute_reg_usage (f, loop_step)
8167      rtx f ATTRIBUTE_UNUSED;
8168      int loop_step ATTRIBUTE_UNUSED;
8169 {
8170   allocate_reg_life_data ();
8171   update_life_info (NULL, UPDATE_LIFE_LOCAL, PROP_REG_INFO);
8172 }
8173
8174 /* Optionally removes all the REG_DEAD and REG_UNUSED notes from a set of
8175    blocks.  If BLOCKS is NULL, assume the universal set.  Returns a count
8176    of the number of registers that died.  */
8177
8178 int
8179 count_or_remove_death_notes (blocks, kill)
8180      sbitmap blocks;
8181      int kill;
8182 {
8183   int i, count = 0;
8184
8185   for (i = n_basic_blocks - 1; i >= 0; --i)
8186     {
8187       basic_block bb;
8188       rtx insn;
8189
8190       if (blocks && ! TEST_BIT (blocks, i))
8191         continue;
8192
8193       bb = BASIC_BLOCK (i);
8194
8195       for (insn = bb->head;; insn = NEXT_INSN (insn))
8196         {
8197           if (INSN_P (insn))
8198             {
8199               rtx *pprev = &REG_NOTES (insn);
8200               rtx link = *pprev;
8201
8202               while (link)
8203                 {
8204                   switch (REG_NOTE_KIND (link))
8205                     {
8206                     case REG_DEAD:
8207                       if (GET_CODE (XEXP (link, 0)) == REG)
8208                         {
8209                           rtx reg = XEXP (link, 0);
8210                           int n;
8211
8212                           if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
8213                             n = 1;
8214                           else
8215                             n = HARD_REGNO_NREGS (REGNO (reg), GET_MODE (reg));
8216                           count += n;
8217                         }
8218                       /* Fall through.  */
8219
8220                     case REG_UNUSED:
8221                       if (kill)
8222                         {
8223                           rtx next = XEXP (link, 1);
8224                           free_EXPR_LIST_node (link);
8225                           *pprev = link = next;
8226                           break;
8227                         }
8228                       /* Fall through.  */
8229
8230                     default:
8231                       pprev = &XEXP (link, 1);
8232                       link = *pprev;
8233                       break;
8234                     }
8235                 }
8236             }
8237
8238           if (insn == bb->end)
8239             break;
8240         }
8241     }
8242
8243   return count;
8244 }
8245
8246
8247 /* Update insns block within BB.  */
8248
8249 void
8250 update_bb_for_insn (bb)
8251      basic_block bb;
8252 {
8253   rtx insn;
8254
8255   if (! basic_block_for_insn)
8256     return;
8257
8258   for (insn = bb->head; ; insn = NEXT_INSN (insn))
8259     {
8260       set_block_for_insn (insn, bb);
8261
8262       if (insn == bb->end)
8263         break;
8264     }
8265 }
8266
8267
8268 /* Record INSN's block as BB.  */
8269
8270 void
8271 set_block_for_insn (insn, bb)
8272      rtx insn;
8273      basic_block bb;
8274 {
8275   size_t uid = INSN_UID (insn);
8276   if (uid >= basic_block_for_insn->num_elements)
8277     {
8278       int new_size;
8279
8280       /* Add one-eighth the size so we don't keep calling xrealloc.  */
8281       new_size = uid + (uid + 7) / 8;
8282
8283       VARRAY_GROW (basic_block_for_insn, new_size);
8284     }
8285   VARRAY_BB (basic_block_for_insn, uid) = bb;
8286 }
8287
8288 /* When a new insn has been inserted into an existing block, it will
8289    sometimes emit more than a single insn. This routine will set the
8290    block number for the specified insn, and look backwards in the insn
8291    chain to see if there are any other uninitialized insns immediately
8292    previous to this one, and set the block number for them too.  */
8293
8294 void
8295 set_block_for_new_insns (insn, bb)
8296      rtx insn;
8297      basic_block bb;
8298 {
8299   set_block_for_insn (insn, bb);
8300
8301   /* Scan the previous instructions setting the block number until we find
8302      an instruction that has the block number set, or we find a note
8303      of any kind.  */
8304   for (insn = PREV_INSN (insn); insn != NULL_RTX; insn = PREV_INSN (insn))
8305     {
8306       if (GET_CODE (insn) == NOTE)
8307         break;
8308       if ((unsigned) INSN_UID (insn) >= basic_block_for_insn->num_elements
8309           || BLOCK_FOR_INSN (insn) == 0)
8310         set_block_for_insn (insn, bb);
8311       else
8312         break;
8313     }
8314 }
8315 \f
8316 /* Verify the CFG consistency.  This function check some CFG invariants and
8317    aborts when something is wrong.  Hope that this function will help to
8318    convert many optimization passes to preserve CFG consistent.
8319
8320    Currently it does following checks:
8321
8322    - test head/end pointers
8323    - overlapping of basic blocks
8324    - edge list correctness
8325    - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
8326    - tails of basic blocks (ensure that boundary is necesary)
8327    - scans body of the basic block for JUMP_INSN, CODE_LABEL
8328      and NOTE_INSN_BASIC_BLOCK
8329    - check that all insns are in the basic blocks
8330    (except the switch handling code, barriers and notes)
8331    - check that all returns are followed by barriers
8332
8333    In future it can be extended check a lot of other stuff as well
8334    (reachability of basic blocks, life information, etc. etc.).  */
8335
8336 void
8337 verify_flow_info ()
8338 {
8339   const int max_uid = get_max_uid ();
8340   const rtx rtx_first = get_insns ();
8341   rtx last_head = get_last_insn ();
8342   basic_block *bb_info, *last_visited;
8343   rtx x;
8344   int i, last_bb_num_seen, num_bb_notes, err = 0;
8345
8346   bb_info = (basic_block *) xcalloc (max_uid, sizeof (basic_block));
8347   last_visited = (basic_block *) xcalloc (n_basic_blocks + 2,
8348                                           sizeof (basic_block));
8349
8350   for (i = n_basic_blocks - 1; i >= 0; i--)
8351     {
8352       basic_block bb = BASIC_BLOCK (i);
8353       rtx head = bb->head;
8354       rtx end = bb->end;
8355
8356       /* Verify the end of the basic block is in the INSN chain.  */
8357       for (x = last_head; x != NULL_RTX; x = PREV_INSN (x))
8358         if (x == end)
8359           break;
8360       if (!x)
8361         {
8362           error ("End insn %d for block %d not found in the insn stream.",
8363                  INSN_UID (end), bb->index);
8364           err = 1;
8365         }
8366
8367       /* Work backwards from the end to the head of the basic block
8368          to verify the head is in the RTL chain.  */
8369       for (; x != NULL_RTX; x = PREV_INSN (x))
8370         {
8371           /* While walking over the insn chain, verify insns appear
8372              in only one basic block and initialize the BB_INFO array
8373              used by other passes.  */
8374           if (bb_info[INSN_UID (x)] != NULL)
8375             {
8376               error ("Insn %d is in multiple basic blocks (%d and %d)",
8377                      INSN_UID (x), bb->index, bb_info[INSN_UID (x)]->index);
8378               err = 1;
8379             }
8380           bb_info[INSN_UID (x)] = bb;
8381
8382           if (x == head)
8383             break;
8384         }
8385       if (!x)
8386         {
8387           error ("Head insn %d for block %d not found in the insn stream.",
8388                  INSN_UID (head), bb->index);
8389           err = 1;
8390         }
8391
8392       last_head = x;
8393     }
8394
8395   /* Now check the basic blocks (boundaries etc.) */
8396   for (i = n_basic_blocks - 1; i >= 0; i--)
8397     {
8398       basic_block bb = BASIC_BLOCK (i);
8399       /* Check correctness of edge lists.  */
8400       edge e;
8401       int has_fallthru = 0;
8402
8403       e = bb->succ;
8404       while (e)
8405         {
8406           if (last_visited [e->dest->index + 2] == bb)
8407             {
8408               error ("verify_flow_info: Duplicate edge %i->%i",
8409                      e->src->index, e->dest->index);
8410               err = 1;
8411             }
8412           last_visited [e->dest->index + 2] = bb;
8413
8414           if (e->flags & EDGE_FALLTHRU)
8415             has_fallthru = 1;
8416
8417           if ((e->flags & EDGE_FALLTHRU)
8418               && e->src != ENTRY_BLOCK_PTR
8419               && e->dest != EXIT_BLOCK_PTR)
8420             {
8421               rtx insn;
8422               if (e->src->index + 1 != e->dest->index)
8423                 {
8424                     error ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
8425                            e->src->index, e->dest->index);
8426                     err = 1;
8427                 }
8428               else
8429                 for (insn = NEXT_INSN (e->src->end); insn != e->dest->head;
8430                      insn = NEXT_INSN (insn))
8431                   if (GET_CODE (insn) == BARRIER || INSN_P (insn))
8432                     {
8433                       error ("verify_flow_info: Incorrect fallthru %i->%i",
8434                              e->src->index, e->dest->index);
8435                       fatal_insn ("Wrong insn in the fallthru edge", insn);
8436                       err = 1;
8437                     }
8438             }
8439           if (e->src != bb)
8440             {
8441               error ("verify_flow_info: Basic block %d succ edge is corrupted",
8442                      bb->index);
8443               fprintf (stderr, "Predecessor: ");
8444               dump_edge_info (stderr, e, 0);
8445               fprintf (stderr, "\nSuccessor: ");
8446               dump_edge_info (stderr, e, 1);
8447               fprintf (stderr, "\n");
8448               err = 1;
8449             }
8450           if (e->dest != EXIT_BLOCK_PTR)
8451             {
8452               edge e2 = e->dest->pred;
8453               while (e2 && e2 != e)
8454                 e2 = e2->pred_next;
8455               if (!e2)
8456                 {
8457                   error ("Basic block %i edge lists are corrupted", bb->index);
8458                   err = 1;
8459                 }
8460             }
8461           e = e->succ_next;
8462         }
8463       if (!has_fallthru)
8464         {
8465           rtx insn = bb->end;
8466
8467           /* Ensure existence of barrier in BB with no fallthru edges.  */
8468           for (insn = bb->end; GET_CODE (insn) != BARRIER;
8469                insn = NEXT_INSN (insn))
8470             if (!insn
8471                 || (GET_CODE (insn) == NOTE
8472                     && NOTE_LINE_NUMBER (insn) == NOTE_INSN_BASIC_BLOCK))
8473                 {
8474                   error ("Missing barrier after block %i", bb->index);
8475                   err = 1;
8476                 }
8477         }
8478
8479       e = bb->pred;
8480       while (e)
8481         {
8482           if (e->dest != bb)
8483             {
8484               error ("Basic block %d pred edge is corrupted", bb->index);
8485               fputs ("Predecessor: ", stderr);
8486               dump_edge_info (stderr, e, 0);
8487               fputs ("\nSuccessor: ", stderr);
8488               dump_edge_info (stderr, e, 1);
8489               fputc ('\n', stderr);
8490               err = 1;
8491             }
8492           if (e->src != ENTRY_BLOCK_PTR)
8493             {
8494               edge e2 = e->src->succ;
8495               while (e2 && e2 != e)
8496                 e2 = e2->succ_next;
8497               if (!e2)
8498                 {
8499                   error ("Basic block %i edge lists are corrupted", bb->index);
8500                   err = 1;
8501                 }
8502             }
8503           e = e->pred_next;
8504         }
8505
8506       /* OK pointers are correct.  Now check the header of basic
8507          block.  It ought to contain optional CODE_LABEL followed
8508          by NOTE_BASIC_BLOCK.  */
8509       x = bb->head;
8510       if (GET_CODE (x) == CODE_LABEL)
8511         {
8512           if (bb->end == x)
8513             {
8514               error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
8515                      bb->index);
8516               err = 1;
8517             }
8518           x = NEXT_INSN (x);
8519         }
8520       if (!NOTE_INSN_BASIC_BLOCK_P (x) || NOTE_BASIC_BLOCK (x) != bb)
8521         {
8522           error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
8523                  bb->index);
8524           err = 1;
8525         }
8526
8527       if (bb->end == x)
8528         {
8529           /* Do checks for empty blocks here */
8530         }
8531       else
8532         {
8533           x = NEXT_INSN (x);
8534           while (x)
8535             {
8536               if (NOTE_INSN_BASIC_BLOCK_P (x))
8537                 {
8538                   error ("NOTE_INSN_BASIC_BLOCK %d in the middle of basic block %d",
8539                          INSN_UID (x), bb->index);
8540                   err = 1;
8541                 }
8542
8543               if (x == bb->end)
8544                 break;
8545
8546               if (GET_CODE (x) == JUMP_INSN
8547                   || GET_CODE (x) == CODE_LABEL
8548                   || GET_CODE (x) == BARRIER)
8549                 {
8550                   error ("In basic block %d:", bb->index);
8551                   fatal_insn ("Flow control insn inside a basic block", x);
8552                 }
8553
8554               x = NEXT_INSN (x);
8555             }
8556         }
8557     }
8558
8559   last_bb_num_seen = -1;
8560   num_bb_notes = 0;
8561   x = rtx_first;
8562   while (x)
8563     {
8564       if (NOTE_INSN_BASIC_BLOCK_P (x))
8565         {
8566           basic_block bb = NOTE_BASIC_BLOCK (x);
8567           num_bb_notes++;
8568           if (bb->index != last_bb_num_seen + 1)
8569             internal_error ("Basic blocks not numbered consecutively.");
8570
8571           last_bb_num_seen = bb->index;
8572         }
8573
8574       if (!bb_info[INSN_UID (x)])
8575         {
8576           switch (GET_CODE (x))
8577             {
8578             case BARRIER:
8579             case NOTE:
8580               break;
8581
8582             case CODE_LABEL:
8583               /* An addr_vec is placed outside any block block.  */
8584               if (NEXT_INSN (x)
8585                   && GET_CODE (NEXT_INSN (x)) == JUMP_INSN
8586                   && (GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_DIFF_VEC
8587                       || GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_VEC))
8588                 {
8589                   x = NEXT_INSN (x);
8590                 }
8591
8592               /* But in any case, non-deletable labels can appear anywhere.  */
8593               break;
8594
8595             default:
8596               fatal_insn ("Insn outside basic block", x);
8597             }
8598         }
8599
8600       if (INSN_P (x)
8601           && GET_CODE (x) == JUMP_INSN
8602           && returnjump_p (x) && ! condjump_p (x)
8603           && ! (NEXT_INSN (x) && GET_CODE (NEXT_INSN (x)) == BARRIER))
8604             fatal_insn ("Return not followed by barrier", x);
8605
8606       x = NEXT_INSN (x);
8607     }
8608
8609   if (num_bb_notes != n_basic_blocks)
8610     internal_error
8611       ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
8612        num_bb_notes, n_basic_blocks);
8613
8614   if (err)
8615     internal_error ("verify_flow_info failed.");
8616
8617   /* Clean up.  */
8618   free (bb_info);
8619   free (last_visited);
8620 }
8621 \f
8622 /* Functions to access an edge list with a vector representation.
8623    Enough data is kept such that given an index number, the
8624    pred and succ that edge represents can be determined, or
8625    given a pred and a succ, its index number can be returned.
8626    This allows algorithms which consume a lot of memory to
8627    represent the normally full matrix of edge (pred,succ) with a
8628    single indexed vector,  edge (EDGE_INDEX (pred, succ)), with no
8629    wasted space in the client code due to sparse flow graphs.  */
8630
8631 /* This functions initializes the edge list. Basically the entire
8632    flowgraph is processed, and all edges are assigned a number,
8633    and the data structure is filled in.  */
8634
8635 struct edge_list *
8636 create_edge_list ()
8637 {
8638   struct edge_list *elist;
8639   edge e;
8640   int num_edges;
8641   int x;
8642   int block_count;
8643
8644   block_count = n_basic_blocks + 2;   /* Include the entry and exit blocks.  */
8645
8646   num_edges = 0;
8647
8648   /* Determine the number of edges in the flow graph by counting successor
8649      edges on each basic block.  */
8650   for (x = 0; x < n_basic_blocks; x++)
8651     {
8652       basic_block bb = BASIC_BLOCK (x);
8653
8654       for (e = bb->succ; e; e = e->succ_next)
8655         num_edges++;
8656     }
8657   /* Don't forget successors of the entry block.  */
8658   for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
8659     num_edges++;
8660
8661   elist = (struct edge_list *) xmalloc (sizeof (struct edge_list));
8662   elist->num_blocks = block_count;
8663   elist->num_edges = num_edges;
8664   elist->index_to_edge = (edge *) xmalloc (sizeof (edge) * num_edges);
8665
8666   num_edges = 0;
8667
8668   /* Follow successors of the entry block, and register these edges.  */
8669   for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
8670     {
8671       elist->index_to_edge[num_edges] = e;
8672       num_edges++;
8673     }
8674
8675   for (x = 0; x < n_basic_blocks; x++)
8676     {
8677       basic_block bb = BASIC_BLOCK (x);
8678
8679       /* Follow all successors of blocks, and register these edges.  */
8680       for (e = bb->succ; e; e = e->succ_next)
8681         {
8682           elist->index_to_edge[num_edges] = e;
8683           num_edges++;
8684         }
8685     }
8686   return elist;
8687 }
8688
8689 /* This function free's memory associated with an edge list.  */
8690
8691 void
8692 free_edge_list (elist)
8693      struct edge_list *elist;
8694 {
8695   if (elist)
8696     {
8697       free (elist->index_to_edge);
8698       free (elist);
8699     }
8700 }
8701
8702 /* This function provides debug output showing an edge list.  */
8703
8704 void
8705 print_edge_list (f, elist)
8706      FILE *f;
8707      struct edge_list *elist;
8708 {
8709   int x;
8710   fprintf (f, "Compressed edge list, %d BBs + entry & exit, and %d edges\n",
8711            elist->num_blocks - 2, elist->num_edges);
8712
8713   for (x = 0; x < elist->num_edges; x++)
8714     {
8715       fprintf (f, " %-4d - edge(", x);
8716       if (INDEX_EDGE_PRED_BB (elist, x) == ENTRY_BLOCK_PTR)
8717         fprintf (f, "entry,");
8718       else
8719         fprintf (f, "%d,", INDEX_EDGE_PRED_BB (elist, x)->index);
8720
8721       if (INDEX_EDGE_SUCC_BB (elist, x) == EXIT_BLOCK_PTR)
8722         fprintf (f, "exit)\n");
8723       else
8724         fprintf (f, "%d)\n", INDEX_EDGE_SUCC_BB (elist, x)->index);
8725     }
8726 }
8727
8728 /* This function provides an internal consistency check of an edge list,
8729    verifying that all edges are present, and that there are no
8730    extra edges.  */
8731
8732 void
8733 verify_edge_list (f, elist)
8734      FILE *f;
8735      struct edge_list *elist;
8736 {
8737   int x, pred, succ, index;
8738   edge e;
8739
8740   for (x = 0; x < n_basic_blocks; x++)
8741     {
8742       basic_block bb = BASIC_BLOCK (x);
8743
8744       for (e = bb->succ; e; e = e->succ_next)
8745         {
8746           pred = e->src->index;
8747           succ = e->dest->index;
8748           index = EDGE_INDEX (elist, e->src, e->dest);
8749           if (index == EDGE_INDEX_NO_EDGE)
8750             {
8751               fprintf (f, "*p* No index for edge from %d to %d\n", pred, succ);
8752               continue;
8753             }
8754           if (INDEX_EDGE_PRED_BB (elist, index)->index != pred)
8755             fprintf (f, "*p* Pred for index %d should be %d not %d\n",
8756                      index, pred, INDEX_EDGE_PRED_BB (elist, index)->index);
8757           if (INDEX_EDGE_SUCC_BB (elist, index)->index != succ)
8758             fprintf (f, "*p* Succ for index %d should be %d not %d\n",
8759                      index, succ, INDEX_EDGE_SUCC_BB (elist, index)->index);
8760         }
8761     }
8762   for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next)
8763     {
8764       pred = e->src->index;
8765       succ = e->dest->index;
8766       index = EDGE_INDEX (elist, e->src, e->dest);
8767       if (index == EDGE_INDEX_NO_EDGE)
8768         {
8769           fprintf (f, "*p* No index for edge from %d to %d\n", pred, succ);
8770           continue;
8771         }
8772       if (INDEX_EDGE_PRED_BB (elist, index)->index != pred)
8773         fprintf (f, "*p* Pred for index %d should be %d not %d\n",
8774                  index, pred, INDEX_EDGE_PRED_BB (elist, index)->index);
8775       if (INDEX_EDGE_SUCC_BB (elist, index)->index != succ)
8776         fprintf (f, "*p* Succ for index %d should be %d not %d\n",
8777                  index, succ, INDEX_EDGE_SUCC_BB (elist, index)->index);
8778     }
8779   /* We've verified that all the edges are in the list, no lets make sure
8780      there are no spurious edges in the list.  */
8781
8782   for (pred = 0; pred < n_basic_blocks; pred++)
8783     for (succ = 0; succ < n_basic_blocks; succ++)
8784       {
8785         basic_block p = BASIC_BLOCK (pred);
8786         basic_block s = BASIC_BLOCK (succ);
8787
8788         int found_edge = 0;
8789
8790         for (e = p->succ; e; e = e->succ_next)
8791           if (e->dest == s)
8792             {
8793               found_edge = 1;
8794               break;
8795             }
8796         for (e = s->pred; e; e = e->pred_next)
8797           if (e->src == p)
8798             {
8799               found_edge = 1;
8800               break;
8801             }
8802         if (EDGE_INDEX (elist, BASIC_BLOCK (pred), BASIC_BLOCK (succ))
8803             == EDGE_INDEX_NO_EDGE && found_edge != 0)
8804           fprintf (f, "*** Edge (%d, %d) appears to not have an index\n",
8805                    pred, succ);
8806         if (EDGE_INDEX (elist, BASIC_BLOCK (pred), BASIC_BLOCK (succ))
8807             != EDGE_INDEX_NO_EDGE && found_edge == 0)
8808           fprintf (f, "*** Edge (%d, %d) has index %d, but there is no edge\n",
8809                    pred, succ, EDGE_INDEX (elist, BASIC_BLOCK (pred),
8810                                            BASIC_BLOCK (succ)));
8811       }
8812   for (succ = 0; succ < n_basic_blocks; succ++)
8813     {
8814       basic_block p = ENTRY_BLOCK_PTR;
8815       basic_block s = BASIC_BLOCK (succ);
8816
8817       int found_edge = 0;
8818
8819       for (e = p->succ; e; e = e->succ_next)
8820         if (e->dest == s)
8821           {
8822             found_edge = 1;
8823             break;
8824           }
8825       for (e = s->pred; e; e = e->pred_next)
8826         if (e->src == p)
8827           {
8828             found_edge = 1;
8829             break;
8830           }
8831       if (EDGE_INDEX (elist, ENTRY_BLOCK_PTR, BASIC_BLOCK (succ))
8832           == EDGE_INDEX_NO_EDGE && found_edge != 0)
8833         fprintf (f, "*** Edge (entry, %d) appears to not have an index\n",
8834                  succ);
8835       if (EDGE_INDEX (elist, ENTRY_BLOCK_PTR, BASIC_BLOCK (succ))
8836           != EDGE_INDEX_NO_EDGE && found_edge == 0)
8837         fprintf (f, "*** Edge (entry, %d) has index %d, but no edge exists\n",
8838                  succ, EDGE_INDEX (elist, ENTRY_BLOCK_PTR,
8839                                    BASIC_BLOCK (succ)));
8840     }
8841   for (pred = 0; pred < n_basic_blocks; pred++)
8842     {
8843       basic_block p = BASIC_BLOCK (pred);
8844       basic_block s = EXIT_BLOCK_PTR;
8845
8846       int found_edge = 0;
8847
8848       for (e = p->succ; e; e = e->succ_next)
8849         if (e->dest == s)
8850           {
8851             found_edge = 1;
8852             break;
8853           }
8854       for (e = s->pred; e; e = e->pred_next)
8855         if (e->src == p)
8856           {
8857             found_edge = 1;
8858             break;
8859           }
8860       if (EDGE_INDEX (elist, BASIC_BLOCK (pred), EXIT_BLOCK_PTR)
8861           == EDGE_INDEX_NO_EDGE && found_edge != 0)
8862         fprintf (f, "*** Edge (%d, exit) appears to not have an index\n",
8863                  pred);
8864       if (EDGE_INDEX (elist, BASIC_BLOCK (pred), EXIT_BLOCK_PTR)
8865           != EDGE_INDEX_NO_EDGE && found_edge == 0)
8866         fprintf (f, "*** Edge (%d, exit) has index %d, but no edge exists\n",
8867                  pred, EDGE_INDEX (elist, BASIC_BLOCK (pred),
8868                                    EXIT_BLOCK_PTR));
8869     }
8870 }
8871
8872 /* This routine will determine what, if any, edge there is between
8873    a specified predecessor and successor.  */
8874
8875 int
8876 find_edge_index (edge_list, pred, succ)
8877      struct edge_list *edge_list;
8878      basic_block pred, succ;
8879 {
8880   int x;
8881   for (x = 0; x < NUM_EDGES (edge_list); x++)
8882     {
8883       if (INDEX_EDGE_PRED_BB (edge_list, x) == pred
8884           && INDEX_EDGE_SUCC_BB (edge_list, x) == succ)
8885         return x;
8886     }
8887   return (EDGE_INDEX_NO_EDGE);
8888 }
8889
8890 /* This function will remove an edge from the flow graph.  */
8891
8892 void
8893 remove_edge (e)
8894      edge e;
8895 {
8896   edge last_pred = NULL;
8897   edge last_succ = NULL;
8898   edge tmp;
8899   basic_block src, dest;
8900   src = e->src;
8901   dest = e->dest;
8902   for (tmp = src->succ; tmp && tmp != e; tmp = tmp->succ_next)
8903     last_succ = tmp;
8904
8905   if (!tmp)
8906     abort ();
8907   if (last_succ)
8908     last_succ->succ_next = e->succ_next;
8909   else
8910     src->succ = e->succ_next;
8911
8912   for (tmp = dest->pred; tmp && tmp != e; tmp = tmp->pred_next)
8913     last_pred = tmp;
8914
8915   if (!tmp)
8916     abort ();
8917   if (last_pred)
8918     last_pred->pred_next = e->pred_next;
8919   else
8920     dest->pred = e->pred_next;
8921
8922   n_edges--;
8923   free (e);
8924 }
8925
8926 /* This routine will remove any fake successor edges for a basic block.
8927    When the edge is removed, it is also removed from whatever predecessor
8928    list it is in.  */
8929
8930 static void
8931 remove_fake_successors (bb)
8932      basic_block bb;
8933 {
8934   edge e;
8935   for (e = bb->succ; e;)
8936     {
8937       edge tmp = e;
8938       e = e->succ_next;
8939       if ((tmp->flags & EDGE_FAKE) == EDGE_FAKE)
8940         remove_edge (tmp);
8941     }
8942 }
8943
8944 /* This routine will remove all fake edges from the flow graph.  If
8945    we remove all fake successors, it will automatically remove all
8946    fake predecessors.  */
8947
8948 void
8949 remove_fake_edges ()
8950 {
8951   int x;
8952
8953   for (x = 0; x < n_basic_blocks; x++)
8954     remove_fake_successors (BASIC_BLOCK (x));
8955
8956   /* We've handled all successors except the entry block's.  */
8957   remove_fake_successors (ENTRY_BLOCK_PTR);
8958 }
8959
8960 /* This function will add a fake edge between any block which has no
8961    successors, and the exit block. Some data flow equations require these
8962    edges to exist.  */
8963
8964 void
8965 add_noreturn_fake_exit_edges ()
8966 {
8967   int x;
8968
8969   for (x = 0; x < n_basic_blocks; x++)
8970     if (BASIC_BLOCK (x)->succ == NULL)
8971       make_edge (NULL, BASIC_BLOCK (x), EXIT_BLOCK_PTR, EDGE_FAKE);
8972 }
8973
8974 /* This function adds a fake edge between any infinite loops to the
8975    exit block.  Some optimizations require a path from each node to
8976    the exit node.
8977
8978    See also Morgan, Figure 3.10, pp. 82-83.
8979
8980    The current implementation is ugly, not attempting to minimize the
8981    number of inserted fake edges.  To reduce the number of fake edges
8982    to insert, add fake edges from _innermost_ loops containing only
8983    nodes not reachable from the exit block.  */
8984
8985 void
8986 connect_infinite_loops_to_exit ()
8987 {
8988   basic_block unvisited_block;
8989
8990   /* Perform depth-first search in the reverse graph to find nodes
8991      reachable from the exit block.  */
8992   struct depth_first_search_dsS dfs_ds;
8993
8994   flow_dfs_compute_reverse_init (&dfs_ds);
8995   flow_dfs_compute_reverse_add_bb (&dfs_ds, EXIT_BLOCK_PTR);
8996
8997   /* Repeatedly add fake edges, updating the unreachable nodes.  */
8998   while (1)
8999     {
9000       unvisited_block = flow_dfs_compute_reverse_execute (&dfs_ds);
9001       if (!unvisited_block)
9002         break;
9003       make_edge (NULL, unvisited_block, EXIT_BLOCK_PTR, EDGE_FAKE);
9004       flow_dfs_compute_reverse_add_bb (&dfs_ds, unvisited_block);
9005     }
9006
9007   flow_dfs_compute_reverse_finish (&dfs_ds);
9008
9009   return;
9010 }
9011
9012 /* Redirect an edge's successor from one block to another.  */
9013
9014 void
9015 redirect_edge_succ (e, new_succ)
9016      edge e;
9017      basic_block new_succ;
9018 {
9019   edge *pe;
9020
9021   /* Disconnect the edge from the old successor block.  */
9022   for (pe = &e->dest->pred; *pe != e; pe = &(*pe)->pred_next)
9023     continue;
9024   *pe = (*pe)->pred_next;
9025
9026   /* Reconnect the edge to the new successor block.  */
9027   e->pred_next = new_succ->pred;
9028   new_succ->pred = e;
9029   e->dest = new_succ;
9030 }
9031
9032 /* Like previous but avoid possible dupplicate edge.  */
9033
9034 void
9035 redirect_edge_succ_nodup (e, new_succ)
9036      edge e;
9037      basic_block new_succ;
9038 {
9039   edge s;
9040   /* Check whether the edge is already present.  */
9041   for (s = e->src->succ; s; s = s->succ_next)
9042     if (s->dest == new_succ && s != e)
9043       break;
9044   if (s)
9045     {
9046       s->flags |= e->flags;
9047       s->probability += e->probability;
9048       s->count += e->count;
9049       remove_edge (e);
9050     }
9051   else
9052     redirect_edge_succ (e, new_succ);
9053 }
9054
9055 /* Redirect an edge's predecessor from one block to another.  */
9056
9057 void
9058 redirect_edge_pred (e, new_pred)
9059      edge e;
9060      basic_block new_pred;
9061 {
9062   edge *pe;
9063
9064   /* Disconnect the edge from the old predecessor block.  */
9065   for (pe = &e->src->succ; *pe != e; pe = &(*pe)->succ_next)
9066     continue;
9067   *pe = (*pe)->succ_next;
9068
9069   /* Reconnect the edge to the new predecessor block.  */
9070   e->succ_next = new_pred->succ;
9071   new_pred->succ = e;
9072   e->src = new_pred;
9073 }
9074 \f
9075 /* Dump the list of basic blocks in the bitmap NODES.  */
9076
9077 static void
9078 flow_nodes_print (str, nodes, file)
9079      const char *str;
9080      const sbitmap nodes;
9081      FILE *file;
9082 {
9083   int node;
9084
9085   if (! nodes)
9086     return;
9087
9088   fprintf (file, "%s { ", str);
9089   EXECUTE_IF_SET_IN_SBITMAP (nodes, 0, node, {fprintf (file, "%d ", node);});
9090   fputs ("}\n", file);
9091 }
9092
9093
9094 /* Dump the list of edges in the array EDGE_LIST.  */
9095
9096 static void
9097 flow_edge_list_print (str, edge_list, num_edges, file)
9098      const char *str;
9099      const edge *edge_list;
9100      int num_edges;
9101      FILE *file;
9102 {
9103   int i;
9104
9105   if (! edge_list)
9106     return;
9107
9108   fprintf (file, "%s { ", str);
9109   for (i = 0; i < num_edges; i++)
9110     fprintf (file, "%d->%d ", edge_list[i]->src->index,
9111              edge_list[i]->dest->index);
9112   fputs ("}\n", file);
9113 }
9114
9115
9116 /* Dump loop related CFG information.  */
9117
9118 static void
9119 flow_loops_cfg_dump (loops, file)
9120      const struct loops *loops;
9121      FILE *file;
9122 {
9123   int i;
9124
9125   if (! loops->num || ! file || ! loops->cfg.dom)
9126     return;
9127
9128   for (i = 0; i < n_basic_blocks; i++)
9129     {
9130       edge succ;
9131
9132       fprintf (file, ";; %d succs { ", i);
9133       for (succ = BASIC_BLOCK (i)->succ; succ; succ = succ->succ_next)
9134         fprintf (file, "%d ", succ->dest->index);
9135       flow_nodes_print ("} dom", loops->cfg.dom[i], file);
9136     }
9137
9138   /* Dump the DFS node order.  */
9139   if (loops->cfg.dfs_order)
9140     {
9141       fputs (";; DFS order: ", file);
9142       for (i = 0; i < n_basic_blocks; i++)
9143         fprintf (file, "%d ", loops->cfg.dfs_order[i]);
9144       fputs ("\n", file);
9145     }
9146   /* Dump the reverse completion node order.  */
9147   if (loops->cfg.rc_order)
9148     {
9149       fputs (";; RC order: ", file);
9150       for (i = 0; i < n_basic_blocks; i++)
9151         fprintf (file, "%d ", loops->cfg.rc_order[i]);
9152       fputs ("\n", file);
9153     }
9154 }
9155
9156 /* Return non-zero if the nodes of LOOP are a subset of OUTER.  */
9157
9158 static int
9159 flow_loop_nested_p (outer, loop)
9160      struct loop *outer;
9161      struct loop *loop;
9162 {
9163   return sbitmap_a_subset_b_p (loop->nodes, outer->nodes);
9164 }
9165
9166
9167 /* Dump the loop information specified by LOOP to the stream FILE
9168    using auxiliary dump callback function LOOP_DUMP_AUX if non null.  */
9169 void
9170 flow_loop_dump (loop, file, loop_dump_aux, verbose)
9171      const struct loop *loop;
9172      FILE *file;
9173      void (*loop_dump_aux) PARAMS((const struct loop *, FILE *, int));
9174      int verbose;
9175 {
9176   if (! loop || ! loop->header)
9177     return;
9178
9179   fprintf (file, ";;\n;; Loop %d (%d to %d):%s%s\n",
9180            loop->num, INSN_UID (loop->first->head),
9181            INSN_UID (loop->last->end),
9182            loop->shared ? " shared" : "",
9183            loop->invalid ? " invalid" : "");
9184   fprintf (file, ";;  header %d, latch %d, pre-header %d, first %d, last %d\n",
9185            loop->header->index, loop->latch->index,
9186            loop->pre_header ? loop->pre_header->index : -1,
9187            loop->first->index, loop->last->index);
9188   fprintf (file, ";;  depth %d, level %d, outer %ld\n",
9189            loop->depth, loop->level,
9190            (long) (loop->outer ? loop->outer->num : -1));
9191
9192   if (loop->pre_header_edges)
9193     flow_edge_list_print (";;  pre-header edges", loop->pre_header_edges,
9194                           loop->num_pre_header_edges, file);
9195   flow_edge_list_print (";;  entry edges", loop->entry_edges,
9196                         loop->num_entries, file);
9197   fprintf (file, ";;  %d", loop->num_nodes);
9198   flow_nodes_print (" nodes", loop->nodes, file);
9199   flow_edge_list_print (";;  exit edges", loop->exit_edges,
9200                         loop->num_exits, file);
9201   if (loop->exits_doms)
9202     flow_nodes_print (";;  exit doms", loop->exits_doms, file);
9203   if (loop_dump_aux)
9204     loop_dump_aux (loop, file, verbose);
9205 }
9206
9207
9208 /* Dump the loop information specified by LOOPS to the stream FILE,
9209    using auxiliary dump callback function LOOP_DUMP_AUX if non null.  */
9210 void
9211 flow_loops_dump (loops, file, loop_dump_aux, verbose)
9212      const struct loops *loops;
9213      FILE *file;
9214      void (*loop_dump_aux) PARAMS((const struct loop *, FILE *, int));
9215      int verbose;
9216 {
9217   int i;
9218   int num_loops;
9219
9220   num_loops = loops->num;
9221   if (! num_loops || ! file)
9222     return;
9223
9224   fprintf (file, ";; %d loops found, %d levels\n",
9225            num_loops, loops->levels);
9226
9227   for (i = 0; i < num_loops; i++)
9228     {
9229       struct loop *loop = &loops->array[i];
9230
9231       flow_loop_dump (loop, file, loop_dump_aux, verbose);
9232
9233       if (loop->shared)
9234         {
9235           int j;
9236
9237           for (j = 0; j < i; j++)
9238             {
9239               struct loop *oloop = &loops->array[j];
9240
9241               if (loop->header == oloop->header)
9242                 {
9243                   int disjoint;
9244                   int smaller;
9245
9246                   smaller = loop->num_nodes < oloop->num_nodes;
9247
9248                   /* If the union of LOOP and OLOOP is different than
9249                      the larger of LOOP and OLOOP then LOOP and OLOOP
9250                      must be disjoint.  */
9251                   disjoint = ! flow_loop_nested_p (smaller ? loop : oloop,
9252                                                    smaller ? oloop : loop);
9253                   fprintf (file,
9254                            ";; loop header %d shared by loops %d, %d %s\n",
9255                            loop->header->index, i, j,
9256                            disjoint ? "disjoint" : "nested");
9257                 }
9258             }
9259         }
9260     }
9261
9262   if (verbose)
9263     flow_loops_cfg_dump (loops, file);
9264 }
9265
9266
9267 /* Free all the memory allocated for LOOPS.  */
9268
9269 void
9270 flow_loops_free (loops)
9271      struct loops *loops;
9272 {
9273   if (loops->array)
9274     {
9275       int i;
9276
9277       if (! loops->num)
9278         abort ();
9279
9280       /* Free the loop descriptors.  */
9281       for (i = 0; i < loops->num; i++)
9282         {
9283           struct loop *loop = &loops->array[i];
9284
9285           if (loop->pre_header_edges)
9286             free (loop->pre_header_edges);
9287           if (loop->nodes)
9288             sbitmap_free (loop->nodes);
9289           if (loop->entry_edges)
9290             free (loop->entry_edges);
9291           if (loop->exit_edges)
9292             free (loop->exit_edges);
9293           if (loop->exits_doms)
9294             sbitmap_free (loop->exits_doms);
9295         }
9296       free (loops->array);
9297       loops->array = NULL;
9298
9299       if (loops->cfg.dom)
9300         sbitmap_vector_free (loops->cfg.dom);
9301       if (loops->cfg.dfs_order)
9302         free (loops->cfg.dfs_order);
9303
9304       if (loops->shared_headers)
9305         sbitmap_free (loops->shared_headers);
9306     }
9307 }
9308
9309
9310 /* Find the entry edges into the loop with header HEADER and nodes
9311    NODES and store in ENTRY_EDGES array.  Return the number of entry
9312    edges from the loop.  */
9313
9314 static int
9315 flow_loop_entry_edges_find (header, nodes, entry_edges)
9316      basic_block header;
9317      const sbitmap nodes;
9318      edge **entry_edges;
9319 {
9320   edge e;
9321   int num_entries;
9322
9323   *entry_edges = NULL;
9324
9325   num_entries = 0;
9326   for (e = header->pred; e; e = e->pred_next)
9327     {
9328       basic_block src = e->src;
9329
9330       if (src == ENTRY_BLOCK_PTR || ! TEST_BIT (nodes, src->index))
9331         num_entries++;
9332     }
9333
9334   if (! num_entries)
9335     abort ();
9336
9337   *entry_edges = (edge *) xmalloc (num_entries * sizeof (edge *));
9338
9339   num_entries = 0;
9340   for (e = header->pred; e; e = e->pred_next)
9341     {
9342       basic_block src = e->src;
9343
9344       if (src == ENTRY_BLOCK_PTR || ! TEST_BIT (nodes, src->index))
9345         (*entry_edges)[num_entries++] = e;
9346     }
9347
9348   return num_entries;
9349 }
9350
9351
9352 /* Find the exit edges from the loop using the bitmap of loop nodes
9353    NODES and store in EXIT_EDGES array.  Return the number of
9354    exit edges from the loop.  */
9355
9356 static int
9357 flow_loop_exit_edges_find (nodes, exit_edges)
9358      const sbitmap nodes;
9359      edge **exit_edges;
9360 {
9361   edge e;
9362   int node;
9363   int num_exits;
9364
9365   *exit_edges = NULL;
9366
9367   /* Check all nodes within the loop to see if there are any
9368      successors not in the loop.  Note that a node may have multiple
9369      exiting edges ?????  A node can have one jumping edge and one fallthru
9370      edge so only one of these can exit the loop.  */
9371   num_exits = 0;
9372   EXECUTE_IF_SET_IN_SBITMAP (nodes, 0, node, {
9373     for (e = BASIC_BLOCK (node)->succ; e; e = e->succ_next)
9374       {
9375         basic_block dest = e->dest;
9376
9377         if (dest == EXIT_BLOCK_PTR || ! TEST_BIT (nodes, dest->index))
9378             num_exits++;
9379       }
9380   });
9381
9382   if (! num_exits)
9383     return 0;
9384
9385   *exit_edges = (edge *) xmalloc (num_exits * sizeof (edge *));
9386
9387   /* Store all exiting edges into an array.  */
9388   num_exits = 0;
9389   EXECUTE_IF_SET_IN_SBITMAP (nodes, 0, node, {
9390     for (e = BASIC_BLOCK (node)->succ; e; e = e->succ_next)
9391       {
9392         basic_block dest = e->dest;
9393
9394         if (dest == EXIT_BLOCK_PTR || ! TEST_BIT (nodes, dest->index))
9395           (*exit_edges)[num_exits++] = e;
9396       }
9397   });
9398
9399   return num_exits;
9400 }
9401
9402
9403 /* Find the nodes contained within the loop with header HEADER and
9404    latch LATCH and store in NODES.  Return the number of nodes within
9405    the loop.  */
9406
9407 static int
9408 flow_loop_nodes_find (header, latch, nodes)
9409      basic_block header;
9410      basic_block latch;
9411      sbitmap nodes;
9412 {
9413   basic_block *stack;
9414   int sp;
9415   int num_nodes = 0;
9416
9417   stack = (basic_block *) xmalloc (n_basic_blocks * sizeof (basic_block));
9418   sp = 0;
9419
9420   /* Start with only the loop header in the set of loop nodes.  */
9421   sbitmap_zero (nodes);
9422   SET_BIT (nodes, header->index);
9423   num_nodes++;
9424   header->loop_depth++;
9425
9426   /* Push the loop latch on to the stack.  */
9427   if (! TEST_BIT (nodes, latch->index))
9428     {
9429       SET_BIT (nodes, latch->index);
9430       latch->loop_depth++;
9431       num_nodes++;
9432       stack[sp++] = latch;
9433     }
9434
9435   while (sp)
9436     {
9437       basic_block node;
9438       edge e;
9439
9440       node = stack[--sp];
9441       for (e = node->pred; e; e = e->pred_next)
9442         {
9443           basic_block ancestor = e->src;
9444
9445           /* If each ancestor not marked as part of loop, add to set of
9446              loop nodes and push on to stack.  */
9447           if (ancestor != ENTRY_BLOCK_PTR
9448               && ! TEST_BIT (nodes, ancestor->index))
9449             {
9450               SET_BIT (nodes, ancestor->index);
9451               ancestor->loop_depth++;
9452               num_nodes++;
9453               stack[sp++] = ancestor;
9454             }
9455         }
9456     }
9457   free (stack);
9458   return num_nodes;
9459 }
9460
9461 /* Compute the depth first search order and store in the array
9462   DFS_ORDER if non-zero, marking the nodes visited in VISITED.  If
9463   RC_ORDER is non-zero, return the reverse completion number for each
9464   node.  Returns the number of nodes visited.  A depth first search
9465   tries to get as far away from the starting point as quickly as
9466   possible.  */
9467
9468 int
9469 flow_depth_first_order_compute (dfs_order, rc_order)
9470      int *dfs_order;
9471      int *rc_order;
9472 {
9473   edge *stack;
9474   int sp;
9475   int dfsnum = 0;
9476   int rcnum = n_basic_blocks - 1;
9477   sbitmap visited;
9478
9479   /* Allocate stack for back-tracking up CFG.  */
9480   stack = (edge *) xmalloc ((n_basic_blocks + 1) * sizeof (edge));
9481   sp = 0;
9482
9483   /* Allocate bitmap to track nodes that have been visited.  */
9484   visited = sbitmap_alloc (n_basic_blocks);
9485
9486   /* None of the nodes in the CFG have been visited yet.  */
9487   sbitmap_zero (visited);
9488
9489   /* Push the first edge on to the stack.  */
9490   stack[sp++] = ENTRY_BLOCK_PTR->succ;
9491
9492   while (sp)
9493     {
9494       edge e;
9495       basic_block src;
9496       basic_block dest;
9497
9498       /* Look at the edge on the top of the stack.  */
9499       e = stack[sp - 1];
9500       src = e->src;
9501       dest = e->dest;
9502
9503       /* Check if the edge destination has been visited yet.  */
9504       if (dest != EXIT_BLOCK_PTR && ! TEST_BIT (visited, dest->index))
9505         {
9506           /* Mark that we have visited the destination.  */
9507           SET_BIT (visited, dest->index);
9508
9509           if (dfs_order)
9510             dfs_order[dfsnum++] = dest->index;
9511
9512           if (dest->succ)
9513             {
9514               /* Since the DEST node has been visited for the first
9515                  time, check its successors.  */
9516               stack[sp++] = dest->succ;
9517             }
9518           else
9519             {
9520               /* There are no successors for the DEST node so assign
9521                  its reverse completion number.  */
9522               if (rc_order)
9523                 rc_order[rcnum--] = dest->index;
9524             }
9525         }
9526       else
9527         {
9528           if (! e->succ_next && src != ENTRY_BLOCK_PTR)
9529             {
9530               /* There are no more successors for the SRC node
9531                  so assign its reverse completion number.  */
9532               if (rc_order)
9533                 rc_order[rcnum--] = src->index;
9534             }
9535
9536           if (e->succ_next)
9537             stack[sp - 1] = e->succ_next;
9538           else
9539             sp--;
9540         }
9541     }
9542
9543   free (stack);
9544   sbitmap_free (visited);
9545
9546   /* The number of nodes visited should not be greater than
9547      n_basic_blocks.  */
9548   if (dfsnum > n_basic_blocks)
9549     abort ();
9550
9551   /* There are some nodes left in the CFG that are unreachable.  */
9552   if (dfsnum < n_basic_blocks)
9553     abort ();
9554   return dfsnum;
9555 }
9556
9557 /* Compute the depth first search order on the _reverse_ graph and
9558    store in the array DFS_ORDER, marking the nodes visited in VISITED.
9559    Returns the number of nodes visited.
9560
9561    The computation is split into three pieces:
9562
9563    flow_dfs_compute_reverse_init () creates the necessary data
9564    structures.
9565
9566    flow_dfs_compute_reverse_add_bb () adds a basic block to the data
9567    structures.  The block will start the search.
9568
9569    flow_dfs_compute_reverse_execute () continues (or starts) the
9570    search using the block on the top of the stack, stopping when the
9571    stack is empty.
9572
9573    flow_dfs_compute_reverse_finish () destroys the necessary data
9574    structures.
9575
9576    Thus, the user will probably call ..._init(), call ..._add_bb() to
9577    add a beginning basic block to the stack, call ..._execute(),
9578    possibly add another bb to the stack and again call ..._execute(),
9579    ..., and finally call _finish().  */
9580
9581 /* Initialize the data structures used for depth-first search on the
9582    reverse graph.  If INITIALIZE_STACK is nonzero, the exit block is
9583    added to the basic block stack.  DATA is the current depth-first
9584    search context.  If INITIALIZE_STACK is non-zero, there is an
9585    element on the stack.  */
9586
9587 static void
9588 flow_dfs_compute_reverse_init (data)
9589      depth_first_search_ds data;
9590 {
9591   /* Allocate stack for back-tracking up CFG.  */
9592   data->stack =
9593     (basic_block *) xmalloc ((n_basic_blocks - (INVALID_BLOCK + 1))
9594                              * sizeof (basic_block));
9595   data->sp = 0;
9596
9597   /* Allocate bitmap to track nodes that have been visited.  */
9598   data->visited_blocks = sbitmap_alloc (n_basic_blocks - (INVALID_BLOCK + 1));
9599
9600   /* None of the nodes in the CFG have been visited yet.  */
9601   sbitmap_zero (data->visited_blocks);
9602
9603   return;
9604 }
9605
9606 /* Add the specified basic block to the top of the dfs data
9607    structures.  When the search continues, it will start at the
9608    block.  */
9609
9610 static void
9611 flow_dfs_compute_reverse_add_bb (data, bb)
9612      depth_first_search_ds data;
9613      basic_block bb;
9614 {
9615   data->stack[data->sp++] = bb;
9616   return;
9617 }
9618
9619 /* Continue the depth-first search through the reverse graph starting
9620    with the block at the stack's top and ending when the stack is
9621    empty.  Visited nodes are marked.  Returns an unvisited basic
9622    block, or NULL if there is none available.  */
9623
9624 static basic_block
9625 flow_dfs_compute_reverse_execute (data)
9626      depth_first_search_ds data;
9627 {
9628   basic_block bb;
9629   edge e;
9630   int i;
9631
9632   while (data->sp > 0)
9633     {
9634       bb = data->stack[--data->sp];
9635
9636       /* Mark that we have visited this node.  */
9637       if (!TEST_BIT (data->visited_blocks, bb->index - (INVALID_BLOCK + 1)))
9638         {
9639           SET_BIT (data->visited_blocks, bb->index - (INVALID_BLOCK + 1));
9640
9641           /* Perform depth-first search on adjacent vertices.  */
9642           for (e = bb->pred; e; e = e->pred_next)
9643             flow_dfs_compute_reverse_add_bb (data, e->src);
9644         }
9645     }
9646
9647   /* Determine if there are unvisited basic blocks.  */
9648   for (i = n_basic_blocks - (INVALID_BLOCK + 1); --i >= 0;)
9649     if (!TEST_BIT (data->visited_blocks, i))
9650       return BASIC_BLOCK (i + (INVALID_BLOCK + 1));
9651   return NULL;
9652 }
9653
9654 /* Destroy the data structures needed for depth-first search on the
9655    reverse graph.  */
9656
9657 static void
9658 flow_dfs_compute_reverse_finish (data)
9659      depth_first_search_ds data;
9660 {
9661   free (data->stack);
9662   sbitmap_free (data->visited_blocks);
9663   return;
9664 }
9665
9666
9667 /* Find the root node of the loop pre-header extended basic block and
9668    the edges along the trace from the root node to the loop header.  */
9669
9670 static void
9671 flow_loop_pre_header_scan (loop)
9672      struct loop *loop;
9673 {
9674   int num = 0;
9675   basic_block ebb;
9676
9677   loop->num_pre_header_edges = 0;
9678
9679   if (loop->num_entries != 1)
9680      return;
9681
9682   ebb = loop->entry_edges[0]->src;
9683
9684   if (ebb != ENTRY_BLOCK_PTR)
9685     {
9686       edge e;
9687
9688       /* Count number of edges along trace from loop header to
9689          root of pre-header extended basic block.  Usually this is
9690          only one or two edges.  */
9691       num++;
9692       while (ebb->pred->src != ENTRY_BLOCK_PTR && ! ebb->pred->pred_next)
9693         {
9694           ebb = ebb->pred->src;
9695           num++;
9696         }
9697
9698       loop->pre_header_edges = (edge *) xmalloc (num * sizeof (edge *));
9699       loop->num_pre_header_edges = num;
9700
9701       /* Store edges in order that they are followed.   The source
9702          of the first edge is the root node of the pre-header extended
9703          basic block and the destination of the last last edge is
9704          the loop header.  */
9705       for (e = loop->entry_edges[0]; num; e = e->src->pred)
9706         {
9707           loop->pre_header_edges[--num] = e;
9708         }
9709     }
9710 }
9711
9712
9713 /* Return the block for the pre-header of the loop with header
9714    HEADER where DOM specifies the dominator information.  Return NULL if
9715    there is no pre-header.  */
9716
9717 static basic_block
9718 flow_loop_pre_header_find (header, dom)
9719      basic_block header;
9720      const sbitmap *dom;
9721 {
9722   basic_block pre_header;
9723   edge e;
9724
9725   /* If block p is a predecessor of the header and is the only block
9726      that the header does not dominate, then it is the pre-header.  */
9727   pre_header = NULL;
9728   for (e = header->pred; e; e = e->pred_next)
9729     {
9730       basic_block node = e->src;
9731
9732       if (node != ENTRY_BLOCK_PTR
9733           && ! TEST_BIT (dom[node->index], header->index))
9734         {
9735           if (pre_header == NULL)
9736             pre_header = node;
9737           else
9738             {
9739               /* There are multiple edges into the header from outside
9740                  the loop so there is no pre-header block.  */
9741               pre_header = NULL;
9742               break;
9743             }
9744         }
9745     }
9746   return pre_header;
9747 }
9748
9749 /* Add LOOP to the loop hierarchy tree where PREVLOOP was the loop
9750    previously added.  The insertion algorithm assumes that the loops
9751    are added in the order found by a depth first search of the CFG.  */
9752
9753 static void
9754 flow_loop_tree_node_add (prevloop, loop)
9755      struct loop *prevloop;
9756      struct loop *loop;
9757 {
9758
9759   if (flow_loop_nested_p (prevloop, loop))
9760     {
9761       prevloop->inner = loop;
9762       loop->outer = prevloop;
9763       return;
9764     }
9765
9766   while (prevloop->outer)
9767     {
9768       if (flow_loop_nested_p (prevloop->outer, loop))
9769         {
9770           prevloop->next = loop;
9771           loop->outer = prevloop->outer;
9772           return;
9773         }
9774       prevloop = prevloop->outer;
9775     }
9776
9777   prevloop->next = loop;
9778   loop->outer = NULL;
9779 }
9780
9781 /* Build the loop hierarchy tree for LOOPS.  */
9782
9783 static void
9784 flow_loops_tree_build (loops)
9785      struct loops *loops;
9786 {
9787   int i;
9788   int num_loops;
9789
9790   num_loops = loops->num;
9791   if (! num_loops)
9792     return;
9793
9794   /* Root the loop hierarchy tree with the first loop found.
9795      Since we used a depth first search this should be the
9796      outermost loop.  */
9797   loops->tree_root = &loops->array[0];
9798   loops->tree_root->outer = loops->tree_root->inner = loops->tree_root->next = NULL;
9799
9800   /* Add the remaining loops to the tree.  */
9801   for (i = 1; i < num_loops; i++)
9802     flow_loop_tree_node_add (&loops->array[i - 1], &loops->array[i]);
9803 }
9804
9805 /* Helper function to compute loop nesting depth and enclosed loop level
9806    for the natural loop specified by LOOP at the loop depth DEPTH.
9807    Returns the loop level.  */
9808
9809 static int
9810 flow_loop_level_compute (loop, depth)
9811      struct loop *loop;
9812      int depth;
9813 {
9814   struct loop *inner;
9815   int level = 1;
9816
9817   if (! loop)
9818     return 0;
9819
9820   /* Traverse loop tree assigning depth and computing level as the
9821      maximum level of all the inner loops of this loop.  The loop
9822      level is equivalent to the height of the loop in the loop tree
9823      and corresponds to the number of enclosed loop levels (including
9824      itself).  */
9825   for (inner = loop->inner; inner; inner = inner->next)
9826     {
9827       int ilevel;
9828
9829       ilevel = flow_loop_level_compute (inner, depth + 1) + 1;
9830
9831       if (ilevel > level)
9832         level = ilevel;
9833     }
9834   loop->level = level;
9835   loop->depth = depth;
9836   return level;
9837 }
9838
9839 /* Compute the loop nesting depth and enclosed loop level for the loop
9840    hierarchy tree specfied by LOOPS.  Return the maximum enclosed loop
9841    level.  */
9842
9843 static int
9844 flow_loops_level_compute (loops)
9845      struct loops *loops;
9846 {
9847   struct loop *loop;
9848   int level;
9849   int levels = 0;
9850
9851   /* Traverse all the outer level loops.  */
9852   for (loop = loops->tree_root; loop; loop = loop->next)
9853     {
9854       level = flow_loop_level_compute (loop, 1);
9855       if (level > levels)
9856         levels = level;
9857     }
9858   return levels;
9859 }
9860
9861
9862 /* Scan a single natural loop specified by LOOP collecting information
9863    about it specified by FLAGS.  */
9864
9865 int
9866 flow_loop_scan (loops, loop, flags)
9867      struct loops *loops;
9868      struct loop *loop;
9869      int flags;
9870 {
9871   /* Determine prerequisites.  */
9872   if ((flags & LOOP_EXITS_DOMS) && ! loop->exit_edges)
9873     flags |= LOOP_EXIT_EDGES;
9874
9875   if (flags & LOOP_ENTRY_EDGES)
9876     {
9877       /* Find edges which enter the loop header.
9878          Note that the entry edges should only
9879          enter the header of a natural loop.  */
9880       loop->num_entries
9881         = flow_loop_entry_edges_find (loop->header,
9882                                       loop->nodes,
9883                                       &loop->entry_edges);
9884     }
9885
9886   if (flags & LOOP_EXIT_EDGES)
9887     {
9888       /* Find edges which exit the loop.  */
9889       loop->num_exits
9890         = flow_loop_exit_edges_find (loop->nodes,
9891                                      &loop->exit_edges);
9892     }
9893
9894   if (flags & LOOP_EXITS_DOMS)
9895     {
9896       int j;
9897
9898       /* Determine which loop nodes dominate all the exits
9899          of the loop.  */
9900       loop->exits_doms = sbitmap_alloc (n_basic_blocks);
9901       sbitmap_copy (loop->exits_doms, loop->nodes);
9902       for (j = 0; j < loop->num_exits; j++)
9903         sbitmap_a_and_b (loop->exits_doms, loop->exits_doms,
9904                          loops->cfg.dom[loop->exit_edges[j]->src->index]);
9905
9906       /* The header of a natural loop must dominate
9907          all exits.  */
9908       if (! TEST_BIT (loop->exits_doms, loop->header->index))
9909         abort ();
9910     }
9911
9912   if (flags & LOOP_PRE_HEADER)
9913     {
9914       /* Look to see if the loop has a pre-header node.  */
9915       loop->pre_header
9916         = flow_loop_pre_header_find (loop->header, loops->cfg.dom);
9917
9918       /* Find the blocks within the extended basic block of
9919          the loop pre-header.  */
9920       flow_loop_pre_header_scan (loop);
9921     }
9922   return 1;
9923 }
9924
9925
9926 /* Find all the natural loops in the function and save in LOOPS structure
9927    and recalculate loop_depth information in basic block structures.
9928    FLAGS controls which loop information is collected.
9929    Return the number of natural loops found.  */
9930
9931 int
9932 flow_loops_find (loops, flags)
9933      struct loops *loops;
9934      int flags;
9935 {
9936   int i;
9937   int b;
9938   int num_loops;
9939   edge e;
9940   sbitmap headers;
9941   sbitmap *dom;
9942   int *dfs_order;
9943   int *rc_order;
9944
9945   /* This function cannot be repeatedly called with different
9946      flags to build up the loop information.  The loop tree
9947      must always be built if this function is called.  */
9948   if (! (flags & LOOP_TREE))
9949     abort ();
9950
9951   memset (loops, 0, sizeof (*loops));
9952
9953   /* Taking care of this degenerate case makes the rest of
9954      this code simpler.  */
9955   if (n_basic_blocks == 0)
9956     return 0;
9957
9958   dfs_order = NULL;
9959   rc_order = NULL;
9960
9961   /* Compute the dominators.  */
9962   dom = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
9963   calculate_dominance_info (NULL, dom, CDI_DOMINATORS);
9964
9965   /* Count the number of loop edges (back edges).  This should be the
9966      same as the number of natural loops.  */
9967
9968   num_loops = 0;
9969   for (b = 0; b < n_basic_blocks; b++)
9970     {
9971       basic_block header;
9972
9973       header = BASIC_BLOCK (b);
9974       header->loop_depth = 0;
9975
9976       for (e = header->pred; e; e = e->pred_next)
9977         {
9978           basic_block latch = e->src;
9979
9980           /* Look for back edges where a predecessor is dominated
9981              by this block.  A natural loop has a single entry
9982              node (header) that dominates all the nodes in the
9983              loop.  It also has single back edge to the header
9984              from a latch node.  Note that multiple natural loops
9985              may share the same header.  */
9986           if (b != header->index)
9987             abort ();
9988
9989           if (latch != ENTRY_BLOCK_PTR && TEST_BIT (dom[latch->index], b))
9990             num_loops++;
9991         }
9992     }
9993
9994   if (num_loops)
9995     {
9996       /* Compute depth first search order of the CFG so that outer
9997          natural loops will be found before inner natural loops.  */
9998       dfs_order = (int *) xmalloc (n_basic_blocks * sizeof (int));
9999       rc_order = (int *) xmalloc (n_basic_blocks * sizeof (int));
10000       flow_depth_first_order_compute (dfs_order, rc_order);
10001
10002       /* Save CFG derived information to avoid recomputing it.  */
10003       loops->cfg.dom = dom;
10004       loops->cfg.dfs_order = dfs_order;
10005       loops->cfg.rc_order = rc_order;
10006
10007       /* Allocate loop structures.  */
10008       loops->array
10009         = (struct loop *) xcalloc (num_loops, sizeof (struct loop));
10010
10011       headers = sbitmap_alloc (n_basic_blocks);
10012       sbitmap_zero (headers);
10013
10014       loops->shared_headers = sbitmap_alloc (n_basic_blocks);
10015       sbitmap_zero (loops->shared_headers);
10016
10017       /* Find and record information about all the natural loops
10018          in the CFG.  */
10019       num_loops = 0;
10020       for (b = 0; b < n_basic_blocks; b++)
10021         {
10022           basic_block header;
10023
10024           /* Search the nodes of the CFG in reverse completion order
10025              so that we can find outer loops first.  */
10026           header = BASIC_BLOCK (rc_order[b]);
10027
10028           /* Look for all the possible latch blocks for this header.  */
10029           for (e = header->pred; e; e = e->pred_next)
10030             {
10031               basic_block latch = e->src;
10032
10033               /* Look for back edges where a predecessor is dominated
10034                  by this block.  A natural loop has a single entry
10035                  node (header) that dominates all the nodes in the
10036                  loop.  It also has single back edge to the header
10037                  from a latch node.  Note that multiple natural loops
10038                  may share the same header.  */
10039               if (latch != ENTRY_BLOCK_PTR
10040                   && TEST_BIT (dom[latch->index], header->index))
10041                 {
10042                   struct loop *loop;
10043
10044                   loop = loops->array + num_loops;
10045
10046                   loop->header = header;
10047                   loop->latch = latch;
10048                   loop->num = num_loops;
10049
10050                   num_loops++;
10051                 }
10052             }
10053         }
10054
10055       for (i = 0; i < num_loops; i++)
10056         {
10057           struct loop *loop = &loops->array[i];
10058
10059           /* Keep track of blocks that are loop headers so
10060              that we can tell which loops should be merged.  */
10061           if (TEST_BIT (headers, loop->header->index))
10062             SET_BIT (loops->shared_headers, loop->header->index);
10063           SET_BIT (headers, loop->header->index);
10064
10065           /* Find nodes contained within the loop.  */
10066           loop->nodes = sbitmap_alloc (n_basic_blocks);
10067           loop->num_nodes
10068             = flow_loop_nodes_find (loop->header, loop->latch, loop->nodes);
10069
10070           /* Compute first and last blocks within the loop.
10071              These are often the same as the loop header and
10072              loop latch respectively, but this is not always
10073              the case.  */
10074           loop->first
10075             = BASIC_BLOCK (sbitmap_first_set_bit (loop->nodes));
10076           loop->last
10077             = BASIC_BLOCK (sbitmap_last_set_bit (loop->nodes));
10078
10079           flow_loop_scan (loops, loop, flags);
10080         }
10081
10082       /* Natural loops with shared headers may either be disjoint or
10083          nested.  Disjoint loops with shared headers cannot be inner
10084          loops and should be merged.  For now just mark loops that share
10085          headers.  */
10086       for (i = 0; i < num_loops; i++)
10087         if (TEST_BIT (loops->shared_headers, loops->array[i].header->index))
10088           loops->array[i].shared = 1;
10089
10090       sbitmap_free (headers);
10091     }
10092   else
10093     {
10094       sbitmap_vector_free (dom);
10095     }
10096
10097   loops->num = num_loops;
10098
10099   /* Build the loop hierarchy tree.  */
10100   flow_loops_tree_build (loops);
10101
10102   /* Assign the loop nesting depth and enclosed loop level for each
10103      loop.  */
10104   loops->levels = flow_loops_level_compute (loops);
10105
10106   return num_loops;
10107 }
10108
10109
10110 /* Update the information regarding the loops in the CFG
10111    specified by LOOPS.  */
10112 int
10113 flow_loops_update (loops, flags)
10114      struct loops *loops;
10115      int flags;
10116 {
10117   /* One day we may want to update the current loop data.  For now
10118      throw away the old stuff and rebuild what we need.  */
10119   if (loops->array)
10120     flow_loops_free (loops);
10121
10122   return flow_loops_find (loops, flags);
10123 }
10124
10125
10126 /* Return non-zero if edge E enters header of LOOP from outside of LOOP.  */
10127
10128 int
10129 flow_loop_outside_edge_p (loop, e)
10130      const struct loop *loop;
10131      edge e;
10132 {
10133   if (e->dest != loop->header)
10134     abort ();
10135   return (e->src == ENTRY_BLOCK_PTR)
10136     || ! TEST_BIT (loop->nodes, e->src->index);
10137 }
10138
10139 /* Clear LOG_LINKS fields of insns in a chain.
10140    Also clear the global_live_at_{start,end} fields of the basic block
10141    structures.  */
10142
10143 void
10144 clear_log_links (insns)
10145      rtx insns;
10146 {
10147   rtx i;
10148   int b;
10149
10150   for (i = insns; i; i = NEXT_INSN (i))
10151     if (INSN_P (i))
10152       LOG_LINKS (i) = 0;
10153
10154   for (b = 0; b < n_basic_blocks; b++)
10155     {
10156       basic_block bb = BASIC_BLOCK (b);
10157
10158       bb->global_live_at_start = NULL;
10159       bb->global_live_at_end = NULL;
10160     }
10161
10162   ENTRY_BLOCK_PTR->global_live_at_end = NULL;
10163   EXIT_BLOCK_PTR->global_live_at_start = NULL;
10164 }
10165
10166 /* Given a register bitmap, turn on the bits in a HARD_REG_SET that
10167    correspond to the hard registers, if any, set in that map.  This
10168    could be done far more efficiently by having all sorts of special-cases
10169    with moving single words, but probably isn't worth the trouble.  */
10170
10171 void
10172 reg_set_to_hard_reg_set (to, from)
10173      HARD_REG_SET *to;
10174      bitmap from;
10175 {
10176   int i;
10177
10178   EXECUTE_IF_SET_IN_BITMAP
10179     (from, 0, i,
10180      {
10181        if (i >= FIRST_PSEUDO_REGISTER)
10182          return;
10183        SET_HARD_REG_BIT (*to, i);
10184      });
10185 }
10186
10187 /* Called once at intialization time.  */
10188
10189 void
10190 init_flow ()
10191 {
10192   static int initialized;
10193
10194   if (!initialized)
10195     {
10196       gcc_obstack_init (&flow_obstack);
10197       flow_firstobj = (char *) obstack_alloc (&flow_obstack, 0);
10198       initialized = 1;
10199     }
10200   else
10201     {
10202       obstack_free (&flow_obstack, flow_firstobj);
10203       flow_firstobj = (char *) obstack_alloc (&flow_obstack, 0);
10204     }
10205 }
10206
10207 /* Assume that the preceeding pass has possibly eliminated jump instructions
10208    or converted the unconditional jumps.  Eliminate the edges from CFG.
10209    Return true if any edges are eliminated.  */
10210
10211 bool
10212 purge_dead_edges (bb)
10213      basic_block bb;
10214 {
10215   edge e, next;
10216   rtx insn = bb->end;
10217   bool purged = false;
10218
10219   if (GET_CODE (insn) == JUMP_INSN && !simplejump_p (insn))
10220     return false;
10221   if (GET_CODE (insn) == JUMP_INSN)
10222     {
10223       rtx note;
10224       edge b,f;
10225       /* We do care only about conditional jumps and simplejumps.  */
10226       if (!any_condjump_p (insn)
10227           && !returnjump_p (insn)
10228           && !simplejump_p (insn))
10229         return false;
10230       for (e = bb->succ; e; e = next)
10231         {
10232           next = e->succ_next;
10233
10234           /* Check purposes we can have edge.  */
10235           if ((e->flags & EDGE_FALLTHRU)
10236               && any_condjump_p (insn))
10237             continue;
10238           if (e->dest != EXIT_BLOCK_PTR
10239               && e->dest->head == JUMP_LABEL (insn))
10240             continue;
10241           if (e->dest == EXIT_BLOCK_PTR
10242               && returnjump_p (insn))
10243             continue;
10244           purged = true;
10245           remove_edge (e);
10246         }
10247       if (!bb->succ || !purged)
10248         return false;
10249       if (rtl_dump_file)
10250         fprintf (rtl_dump_file, "Purged edges from bb %i\n", bb->index);
10251       if (!optimize)
10252         return purged;
10253
10254       /* Redistribute probabilities.  */
10255       if (!bb->succ->succ_next)
10256         {
10257           bb->succ->probability = REG_BR_PROB_BASE;
10258           bb->succ->count = bb->count;
10259         }
10260       else
10261         {
10262           note = find_reg_note (insn, REG_BR_PROB, NULL);
10263           if (!note)
10264             return purged;
10265           b = BRANCH_EDGE (bb);
10266           f = FALLTHRU_EDGE (bb);
10267           b->probability = INTVAL (XEXP (note, 0));
10268           f->probability = REG_BR_PROB_BASE - b->probability;
10269           b->count = bb->count * b->probability / REG_BR_PROB_BASE;
10270           f->count = bb->count * f->probability / REG_BR_PROB_BASE;
10271         }
10272       return purged;
10273     }
10274
10275   /* Cleanup abnormal edges caused by throwing insns that have been
10276      eliminated.  */
10277   if (! can_throw_internal (bb->end))
10278     for (e = bb->succ; e; e = next)
10279       {
10280         next = e->succ_next;
10281         if (e->flags & EDGE_EH)
10282           {
10283             remove_edge (e);
10284             purged = true;
10285           }
10286       }
10287
10288   /* If we don't see a jump insn, we don't know exactly why the block would
10289      have been broken at this point.  Look for a simple, non-fallthru edge,
10290      as these are only created by conditional branches.  If we find such an
10291      edge we know that there used to be a jump here and can then safely
10292      remove all non-fallthru edges.  */
10293   for (e = bb->succ; e && (e->flags & (EDGE_COMPLEX | EDGE_FALLTHRU));
10294        e = e->succ_next);
10295   if (!e)
10296     return purged;
10297   for (e = bb->succ; e; e = next)
10298     {
10299       next = e->succ_next;
10300       if (!(e->flags & EDGE_FALLTHRU))
10301         remove_edge (e), purged = true;
10302     }
10303   if (!bb->succ || bb->succ->succ_next)
10304     abort ();
10305   bb->succ->probability = REG_BR_PROB_BASE;
10306   bb->succ->count = bb->count;
10307
10308   if (rtl_dump_file)
10309     fprintf (rtl_dump_file, "Purged non-fallthru edges from bb %i\n",
10310              bb->index);
10311   return purged;
10312 }
10313
10314 /* Search all basic blocks for potentionally dead edges and purge them.
10315
10316    Return true ifif some edge has been elliminated.
10317  */
10318
10319 bool
10320 purge_all_dead_edges ()
10321 {
10322   int i, purged = false;
10323   for (i = 0; i < n_basic_blocks; i++)
10324     purged |= purge_dead_edges (BASIC_BLOCK (i));
10325   return purged;
10326 }