OSDN Git Service

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