]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/cfgrtl.c
This commit was generated by cvs2svn to compensate for changes in r131447,
[FreeBSD/FreeBSD.git] / contrib / gcc / cfgrtl.c
1 /* Control flow graph manipulation code for GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002 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 low level functions to manipulate the CFG and analyze it
23    that are aware of the RTL intermediate language.
24
25    Available functionality:
26      - CFG-aware instruction chain manipulation
27          delete_insn, delete_insn_chain
28      - Basic block manipulation
29          create_basic_block, flow_delete_block, split_block,
30          merge_blocks_nomove
31      - Infrastructure to determine quickly basic block for insn
32          compute_bb_for_insn, update_bb_for_insn, set_block_for_insn,
33      - Edge redirection with updating and optimizing of insn chain
34          block_label, redirect_edge_and_branch,
35          redirect_edge_and_branch_force, tidy_fallthru_edge, force_nonfallthru
36      - Edge splitting and commiting to edges
37          split_edge, insert_insn_on_edge, commit_edge_insertions
38      - Dumping and debugging
39          print_rtl_with_bb, dump_bb, debug_bb, debug_bb_n
40      - Consistency checking
41          verify_flow_info
42      - CFG updating after constant propagation
43          purge_dead_edges, purge_all_dead_edges   */
44 \f
45 #include "config.h"
46 #include "system.h"
47 #include "tree.h"
48 #include "rtl.h"
49 #include "hard-reg-set.h"
50 #include "basic-block.h"
51 #include "regs.h"
52 #include "flags.h"
53 #include "output.h"
54 #include "function.h"
55 #include "except.h"
56 #include "toplev.h"
57 #include "tm_p.h"
58 #include "obstack.h"
59 #include "insn-config.h"
60
61 /* Stubs in case we don't have a return insn.  */
62 #ifndef HAVE_return
63 #define HAVE_return 0
64 #define gen_return() NULL_RTX
65 #endif
66
67 /* The labels mentioned in non-jump rtl.  Valid during find_basic_blocks.  */
68 /* ??? Should probably be using LABEL_NUSES instead.  It would take a
69    bit of surgery to be able to use or co-opt the routines in jump.  */
70 rtx label_value_list;
71 rtx tail_recursion_label_list;
72
73 static int can_delete_note_p            PARAMS ((rtx));
74 static int can_delete_label_p           PARAMS ((rtx));
75 static void commit_one_edge_insertion   PARAMS ((edge, int));
76 static bool try_redirect_by_replacing_jump PARAMS ((edge, basic_block));
77 static rtx last_loop_beg_note           PARAMS ((rtx));
78 static bool back_edge_of_syntactic_loop_p PARAMS ((basic_block, basic_block));
79 static basic_block force_nonfallthru_and_redirect PARAMS ((edge, basic_block));
80 \f
81 /* Return true if NOTE is not one of the ones that must be kept paired,
82    so that we may simply delete it.  */
83
84 static int
85 can_delete_note_p (note)
86      rtx note;
87 {
88   return (NOTE_LINE_NUMBER (note) == NOTE_INSN_DELETED
89           || NOTE_LINE_NUMBER (note) == NOTE_INSN_BASIC_BLOCK
90           || NOTE_LINE_NUMBER (note) == NOTE_INSN_PREDICTION);
91 }
92
93 /* True if a given label can be deleted.  */
94
95 static int
96 can_delete_label_p (label)
97      rtx label;
98 {
99   return (!LABEL_PRESERVE_P (label)
100           /* User declared labels must be preserved.  */
101           && LABEL_NAME (label) == 0
102           && !in_expr_list_p (forced_labels, label)
103           && !in_expr_list_p (label_value_list, label));
104 }
105
106 /* Delete INSN by patching it out.  Return the next insn.  */
107
108 rtx
109 delete_insn (insn)
110      rtx insn;
111 {
112   rtx next = NEXT_INSN (insn);
113   rtx note;
114   bool really_delete = true;
115
116   if (GET_CODE (insn) == CODE_LABEL)
117     {
118       /* Some labels can't be directly removed from the INSN chain, as they
119          might be references via variables, constant pool etc.
120          Convert them to the special NOTE_INSN_DELETED_LABEL note.  */
121       if (! can_delete_label_p (insn))
122         {
123           const char *name = LABEL_NAME (insn);
124
125           really_delete = false;
126           PUT_CODE (insn, NOTE);
127           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED_LABEL;
128           NOTE_SOURCE_FILE (insn) = name;
129         }
130
131       remove_node_from_expr_list (insn, &nonlocal_goto_handler_labels);
132     }
133
134   if (really_delete)
135     {
136       /* If this insn has already been deleted, something is very wrong.  */
137       if (INSN_DELETED_P (insn))
138         abort ();
139       remove_insn (insn);
140       INSN_DELETED_P (insn) = 1;
141     }
142
143   /* If deleting a jump, decrement the use count of the label.  Deleting
144      the label itself should happen in the normal course of block merging.  */
145   if (GET_CODE (insn) == JUMP_INSN
146       && JUMP_LABEL (insn)
147       && GET_CODE (JUMP_LABEL (insn)) == CODE_LABEL)
148     LABEL_NUSES (JUMP_LABEL (insn))--;
149
150   /* Also if deleting an insn that references a label.  */
151   else if ((note = find_reg_note (insn, REG_LABEL, NULL_RTX)) != NULL_RTX
152            && GET_CODE (XEXP (note, 0)) == CODE_LABEL)
153     LABEL_NUSES (XEXP (note, 0))--;
154
155   if (GET_CODE (insn) == JUMP_INSN
156       && (GET_CODE (PATTERN (insn)) == ADDR_VEC
157           || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC))
158     {
159       rtx pat = PATTERN (insn);
160       int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
161       int len = XVECLEN (pat, diff_vec_p);
162       int i;
163
164       for (i = 0; i < len; i++)
165         {
166           rtx label = XEXP (XVECEXP (pat, diff_vec_p, i), 0);
167
168           /* When deleting code in bulk (e.g. removing many unreachable
169              blocks) we can delete a label that's a target of the vector
170              before deleting the vector itself.  */
171           if (GET_CODE (label) != NOTE)
172             LABEL_NUSES (label)--;
173         }
174     }
175
176   return next;
177 }
178
179 /* Like delete_insn but also purge dead edges from BB.  */
180 rtx
181 delete_insn_and_edges (insn)
182      rtx insn;
183 {
184   rtx x;
185   bool purge = false;
186
187   if (INSN_P (insn)
188       && BLOCK_FOR_INSN (insn)
189       && BLOCK_FOR_INSN (insn)->end == insn)
190     purge = true;
191   x = delete_insn (insn);
192   if (purge)
193     purge_dead_edges (BLOCK_FOR_INSN (insn));
194   return x;
195 }
196
197 /* Unlink a chain of insns between START and FINISH, leaving notes
198    that must be paired.  */
199
200 void
201 delete_insn_chain (start, finish)
202      rtx start, finish;
203 {
204   rtx next;
205
206   /* Unchain the insns one by one.  It would be quicker to delete all of these
207      with a single unchaining, rather than one at a time, but we need to keep
208      the NOTE's.  */
209   while (1)
210     {
211       next = NEXT_INSN (start);
212       if (GET_CODE (start) == NOTE && !can_delete_note_p (start))
213         ;
214       else
215         next = delete_insn (start);
216
217       if (start == finish)
218         break;
219       start = next;
220     }
221 }
222
223 /* Like delete_insn but also purge dead edges from BB.  */
224 void
225 delete_insn_chain_and_edges (first, last)
226      rtx first, last;
227 {
228   bool purge = false;
229
230   if (INSN_P (last)
231       && BLOCK_FOR_INSN (last)
232       && BLOCK_FOR_INSN (last)->end == last)
233     purge = true;
234   delete_insn_chain (first, last);
235   if (purge)
236     purge_dead_edges (BLOCK_FOR_INSN (last));
237 }
238 \f
239 /* Create a new basic block consisting of the instructions between HEAD and END
240    inclusive.  This function is designed to allow fast BB construction - reuses
241    the note and basic block struct in BB_NOTE, if any and do not grow
242    BASIC_BLOCK chain and should be used directly only by CFG construction code.
243    END can be NULL in to create new empty basic block before HEAD.  Both END
244    and HEAD can be NULL to create basic block at the end of INSN chain.
245    AFTER is the basic block we should be put after.  */
246
247 basic_block
248 create_basic_block_structure (head, end, bb_note, after)
249      rtx head, end, bb_note;
250      basic_block after;
251 {
252   basic_block bb;
253
254   if (bb_note
255       && ! RTX_INTEGRATED_P (bb_note)
256       && (bb = NOTE_BASIC_BLOCK (bb_note)) != NULL
257       && bb->aux == NULL)
258     {
259       /* If we found an existing note, thread it back onto the chain.  */
260
261       rtx after;
262
263       if (GET_CODE (head) == CODE_LABEL)
264         after = head;
265       else
266         {
267           after = PREV_INSN (head);
268           head = bb_note;
269         }
270
271       if (after != bb_note && NEXT_INSN (after) != bb_note)
272         reorder_insns_nobb (bb_note, bb_note, after);
273     }
274   else
275     {
276       /* Otherwise we must create a note and a basic block structure.  */
277
278       bb = alloc_block ();
279
280       if (!head && !end)
281         head = end = bb_note
282           = emit_note_after (NOTE_INSN_BASIC_BLOCK, get_last_insn ());
283       else if (GET_CODE (head) == CODE_LABEL && end)
284         {
285           bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, head);
286           if (head == end)
287             end = bb_note;
288         }
289       else
290         {
291           bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, head);
292           head = bb_note;
293           if (!end)
294             end = head;
295         }
296
297       NOTE_BASIC_BLOCK (bb_note) = bb;
298     }
299
300   /* Always include the bb note in the block.  */
301   if (NEXT_INSN (end) == bb_note)
302     end = bb_note;
303
304   bb->head = head;
305   bb->end = end;
306   bb->index = last_basic_block++;
307   bb->flags = BB_NEW;
308   link_block (bb, after);
309   BASIC_BLOCK (bb->index) = bb;
310   update_bb_for_insn (bb);
311
312   /* Tag the block so that we know it has been used when considering
313      other basic block notes.  */
314   bb->aux = bb;
315
316   return bb;
317 }
318
319 /* Create new basic block consisting of instructions in between HEAD and END
320    and place it to the BB chain after block AFTER.  END can be NULL in to
321    create new empty basic block before HEAD.  Both END and HEAD can be NULL to
322    create basic block at the end of INSN chain.  */
323
324 basic_block
325 create_basic_block (head, end, after)
326      rtx head, end;
327      basic_block after;
328 {
329   basic_block bb;
330
331   /* Place the new block just after the end.  */
332   VARRAY_GROW (basic_block_info, last_basic_block+1);
333
334   n_basic_blocks++;
335
336   bb = create_basic_block_structure (head, end, NULL, after);
337   bb->aux = NULL;
338   return bb;
339 }
340 \f
341 /* Delete the insns in a (non-live) block.  We physically delete every
342    non-deleted-note insn, and update the flow graph appropriately.
343
344    Return nonzero if we deleted an exception handler.  */
345
346 /* ??? Preserving all such notes strikes me as wrong.  It would be nice
347    to post-process the stream to remove empty blocks, loops, ranges, etc.  */
348
349 int
350 flow_delete_block_noexpunge (b)
351      basic_block b;
352 {
353   int deleted_handler = 0;
354   rtx insn, end, tmp;
355
356   /* If the head of this block is a CODE_LABEL, then it might be the
357      label for an exception handler which can't be reached.
358
359      We need to remove the label from the exception_handler_label list
360      and remove the associated NOTE_INSN_EH_REGION_BEG and
361      NOTE_INSN_EH_REGION_END notes.  */
362
363   /* Get rid of all NOTE_INSN_PREDICTIONs and NOTE_INSN_LOOP_CONTs
364      hanging before the block.  */
365
366   for (insn = PREV_INSN (b->head); insn; insn = PREV_INSN (insn))
367     {
368       if (GET_CODE (insn) != NOTE)
369         break;
370       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PREDICTION
371           || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT)
372         NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
373     }
374
375   insn = b->head;
376
377   never_reached_warning (insn, b->end);
378
379   if (GET_CODE (insn) == CODE_LABEL)
380     maybe_remove_eh_handler (insn);
381
382   /* Include any jump table following the basic block.  */
383   end = b->end;
384   if (GET_CODE (end) == JUMP_INSN
385       && (tmp = JUMP_LABEL (end)) != NULL_RTX
386       && (tmp = NEXT_INSN (tmp)) != NULL_RTX
387       && GET_CODE (tmp) == JUMP_INSN
388       && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
389           || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
390     end = tmp;
391
392   /* Include any barrier that may follow the basic block.  */
393   tmp = next_nonnote_insn (end);
394   if (tmp && GET_CODE (tmp) == BARRIER)
395     end = tmp;
396
397   /* Selectively delete the entire chain.  */
398   b->head = NULL;
399   delete_insn_chain (insn, end);
400
401   /* Remove the edges into and out of this block.  Note that there may
402      indeed be edges in, if we are removing an unreachable loop.  */
403   while (b->pred != NULL)
404     remove_edge (b->pred);
405   while (b->succ != NULL)
406     remove_edge (b->succ);
407
408   b->pred = NULL;
409   b->succ = NULL;
410
411   return deleted_handler;
412 }
413
414 int
415 flow_delete_block (b)
416      basic_block b;
417 {
418   int deleted_handler = flow_delete_block_noexpunge (b);
419
420   /* Remove the basic block from the array.  */
421   expunge_block (b);
422
423   return deleted_handler;
424 }
425 \f
426 /* Records the basic block struct in BLOCK_FOR_INSN for every insn.  */
427
428 void
429 compute_bb_for_insn ()
430 {
431   basic_block bb;
432
433   FOR_EACH_BB (bb)
434     {
435       rtx end = bb->end;
436       rtx insn;
437
438       for (insn = bb->head; ; insn = NEXT_INSN (insn))
439         {
440           BLOCK_FOR_INSN (insn) = bb;
441           if (insn == end)
442             break;
443         }
444     }
445 }
446
447 /* Release the basic_block_for_insn array.  */
448
449 void
450 free_bb_for_insn ()
451 {
452   rtx insn;
453   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
454     if (GET_CODE (insn) != BARRIER)
455       BLOCK_FOR_INSN (insn) = NULL;
456 }
457
458 /* Update insns block within BB.  */
459
460 void
461 update_bb_for_insn (bb)
462      basic_block bb;
463 {
464   rtx insn;
465
466   for (insn = bb->head; ; insn = NEXT_INSN (insn))
467     {
468       set_block_for_insn (insn, bb);
469       if (insn == bb->end)
470         break;
471     }
472 }
473 \f
474 /* Split a block BB after insn INSN creating a new fallthru edge.
475    Return the new edge.  Note that to keep other parts of the compiler happy,
476    this function renumbers all the basic blocks so that the new
477    one has a number one greater than the block split.  */
478
479 edge
480 split_block (bb, insn)
481      basic_block bb;
482      rtx insn;
483 {
484   basic_block new_bb;
485   edge new_edge;
486   edge e;
487
488   /* There is no point splitting the block after its end.  */
489   if (bb->end == insn)
490     return 0;
491
492   /* Create the new basic block.  */
493   new_bb = create_basic_block (NEXT_INSN (insn), bb->end, bb);
494   new_bb->count = bb->count;
495   new_bb->frequency = bb->frequency;
496   new_bb->loop_depth = bb->loop_depth;
497   bb->end = insn;
498
499   /* Redirect the outgoing edges.  */
500   new_bb->succ = bb->succ;
501   bb->succ = NULL;
502   for (e = new_bb->succ; e; e = e->succ_next)
503     e->src = new_bb;
504
505   new_edge = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
506
507   if (bb->global_live_at_start)
508     {
509       new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
510       new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
511       COPY_REG_SET (new_bb->global_live_at_end, bb->global_live_at_end);
512
513       /* We now have to calculate which registers are live at the end
514          of the split basic block and at the start of the new basic
515          block.  Start with those registers that are known to be live
516          at the end of the original basic block and get
517          propagate_block to determine which registers are live.  */
518       COPY_REG_SET (new_bb->global_live_at_start, bb->global_live_at_end);
519       propagate_block (new_bb, new_bb->global_live_at_start, NULL, NULL, 0);
520       COPY_REG_SET (bb->global_live_at_end,
521                     new_bb->global_live_at_start);
522 #ifdef HAVE_conditional_execution
523       /* In the presence of conditional execution we are not able to update
524          liveness precisely.  */
525       if (reload_completed)
526         {
527           bb->flags |= BB_DIRTY;
528           new_bb->flags |= BB_DIRTY;
529         }
530 #endif
531     }
532
533   return new_edge;
534 }
535
536 /* Blocks A and B are to be merged into a single block A.  The insns
537    are already contiguous, hence `nomove'.  */
538
539 void
540 merge_blocks_nomove (a, b)
541      basic_block a, b;
542 {
543   rtx b_head = b->head, b_end = b->end, a_end = a->end;
544   rtx del_first = NULL_RTX, del_last = NULL_RTX;
545   int b_empty = 0;
546   edge e;
547
548   /* If there was a CODE_LABEL beginning B, delete it.  */
549   if (GET_CODE (b_head) == CODE_LABEL)
550     {
551       /* Detect basic blocks with nothing but a label.  This can happen
552          in particular at the end of a function.  */
553       if (b_head == b_end)
554         b_empty = 1;
555
556       del_first = del_last = b_head;
557       b_head = NEXT_INSN (b_head);
558     }
559
560   /* Delete the basic block note and handle blocks containing just that
561      note.  */
562   if (NOTE_INSN_BASIC_BLOCK_P (b_head))
563     {
564       if (b_head == b_end)
565         b_empty = 1;
566       if (! del_last)
567         del_first = b_head;
568
569       del_last = b_head;
570       b_head = NEXT_INSN (b_head);
571     }
572
573   /* If there was a jump out of A, delete it.  */
574   if (GET_CODE (a_end) == JUMP_INSN)
575     {
576       rtx prev;
577
578       for (prev = PREV_INSN (a_end); ; prev = PREV_INSN (prev))
579         if (GET_CODE (prev) != NOTE
580             || NOTE_LINE_NUMBER (prev) == NOTE_INSN_BASIC_BLOCK
581             || prev == a->head)
582           break;
583
584       del_first = a_end;
585
586 #ifdef HAVE_cc0
587       /* If this was a conditional jump, we need to also delete
588          the insn that set cc0.  */
589       if (only_sets_cc0_p (prev))
590         {
591           rtx tmp = prev;
592
593           prev = prev_nonnote_insn (prev);
594           if (!prev)
595             prev = a->head;
596           del_first = tmp;
597         }
598 #endif
599
600       a_end = PREV_INSN (del_first);
601     }
602   else if (GET_CODE (NEXT_INSN (a_end)) == BARRIER)
603     del_first = NEXT_INSN (a_end);
604
605   /* Normally there should only be one successor of A and that is B, but
606      partway though the merge of blocks for conditional_execution we'll
607      be merging a TEST block with THEN and ELSE successors.  Free the
608      whole lot of them and hope the caller knows what they're doing.  */
609   while (a->succ)
610     remove_edge (a->succ);
611
612   /* Adjust the edges out of B for the new owner.  */
613   for (e = b->succ; e; e = e->succ_next)
614     e->src = a;
615   a->succ = b->succ;
616   a->flags |= b->flags;
617
618   /* B hasn't quite yet ceased to exist.  Attempt to prevent mishap.  */
619   b->pred = b->succ = NULL;
620   a->global_live_at_end = b->global_live_at_end;
621
622   expunge_block (b);
623
624   /* Delete everything marked above as well as crap that might be
625      hanging out between the two blocks.  */
626   delete_insn_chain (del_first, del_last);
627
628   /* Reassociate the insns of B with A.  */
629   if (!b_empty)
630     {
631       rtx x;
632
633       for (x = a_end; x != b_end; x = NEXT_INSN (x))
634         set_block_for_insn (x, a);
635
636       set_block_for_insn (b_end, a);
637
638       a_end = b_end;
639     }
640
641   a->end = a_end;
642 }
643 \f
644 /* Return the label in the head of basic block BLOCK.  Create one if it doesn't
645    exist.  */
646
647 rtx
648 block_label (block)
649      basic_block block;
650 {
651   if (block == EXIT_BLOCK_PTR)
652     return NULL_RTX;
653
654   if (GET_CODE (block->head) != CODE_LABEL)
655     {
656       block->head = emit_label_before (gen_label_rtx (), block->head);
657     }
658
659   return block->head;
660 }
661
662 /* Attempt to perform edge redirection by replacing possibly complex jump
663    instruction by unconditional jump or removing jump completely.  This can
664    apply only if all edges now point to the same block.  The parameters and
665    return values are equivalent to redirect_edge_and_branch.  */
666
667 static bool
668 try_redirect_by_replacing_jump (e, target)
669      edge e;
670      basic_block target;
671 {
672   basic_block src = e->src;
673   rtx insn = src->end, kill_from;
674   edge tmp;
675   rtx set, table;
676   int fallthru = 0;
677
678   /* Verify that all targets will be TARGET.  */
679   for (tmp = src->succ; tmp; tmp = tmp->succ_next)
680     if (tmp->dest != target && tmp != e)
681       break;
682
683   if (tmp || !onlyjump_p (insn))
684     return false;
685   if (flow2_completed && JUMP_LABEL (insn)
686       && (table = NEXT_INSN (JUMP_LABEL (insn))) != NULL_RTX
687       && GET_CODE (table) == JUMP_INSN
688       && (GET_CODE (PATTERN (table)) == ADDR_VEC
689           || GET_CODE (PATTERN (table)) == ADDR_DIFF_VEC))
690     return false;
691
692   /* Avoid removing branch with side effects.  */
693   set = single_set (insn);
694   if (!set || side_effects_p (set))
695     return false;
696
697   /* In case we zap a conditional jump, we'll need to kill
698      the cc0 setter too.  */
699   kill_from = insn;
700 #ifdef HAVE_cc0
701   if (reg_mentioned_p (cc0_rtx, PATTERN (insn)))
702     kill_from = PREV_INSN (insn);
703 #endif
704
705   /* See if we can create the fallthru edge.  */
706   if (can_fallthru (src, target))
707     {
708       if (rtl_dump_file)
709         fprintf (rtl_dump_file, "Removing jump %i.\n", INSN_UID (insn));
710       fallthru = 1;
711
712       /* Selectively unlink whole insn chain.  */
713       delete_insn_chain (kill_from, PREV_INSN (target->head));
714     }
715
716   /* If this already is simplejump, redirect it.  */
717   else if (simplejump_p (insn))
718     {
719       if (e->dest == target)
720         return false;
721       if (rtl_dump_file)
722         fprintf (rtl_dump_file, "Redirecting jump %i from %i to %i.\n",
723                  INSN_UID (insn), e->dest->index, target->index);
724       if (!redirect_jump (insn, block_label (target), 0))
725         {
726           if (target == EXIT_BLOCK_PTR)
727             return false;
728           abort ();
729         }
730     }
731
732   /* Cannot do anything for target exit block.  */
733   else if (target == EXIT_BLOCK_PTR)
734     return false;
735
736   /* Or replace possibly complicated jump insn by simple jump insn.  */
737   else
738     {
739       rtx target_label = block_label (target);
740       rtx barrier, tmp;
741
742       emit_jump_insn_after (gen_jump (target_label), insn);
743       JUMP_LABEL (src->end) = target_label;
744       LABEL_NUSES (target_label)++;
745       if (rtl_dump_file)
746         fprintf (rtl_dump_file, "Replacing insn %i by jump %i\n",
747                  INSN_UID (insn), INSN_UID (src->end));
748
749
750       delete_insn_chain (kill_from, insn);
751
752       /* Recognize a tablejump that we are converting to a
753          simple jump and remove its associated CODE_LABEL
754          and ADDR_VEC or ADDR_DIFF_VEC.  */
755       if ((tmp = JUMP_LABEL (insn)) != NULL_RTX
756           && (tmp = NEXT_INSN (tmp)) != NULL_RTX
757           && GET_CODE (tmp) == JUMP_INSN
758           && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
759               || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
760         {
761           delete_insn_chain (JUMP_LABEL (insn), tmp);
762         }
763
764       barrier = next_nonnote_insn (src->end);
765       if (!barrier || GET_CODE (barrier) != BARRIER)
766         emit_barrier_after (src->end);
767     }
768
769   /* Keep only one edge out and set proper flags.  */
770   while (src->succ->succ_next)
771     remove_edge (src->succ);
772   e = src->succ;
773   if (fallthru)
774     e->flags = EDGE_FALLTHRU;
775   else
776     e->flags = 0;
777
778   e->probability = REG_BR_PROB_BASE;
779   e->count = src->count;
780
781   /* We don't want a block to end on a line-number note since that has
782      the potential of changing the code between -g and not -g.  */
783   while (GET_CODE (e->src->end) == NOTE
784          && NOTE_LINE_NUMBER (e->src->end) >= 0)
785     delete_insn (e->src->end);
786
787   if (e->dest != target)
788     redirect_edge_succ (e, target);
789
790   return true;
791 }
792
793 /* Return last loop_beg note appearing after INSN, before start of next
794    basic block.  Return INSN if there are no such notes.
795
796    When emitting jump to redirect a fallthru edge, it should always appear
797    after the LOOP_BEG notes, as loop optimizer expect loop to either start by
798    fallthru edge or jump following the LOOP_BEG note jumping to the loop exit
799    test.  */
800
801 static rtx
802 last_loop_beg_note (insn)
803      rtx insn;
804 {
805   rtx last = insn;
806
807   for (insn = NEXT_INSN (insn); insn && GET_CODE (insn) == NOTE
808        && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK;
809        insn = NEXT_INSN (insn))
810     if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
811       last = insn;
812
813   return last;
814 }
815
816 /* Attempt to change code to redirect edge E to TARGET.  Don't do that on
817    expense of adding new instructions or reordering basic blocks.
818
819    Function can be also called with edge destination equivalent to the TARGET.
820    Then it should try the simplifications and do nothing if none is possible.
821
822    Return true if transformation succeeded.  We still return false in case E
823    already destinated TARGET and we didn't managed to simplify instruction
824    stream.  */
825
826 bool
827 redirect_edge_and_branch (e, target)
828      edge e;
829      basic_block target;
830 {
831   rtx tmp;
832   rtx old_label = e->dest->head;
833   basic_block src = e->src;
834   rtx insn = src->end;
835
836   if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
837     return false;
838
839   if (try_redirect_by_replacing_jump (e, target))
840     return true;
841
842   /* Do this fast path late, as we want above code to simplify for cases
843      where called on single edge leaving basic block containing nontrivial
844      jump insn.  */
845   else if (e->dest == target)
846     return false;
847
848   /* We can only redirect non-fallthru edges of jump insn.  */
849   if (e->flags & EDGE_FALLTHRU)
850     return false;
851   else if (GET_CODE (insn) != JUMP_INSN)
852     return false;
853
854   /* Recognize a tablejump and adjust all matching cases.  */
855   if ((tmp = JUMP_LABEL (insn)) != NULL_RTX
856       && (tmp = NEXT_INSN (tmp)) != NULL_RTX
857       && GET_CODE (tmp) == JUMP_INSN
858       && (GET_CODE (PATTERN (tmp)) == ADDR_VEC
859           || GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC))
860     {
861       rtvec vec;
862       int j;
863       rtx new_label = block_label (target);
864
865       if (target == EXIT_BLOCK_PTR)
866         return false;
867       if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
868         vec = XVEC (PATTERN (tmp), 0);
869       else
870         vec = XVEC (PATTERN (tmp), 1);
871
872       for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
873         if (XEXP (RTVEC_ELT (vec, j), 0) == old_label)
874           {
875             RTVEC_ELT (vec, j) = gen_rtx_LABEL_REF (Pmode, new_label);
876             --LABEL_NUSES (old_label);
877             ++LABEL_NUSES (new_label);
878           }
879
880       /* Handle casesi dispatch insns */
881       if ((tmp = single_set (insn)) != NULL
882           && SET_DEST (tmp) == pc_rtx
883           && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
884           && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF
885           && XEXP (XEXP (SET_SRC (tmp), 2), 0) == old_label)
886         {
887           XEXP (SET_SRC (tmp), 2) = gen_rtx_LABEL_REF (VOIDmode,
888                                                        new_label);
889           --LABEL_NUSES (old_label);
890           ++LABEL_NUSES (new_label);
891         }
892     }
893   else
894     {
895       /* ?? We may play the games with moving the named labels from
896          one basic block to the other in case only one computed_jump is
897          available.  */
898       if (computed_jump_p (insn)
899           /* A return instruction can't be redirected.  */
900           || returnjump_p (insn))
901         return false;
902
903       /* If the insn doesn't go where we think, we're confused.  */
904       if (JUMP_LABEL (insn) != old_label)
905         abort ();
906
907       /* If the substitution doesn't succeed, die.  This can happen
908          if the back end emitted unrecognizable instructions or if
909          target is exit block on some arches.  */
910       if (!redirect_jump (insn, block_label (target), 0))
911         {
912           if (target == EXIT_BLOCK_PTR)
913             return false;
914           abort ();
915         }
916     }
917
918   if (rtl_dump_file)
919     fprintf (rtl_dump_file, "Edge %i->%i redirected to %i\n",
920              e->src->index, e->dest->index, target->index);
921
922   if (e->dest != target)
923     redirect_edge_succ_nodup (e, target);
924
925   return true;
926 }
927
928 /* Like force_nonfallthru below, but additionally performs redirection
929    Used by redirect_edge_and_branch_force.  */
930
931 static basic_block
932 force_nonfallthru_and_redirect (e, target)
933      edge e;
934      basic_block target;
935 {
936   basic_block jump_block, new_bb = NULL, src = e->src;
937   rtx note;
938   edge new_edge;
939   int abnormal_edge_flags = 0;
940
941   /* In the case the last instruction is conditional jump to the next
942      instruction, first redirect the jump itself and then continue
943      by creating an basic block afterwards to redirect fallthru edge.  */
944   if (e->src != ENTRY_BLOCK_PTR && e->dest != EXIT_BLOCK_PTR
945       && any_condjump_p (e->src->end)
946       /* When called from cfglayout, fallthru edges do not
947          neccessarily go to the next block.  */
948       && e->src->next_bb == e->dest
949       && JUMP_LABEL (e->src->end) == e->dest->head)
950     {
951       rtx note;
952       edge b = unchecked_make_edge (e->src, target, 0);
953
954       if (!redirect_jump (e->src->end, block_label (target), 0))
955         abort ();
956       note = find_reg_note (e->src->end, REG_BR_PROB, NULL_RTX);
957       if (note)
958         {
959           int prob = INTVAL (XEXP (note, 0));
960
961           b->probability = prob;
962           b->count = e->count * prob / REG_BR_PROB_BASE;
963           e->probability -= e->probability;
964           e->count -= b->count;
965           if (e->probability < 0)
966             e->probability = 0;
967           if (e->count < 0)
968             e->count = 0;
969         }
970     }
971
972   if (e->flags & EDGE_ABNORMAL)
973     {
974       /* Irritating special case - fallthru edge to the same block as abnormal
975          edge.
976          We can't redirect abnormal edge, but we still can split the fallthru
977          one and create separate abnormal edge to original destination. 
978          This allows bb-reorder to make such edge non-fallthru.  */
979       if (e->dest != target)
980         abort ();
981       abnormal_edge_flags = e->flags & ~(EDGE_FALLTHRU | EDGE_CAN_FALLTHRU);
982       e->flags &= EDGE_FALLTHRU | EDGE_CAN_FALLTHRU;
983     }
984   else if (!(e->flags & EDGE_FALLTHRU))
985     abort ();
986   else if (e->src == ENTRY_BLOCK_PTR)
987     {
988       /* We can't redirect the entry block.  Create an empty block at the
989          start of the function which we use to add the new jump.  */
990       edge *pe1;
991       basic_block bb = create_basic_block (e->dest->head, NULL, ENTRY_BLOCK_PTR);
992
993       /* Change the existing edge's source to be the new block, and add
994          a new edge from the entry block to the new block.  */
995       e->src = bb;
996       for (pe1 = &ENTRY_BLOCK_PTR->succ; *pe1; pe1 = &(*pe1)->succ_next)
997         if (*pe1 == e)
998           {
999             *pe1 = e->succ_next;
1000             break;
1001           }
1002       e->succ_next = 0;
1003       bb->succ = e;
1004       make_single_succ_edge (ENTRY_BLOCK_PTR, bb, EDGE_FALLTHRU);
1005     }
1006
1007   if (e->src->succ->succ_next || abnormal_edge_flags)
1008     {
1009       /* Create the new structures.  */
1010
1011       /* Position the new block correctly relative to loop notes.  */
1012       note = last_loop_beg_note (e->src->end);
1013       note = NEXT_INSN (note);
1014
1015       /* ... and ADDR_VECs.  */
1016       if (note != NULL
1017           && GET_CODE (note) == CODE_LABEL
1018           && NEXT_INSN (note)
1019           && GET_CODE (NEXT_INSN (note)) == JUMP_INSN
1020           && (GET_CODE (PATTERN (NEXT_INSN (note))) == ADDR_DIFF_VEC
1021               || GET_CODE (PATTERN (NEXT_INSN (note))) == ADDR_VEC))
1022         note = NEXT_INSN (NEXT_INSN (note));
1023
1024       jump_block = create_basic_block (note, NULL, e->src);
1025       jump_block->count = e->count;
1026       jump_block->frequency = EDGE_FREQUENCY (e);
1027       jump_block->loop_depth = target->loop_depth;
1028
1029       if (target->global_live_at_start)
1030         {
1031           jump_block->global_live_at_start
1032             = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1033           jump_block->global_live_at_end
1034             = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1035           COPY_REG_SET (jump_block->global_live_at_start,
1036                         target->global_live_at_start);
1037           COPY_REG_SET (jump_block->global_live_at_end,
1038                         target->global_live_at_start);
1039         }
1040
1041       /* Wire edge in.  */
1042       new_edge = make_edge (e->src, jump_block, EDGE_FALLTHRU);
1043       new_edge->probability = e->probability;
1044       new_edge->count = e->count;
1045
1046       /* Redirect old edge.  */
1047       redirect_edge_pred (e, jump_block);
1048       e->probability = REG_BR_PROB_BASE;
1049
1050       new_bb = jump_block;
1051     }
1052   else
1053     jump_block = e->src;
1054
1055   e->flags &= ~EDGE_FALLTHRU;
1056   if (target == EXIT_BLOCK_PTR)
1057     {
1058       if (HAVE_return)
1059         emit_jump_insn_after (gen_return (), jump_block->end);
1060       else
1061         abort ();
1062     }
1063   else
1064     {
1065       rtx label = block_label (target);
1066       emit_jump_insn_after (gen_jump (label), jump_block->end);
1067       JUMP_LABEL (jump_block->end) = label;
1068       LABEL_NUSES (label)++;
1069     }
1070
1071   emit_barrier_after (jump_block->end);
1072   redirect_edge_succ_nodup (e, target);
1073
1074   if (abnormal_edge_flags)
1075     make_edge (src, target, abnormal_edge_flags);
1076
1077   return new_bb;
1078 }
1079
1080 /* Edge E is assumed to be fallthru edge.  Emit needed jump instruction
1081    (and possibly create new basic block) to make edge non-fallthru.
1082    Return newly created BB or NULL if none.  */
1083
1084 basic_block
1085 force_nonfallthru (e)
1086      edge e;
1087 {
1088   return force_nonfallthru_and_redirect (e, e->dest);
1089 }
1090
1091 /* Redirect edge even at the expense of creating new jump insn or
1092    basic block.  Return new basic block if created, NULL otherwise.
1093    Abort if conversion is impossible.  */
1094
1095 basic_block
1096 redirect_edge_and_branch_force (e, target)
1097      edge e;
1098      basic_block target;
1099 {
1100   if (redirect_edge_and_branch (e, target)
1101       || e->dest == target)
1102     return NULL;
1103
1104   /* In case the edge redirection failed, try to force it to be non-fallthru
1105      and redirect newly created simplejump.  */
1106   return force_nonfallthru_and_redirect (e, target);
1107 }
1108
1109 /* The given edge should potentially be a fallthru edge.  If that is in
1110    fact true, delete the jump and barriers that are in the way.  */
1111
1112 void
1113 tidy_fallthru_edge (e, b, c)
1114      edge e;
1115      basic_block b, c;
1116 {
1117   rtx q;
1118
1119   /* ??? In a late-running flow pass, other folks may have deleted basic
1120      blocks by nopping out blocks, leaving multiple BARRIERs between here
1121      and the target label. They ought to be chastized and fixed.
1122
1123      We can also wind up with a sequence of undeletable labels between
1124      one block and the next.
1125
1126      So search through a sequence of barriers, labels, and notes for
1127      the head of block C and assert that we really do fall through.  */
1128
1129   for (q = NEXT_INSN (b->end); q != c->head; q = NEXT_INSN (q))
1130     if (INSN_P (q))
1131       return;
1132
1133   /* Remove what will soon cease being the jump insn from the source block.
1134      If block B consisted only of this single jump, turn it into a deleted
1135      note.  */
1136   q = b->end;
1137   if (GET_CODE (q) == JUMP_INSN
1138       && onlyjump_p (q)
1139       && (any_uncondjump_p (q)
1140           || (b->succ == e && e->succ_next == NULL)))
1141     {
1142 #ifdef HAVE_cc0
1143       /* If this was a conditional jump, we need to also delete
1144          the insn that set cc0.  */
1145       if (any_condjump_p (q) && only_sets_cc0_p (PREV_INSN (q)))
1146         q = PREV_INSN (q);
1147 #endif
1148
1149       q = PREV_INSN (q);
1150
1151       /* We don't want a block to end on a line-number note since that has
1152          the potential of changing the code between -g and not -g.  */
1153       while (GET_CODE (q) == NOTE && NOTE_LINE_NUMBER (q) >= 0)
1154         q = PREV_INSN (q);
1155     }
1156
1157   /* Selectively unlink the sequence.  */
1158   if (q != PREV_INSN (c->head))
1159     delete_insn_chain (NEXT_INSN (q), PREV_INSN (c->head));
1160
1161   e->flags |= EDGE_FALLTHRU;
1162 }
1163
1164 /* Fix up edges that now fall through, or rather should now fall through
1165    but previously required a jump around now deleted blocks.  Simplify
1166    the search by only examining blocks numerically adjacent, since this
1167    is how find_basic_blocks created them.  */
1168
1169 void
1170 tidy_fallthru_edges ()
1171 {
1172   basic_block b, c;
1173
1174   if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
1175     return;
1176
1177   FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR->prev_bb, next_bb)
1178     {
1179       edge s;
1180
1181       c = b->next_bb;
1182
1183       /* We care about simple conditional or unconditional jumps with
1184          a single successor.
1185
1186          If we had a conditional branch to the next instruction when
1187          find_basic_blocks was called, then there will only be one
1188          out edge for the block which ended with the conditional
1189          branch (since we do not create duplicate edges).
1190
1191          Furthermore, the edge will be marked as a fallthru because we
1192          merge the flags for the duplicate edges.  So we do not want to
1193          check that the edge is not a FALLTHRU edge.  */
1194
1195       if ((s = b->succ) != NULL
1196           && ! (s->flags & EDGE_COMPLEX)
1197           && s->succ_next == NULL
1198           && s->dest == c
1199           /* If the jump insn has side effects, we can't tidy the edge.  */
1200           && (GET_CODE (b->end) != JUMP_INSN
1201               || onlyjump_p (b->end)))
1202         tidy_fallthru_edge (s, b, c);
1203     }
1204 }
1205 \f
1206 /* Helper function for split_edge.  Return true in case edge BB2 to BB1
1207    is back edge of syntactic loop.  */
1208
1209 static bool
1210 back_edge_of_syntactic_loop_p (bb1, bb2)
1211         basic_block bb1, bb2;
1212 {
1213   rtx insn;
1214   int count = 0;
1215   basic_block bb;
1216
1217   if (bb1 == bb2)
1218     return true;
1219
1220   /* ??? Could we guarantee that bb indices are monotone, so that we could
1221      just compare them?  */
1222   for (bb = bb1; bb && bb != bb2; bb = bb->next_bb)
1223     continue;
1224
1225   if (!bb)
1226     return false;
1227
1228   for (insn = bb1->end; insn != bb2->head && count >= 0;
1229        insn = NEXT_INSN (insn))
1230     if (GET_CODE (insn) == NOTE)
1231       {
1232         if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1233           count++;
1234         else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
1235           count--;
1236       }
1237
1238   return count >= 0;
1239 }
1240
1241 /* Split a (typically critical) edge.  Return the new block.
1242    Abort on abnormal edges.
1243
1244    ??? The code generally expects to be called on critical edges.
1245    The case of a block ending in an unconditional jump to a
1246    block with multiple predecessors is not handled optimally.  */
1247
1248 basic_block
1249 split_edge (edge_in)
1250      edge edge_in;
1251 {
1252   basic_block bb;
1253   edge edge_out;
1254   rtx before;
1255
1256   /* Abnormal edges cannot be split.  */
1257   if ((edge_in->flags & EDGE_ABNORMAL) != 0)
1258     abort ();
1259
1260   /* We are going to place the new block in front of edge destination.
1261      Avoid existence of fallthru predecessors.  */
1262   if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1263     {
1264       edge e;
1265
1266       for (e = edge_in->dest->pred; e; e = e->pred_next)
1267         if (e->flags & EDGE_FALLTHRU)
1268           break;
1269
1270       if (e)
1271         force_nonfallthru (e);
1272     }
1273
1274   /* Create the basic block note.
1275
1276      Where we place the note can have a noticeable impact on the generated
1277      code.  Consider this cfg:
1278
1279                         E
1280                         |
1281                         0
1282                        / \
1283                    +->1-->2--->E
1284                    |  |
1285                    +--+
1286
1287       If we need to insert an insn on the edge from block 0 to block 1,
1288       we want to ensure the instructions we insert are outside of any
1289       loop notes that physically sit between block 0 and block 1.  Otherwise
1290       we confuse the loop optimizer into thinking the loop is a phony.  */
1291
1292   if (edge_in->dest != EXIT_BLOCK_PTR
1293       && PREV_INSN (edge_in->dest->head)
1294       && GET_CODE (PREV_INSN (edge_in->dest->head)) == NOTE
1295       && (NOTE_LINE_NUMBER (PREV_INSN (edge_in->dest->head))
1296           == NOTE_INSN_LOOP_BEG)
1297       && !back_edge_of_syntactic_loop_p (edge_in->dest, edge_in->src))
1298     before = PREV_INSN (edge_in->dest->head);
1299   else if (edge_in->dest != EXIT_BLOCK_PTR)
1300     before = edge_in->dest->head;
1301   else
1302     before = NULL_RTX;
1303
1304   bb = create_basic_block (before, NULL, edge_in->dest->prev_bb);
1305   bb->count = edge_in->count;
1306   bb->frequency = EDGE_FREQUENCY (edge_in);
1307
1308   /* ??? This info is likely going to be out of date very soon.  */
1309   if (edge_in->dest->global_live_at_start)
1310     {
1311       bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1312       bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1313       COPY_REG_SET (bb->global_live_at_start,
1314                     edge_in->dest->global_live_at_start);
1315       COPY_REG_SET (bb->global_live_at_end,
1316                     edge_in->dest->global_live_at_start);
1317     }
1318
1319   edge_out = make_single_succ_edge (bb, edge_in->dest, EDGE_FALLTHRU);
1320
1321   /* For non-fallthry edges, we must adjust the predecessor's
1322      jump instruction to target our new block.  */
1323   if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1324     {
1325       if (!redirect_edge_and_branch (edge_in, bb))
1326         abort ();
1327     }
1328   else
1329     redirect_edge_succ (edge_in, bb);
1330
1331   return bb;
1332 }
1333
1334 /* Queue instructions for insertion on an edge between two basic blocks.
1335    The new instructions and basic blocks (if any) will not appear in the
1336    CFG until commit_edge_insertions is called.  */
1337
1338 void
1339 insert_insn_on_edge (pattern, e)
1340      rtx pattern;
1341      edge e;
1342 {
1343   /* We cannot insert instructions on an abnormal critical edge.
1344      It will be easier to find the culprit if we die now.  */
1345   if ((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e))
1346     abort ();
1347
1348   if (e->insns == NULL_RTX)
1349     start_sequence ();
1350   else
1351     push_to_sequence (e->insns);
1352
1353   emit_insn (pattern);
1354
1355   e->insns = get_insns ();
1356   end_sequence ();
1357 }
1358
1359 /* Update the CFG for the instructions queued on edge E.  */
1360
1361 static void
1362 commit_one_edge_insertion (e, watch_calls)
1363      edge e;
1364      int watch_calls;
1365 {
1366   rtx before = NULL_RTX, after = NULL_RTX, insns, tmp, last;
1367   basic_block bb = NULL;
1368
1369   /* Pull the insns off the edge now since the edge might go away.  */
1370   insns = e->insns;
1371   e->insns = NULL_RTX;
1372
1373   /* Special case -- avoid inserting code between call and storing
1374      its return value.  */
1375   if (watch_calls && (e->flags & EDGE_FALLTHRU) && !e->dest->pred->pred_next
1376       && e->src != ENTRY_BLOCK_PTR
1377       && GET_CODE (e->src->end) == CALL_INSN)
1378     {
1379       rtx next = next_nonnote_insn (e->src->end);
1380
1381       after = e->dest->head;
1382       /* The first insn after the call may be a stack pop, skip it.  */
1383       while (next
1384              && keep_with_call_p (next))
1385         {
1386           after = next;
1387           next = next_nonnote_insn (next);
1388         }
1389       bb = e->dest;
1390     }
1391   if (!before && !after)
1392     {
1393       /* Figure out where to put these things.  If the destination has
1394          one predecessor, insert there.  Except for the exit block.  */
1395       if (e->dest->pred->pred_next == NULL && e->dest != EXIT_BLOCK_PTR)
1396         {
1397           bb = e->dest;
1398
1399           /* Get the location correct wrt a code label, and "nice" wrt
1400              a basic block note, and before everything else.  */
1401           tmp = bb->head;
1402           if (GET_CODE (tmp) == CODE_LABEL)
1403             tmp = NEXT_INSN (tmp);
1404           if (NOTE_INSN_BASIC_BLOCK_P (tmp))
1405             tmp = NEXT_INSN (tmp);
1406           if (tmp == bb->head)
1407             before = tmp;
1408           else if (tmp)
1409             after = PREV_INSN (tmp);
1410           else
1411             after = get_last_insn ();
1412         }
1413
1414       /* If the source has one successor and the edge is not abnormal,
1415          insert there.  Except for the entry block.  */
1416       else if ((e->flags & EDGE_ABNORMAL) == 0
1417                && e->src->succ->succ_next == NULL
1418                && e->src != ENTRY_BLOCK_PTR)
1419         {
1420           bb = e->src;
1421
1422           /* It is possible to have a non-simple jump here.  Consider a target
1423              where some forms of unconditional jumps clobber a register.  This
1424              happens on the fr30 for example.
1425
1426              We know this block has a single successor, so we can just emit
1427              the queued insns before the jump.  */
1428           if (GET_CODE (bb->end) == JUMP_INSN)
1429             for (before = bb->end;
1430                  GET_CODE (PREV_INSN (before)) == NOTE
1431                  && NOTE_LINE_NUMBER (PREV_INSN (before)) ==
1432                  NOTE_INSN_LOOP_BEG; before = PREV_INSN (before))
1433               ;
1434           else
1435             {
1436               /* We'd better be fallthru, or we've lost track of what's what.  */
1437               if ((e->flags & EDGE_FALLTHRU) == 0)
1438                 abort ();
1439
1440               after = bb->end;
1441             }
1442         }
1443       /* Otherwise we must split the edge.  */
1444       else
1445         {
1446           bb = split_edge (e);
1447           after = bb->end;
1448         }
1449     }
1450
1451   /* Now that we've found the spot, do the insertion.  */
1452
1453   if (before)
1454     {
1455       emit_insn_before (insns, before);
1456       last = prev_nonnote_insn (before);
1457     }
1458   else
1459     last = emit_insn_after (insns, after);
1460
1461   if (returnjump_p (last))
1462     {
1463       /* ??? Remove all outgoing edges from BB and add one for EXIT.
1464          This is not currently a problem because this only happens
1465          for the (single) epilogue, which already has a fallthru edge
1466          to EXIT.  */
1467
1468       e = bb->succ;
1469       if (e->dest != EXIT_BLOCK_PTR
1470           || e->succ_next != NULL || (e->flags & EDGE_FALLTHRU) == 0)
1471         abort ();
1472
1473       e->flags &= ~EDGE_FALLTHRU;
1474       emit_barrier_after (last);
1475
1476       if (before)
1477         delete_insn (before);
1478     }
1479   else if (GET_CODE (last) == JUMP_INSN)
1480     abort ();
1481
1482   /* Mark the basic block for find_sub_basic_blocks.  */
1483   bb->aux = &bb->aux;
1484 }
1485
1486 /* Update the CFG for all queued instructions.  */
1487
1488 void
1489 commit_edge_insertions ()
1490 {
1491   basic_block bb;
1492   sbitmap blocks;
1493   bool changed = false;
1494
1495 #ifdef ENABLE_CHECKING
1496   verify_flow_info ();
1497 #endif
1498
1499   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1500     {
1501       edge e, next;
1502
1503       for (e = bb->succ; e; e = next)
1504         {
1505           next = e->succ_next;
1506           if (e->insns)
1507             {
1508               changed = true;
1509               commit_one_edge_insertion (e, false);
1510             }
1511         }
1512     }
1513
1514   if (!changed)
1515     return;
1516
1517   blocks = sbitmap_alloc (last_basic_block);
1518   sbitmap_zero (blocks);
1519   FOR_EACH_BB (bb)
1520     if (bb->aux)
1521       {
1522         SET_BIT (blocks, bb->index);
1523         bb->aux = NULL;
1524       }
1525   find_many_sub_basic_blocks (blocks);
1526   sbitmap_free (blocks);
1527 }
1528 \f
1529 /* Update the CFG for all queued instructions, taking special care of inserting
1530    code on edges between call and storing its return value.  */
1531
1532 void
1533 commit_edge_insertions_watch_calls ()
1534 {
1535   basic_block bb;
1536   sbitmap blocks;
1537   bool changed = false;
1538
1539 #ifdef ENABLE_CHECKING
1540   verify_flow_info ();
1541 #endif
1542
1543   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1544     {
1545       edge e, next;
1546
1547       for (e = bb->succ; e; e = next)
1548         {
1549           next = e->succ_next;
1550           if (e->insns)
1551             {
1552               changed = true;
1553               commit_one_edge_insertion (e, true);
1554             }
1555         }
1556     }
1557
1558   if (!changed)
1559     return;
1560
1561   blocks = sbitmap_alloc (last_basic_block);
1562   sbitmap_zero (blocks);
1563   FOR_EACH_BB (bb)
1564     if (bb->aux)
1565       {
1566         SET_BIT (blocks, bb->index);
1567         bb->aux = NULL;
1568       }
1569   find_many_sub_basic_blocks (blocks);
1570   sbitmap_free (blocks);
1571 }
1572 \f
1573 /* Print out one basic block with live information at start and end.  */
1574
1575 void
1576 dump_bb (bb, outf)
1577      basic_block bb;
1578      FILE *outf;
1579 {
1580   rtx insn;
1581   rtx last;
1582   edge e;
1583
1584   fprintf (outf, ";; Basic block %d, loop depth %d, count ",
1585            bb->index, bb->loop_depth);
1586   fprintf (outf, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) bb->count);
1587   putc ('\n', outf);
1588
1589   fputs (";; Predecessors: ", outf);
1590   for (e = bb->pred; e; e = e->pred_next)
1591     dump_edge_info (outf, e, 0);
1592   putc ('\n', outf);
1593
1594   fputs (";; Registers live at start:", outf);
1595   dump_regset (bb->global_live_at_start, outf);
1596   putc ('\n', outf);
1597
1598   for (insn = bb->head, last = NEXT_INSN (bb->end); insn != last;
1599        insn = NEXT_INSN (insn))
1600     print_rtl_single (outf, insn);
1601
1602   fputs (";; Registers live at end:", outf);
1603   dump_regset (bb->global_live_at_end, outf);
1604   putc ('\n', outf);
1605
1606   fputs (";; Successors: ", outf);
1607   for (e = bb->succ; e; e = e->succ_next)
1608     dump_edge_info (outf, e, 1);
1609   putc ('\n', outf);
1610 }
1611
1612 void
1613 debug_bb (bb)
1614      basic_block bb;
1615 {
1616   dump_bb (bb, stderr);
1617 }
1618
1619 void
1620 debug_bb_n (n)
1621      int n;
1622 {
1623   dump_bb (BASIC_BLOCK (n), stderr);
1624 }
1625 \f
1626 /* Like print_rtl, but also print out live information for the start of each
1627    basic block.  */
1628
1629 void
1630 print_rtl_with_bb (outf, rtx_first)
1631      FILE *outf;
1632      rtx rtx_first;
1633 {
1634   rtx tmp_rtx;
1635
1636   if (rtx_first == 0)
1637     fprintf (outf, "(nil)\n");
1638   else
1639     {
1640       enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
1641       int max_uid = get_max_uid ();
1642       basic_block *start
1643         = (basic_block *) xcalloc (max_uid, sizeof (basic_block));
1644       basic_block *end
1645         = (basic_block *) xcalloc (max_uid, sizeof (basic_block));
1646       enum bb_state *in_bb_p
1647         = (enum bb_state *) xcalloc (max_uid, sizeof (enum bb_state));
1648
1649       basic_block bb;
1650
1651       FOR_EACH_BB_REVERSE (bb)
1652         {
1653           rtx x;
1654
1655           start[INSN_UID (bb->head)] = bb;
1656           end[INSN_UID (bb->end)] = bb;
1657           for (x = bb->head; x != NULL_RTX; x = NEXT_INSN (x))
1658             {
1659               enum bb_state state = IN_MULTIPLE_BB;
1660
1661               if (in_bb_p[INSN_UID (x)] == NOT_IN_BB)
1662                 state = IN_ONE_BB;
1663               in_bb_p[INSN_UID (x)] = state;
1664
1665               if (x == bb->end)
1666                 break;
1667             }
1668         }
1669
1670       for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
1671         {
1672           int did_output;
1673
1674           if ((bb = start[INSN_UID (tmp_rtx)]) != NULL)
1675             {
1676               fprintf (outf, ";; Start of basic block %d, registers live:",
1677                        bb->index);
1678               dump_regset (bb->global_live_at_start, outf);
1679               putc ('\n', outf);
1680             }
1681
1682           if (in_bb_p[INSN_UID (tmp_rtx)] == NOT_IN_BB
1683               && GET_CODE (tmp_rtx) != NOTE
1684               && GET_CODE (tmp_rtx) != BARRIER)
1685             fprintf (outf, ";; Insn is not within a basic block\n");
1686           else if (in_bb_p[INSN_UID (tmp_rtx)] == IN_MULTIPLE_BB)
1687             fprintf (outf, ";; Insn is in multiple basic blocks\n");
1688
1689           did_output = print_rtl_single (outf, tmp_rtx);
1690
1691           if ((bb = end[INSN_UID (tmp_rtx)]) != NULL)
1692             {
1693               fprintf (outf, ";; End of basic block %d, registers live:\n",
1694                        bb->index);
1695               dump_regset (bb->global_live_at_end, outf);
1696               putc ('\n', outf);
1697             }
1698
1699           if (did_output)
1700             putc ('\n', outf);
1701         }
1702
1703       free (start);
1704       free (end);
1705       free (in_bb_p);
1706     }
1707
1708   if (current_function_epilogue_delay_list != 0)
1709     {
1710       fprintf (outf, "\n;; Insns in epilogue delay list:\n\n");
1711       for (tmp_rtx = current_function_epilogue_delay_list; tmp_rtx != 0;
1712            tmp_rtx = XEXP (tmp_rtx, 1))
1713         print_rtl_single (outf, XEXP (tmp_rtx, 0));
1714     }
1715 }
1716 \f
1717 void
1718 update_br_prob_note (bb)
1719      basic_block bb;
1720 {
1721   rtx note;
1722   if (GET_CODE (bb->end) != JUMP_INSN)
1723     return;
1724   note = find_reg_note (bb->end, REG_BR_PROB, NULL_RTX);
1725   if (!note || INTVAL (XEXP (note, 0)) == BRANCH_EDGE (bb)->probability)
1726     return;
1727   XEXP (note, 0) = GEN_INT (BRANCH_EDGE (bb)->probability);
1728 }
1729 \f
1730 /* Verify the CFG consistency.  This function check some CFG invariants and
1731    aborts when something is wrong.  Hope that this function will help to
1732    convert many optimization passes to preserve CFG consistent.
1733
1734    Currently it does following checks:
1735
1736    - test head/end pointers
1737    - overlapping of basic blocks
1738    - edge list correctness
1739    - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
1740    - tails of basic blocks (ensure that boundary is necessary)
1741    - scans body of the basic block for JUMP_INSN, CODE_LABEL
1742      and NOTE_INSN_BASIC_BLOCK
1743    - check that all insns are in the basic blocks
1744      (except the switch handling code, barriers and notes)
1745    - check that all returns are followed by barriers
1746
1747    In future it can be extended check a lot of other stuff as well
1748    (reachability of basic blocks, life information, etc. etc.).  */
1749
1750 void
1751 verify_flow_info ()
1752 {
1753   const int max_uid = get_max_uid ();
1754   const rtx rtx_first = get_insns ();
1755   rtx last_head = get_last_insn ();
1756   basic_block *bb_info, *last_visited;
1757   size_t *edge_checksum;
1758   rtx x;
1759   int num_bb_notes, err = 0;
1760   basic_block bb, last_bb_seen;
1761
1762   bb_info = (basic_block *) xcalloc (max_uid, sizeof (basic_block));
1763   last_visited = (basic_block *) xcalloc (last_basic_block + 2,
1764                                           sizeof (basic_block));
1765   edge_checksum = (size_t *) xcalloc (last_basic_block + 2, sizeof (size_t));
1766
1767   /* Check bb chain & numbers.  */
1768   last_bb_seen = ENTRY_BLOCK_PTR;
1769   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR->next_bb, NULL, next_bb)
1770     {
1771       if (bb != EXIT_BLOCK_PTR
1772           && bb != BASIC_BLOCK (bb->index))
1773         {
1774           error ("bb %d on wrong place", bb->index);
1775           err = 1;
1776         }
1777
1778       if (bb->prev_bb != last_bb_seen)
1779         {
1780           error ("prev_bb of %d should be %d, not %d",
1781                  bb->index, last_bb_seen->index, bb->prev_bb->index);
1782           err = 1;
1783         }
1784
1785       last_bb_seen = bb;
1786     }
1787
1788   FOR_EACH_BB_REVERSE (bb)
1789     {
1790       rtx head = bb->head;
1791       rtx end = bb->end;
1792
1793       /* Verify the end of the basic block is in the INSN chain.  */
1794       for (x = last_head; x != NULL_RTX; x = PREV_INSN (x))
1795         if (x == end)
1796           break;
1797
1798       if (!x)
1799         {
1800           error ("end insn %d for block %d not found in the insn stream",
1801                  INSN_UID (end), bb->index);
1802           err = 1;
1803         }
1804
1805       /* Work backwards from the end to the head of the basic block
1806          to verify the head is in the RTL chain.  */
1807       for (; x != NULL_RTX; x = PREV_INSN (x))
1808         {
1809           /* While walking over the insn chain, verify insns appear
1810              in only one basic block and initialize the BB_INFO array
1811              used by other passes.  */
1812           if (bb_info[INSN_UID (x)] != NULL)
1813             {
1814               error ("insn %d is in multiple basic blocks (%d and %d)",
1815                      INSN_UID (x), bb->index, bb_info[INSN_UID (x)]->index);
1816               err = 1;
1817             }
1818
1819           bb_info[INSN_UID (x)] = bb;
1820
1821           if (x == head)
1822             break;
1823         }
1824       if (!x)
1825         {
1826           error ("head insn %d for block %d not found in the insn stream",
1827                  INSN_UID (head), bb->index);
1828           err = 1;
1829         }
1830
1831       last_head = x;
1832     }
1833
1834   /* Now check the basic blocks (boundaries etc.) */
1835   FOR_EACH_BB_REVERSE (bb)
1836     {
1837       int n_fallthru = 0, n_eh = 0, n_call = 0, n_abnormal = 0, n_branch = 0;
1838       edge e;
1839       rtx note;
1840
1841       if (INSN_P (bb->end)
1842           && (note = find_reg_note (bb->end, REG_BR_PROB, NULL_RTX))
1843           && bb->succ && bb->succ->succ_next
1844           && any_condjump_p (bb->end))
1845         {
1846           if (INTVAL (XEXP (note, 0)) != BRANCH_EDGE (bb)->probability)
1847             {
1848               error ("verify_flow_info: REG_BR_PROB does not match cfg %i %i",
1849                      INTVAL (XEXP (note, 0)), BRANCH_EDGE (bb)->probability);
1850               err = 1;
1851             }
1852         }
1853       if (bb->count < 0)
1854         {
1855           error ("verify_flow_info: Wrong count of block %i %i",
1856                  bb->index, (int)bb->count);
1857           err = 1;
1858         }
1859       if (bb->frequency < 0)
1860         {
1861           error ("verify_flow_info: Wrong frequency of block %i %i",
1862                  bb->index, bb->frequency);
1863           err = 1;
1864         }
1865       for (e = bb->succ; e; e = e->succ_next)
1866         {
1867           if (last_visited [e->dest->index + 2] == bb)
1868             {
1869               error ("verify_flow_info: Duplicate edge %i->%i",
1870                      e->src->index, e->dest->index);
1871               err = 1;
1872             }
1873           if (e->probability < 0 || e->probability > REG_BR_PROB_BASE)
1874             {
1875               error ("verify_flow_info: Wrong probability of edge %i->%i %i",
1876                      e->src->index, e->dest->index, e->probability);
1877               err = 1;
1878             }
1879           if (e->count < 0)
1880             {
1881               error ("verify_flow_info: Wrong count of edge %i->%i %i",
1882                      e->src->index, e->dest->index, (int)e->count);
1883               err = 1;
1884             }
1885
1886           last_visited [e->dest->index + 2] = bb;
1887
1888           if (e->flags & EDGE_FALLTHRU)
1889             n_fallthru++;
1890
1891           if ((e->flags & ~EDGE_DFS_BACK) == 0)
1892             n_branch++;
1893
1894           if (e->flags & EDGE_ABNORMAL_CALL)
1895             n_call++;
1896
1897           if (e->flags & EDGE_EH)
1898             n_eh++;
1899           else if (e->flags & EDGE_ABNORMAL)
1900             n_abnormal++;
1901
1902           if ((e->flags & EDGE_FALLTHRU)
1903               && e->src != ENTRY_BLOCK_PTR
1904               && e->dest != EXIT_BLOCK_PTR)
1905             {
1906               rtx insn;
1907
1908               if (e->src->next_bb != e->dest)
1909                 {
1910                   error
1911                     ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
1912                      e->src->index, e->dest->index);
1913                   err = 1;
1914                 }
1915               else
1916                 for (insn = NEXT_INSN (e->src->end); insn != e->dest->head;
1917                      insn = NEXT_INSN (insn))
1918                   if (GET_CODE (insn) == BARRIER
1919 #ifndef CASE_DROPS_THROUGH
1920                       || INSN_P (insn)
1921 #else
1922                       || (INSN_P (insn) && ! JUMP_TABLE_DATA_P (insn))
1923 #endif
1924                       )
1925                     {
1926                       error ("verify_flow_info: Incorrect fallthru %i->%i",
1927                              e->src->index, e->dest->index);
1928                       fatal_insn ("wrong insn in the fallthru edge", insn);
1929                       err = 1;
1930                     }
1931             }
1932
1933           if (e->src != bb)
1934             {
1935               error ("verify_flow_info: Basic block %d succ edge is corrupted",
1936                      bb->index);
1937               fprintf (stderr, "Predecessor: ");
1938               dump_edge_info (stderr, e, 0);
1939               fprintf (stderr, "\nSuccessor: ");
1940               dump_edge_info (stderr, e, 1);
1941               fprintf (stderr, "\n");
1942               err = 1;
1943             }
1944
1945           edge_checksum[e->dest->index + 2] += (size_t) e;
1946         }
1947
1948       if (n_eh && GET_CODE (PATTERN (bb->end)) != RESX
1949           && !find_reg_note (bb->end, REG_EH_REGION, NULL_RTX))
1950         {
1951           error ("Missing REG_EH_REGION note in the end of bb %i", bb->index);
1952           err = 1;
1953         }
1954       if (n_branch
1955           && (GET_CODE (bb->end) != JUMP_INSN
1956               || (n_branch > 1 && (any_uncondjump_p (bb->end)
1957                                    || any_condjump_p (bb->end)))))
1958         {
1959           error ("Too many outgoing branch edges from bb %i", bb->index);
1960           err = 1;
1961         }
1962       if (n_fallthru && any_uncondjump_p (bb->end))
1963         {
1964           error ("Fallthru edge after unconditional jump %i", bb->index);
1965           err = 1;
1966         }
1967       if (n_branch != 1 && any_uncondjump_p (bb->end))
1968         {
1969           error ("Wrong amount of branch edges after unconditional jump %i", bb->index);
1970           err = 1;
1971         }
1972       if (n_branch != 1 && any_condjump_p (bb->end)
1973           && JUMP_LABEL (bb->end) != bb->next_bb->head)
1974         {
1975           error ("Wrong amount of branch edges after conditional jump %i", bb->index);
1976           err = 1;
1977         }
1978       if (n_call && GET_CODE (bb->end) != CALL_INSN)
1979         {
1980           error ("Call edges for non-call insn in bb %i", bb->index);
1981           err = 1;
1982         }
1983       if (n_abnormal
1984           && (GET_CODE (bb->end) != CALL_INSN && n_call != n_abnormal)
1985           && (GET_CODE (bb->end) != JUMP_INSN
1986               || any_condjump_p (bb->end)
1987               || any_uncondjump_p (bb->end)))
1988         {
1989           error ("Abnormal edges for no purpose in bb %i", bb->index);
1990           err = 1;
1991         }
1992
1993       if (!n_fallthru)
1994         {
1995           rtx insn;
1996
1997           /* Ensure existence of barrier in BB with no fallthru edges.  */
1998           for (insn = bb->end; !insn || GET_CODE (insn) != BARRIER;
1999                insn = NEXT_INSN (insn))
2000             if (!insn
2001                 || (GET_CODE (insn) == NOTE
2002                     && NOTE_LINE_NUMBER (insn) == NOTE_INSN_BASIC_BLOCK))
2003                 {
2004                   error ("missing barrier after block %i", bb->index);
2005                   err = 1;
2006                   break;
2007                 }
2008         }
2009
2010       for (e = bb->pred; e; e = e->pred_next)
2011         {
2012           if (e->dest != bb)
2013             {
2014               error ("basic block %d pred edge is corrupted", bb->index);
2015               fputs ("Predecessor: ", stderr);
2016               dump_edge_info (stderr, e, 0);
2017               fputs ("\nSuccessor: ", stderr);
2018               dump_edge_info (stderr, e, 1);
2019               fputc ('\n', stderr);
2020               err = 1;
2021             }
2022           edge_checksum[e->dest->index + 2] -= (size_t) e;
2023         }
2024
2025       for (x = bb->head; x != NEXT_INSN (bb->end); x = NEXT_INSN (x))
2026         if (BLOCK_FOR_INSN (x) != bb)
2027           {
2028             debug_rtx (x);
2029             if (! BLOCK_FOR_INSN (x))
2030               error
2031                 ("insn %d inside basic block %d but block_for_insn is NULL",
2032                  INSN_UID (x), bb->index);
2033             else
2034               error
2035                 ("insn %d inside basic block %d but block_for_insn is %i",
2036                  INSN_UID (x), bb->index, BLOCK_FOR_INSN (x)->index);
2037
2038             err = 1;
2039           }
2040
2041       /* OK pointers are correct.  Now check the header of basic
2042          block.  It ought to contain optional CODE_LABEL followed
2043          by NOTE_BASIC_BLOCK.  */
2044       x = bb->head;
2045       if (GET_CODE (x) == CODE_LABEL)
2046         {
2047           if (bb->end == x)
2048             {
2049               error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2050                      bb->index);
2051               err = 1;
2052             }
2053
2054           x = NEXT_INSN (x);
2055         }
2056
2057       if (!NOTE_INSN_BASIC_BLOCK_P (x) || NOTE_BASIC_BLOCK (x) != bb)
2058         {
2059           error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2060                  bb->index);
2061           err = 1;
2062         }
2063
2064       if (bb->end == x)
2065         /* Do checks for empty blocks her. e */
2066         ;
2067       else
2068         for (x = NEXT_INSN (x); x; x = NEXT_INSN (x))
2069           {
2070             if (NOTE_INSN_BASIC_BLOCK_P (x))
2071               {
2072                 error ("NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d",
2073                        INSN_UID (x), bb->index);
2074                 err = 1;
2075               }
2076
2077             if (x == bb->end)
2078               break;
2079
2080             if (GET_CODE (x) == JUMP_INSN
2081                 || GET_CODE (x) == CODE_LABEL
2082                 || GET_CODE (x) == BARRIER)
2083               {
2084                 error ("in basic block %d:", bb->index);
2085                 fatal_insn ("flow control insn inside a basic block", x);
2086               }
2087           }
2088     }
2089
2090   /* Complete edge checksumming for ENTRY and EXIT.  */
2091   {
2092     edge e;
2093
2094     for (e = ENTRY_BLOCK_PTR->succ; e ; e = e->succ_next)
2095       edge_checksum[e->dest->index + 2] += (size_t) e;
2096
2097     for (e = EXIT_BLOCK_PTR->pred; e ; e = e->pred_next)
2098       edge_checksum[e->dest->index + 2] -= (size_t) e;
2099   }
2100
2101   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
2102     if (edge_checksum[bb->index + 2])
2103       {
2104         error ("basic block %i edge lists are corrupted", bb->index);
2105         err = 1;
2106       }
2107
2108   num_bb_notes = 0;
2109   last_bb_seen = ENTRY_BLOCK_PTR;
2110
2111   for (x = rtx_first; x; x = NEXT_INSN (x))
2112     {
2113       if (NOTE_INSN_BASIC_BLOCK_P (x))
2114         {
2115           bb = NOTE_BASIC_BLOCK (x);
2116
2117           num_bb_notes++;
2118           if (bb != last_bb_seen->next_bb)
2119             internal_error ("basic blocks not numbered consecutively");
2120
2121           last_bb_seen = bb;
2122         }
2123
2124       if (!bb_info[INSN_UID (x)])
2125         {
2126           switch (GET_CODE (x))
2127             {
2128             case BARRIER:
2129             case NOTE:
2130               break;
2131
2132             case CODE_LABEL:
2133               /* An addr_vec is placed outside any block block.  */
2134               if (NEXT_INSN (x)
2135                   && GET_CODE (NEXT_INSN (x)) == JUMP_INSN
2136                   && (GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_DIFF_VEC
2137                       || GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_VEC))
2138                 x = NEXT_INSN (x);
2139
2140               /* But in any case, non-deletable labels can appear anywhere.  */
2141               break;
2142
2143             default:
2144               fatal_insn ("insn outside basic block", x);
2145             }
2146         }
2147
2148       if (INSN_P (x)
2149           && GET_CODE (x) == JUMP_INSN
2150           && returnjump_p (x) && ! condjump_p (x)
2151           && ! (NEXT_INSN (x) && GET_CODE (NEXT_INSN (x)) == BARRIER))
2152             fatal_insn ("return not followed by barrier", x);
2153     }
2154
2155   if (num_bb_notes != n_basic_blocks)
2156     internal_error
2157       ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
2158        num_bb_notes, n_basic_blocks);
2159
2160   if (err)
2161     internal_error ("verify_flow_info failed");
2162
2163   /* Clean up.  */
2164   free (bb_info);
2165   free (last_visited);
2166   free (edge_checksum);
2167 }
2168 \f
2169 /* Assume that the preceding pass has possibly eliminated jump instructions
2170    or converted the unconditional jumps.  Eliminate the edges from CFG.
2171    Return true if any edges are eliminated.  */
2172
2173 bool
2174 purge_dead_edges (bb)
2175      basic_block bb;
2176 {
2177   edge e, next;
2178   rtx insn = bb->end, note;
2179   bool purged = false;
2180
2181   /* If this instruction cannot trap, remove REG_EH_REGION notes.  */
2182   if (GET_CODE (insn) == INSN
2183       && (note = find_reg_note (insn, REG_EH_REGION, NULL)))
2184     {
2185       rtx eqnote;
2186
2187       if (! may_trap_p (PATTERN (insn))
2188           || ((eqnote = find_reg_equal_equiv_note (insn))
2189               && ! may_trap_p (XEXP (eqnote, 0))))
2190         remove_note (insn, note);
2191     }
2192
2193   /* Cleanup abnormal edges caused by exceptions or non-local gotos.  */
2194   for (e = bb->succ; e; e = next)
2195     {
2196       next = e->succ_next;
2197       if (e->flags & EDGE_EH)
2198         {
2199           if (can_throw_internal (bb->end))
2200             continue;
2201         }
2202       else if (e->flags & EDGE_ABNORMAL_CALL)
2203         {
2204           if (GET_CODE (bb->end) == CALL_INSN
2205               && (! (note = find_reg_note (insn, REG_EH_REGION, NULL))
2206                   || INTVAL (XEXP (note, 0)) >= 0))
2207             continue;
2208         }
2209       else
2210         continue;
2211
2212       remove_edge (e);
2213       bb->flags |= BB_DIRTY;
2214       purged = true;
2215     }
2216
2217   if (GET_CODE (insn) == JUMP_INSN)
2218     {
2219       rtx note;
2220       edge b,f;
2221
2222       /* We do care only about conditional jumps and simplejumps.  */
2223       if (!any_condjump_p (insn)
2224           && !returnjump_p (insn)
2225           && !simplejump_p (insn))
2226         return purged;
2227
2228       /* Branch probability/prediction notes are defined only for
2229          condjumps.  We've possibly turned condjump into simplejump.  */
2230       if (simplejump_p (insn))
2231         {
2232           note = find_reg_note (insn, REG_BR_PROB, NULL);
2233           if (note)
2234             remove_note (insn, note);
2235           while ((note = find_reg_note (insn, REG_BR_PRED, NULL)))
2236             remove_note (insn, note);
2237         }
2238
2239       for (e = bb->succ; e; e = next)
2240         {
2241           next = e->succ_next;
2242
2243           /* Avoid abnormal flags to leak from computed jumps turned
2244              into simplejumps.  */
2245
2246           e->flags &= ~EDGE_ABNORMAL;
2247
2248           /* See if this edge is one we should keep.  */
2249           if ((e->flags & EDGE_FALLTHRU) && any_condjump_p (insn))
2250             /* A conditional jump can fall through into the next
2251                block, so we should keep the edge.  */
2252             continue;
2253           else if (e->dest != EXIT_BLOCK_PTR
2254                    && e->dest->head == JUMP_LABEL (insn))
2255             /* If the destination block is the target of the jump,
2256                keep the edge.  */
2257             continue;
2258           else if (e->dest == EXIT_BLOCK_PTR && returnjump_p (insn))
2259             /* If the destination block is the exit block, and this
2260                instruction is a return, then keep the edge.  */
2261             continue;
2262           else if ((e->flags & EDGE_EH) && can_throw_internal (insn))
2263             /* Keep the edges that correspond to exceptions thrown by
2264                this instruction and rematerialize the EDGE_ABNORMAL flag
2265                we just cleared above.  */
2266             {
2267               e->flags |= EDGE_ABNORMAL;
2268               continue;
2269             }
2270
2271           /* We do not need this edge.  */
2272           bb->flags |= BB_DIRTY;
2273           purged = true;
2274           remove_edge (e);
2275         }
2276
2277       if (!bb->succ || !purged)
2278         return purged;
2279
2280       if (rtl_dump_file)
2281         fprintf (rtl_dump_file, "Purged edges from bb %i\n", bb->index);
2282
2283       if (!optimize)
2284         return purged;
2285
2286       /* Redistribute probabilities.  */
2287       if (!bb->succ->succ_next)
2288         {
2289           bb->succ->probability = REG_BR_PROB_BASE;
2290           bb->succ->count = bb->count;
2291         }
2292       else
2293         {
2294           note = find_reg_note (insn, REG_BR_PROB, NULL);
2295           if (!note)
2296             return purged;
2297
2298           b = BRANCH_EDGE (bb);
2299           f = FALLTHRU_EDGE (bb);
2300           b->probability = INTVAL (XEXP (note, 0));
2301           f->probability = REG_BR_PROB_BASE - b->probability;
2302           b->count = bb->count * b->probability / REG_BR_PROB_BASE;
2303           f->count = bb->count * f->probability / REG_BR_PROB_BASE;
2304         }
2305
2306       return purged;
2307     }
2308
2309   /* If we don't see a jump insn, we don't know exactly why the block would
2310      have been broken at this point.  Look for a simple, non-fallthru edge,
2311      as these are only created by conditional branches.  If we find such an
2312      edge we know that there used to be a jump here and can then safely
2313      remove all non-fallthru edges.  */
2314   for (e = bb->succ; e && (e->flags & (EDGE_COMPLEX | EDGE_FALLTHRU));
2315        e = e->succ_next)
2316     ;
2317
2318   if (!e)
2319     return purged;
2320
2321   for (e = bb->succ; e; e = next)
2322     {
2323       next = e->succ_next;
2324       if (!(e->flags & EDGE_FALLTHRU))
2325         {
2326           bb->flags |= BB_DIRTY;
2327           remove_edge (e);
2328           purged = true;
2329         }
2330     }
2331
2332   if (!bb->succ || bb->succ->succ_next)
2333     abort ();
2334
2335   bb->succ->probability = REG_BR_PROB_BASE;
2336   bb->succ->count = bb->count;
2337
2338   if (rtl_dump_file)
2339     fprintf (rtl_dump_file, "Purged non-fallthru edges from bb %i\n",
2340              bb->index);
2341   return purged;
2342 }
2343
2344 /* Search all basic blocks for potentially dead edges and purge them.  Return
2345    true if some edge has been eliminated.  */
2346
2347 bool
2348 purge_all_dead_edges (update_life_p)
2349      int update_life_p;
2350 {
2351   int purged = false;
2352   sbitmap blocks = 0;
2353   basic_block bb;
2354
2355   if (update_life_p)
2356     {
2357       blocks = sbitmap_alloc (last_basic_block);
2358       sbitmap_zero (blocks);
2359     }
2360
2361   FOR_EACH_BB (bb)
2362     {
2363       bool purged_here = purge_dead_edges (bb);
2364
2365       purged |= purged_here;
2366       if (purged_here && update_life_p)
2367         SET_BIT (blocks, bb->index);
2368     }
2369
2370   if (update_life_p && purged)
2371     update_life_info (blocks, UPDATE_LIFE_GLOBAL,
2372                       PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE
2373                       | PROP_KILL_DEAD_CODE);
2374
2375   if (update_life_p)
2376     sbitmap_free (blocks);
2377   return purged;
2378 }