OSDN Git Service

* basic-block.h (could_fall_through): Declare.
[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, 2003, 2004 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      - Basic CFG/RTL manipulation API documented in cfghooks.h
27      - CFG-aware instruction chain manipulation
28          delete_insn, delete_insn_chain
29      - Edge splitting and committing to edges
30          insert_insn_on_edge, commit_edge_insertions
31      - CFG updating after insn simplification
32          purge_dead_edges, purge_all_dead_edges
33
34    Functions not supposed for generic use:
35      - Infrastructure to determine quickly basic block for insn
36          compute_bb_for_insn, update_bb_for_insn, set_block_for_insn,
37      - Edge redirection with updating and optimizing of insn chain
38          block_label, tidy_fallthru_edge, force_nonfallthru  */
39 \f
40 #include "config.h"
41 #include "system.h"
42 #include "coretypes.h"
43 #include "tm.h"
44 #include "tree.h"
45 #include "rtl.h"
46 #include "hard-reg-set.h"
47 #include "basic-block.h"
48 #include "regs.h"
49 #include "flags.h"
50 #include "output.h"
51 #include "function.h"
52 #include "except.h"
53 #include "toplev.h"
54 #include "tm_p.h"
55 #include "obstack.h"
56 #include "insn-config.h"
57 #include "cfglayout.h"
58 #include "expr.h"
59
60
61 /* The labels mentioned in non-jump rtl.  Valid during find_basic_blocks.  */
62 /* ??? Should probably be using LABEL_NUSES instead.  It would take a
63    bit of surgery to be able to use or co-opt the routines in jump.  */
64 rtx label_value_list;
65
66 static int can_delete_note_p (rtx);
67 static int can_delete_label_p (rtx);
68 static void commit_one_edge_insertion (edge, int);
69 static rtx last_loop_beg_note (rtx);
70 static bool back_edge_of_syntactic_loop_p (basic_block, basic_block);
71 basic_block force_nonfallthru_and_redirect (edge, basic_block);
72 static basic_block rtl_split_edge (edge);
73 static bool rtl_move_block_after (basic_block, basic_block);
74 static int rtl_verify_flow_info (void);
75 static basic_block cfg_layout_split_block (basic_block, void *);
76 static edge cfg_layout_redirect_edge_and_branch (edge, basic_block);
77 static basic_block cfg_layout_redirect_edge_and_branch_force (edge, basic_block);
78 static void cfg_layout_delete_block (basic_block);
79 static void rtl_delete_block (basic_block);
80 static basic_block rtl_redirect_edge_and_branch_force (edge, basic_block);
81 static edge rtl_redirect_edge_and_branch (edge, basic_block);
82 static basic_block rtl_split_block (basic_block, void *);
83 static void rtl_dump_bb (basic_block, FILE *, int);
84 static int rtl_verify_flow_info_1 (void);
85 static void mark_killed_regs (rtx, rtx, void *);
86 static void rtl_make_forwarder_block (edge);
87 \f
88 /* Return true if NOTE is not one of the ones that must be kept paired,
89    so that we may simply delete it.  */
90
91 static int
92 can_delete_note_p (rtx note)
93 {
94   return (NOTE_LINE_NUMBER (note) == NOTE_INSN_DELETED
95           || NOTE_LINE_NUMBER (note) == NOTE_INSN_BASIC_BLOCK
96           || NOTE_LINE_NUMBER (note) == NOTE_INSN_UNLIKELY_EXECUTED_CODE
97           || NOTE_LINE_NUMBER (note) == NOTE_INSN_PREDICTION);
98 }
99
100 /* True if a given label can be deleted.  */
101
102 static int
103 can_delete_label_p (rtx label)
104 {
105   return (!LABEL_PRESERVE_P (label)
106           /* User declared labels must be preserved.  */
107           && LABEL_NAME (label) == 0
108           && !in_expr_list_p (forced_labels, label)
109           && !in_expr_list_p (label_value_list, label));
110 }
111
112 /* Delete INSN by patching it out.  Return the next insn.  */
113
114 rtx
115 delete_insn (rtx insn)
116 {
117   rtx next = NEXT_INSN (insn);
118   rtx note;
119   bool really_delete = true;
120
121   if (GET_CODE (insn) == CODE_LABEL)
122     {
123       /* Some labels can't be directly removed from the INSN chain, as they
124          might be references via variables, constant pool etc.
125          Convert them to the special NOTE_INSN_DELETED_LABEL note.  */
126       if (! can_delete_label_p (insn))
127         {
128           const char *name = LABEL_NAME (insn);
129
130           really_delete = false;
131           PUT_CODE (insn, NOTE);
132           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED_LABEL;
133           NOTE_SOURCE_FILE (insn) = name;
134         }
135
136       remove_node_from_expr_list (insn, &nonlocal_goto_handler_labels);
137     }
138
139   if (really_delete)
140     {
141       /* If this insn has already been deleted, something is very wrong.  */
142       if (INSN_DELETED_P (insn))
143         abort ();
144       remove_insn (insn);
145       INSN_DELETED_P (insn) = 1;
146     }
147
148   /* If deleting a jump, decrement the use count of the label.  Deleting
149      the label itself should happen in the normal course of block merging.  */
150   if (GET_CODE (insn) == JUMP_INSN
151       && JUMP_LABEL (insn)
152       && GET_CODE (JUMP_LABEL (insn)) == CODE_LABEL)
153     LABEL_NUSES (JUMP_LABEL (insn))--;
154
155   /* Also if deleting an insn that references a label.  */
156   else
157     {
158       while ((note = find_reg_note (insn, REG_LABEL, NULL_RTX)) != NULL_RTX
159              && GET_CODE (XEXP (note, 0)) == CODE_LABEL)
160         {
161           LABEL_NUSES (XEXP (note, 0))--;
162           remove_note (insn, note);
163         }
164     }
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 (rtx insn)
193 {
194   rtx x;
195   bool purge = false;
196
197   if (INSN_P (insn)
198       && BLOCK_FOR_INSN (insn)
199       && BB_END (BLOCK_FOR_INSN (insn)) == insn)
200     purge = true;
201   x = delete_insn (insn);
202   if (purge)
203     purge_dead_edges (BLOCK_FOR_INSN (insn));
204   return x;
205 }
206
207 /* Unlink a chain of insns between START and FINISH, leaving notes
208    that must be paired.  */
209
210 void
211 delete_insn_chain (rtx start, rtx finish)
212 {
213   rtx next;
214
215   /* Unchain the insns one by one.  It would be quicker to delete all of these
216      with a single unchaining, rather than one at a time, but we need to keep
217      the NOTE's.  */
218   while (1)
219     {
220       next = NEXT_INSN (start);
221       if (GET_CODE (start) == NOTE && !can_delete_note_p (start))
222         ;
223       else
224         next = delete_insn (start);
225
226       if (start == finish)
227         break;
228       start = next;
229     }
230 }
231
232 /* Like delete_insn but also purge dead edges from BB.  */
233 void
234 delete_insn_chain_and_edges (rtx first, rtx last)
235 {
236   bool purge = false;
237
238   if (INSN_P (last)
239       && BLOCK_FOR_INSN (last)
240       && BB_END (BLOCK_FOR_INSN (last)) == last)
241     purge = true;
242   delete_insn_chain (first, last);
243   if (purge)
244     purge_dead_edges (BLOCK_FOR_INSN (last));
245 }
246 \f
247 /* Create a new basic block consisting of the instructions between HEAD and END
248    inclusive.  This function is designed to allow fast BB construction - reuses
249    the note and basic block struct in BB_NOTE, if any and do not grow
250    BASIC_BLOCK chain and should be used directly only by CFG construction code.
251    END can be NULL in to create new empty basic block before HEAD.  Both END
252    and HEAD can be NULL to create basic block at the end of INSN chain.
253    AFTER is the basic block we should be put after.  */
254
255 basic_block
256 create_basic_block_structure (rtx head, rtx end, rtx bb_note, basic_block after)
257 {
258   basic_block bb;
259
260   if (bb_note
261       && (bb = NOTE_BASIC_BLOCK (bb_note)) != NULL
262       && bb->aux == NULL)
263     {
264       /* If we found an existing note, thread it back onto the chain.  */
265
266       rtx after;
267
268       if (GET_CODE (head) == CODE_LABEL)
269         after = head;
270       else
271         {
272           after = PREV_INSN (head);
273           head = bb_note;
274         }
275
276       if (after != bb_note && NEXT_INSN (after) != bb_note)
277         reorder_insns_nobb (bb_note, bb_note, after);
278     }
279   else
280     {
281       /* Otherwise we must create a note and a basic block structure.  */
282
283       bb = alloc_block ();
284
285       if (!head && !end)
286         head = end = bb_note
287           = emit_note_after (NOTE_INSN_BASIC_BLOCK, get_last_insn ());
288       else if (GET_CODE (head) == CODE_LABEL && end)
289         {
290           bb_note = emit_note_after (NOTE_INSN_BASIC_BLOCK, head);
291           if (head == end)
292             end = bb_note;
293         }
294       else
295         {
296           bb_note = emit_note_before (NOTE_INSN_BASIC_BLOCK, head);
297           head = bb_note;
298           if (!end)
299             end = head;
300         }
301
302       NOTE_BASIC_BLOCK (bb_note) = bb;
303     }
304
305   /* Always include the bb note in the block.  */
306   if (NEXT_INSN (end) == bb_note)
307     end = bb_note;
308
309   BB_HEAD (bb) = head;
310   BB_END (bb) = end;
311   bb->index = last_basic_block++;
312   bb->flags = BB_NEW;
313   link_block (bb, after);
314   BASIC_BLOCK (bb->index) = bb;
315   update_bb_for_insn (bb);
316   bb->partition = UNPARTITIONED;
317
318   /* Tag the block so that we know it has been used when considering
319      other basic block notes.  */
320   bb->aux = bb;
321
322   return bb;
323 }
324
325 /* Create new basic block consisting of instructions in between HEAD and END
326    and place it to the BB chain after block AFTER.  END can be NULL in to
327    create new empty basic block before HEAD.  Both END and HEAD can be NULL to
328    create basic block at the end of INSN chain.  */
329
330 static basic_block
331 rtl_create_basic_block (void *headp, void *endp, basic_block after)
332 {
333   rtx head = headp, end = endp;
334   basic_block bb;
335
336   /* Grow the basic block array if needed.  */
337   if ((size_t) last_basic_block >= VARRAY_SIZE (basic_block_info))
338     {
339       size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
340       VARRAY_GROW (basic_block_info, new_size);
341     }
342
343   n_basic_blocks++;
344
345   bb = create_basic_block_structure (head, end, NULL, after);
346   bb->aux = NULL;
347   return bb;
348 }
349
350 static basic_block
351 cfg_layout_create_basic_block (void *head, void *end, basic_block after)
352 {
353   basic_block newbb = rtl_create_basic_block (head, end, after);
354
355   initialize_bb_rbi (newbb);
356   return newbb;
357 }
358 \f
359 /* Delete the insns in a (non-live) block.  We physically delete every
360    non-deleted-note insn, and update the flow graph appropriately.
361
362    Return nonzero if we deleted an exception handler.  */
363
364 /* ??? Preserving all such notes strikes me as wrong.  It would be nice
365    to post-process the stream to remove empty blocks, loops, ranges, etc.  */
366
367 static void
368 rtl_delete_block (basic_block b)
369 {
370   rtx insn, end, tmp;
371
372   /* If the head of this block is a CODE_LABEL, then it might be the
373      label for an exception handler which can't be reached.
374
375      We need to remove the label from the exception_handler_label list
376      and remove the associated NOTE_INSN_EH_REGION_BEG and
377      NOTE_INSN_EH_REGION_END notes.  */
378
379   /* Get rid of all NOTE_INSN_PREDICTIONs and NOTE_INSN_LOOP_CONTs
380      hanging before the block.  */
381
382   for (insn = PREV_INSN (BB_HEAD (b)); insn; insn = PREV_INSN (insn))
383     {
384       if (GET_CODE (insn) != NOTE)
385         break;
386       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PREDICTION
387           || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT)
388         NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
389     }
390
391   insn = BB_HEAD (b);
392
393   if (GET_CODE (insn) == CODE_LABEL)
394     maybe_remove_eh_handler (insn);
395
396   /* Include any jump table following the basic block.  */
397   end = BB_END (b);
398   if (tablejump_p (end, NULL, &tmp))
399     end = tmp;
400
401   /* Include any barrier that may follow the basic block.  */
402   tmp = next_nonnote_insn (end);
403   if (tmp && GET_CODE (tmp) == BARRIER)
404     end = tmp;
405
406   /* Selectively delete the entire chain.  */
407   BB_HEAD (b) = NULL;
408   delete_insn_chain (insn, end);
409 }
410 \f
411 /* Records the basic block struct in BLOCK_FOR_INSN for every insn.  */
412
413 void
414 compute_bb_for_insn (void)
415 {
416   basic_block bb;
417
418   FOR_EACH_BB (bb)
419     {
420       rtx end = BB_END (bb);
421       rtx insn;
422
423       for (insn = BB_HEAD (bb); ; insn = NEXT_INSN (insn))
424         {
425           BLOCK_FOR_INSN (insn) = bb;
426           if (insn == end)
427             break;
428         }
429     }
430 }
431
432 /* Release the basic_block_for_insn array.  */
433
434 void
435 free_bb_for_insn (void)
436 {
437   rtx insn;
438   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
439     if (GET_CODE (insn) != BARRIER)
440       BLOCK_FOR_INSN (insn) = NULL;
441 }
442
443 /* Update insns block within BB.  */
444
445 void
446 update_bb_for_insn (basic_block bb)
447 {
448   rtx insn;
449
450   for (insn = BB_HEAD (bb); ; insn = NEXT_INSN (insn))
451     {
452       if (GET_CODE (insn) != BARRIER)
453         set_block_for_insn (insn, bb);
454       if (insn == BB_END (bb))
455         break;
456     }
457 }
458 \f
459 /* Creates a new basic block just after basic block B by splitting
460    everything after specified instruction I.  */
461
462 static basic_block
463 rtl_split_block (basic_block bb, void *insnp)
464 {
465   basic_block new_bb;
466   rtx insn = insnp;
467   edge e;
468
469   if (!insn)
470     {
471       insn = first_insn_after_basic_block_note (bb);
472
473       if (insn)
474         insn = PREV_INSN (insn);
475       else
476         insn = get_last_insn ();
477     }
478
479   /* We probably should check type of the insn so that we do not create
480      inconsistent cfg.  It is checked in verify_flow_info anyway, so do not
481      bother.  */
482   if (insn == BB_END (bb))
483     emit_note_after (NOTE_INSN_DELETED, insn);
484
485   /* Create the new basic block.  */
486   new_bb = create_basic_block (NEXT_INSN (insn), BB_END (bb), bb);
487   BB_END (bb) = insn;
488
489   /* Redirect the outgoing edges.  */
490   new_bb->succ = bb->succ;
491   bb->succ = NULL;
492   for (e = new_bb->succ; e; e = e->succ_next)
493     e->src = new_bb;
494
495   if (bb->global_live_at_start)
496     {
497       new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
498       new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
499       COPY_REG_SET (new_bb->global_live_at_end, bb->global_live_at_end);
500
501       /* We now have to calculate which registers are live at the end
502          of the split basic block and at the start of the new basic
503          block.  Start with those registers that are known to be live
504          at the end of the original basic block and get
505          propagate_block to determine which registers are live.  */
506       COPY_REG_SET (new_bb->global_live_at_start, bb->global_live_at_end);
507       propagate_block (new_bb, new_bb->global_live_at_start, NULL, NULL, 0);
508       COPY_REG_SET (bb->global_live_at_end,
509                     new_bb->global_live_at_start);
510 #ifdef HAVE_conditional_execution
511       /* In the presence of conditional execution we are not able to update
512          liveness precisely.  */
513       if (reload_completed)
514         {
515           bb->flags |= BB_DIRTY;
516           new_bb->flags |= BB_DIRTY;
517         }
518 #endif
519     }
520
521   return new_bb;
522 }
523
524 /* Blocks A and B are to be merged into a single block A.  The insns
525    are already contiguous.  */
526
527 static void
528 rtl_merge_blocks (basic_block a, basic_block b)
529 {
530   rtx b_head = BB_HEAD (b), b_end = BB_END (b), a_end = BB_END (a);
531   rtx del_first = NULL_RTX, del_last = NULL_RTX;
532   int b_empty = 0;
533
534   /* If there was a CODE_LABEL beginning B, delete it.  */
535   if (GET_CODE (b_head) == CODE_LABEL)
536     {
537       /* Detect basic blocks with nothing but a label.  This can happen
538          in particular at the end of a function.  */
539       if (b_head == b_end)
540         b_empty = 1;
541
542       del_first = del_last = b_head;
543       b_head = NEXT_INSN (b_head);
544     }
545
546   /* Delete the basic block note and handle blocks containing just that
547      note.  */
548   if (NOTE_INSN_BASIC_BLOCK_P (b_head))
549     {
550       if (b_head == b_end)
551         b_empty = 1;
552       if (! del_last)
553         del_first = b_head;
554
555       del_last = b_head;
556       b_head = NEXT_INSN (b_head);
557     }
558
559   /* If there was a jump out of A, delete it.  */
560   if (GET_CODE (a_end) == JUMP_INSN)
561     {
562       rtx prev;
563
564       for (prev = PREV_INSN (a_end); ; prev = PREV_INSN (prev))
565         if (GET_CODE (prev) != NOTE
566             || NOTE_LINE_NUMBER (prev) == NOTE_INSN_BASIC_BLOCK
567             || prev == BB_HEAD (a))
568           break;
569
570       del_first = a_end;
571
572 #ifdef HAVE_cc0
573       /* If this was a conditional jump, we need to also delete
574          the insn that set cc0.  */
575       if (only_sets_cc0_p (prev))
576         {
577           rtx tmp = prev;
578
579           prev = prev_nonnote_insn (prev);
580           if (!prev)
581             prev = BB_HEAD (a);
582           del_first = tmp;
583         }
584 #endif
585
586       a_end = PREV_INSN (del_first);
587     }
588   else if (GET_CODE (NEXT_INSN (a_end)) == BARRIER)
589     del_first = NEXT_INSN (a_end);
590
591   /* Delete everything marked above as well as crap that might be
592      hanging out between the two blocks.  */
593   BB_HEAD (b) = NULL;
594   delete_insn_chain (del_first, del_last);
595
596   /* Reassociate the insns of B with A.  */
597   if (!b_empty)
598     {
599       rtx x;
600
601       for (x = a_end; x != b_end; x = NEXT_INSN (x))
602         set_block_for_insn (x, a);
603
604       set_block_for_insn (b_end, a);
605
606       a_end = b_end;
607     }
608
609   BB_END (a) = a_end;
610 }
611
612 /* Return true when block A and B can be merged.  */
613 static bool
614 rtl_can_merge_blocks (basic_block a,basic_block b)
615 {
616   bool partitions_ok = true;
617
618   /* If we are partitioning hot/cold basic blocks, we don't want to
619      mess up unconditional or indirect jumps that cross between hot
620      and cold sections.  */
621   
622   if (flag_reorder_blocks_and_partition
623       && (find_reg_note (BB_END (a), REG_CROSSING_JUMP, NULL_RTX)
624           || find_reg_note (BB_END (b), REG_CROSSING_JUMP, NULL_RTX)
625           || a->partition != b->partition))
626     partitions_ok = false;
627
628   /* There must be exactly one edge in between the blocks.  */
629   return (a->succ && !a->succ->succ_next && a->succ->dest == b
630           && !b->pred->pred_next && a != b
631           /* Must be simple edge.  */
632           && !(a->succ->flags & EDGE_COMPLEX)
633           && partitions_ok
634           && a->next_bb == b
635           && a != ENTRY_BLOCK_PTR && b != EXIT_BLOCK_PTR
636           /* If the jump insn has side effects,
637              we can't kill the edge.  */
638           && (GET_CODE (BB_END (a)) != JUMP_INSN
639               || (reload_completed
640                   ? simplejump_p (BB_END (a)) : onlyjump_p (BB_END (a)))));
641 }
642 \f
643 /* Return the label in the head of basic block BLOCK.  Create one if it doesn't
644    exist.  */
645
646 rtx
647 block_label (basic_block block)
648 {
649   if (block == EXIT_BLOCK_PTR)
650     return NULL_RTX;
651
652   if (GET_CODE (BB_HEAD (block)) != CODE_LABEL)
653     {
654       BB_HEAD (block) = emit_label_before (gen_label_rtx (), BB_HEAD (block));
655     }
656
657   return BB_HEAD (block);
658 }
659
660 /* Attempt to perform edge redirection by replacing possibly complex jump
661    instruction by unconditional jump or removing jump completely.  This can
662    apply only if all edges now point to the same block.  The parameters and
663    return values are equivalent to redirect_edge_and_branch.  */
664
665 edge
666 try_redirect_by_replacing_jump (edge e, basic_block target, bool in_cfglayout)
667 {
668   basic_block src = e->src;
669   rtx insn = BB_END (src), kill_from;
670   edge tmp;
671   rtx set;
672   int fallthru = 0;
673
674
675   /* If we are partitioning hot/cold basic blocks, we don't want to
676      mess up unconditional or indirect jumps that cross between hot
677      and cold sections.  */
678   
679   if (flag_reorder_blocks_and_partition
680       && find_reg_note (insn, REG_CROSSING_JUMP, NULL_RTX))
681     return NULL;
682
683   /* Verify that all targets will be TARGET.  */
684   for (tmp = src->succ; tmp; tmp = tmp->succ_next)
685     if (tmp->dest != target && tmp != e)
686       break;
687
688   if (tmp || !onlyjump_p (insn))
689     return NULL;
690   if ((!optimize || reload_completed) && tablejump_p (insn, NULL, NULL))
691     return NULL;
692
693   /* Avoid removing branch with side effects.  */
694   set = single_set (insn);
695   if (!set || side_effects_p (set))
696     return NULL;
697
698   /* In case we zap a conditional jump, we'll need to kill
699      the cc0 setter too.  */
700   kill_from = insn;
701 #ifdef HAVE_cc0
702   if (reg_mentioned_p (cc0_rtx, PATTERN (insn)))
703     kill_from = PREV_INSN (insn);
704 #endif
705
706   /* See if we can create the fallthru edge.  */
707   if (in_cfglayout || can_fallthru (src, target))
708     {
709       if (dump_file)
710         fprintf (dump_file, "Removing jump %i.\n", INSN_UID (insn));
711       fallthru = 1;
712
713       /* Selectively unlink whole insn chain.  */
714       if (in_cfglayout)
715         {
716           rtx insn = src->rbi->footer;
717
718           delete_insn_chain (kill_from, BB_END (src));
719
720           /* Remove barriers but keep jumptables.  */
721           while (insn)
722             {
723               if (GET_CODE (insn) == BARRIER)
724                 {
725                   if (PREV_INSN (insn))
726                     NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
727                   else
728                     src->rbi->footer = NEXT_INSN (insn);
729                   if (NEXT_INSN (insn))
730                     PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
731                 }
732               if (GET_CODE (insn) == CODE_LABEL)
733                 break;
734               insn = NEXT_INSN (insn);
735             }
736         }
737       else
738         delete_insn_chain (kill_from, PREV_INSN (BB_HEAD (target)));
739     }
740
741   /* If this already is simplejump, redirect it.  */
742   else if (simplejump_p (insn))
743     {
744       if (e->dest == target)
745         return NULL;
746       if (dump_file)
747         fprintf (dump_file, "Redirecting jump %i from %i to %i.\n",
748                  INSN_UID (insn), e->dest->index, target->index);
749       if (!redirect_jump (insn, block_label (target), 0))
750         {
751           if (target == EXIT_BLOCK_PTR)
752             return NULL;
753           abort ();
754         }
755     }
756
757   /* Cannot do anything for target exit block.  */
758   else if (target == EXIT_BLOCK_PTR)
759     return NULL;
760
761   /* Or replace possibly complicated jump insn by simple jump insn.  */
762   else
763     {
764       rtx target_label = block_label (target);
765       rtx barrier, label, table;
766
767       emit_jump_insn_after (gen_jump (target_label), insn);
768       JUMP_LABEL (BB_END (src)) = target_label;
769       LABEL_NUSES (target_label)++;
770       if (dump_file)
771         fprintf (dump_file, "Replacing insn %i by jump %i\n",
772                  INSN_UID (insn), INSN_UID (BB_END (src)));
773
774
775       delete_insn_chain (kill_from, insn);
776
777       /* Recognize a tablejump that we are converting to a
778          simple jump and remove its associated CODE_LABEL
779          and ADDR_VEC or ADDR_DIFF_VEC.  */
780       if (tablejump_p (insn, &label, &table))
781         delete_insn_chain (label, table);
782
783       barrier = next_nonnote_insn (BB_END (src));
784       if (!barrier || GET_CODE (barrier) != BARRIER)
785         emit_barrier_after (BB_END (src));
786       else
787         {
788           if (barrier != NEXT_INSN (BB_END (src)))
789             {
790               /* Move the jump before barrier so that the notes
791                  which originally were or were created before jump table are
792                  inside the basic block.  */
793               rtx new_insn = BB_END (src);
794               rtx tmp;
795
796               for (tmp = NEXT_INSN (BB_END (src)); tmp != barrier;
797                    tmp = NEXT_INSN (tmp))
798                 set_block_for_insn (tmp, src);
799
800               NEXT_INSN (PREV_INSN (new_insn)) = NEXT_INSN (new_insn);
801               PREV_INSN (NEXT_INSN (new_insn)) = PREV_INSN (new_insn);
802
803               NEXT_INSN (new_insn) = barrier;
804               NEXT_INSN (PREV_INSN (barrier)) = new_insn;
805
806               PREV_INSN (new_insn) = PREV_INSN (barrier);
807               PREV_INSN (barrier) = new_insn;
808             }
809         }
810     }
811
812   /* Keep only one edge out and set proper flags.  */
813   while (src->succ->succ_next)
814     remove_edge (src->succ);
815   e = src->succ;
816   if (fallthru)
817     e->flags = EDGE_FALLTHRU;
818   else
819     e->flags = 0;
820
821   e->probability = REG_BR_PROB_BASE;
822   e->count = src->count;
823
824   /* We don't want a block to end on a line-number note since that has
825      the potential of changing the code between -g and not -g.  */
826   while (GET_CODE (BB_END (e->src)) == NOTE
827          && NOTE_LINE_NUMBER (BB_END (e->src)) >= 0)
828     delete_insn (BB_END (e->src));
829
830   if (e->dest != target)
831     redirect_edge_succ (e, target);
832
833   return e;
834 }
835
836 /* Return last loop_beg note appearing after INSN, before start of next
837    basic block.  Return INSN if there are no such notes.
838
839    When emitting jump to redirect a fallthru edge, it should always appear
840    after the LOOP_BEG notes, as loop optimizer expect loop to either start by
841    fallthru edge or jump following the LOOP_BEG note jumping to the loop exit
842    test.  */
843
844 static rtx
845 last_loop_beg_note (rtx insn)
846 {
847   rtx last = insn;
848
849   for (insn = NEXT_INSN (insn); insn && GET_CODE (insn) == NOTE
850        && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK;
851        insn = NEXT_INSN (insn))
852     if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
853       last = insn;
854
855   return last;
856 }
857
858 /* Redirect edge representing branch of (un)conditional jump or tablejump,
859    NULL on failure  */
860 static edge
861 redirect_branch_edge (edge e, basic_block target)
862 {
863   rtx tmp;
864   rtx old_label = BB_HEAD (e->dest);
865   basic_block src = e->src;
866   rtx insn = BB_END (src);
867
868   /* We can only redirect non-fallthru edges of jump insn.  */
869   if (e->flags & EDGE_FALLTHRU)
870     return NULL;
871   else if (GET_CODE (insn) != JUMP_INSN)
872     return NULL;
873
874   /* Recognize a tablejump and adjust all matching cases.  */
875   if (tablejump_p (insn, NULL, &tmp))
876     {
877       rtvec vec;
878       int j;
879       rtx new_label = block_label (target);
880
881       if (target == EXIT_BLOCK_PTR)
882         return NULL;
883       if (GET_CODE (PATTERN (tmp)) == ADDR_VEC)
884         vec = XVEC (PATTERN (tmp), 0);
885       else
886         vec = XVEC (PATTERN (tmp), 1);
887
888       for (j = GET_NUM_ELEM (vec) - 1; j >= 0; --j)
889         if (XEXP (RTVEC_ELT (vec, j), 0) == old_label)
890           {
891             RTVEC_ELT (vec, j) = gen_rtx_LABEL_REF (Pmode, new_label);
892             --LABEL_NUSES (old_label);
893             ++LABEL_NUSES (new_label);
894           }
895
896       /* Handle casesi dispatch insns.  */
897       if ((tmp = single_set (insn)) != NULL
898           && SET_DEST (tmp) == pc_rtx
899           && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
900           && GET_CODE (XEXP (SET_SRC (tmp), 2)) == LABEL_REF
901           && XEXP (XEXP (SET_SRC (tmp), 2), 0) == old_label)
902         {
903           XEXP (SET_SRC (tmp), 2) = gen_rtx_LABEL_REF (VOIDmode,
904                                                        new_label);
905           --LABEL_NUSES (old_label);
906           ++LABEL_NUSES (new_label);
907         }
908     }
909   else
910     {
911       /* ?? We may play the games with moving the named labels from
912          one basic block to the other in case only one computed_jump is
913          available.  */
914       if (computed_jump_p (insn)
915           /* A return instruction can't be redirected.  */
916           || returnjump_p (insn))
917         return NULL;
918
919       /* If the insn doesn't go where we think, we're confused.  */
920       if (JUMP_LABEL (insn) != old_label)
921         abort ();
922
923       /* If the substitution doesn't succeed, die.  This can happen
924          if the back end emitted unrecognizable instructions or if
925          target is exit block on some arches.  */
926       if (!redirect_jump (insn, block_label (target), 0))
927         {
928           if (target == EXIT_BLOCK_PTR)
929             return NULL;
930           abort ();
931         }
932     }
933
934   if (dump_file)
935     fprintf (dump_file, "Edge %i->%i redirected to %i\n",
936              e->src->index, e->dest->index, target->index);
937
938   if (e->dest != target)
939     e = redirect_edge_succ_nodup (e, target);
940   return e;
941 }
942
943 /* Attempt to change code to redirect edge E to TARGET.  Don't do that on
944    expense of adding new instructions or reordering basic blocks.
945
946    Function can be also called with edge destination equivalent to the TARGET.
947    Then it should try the simplifications and do nothing if none is possible.
948
949    Return edge representing the branch if transformation succeeded.  Return NULL
950    on failure.
951    We still return NULL in case E already destinated TARGET and we didn't
952    managed to simplify instruction stream.  */
953
954 static edge
955 rtl_redirect_edge_and_branch (edge e, basic_block target)
956 {
957   edge ret;
958   basic_block src = e->src;
959
960   if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
961     return NULL;
962
963   if (e->dest == target)
964     return e;
965
966   if ((ret = try_redirect_by_replacing_jump (e, target, false)) != NULL)
967     {
968       src->flags |= BB_DIRTY;
969       return ret;
970     }
971
972   ret = redirect_branch_edge (e, target);
973   if (!ret)
974     return NULL;
975
976   src->flags |= BB_DIRTY;
977   return ret;
978 }
979
980 /* Like force_nonfallthru below, but additionally performs redirection
981    Used by redirect_edge_and_branch_force.  */
982
983 basic_block
984 force_nonfallthru_and_redirect (edge e, basic_block target)
985 {
986   basic_block jump_block, new_bb = NULL, src = e->src;
987   rtx note;
988   edge new_edge;
989   int abnormal_edge_flags = 0;
990
991   /* In the case the last instruction is conditional jump to the next
992      instruction, first redirect the jump itself and then continue
993      by creating a basic block afterwards to redirect fallthru edge.  */
994   if (e->src != ENTRY_BLOCK_PTR && e->dest != EXIT_BLOCK_PTR
995       && any_condjump_p (BB_END (e->src))
996       /* When called from cfglayout, fallthru edges do not
997          necessarily go to the next block.  */
998       && e->src->next_bb == e->dest
999       && JUMP_LABEL (BB_END (e->src)) == BB_HEAD (e->dest))
1000     {
1001       rtx note;
1002       edge b = unchecked_make_edge (e->src, target, 0);
1003
1004       if (!redirect_jump (BB_END (e->src), block_label (target), 0))
1005         abort ();
1006       note = find_reg_note (BB_END (e->src), REG_BR_PROB, NULL_RTX);
1007       if (note)
1008         {
1009           int prob = INTVAL (XEXP (note, 0));
1010
1011           b->probability = prob;
1012           b->count = e->count * prob / REG_BR_PROB_BASE;
1013           e->probability -= e->probability;
1014           e->count -= b->count;
1015           if (e->probability < 0)
1016             e->probability = 0;
1017           if (e->count < 0)
1018             e->count = 0;
1019         }
1020     }
1021
1022   if (e->flags & EDGE_ABNORMAL)
1023     {
1024       /* Irritating special case - fallthru edge to the same block as abnormal
1025          edge.
1026          We can't redirect abnormal edge, but we still can split the fallthru
1027          one and create separate abnormal edge to original destination.
1028          This allows bb-reorder to make such edge non-fallthru.  */
1029       if (e->dest != target)
1030         abort ();
1031       abnormal_edge_flags = e->flags & ~(EDGE_FALLTHRU | EDGE_CAN_FALLTHRU);
1032       e->flags &= EDGE_FALLTHRU | EDGE_CAN_FALLTHRU;
1033     }
1034   else if (!(e->flags & EDGE_FALLTHRU))
1035     abort ();
1036   else if (e->src == ENTRY_BLOCK_PTR)
1037     {
1038       /* We can't redirect the entry block.  Create an empty block at the
1039          start of the function which we use to add the new jump.  */
1040       edge *pe1;
1041       basic_block bb = create_basic_block (BB_HEAD (e->dest), NULL, ENTRY_BLOCK_PTR);
1042
1043       /* Change the existing edge's source to be the new block, and add
1044          a new edge from the entry block to the new block.  */
1045       e->src = bb;
1046       for (pe1 = &ENTRY_BLOCK_PTR->succ; *pe1; pe1 = &(*pe1)->succ_next)
1047         if (*pe1 == e)
1048           {
1049             *pe1 = e->succ_next;
1050             break;
1051           }
1052       e->succ_next = 0;
1053       bb->succ = e;
1054       make_single_succ_edge (ENTRY_BLOCK_PTR, bb, EDGE_FALLTHRU);
1055     }
1056
1057   if (e->src->succ->succ_next || abnormal_edge_flags)
1058     {
1059       /* Create the new structures.  */
1060
1061       /* If the old block ended with a tablejump, skip its table
1062          by searching forward from there.  Otherwise start searching
1063          forward from the last instruction of the old block.  */
1064       if (!tablejump_p (BB_END (e->src), NULL, &note))
1065         note = BB_END (e->src);
1066
1067       /* Position the new block correctly relative to loop notes.  */
1068       note = last_loop_beg_note (note);
1069       note = NEXT_INSN (note);
1070
1071       jump_block = create_basic_block (note, NULL, e->src);
1072       jump_block->count = e->count;
1073       jump_block->frequency = EDGE_FREQUENCY (e);
1074       jump_block->loop_depth = target->loop_depth;
1075
1076       if (target->global_live_at_start)
1077         {
1078           jump_block->global_live_at_start
1079             = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1080           jump_block->global_live_at_end
1081             = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1082           COPY_REG_SET (jump_block->global_live_at_start,
1083                         target->global_live_at_start);
1084           COPY_REG_SET (jump_block->global_live_at_end,
1085                         target->global_live_at_start);
1086         }
1087
1088       /* Make sure new block ends up in correct hot/cold section.  */
1089
1090       jump_block->partition = e->src->partition;
1091       if (flag_reorder_blocks_and_partition)
1092         {
1093           if (e->src->partition == COLD_PARTITION)
1094             {
1095               rtx bb_note, new_note;
1096               for (bb_note = BB_HEAD (jump_block); 
1097                    bb_note && bb_note != NEXT_INSN (BB_END (jump_block));
1098                    bb_note = NEXT_INSN (bb_note))
1099                 if (GET_CODE (bb_note) == NOTE
1100                     && NOTE_LINE_NUMBER (bb_note) == NOTE_INSN_BASIC_BLOCK)
1101                   break;
1102               new_note = emit_note_after (NOTE_INSN_UNLIKELY_EXECUTED_CODE,
1103                                           bb_note);
1104               NOTE_BASIC_BLOCK (new_note) = jump_block; 
1105               jump_block->partition = COLD_PARTITION;
1106             }
1107           if (GET_CODE (BB_END (jump_block)) == JUMP_INSN
1108               && !any_condjump_p (BB_END (jump_block))
1109               && jump_block->succ->crossing_edge )
1110             REG_NOTES (BB_END (jump_block)) = gen_rtx_EXPR_LIST 
1111               (REG_CROSSING_JUMP, NULL_RTX, 
1112                REG_NOTES (BB_END (jump_block)));
1113         }
1114
1115       /* Wire edge in.  */
1116       new_edge = make_edge (e->src, jump_block, EDGE_FALLTHRU);
1117       new_edge->probability = e->probability;
1118       new_edge->count = e->count;
1119
1120       /* Redirect old edge.  */
1121       redirect_edge_pred (e, jump_block);
1122       e->probability = REG_BR_PROB_BASE;
1123
1124       new_bb = jump_block;
1125     }
1126   else
1127     jump_block = e->src;
1128
1129   e->flags &= ~EDGE_FALLTHRU;
1130   if (target == EXIT_BLOCK_PTR)
1131     {
1132 #ifdef HAVE_return
1133         emit_jump_insn_after (gen_return (), BB_END (jump_block));
1134 #else
1135         abort ();
1136 #endif
1137     }
1138   else
1139     {
1140       rtx label = block_label (target);
1141       emit_jump_insn_after (gen_jump (label), BB_END (jump_block));
1142       JUMP_LABEL (BB_END (jump_block)) = label;
1143       LABEL_NUSES (label)++;
1144     }
1145
1146   emit_barrier_after (BB_END (jump_block));
1147   redirect_edge_succ_nodup (e, target);
1148
1149   if (abnormal_edge_flags)
1150     make_edge (src, target, abnormal_edge_flags);
1151
1152   return new_bb;
1153 }
1154
1155 /* Edge E is assumed to be fallthru edge.  Emit needed jump instruction
1156    (and possibly create new basic block) to make edge non-fallthru.
1157    Return newly created BB or NULL if none.  */
1158
1159 basic_block
1160 force_nonfallthru (edge e)
1161 {
1162   return force_nonfallthru_and_redirect (e, e->dest);
1163 }
1164
1165 /* Redirect edge even at the expense of creating new jump insn or
1166    basic block.  Return new basic block if created, NULL otherwise.
1167    Abort if conversion is impossible.  */
1168
1169 static basic_block
1170 rtl_redirect_edge_and_branch_force (edge e, basic_block target)
1171 {
1172   if (redirect_edge_and_branch (e, target)
1173       || e->dest == target)
1174     return NULL;
1175
1176   /* In case the edge redirection failed, try to force it to be non-fallthru
1177      and redirect newly created simplejump.  */
1178   return force_nonfallthru_and_redirect (e, target);
1179 }
1180
1181 /* The given edge should potentially be a fallthru edge.  If that is in
1182    fact true, delete the jump and barriers that are in the way.  */
1183
1184 static void
1185 rtl_tidy_fallthru_edge (edge e)
1186 {
1187   rtx q;
1188   basic_block b = e->src, c = b->next_bb;
1189
1190   /* ??? In a late-running flow pass, other folks may have deleted basic
1191      blocks by nopping out blocks, leaving multiple BARRIERs between here
1192      and the target label. They ought to be chastized and fixed.
1193
1194      We can also wind up with a sequence of undeletable labels between
1195      one block and the next.
1196
1197      So search through a sequence of barriers, labels, and notes for
1198      the head of block C and assert that we really do fall through.  */
1199
1200   for (q = NEXT_INSN (BB_END (b)); q != BB_HEAD (c); q = NEXT_INSN (q))
1201     if (INSN_P (q))
1202       return;
1203
1204   /* Remove what will soon cease being the jump insn from the source block.
1205      If block B consisted only of this single jump, turn it into a deleted
1206      note.  */
1207   q = BB_END (b);
1208   if (GET_CODE (q) == JUMP_INSN
1209       && onlyjump_p (q)
1210       && (any_uncondjump_p (q)
1211           || (b->succ == e && e->succ_next == NULL)))
1212     {
1213 #ifdef HAVE_cc0
1214       /* If this was a conditional jump, we need to also delete
1215          the insn that set cc0.  */
1216       if (any_condjump_p (q) && only_sets_cc0_p (PREV_INSN (q)))
1217         q = PREV_INSN (q);
1218 #endif
1219
1220       q = PREV_INSN (q);
1221
1222       /* We don't want a block to end on a line-number note since that has
1223          the potential of changing the code between -g and not -g.  */
1224       while (GET_CODE (q) == NOTE && NOTE_LINE_NUMBER (q) >= 0)
1225         q = PREV_INSN (q);
1226     }
1227
1228   /* Selectively unlink the sequence.  */
1229   if (q != PREV_INSN (BB_HEAD (c)))
1230     delete_insn_chain (NEXT_INSN (q), PREV_INSN (BB_HEAD (c)));
1231
1232   e->flags |= EDGE_FALLTHRU;
1233 }
1234 \f
1235 /* Helper function for split_edge.  Return true in case edge BB2 to BB1
1236    is back edge of syntactic loop.  */
1237
1238 static bool
1239 back_edge_of_syntactic_loop_p (basic_block bb1, basic_block bb2)
1240 {
1241   rtx insn;
1242   int count = 0;
1243   basic_block bb;
1244
1245   if (bb1 == bb2)
1246     return true;
1247
1248   /* ??? Could we guarantee that bb indices are monotone, so that we could
1249      just compare them?  */
1250   for (bb = bb1; bb && bb != bb2; bb = bb->next_bb)
1251     continue;
1252
1253   if (!bb)
1254     return false;
1255
1256   for (insn = BB_END (bb1); insn != BB_HEAD (bb2) && count >= 0;
1257        insn = NEXT_INSN (insn))
1258     if (GET_CODE (insn) == NOTE)
1259       {
1260         if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG)
1261           count++;
1262         else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
1263           count--;
1264       }
1265
1266   return count >= 0;
1267 }
1268
1269 /* Should move basic block BB after basic block AFTER.  NIY.  */
1270
1271 static bool
1272 rtl_move_block_after (basic_block bb ATTRIBUTE_UNUSED,
1273                       basic_block after ATTRIBUTE_UNUSED)
1274 {
1275   return false;
1276 }
1277
1278 /* Split a (typically critical) edge.  Return the new block.
1279    Abort on abnormal edges.
1280
1281    ??? The code generally expects to be called on critical edges.
1282    The case of a block ending in an unconditional jump to a
1283    block with multiple predecessors is not handled optimally.  */
1284
1285 static basic_block
1286 rtl_split_edge (edge edge_in)
1287 {
1288   basic_block bb;
1289   rtx before;
1290
1291   /* Abnormal edges cannot be split.  */
1292   if ((edge_in->flags & EDGE_ABNORMAL) != 0)
1293     abort ();
1294
1295   /* We are going to place the new block in front of edge destination.
1296      Avoid existence of fallthru predecessors.  */
1297   if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1298     {
1299       edge e;
1300
1301       for (e = edge_in->dest->pred; e; e = e->pred_next)
1302         if (e->flags & EDGE_FALLTHRU)
1303           break;
1304
1305       if (e)
1306         force_nonfallthru (e);
1307     }
1308
1309   /* Create the basic block note.
1310
1311      Where we place the note can have a noticeable impact on the generated
1312      code.  Consider this cfg:
1313
1314                         E
1315                         |
1316                         0
1317                        / \
1318                    +->1-->2--->E
1319                    |  |
1320                    +--+
1321
1322       If we need to insert an insn on the edge from block 0 to block 1,
1323       we want to ensure the instructions we insert are outside of any
1324       loop notes that physically sit between block 0 and block 1.  Otherwise
1325       we confuse the loop optimizer into thinking the loop is a phony.  */
1326
1327   if (edge_in->dest != EXIT_BLOCK_PTR
1328       && PREV_INSN (BB_HEAD (edge_in->dest))
1329       && GET_CODE (PREV_INSN (BB_HEAD (edge_in->dest))) == NOTE
1330       && (NOTE_LINE_NUMBER (PREV_INSN (BB_HEAD (edge_in->dest)))
1331           == NOTE_INSN_LOOP_BEG)
1332       && !back_edge_of_syntactic_loop_p (edge_in->dest, edge_in->src))
1333     before = PREV_INSN (BB_HEAD (edge_in->dest));
1334   else if (edge_in->dest != EXIT_BLOCK_PTR)
1335     before = BB_HEAD (edge_in->dest);
1336   else
1337     before = NULL_RTX;
1338
1339   /* If this is a fall through edge to the exit block, the blocks might be
1340      not adjacent, and the right place is the after the source.  */
1341   if (edge_in->flags & EDGE_FALLTHRU && edge_in->dest == EXIT_BLOCK_PTR)
1342     {
1343       before = NEXT_INSN (BB_END (edge_in->src));
1344       if (before
1345           && GET_CODE (before) == NOTE
1346           && NOTE_LINE_NUMBER (before) == NOTE_INSN_LOOP_END)
1347         before = NEXT_INSN (before);
1348       bb = create_basic_block (before, NULL, edge_in->src);
1349     }
1350   else
1351     bb = create_basic_block (before, NULL, edge_in->dest->prev_bb);
1352
1353   /* ??? This info is likely going to be out of date very soon.  */
1354   if (edge_in->dest->global_live_at_start)
1355     {
1356       bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1357       bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
1358       COPY_REG_SET (bb->global_live_at_start,
1359                     edge_in->dest->global_live_at_start);
1360       COPY_REG_SET (bb->global_live_at_end,
1361                     edge_in->dest->global_live_at_start);
1362     }
1363
1364   make_single_succ_edge (bb, edge_in->dest, EDGE_FALLTHRU);
1365
1366   /* For non-fallthru edges, we must adjust the predecessor's
1367      jump instruction to target our new block.  */
1368   if ((edge_in->flags & EDGE_FALLTHRU) == 0)
1369     {
1370       if (!redirect_edge_and_branch (edge_in, bb))
1371         abort ();
1372     }
1373   else
1374     redirect_edge_succ (edge_in, bb);
1375
1376   return bb;
1377 }
1378
1379 /* Queue instructions for insertion on an edge between two basic blocks.
1380    The new instructions and basic blocks (if any) will not appear in the
1381    CFG until commit_edge_insertions is called.  */
1382
1383 void
1384 insert_insn_on_edge (rtx pattern, edge e)
1385 {
1386   /* We cannot insert instructions on an abnormal critical edge.
1387      It will be easier to find the culprit if we die now.  */
1388   if ((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e))
1389     abort ();
1390
1391   if (e->insns.r == NULL_RTX)
1392     start_sequence ();
1393   else
1394     push_to_sequence (e->insns.r);
1395
1396   emit_insn (pattern);
1397
1398   e->insns.r = get_insns ();
1399   end_sequence ();
1400 }
1401
1402 /* Called from safe_insert_insn_on_edge through note_stores, marks live
1403    registers that are killed by the store.  */
1404 static void
1405 mark_killed_regs (rtx reg, rtx set ATTRIBUTE_UNUSED, void *data)
1406 {
1407   regset killed = data;
1408   int regno, i;
1409
1410   if (GET_CODE (reg) == SUBREG)
1411     reg = SUBREG_REG (reg);
1412   if (!REG_P (reg))
1413     return;
1414   regno = REGNO (reg);
1415   if (regno >= FIRST_PSEUDO_REGISTER)
1416     SET_REGNO_REG_SET (killed, regno);
1417   else
1418     {
1419       for (i = 0; i < (int) hard_regno_nregs[regno][GET_MODE (reg)]; i++)
1420         SET_REGNO_REG_SET (killed, regno + i);
1421     }
1422 }
1423
1424 /* Similar to insert_insn_on_edge, tries to put INSN to edge E.  Additionally
1425    it checks whether this will not clobber the registers that are live on the
1426    edge (i.e. it requires liveness information to be up-to-date) and if there
1427    are some, then it tries to save and restore them.  Returns true if
1428    successful.  */
1429 bool
1430 safe_insert_insn_on_edge (rtx insn, edge e)
1431 {
1432   rtx x;
1433   regset_head killed_head;
1434   regset killed = INITIALIZE_REG_SET (killed_head);
1435   rtx save_regs = NULL_RTX;
1436   int regno, noccmode;
1437   enum machine_mode mode;
1438
1439 #ifdef AVOID_CCMODE_COPIES
1440   noccmode = true;
1441 #else
1442   noccmode = false;
1443 #endif
1444
1445   for (x = insn; x; x = NEXT_INSN (x))
1446     if (INSN_P (x))
1447       note_stores (PATTERN (x), mark_killed_regs, killed);
1448   bitmap_operation (killed, killed, e->dest->global_live_at_start,
1449                     BITMAP_AND);
1450
1451   EXECUTE_IF_SET_IN_REG_SET (killed, 0, regno,
1452     {
1453       mode = regno < FIRST_PSEUDO_REGISTER
1454               ? reg_raw_mode[regno]
1455               : GET_MODE (regno_reg_rtx[regno]);
1456       if (mode == VOIDmode)
1457         return false;
1458
1459       if (noccmode && mode == CCmode)
1460         return false;
1461         
1462       save_regs = alloc_EXPR_LIST (0,
1463                                    alloc_EXPR_LIST (0,
1464                                                     gen_reg_rtx (mode),
1465                                                     gen_raw_REG (mode, regno)),
1466                                    save_regs);
1467     });
1468
1469   if (save_regs)
1470     {
1471       rtx from, to;
1472
1473       start_sequence ();
1474       for (x = save_regs; x; x = XEXP (x, 1))
1475         {
1476           from = XEXP (XEXP (x, 0), 1);
1477           to = XEXP (XEXP (x, 0), 0);
1478           emit_move_insn (to, from);
1479         }
1480       emit_insn (insn);
1481       for (x = save_regs; x; x = XEXP (x, 1))
1482         {
1483           from = XEXP (XEXP (x, 0), 0);
1484           to = XEXP (XEXP (x, 0), 1);
1485           emit_move_insn (to, from);
1486         }
1487       insn = get_insns ();
1488       end_sequence ();
1489       free_EXPR_LIST_list (&save_regs);
1490     }
1491   insert_insn_on_edge (insn, e);
1492   
1493   FREE_REG_SET (killed);
1494   return true;
1495 }
1496
1497 /* Update the CFG for the instructions queued on edge E.  */
1498
1499 static void
1500 commit_one_edge_insertion (edge e, int watch_calls)
1501 {
1502   rtx before = NULL_RTX, after = NULL_RTX, insns, tmp, last;
1503   basic_block bb = NULL;
1504
1505   /* Pull the insns off the edge now since the edge might go away.  */
1506   insns = e->insns.r;
1507   e->insns.r = NULL_RTX;
1508
1509   /* Special case -- avoid inserting code between call and storing
1510      its return value.  */
1511   if (watch_calls && (e->flags & EDGE_FALLTHRU) && !e->dest->pred->pred_next
1512       && e->src != ENTRY_BLOCK_PTR
1513       && GET_CODE (BB_END (e->src)) == CALL_INSN)
1514     {
1515       rtx next = next_nonnote_insn (BB_END (e->src));
1516
1517       after = BB_HEAD (e->dest);
1518       /* The first insn after the call may be a stack pop, skip it.  */
1519       while (next
1520              && keep_with_call_p (next))
1521         {
1522           after = next;
1523           next = next_nonnote_insn (next);
1524         }
1525       bb = e->dest;
1526     }
1527   if (!before && !after)
1528     {
1529       /* Figure out where to put these things.  If the destination has
1530          one predecessor, insert there.  Except for the exit block.  */
1531       if (e->dest->pred->pred_next == NULL && e->dest != EXIT_BLOCK_PTR)
1532         {
1533           bb = e->dest;
1534
1535           /* Get the location correct wrt a code label, and "nice" wrt
1536              a basic block note, and before everything else.  */
1537           tmp = BB_HEAD (bb);
1538           if (GET_CODE (tmp) == CODE_LABEL)
1539             tmp = NEXT_INSN (tmp);
1540           if (NOTE_INSN_BASIC_BLOCK_P (tmp))
1541             tmp = NEXT_INSN (tmp);
1542           if (tmp 
1543               && GET_CODE (tmp) == NOTE
1544               && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_UNLIKELY_EXECUTED_CODE)
1545             tmp = NEXT_INSN (tmp);
1546           if (tmp == BB_HEAD (bb))
1547             before = tmp;
1548           else if (tmp)
1549             after = PREV_INSN (tmp);
1550           else
1551             after = get_last_insn ();
1552         }
1553
1554       /* If the source has one successor and the edge is not abnormal,
1555          insert there.  Except for the entry block.  */
1556       else if ((e->flags & EDGE_ABNORMAL) == 0
1557                && e->src->succ->succ_next == NULL
1558                && e->src != ENTRY_BLOCK_PTR)
1559         {
1560           bb = e->src;
1561
1562           /* It is possible to have a non-simple jump here.  Consider a target
1563              where some forms of unconditional jumps clobber a register.  This
1564              happens on the fr30 for example.
1565
1566              We know this block has a single successor, so we can just emit
1567              the queued insns before the jump.  */
1568           if (GET_CODE (BB_END (bb)) == JUMP_INSN)
1569             for (before = BB_END (bb);
1570                  GET_CODE (PREV_INSN (before)) == NOTE
1571                  && NOTE_LINE_NUMBER (PREV_INSN (before)) ==
1572                  NOTE_INSN_LOOP_BEG; before = PREV_INSN (before))
1573               ;
1574           else
1575             {
1576               /* We'd better be fallthru, or we've lost track of what's what.  */
1577               if ((e->flags & EDGE_FALLTHRU) == 0)
1578                 abort ();
1579
1580               after = BB_END (bb);
1581             }
1582         }
1583       /* Otherwise we must split the edge.  */
1584       else
1585         {
1586           bb = split_edge (e);
1587           after = BB_END (bb);
1588
1589           /* If we are partitioning hot/cold basic blocks, we must make sure
1590              that the new basic block ends up in the correct section.  */
1591
1592           bb->partition = e->src->partition;
1593           if (flag_reorder_blocks_and_partition
1594               && e->src != ENTRY_BLOCK_PTR
1595               && e->src->partition == COLD_PARTITION)
1596             {
1597               rtx bb_note, new_note, cur_insn;
1598
1599               bb_note = NULL_RTX;
1600               for (cur_insn = BB_HEAD (bb); cur_insn != NEXT_INSN (BB_END (bb));
1601                    cur_insn = NEXT_INSN (cur_insn))
1602                 if (GET_CODE (cur_insn) == NOTE
1603                     && NOTE_LINE_NUMBER (cur_insn) == NOTE_INSN_BASIC_BLOCK)
1604                   {
1605                     bb_note = cur_insn;
1606                     break;
1607                   }
1608
1609               new_note = emit_note_after (NOTE_INSN_UNLIKELY_EXECUTED_CODE,
1610                                           bb_note);
1611               NOTE_BASIC_BLOCK (new_note) = bb;
1612               if (GET_CODE (BB_END (bb)) == JUMP_INSN
1613                   && !any_condjump_p (BB_END (bb))
1614                   && bb->succ->crossing_edge )
1615                 REG_NOTES (BB_END (bb)) = gen_rtx_EXPR_LIST 
1616                   (REG_CROSSING_JUMP, NULL_RTX, REG_NOTES (BB_END (bb)));
1617               if (after == bb_note)
1618                 after = new_note;
1619             }
1620         }
1621     }
1622
1623   /* Now that we've found the spot, do the insertion.  */
1624
1625   if (before)
1626     {
1627       emit_insn_before (insns, before);
1628       last = prev_nonnote_insn (before);
1629     }
1630   else
1631     last = emit_insn_after (insns, after);
1632
1633   if (returnjump_p (last))
1634     {
1635       /* ??? Remove all outgoing edges from BB and add one for EXIT.
1636          This is not currently a problem because this only happens
1637          for the (single) epilogue, which already has a fallthru edge
1638          to EXIT.  */
1639
1640       e = bb->succ;
1641       if (e->dest != EXIT_BLOCK_PTR
1642           || e->succ_next != NULL || (e->flags & EDGE_FALLTHRU) == 0)
1643         abort ();
1644
1645       e->flags &= ~EDGE_FALLTHRU;
1646       emit_barrier_after (last);
1647
1648       if (before)
1649         delete_insn (before);
1650     }
1651   else if (GET_CODE (last) == JUMP_INSN)
1652     abort ();
1653
1654   /* Mark the basic block for find_sub_basic_blocks.  */
1655   bb->aux = &bb->aux;
1656 }
1657
1658 /* Update the CFG for all queued instructions.  */
1659
1660 void
1661 commit_edge_insertions (void)
1662 {
1663   basic_block bb;
1664   sbitmap blocks;
1665   bool changed = false;
1666
1667 #ifdef ENABLE_CHECKING
1668   verify_flow_info ();
1669 #endif
1670
1671   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1672     {
1673       edge e, next;
1674
1675       for (e = bb->succ; e; e = next)
1676         {
1677           next = e->succ_next;
1678           if (e->insns.r)
1679             {
1680               changed = true;
1681               commit_one_edge_insertion (e, false);
1682             }
1683         }
1684     }
1685
1686   if (!changed)
1687     return;
1688
1689   blocks = sbitmap_alloc (last_basic_block);
1690   sbitmap_zero (blocks);
1691   FOR_EACH_BB (bb)
1692     if (bb->aux)
1693       {
1694         SET_BIT (blocks, bb->index);
1695         /* Check for forgotten bb->aux values before commit_edge_insertions
1696            call.  */
1697         if (bb->aux != &bb->aux)
1698           abort ();
1699         bb->aux = NULL;
1700       }
1701   find_many_sub_basic_blocks (blocks);
1702   sbitmap_free (blocks);
1703 }
1704 \f
1705 /* Update the CFG for all queued instructions, taking special care of inserting
1706    code on edges between call and storing its return value.  */
1707
1708 void
1709 commit_edge_insertions_watch_calls (void)
1710 {
1711   basic_block bb;
1712   sbitmap blocks;
1713   bool changed = false;
1714
1715 #ifdef ENABLE_CHECKING
1716   verify_flow_info ();
1717 #endif
1718
1719   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1720     {
1721       edge e, next;
1722
1723       for (e = bb->succ; e; e = next)
1724         {
1725           next = e->succ_next;
1726           if (e->insns.r)
1727             {
1728               changed = true;
1729               commit_one_edge_insertion (e, true);
1730             }
1731         }
1732     }
1733
1734   if (!changed)
1735     return;
1736
1737   blocks = sbitmap_alloc (last_basic_block);
1738   sbitmap_zero (blocks);
1739   FOR_EACH_BB (bb)
1740     if (bb->aux)
1741       {
1742         SET_BIT (blocks, bb->index);
1743         /* Check for forgotten bb->aux values before commit_edge_insertions
1744            call.  */
1745         if (bb->aux != &bb->aux)
1746           abort ();
1747         bb->aux = NULL;
1748       }
1749   find_many_sub_basic_blocks (blocks);
1750   sbitmap_free (blocks);
1751 }
1752 \f
1753 /* Print out RTL-specific basic block information (live information
1754    at start and end).  */
1755
1756 static void
1757 rtl_dump_bb (basic_block bb, FILE *outf, int indent)
1758 {
1759   rtx insn;
1760   rtx last;
1761   char *s_indent;
1762
1763   s_indent = alloca ((size_t) indent + 1);
1764   memset (s_indent, ' ', (size_t) indent);
1765   s_indent[indent] = '\0';
1766
1767   fprintf (outf, ";;%s Registers live at start: ", s_indent);
1768   dump_regset (bb->global_live_at_start, outf);
1769   putc ('\n', outf);
1770
1771   for (insn = BB_HEAD (bb), last = NEXT_INSN (BB_END (bb)); insn != last;
1772        insn = NEXT_INSN (insn))
1773     print_rtl_single (outf, insn);
1774
1775   fprintf (outf, ";;%s Registers live at end: ", s_indent);
1776   dump_regset (bb->global_live_at_end, outf);
1777   putc ('\n', outf);
1778 }
1779 \f
1780 /* Like print_rtl, but also print out live information for the start of each
1781    basic block.  */
1782
1783 void
1784 print_rtl_with_bb (FILE *outf, rtx rtx_first)
1785 {
1786   rtx tmp_rtx;
1787
1788   if (rtx_first == 0)
1789     fprintf (outf, "(nil)\n");
1790   else
1791     {
1792       enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
1793       int max_uid = get_max_uid ();
1794       basic_block *start = xcalloc (max_uid, sizeof (basic_block));
1795       basic_block *end = xcalloc (max_uid, sizeof (basic_block));
1796       enum bb_state *in_bb_p = xcalloc (max_uid, sizeof (enum bb_state));
1797
1798       basic_block bb;
1799
1800       FOR_EACH_BB_REVERSE (bb)
1801         {
1802           rtx x;
1803
1804           start[INSN_UID (BB_HEAD (bb))] = bb;
1805           end[INSN_UID (BB_END (bb))] = bb;
1806           for (x = BB_HEAD (bb); x != NULL_RTX; x = NEXT_INSN (x))
1807             {
1808               enum bb_state state = IN_MULTIPLE_BB;
1809
1810               if (in_bb_p[INSN_UID (x)] == NOT_IN_BB)
1811                 state = IN_ONE_BB;
1812               in_bb_p[INSN_UID (x)] = state;
1813
1814               if (x == BB_END (bb))
1815                 break;
1816             }
1817         }
1818
1819       for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
1820         {
1821           int did_output;
1822
1823           if ((bb = start[INSN_UID (tmp_rtx)]) != NULL)
1824             {
1825               fprintf (outf, ";; Start of basic block %d, registers live:",
1826                        bb->index);
1827               dump_regset (bb->global_live_at_start, outf);
1828               putc ('\n', outf);
1829             }
1830
1831           if (in_bb_p[INSN_UID (tmp_rtx)] == NOT_IN_BB
1832               && GET_CODE (tmp_rtx) != NOTE
1833               && GET_CODE (tmp_rtx) != BARRIER)
1834             fprintf (outf, ";; Insn is not within a basic block\n");
1835           else if (in_bb_p[INSN_UID (tmp_rtx)] == IN_MULTIPLE_BB)
1836             fprintf (outf, ";; Insn is in multiple basic blocks\n");
1837
1838           did_output = print_rtl_single (outf, tmp_rtx);
1839
1840           if ((bb = end[INSN_UID (tmp_rtx)]) != NULL)
1841             {
1842               fprintf (outf, ";; End of basic block %d, registers live:\n",
1843                        bb->index);
1844               dump_regset (bb->global_live_at_end, outf);
1845               putc ('\n', outf);
1846             }
1847
1848           if (did_output)
1849             putc ('\n', outf);
1850         }
1851
1852       free (start);
1853       free (end);
1854       free (in_bb_p);
1855     }
1856
1857   if (current_function_epilogue_delay_list != 0)
1858     {
1859       fprintf (outf, "\n;; Insns in epilogue delay list:\n\n");
1860       for (tmp_rtx = current_function_epilogue_delay_list; tmp_rtx != 0;
1861            tmp_rtx = XEXP (tmp_rtx, 1))
1862         print_rtl_single (outf, XEXP (tmp_rtx, 0));
1863     }
1864 }
1865 \f
1866 void
1867 update_br_prob_note (basic_block bb)
1868 {
1869   rtx note;
1870   if (GET_CODE (BB_END (bb)) != JUMP_INSN)
1871     return;
1872   note = find_reg_note (BB_END (bb), REG_BR_PROB, NULL_RTX);
1873   if (!note || INTVAL (XEXP (note, 0)) == BRANCH_EDGE (bb)->probability)
1874     return;
1875   XEXP (note, 0) = GEN_INT (BRANCH_EDGE (bb)->probability);
1876 }
1877 \f
1878 /* Verify the CFG and RTL consistency common for both underlying RTL and
1879    cfglayout RTL.
1880
1881    Currently it does following checks:
1882
1883    - test head/end pointers
1884    - overlapping of basic blocks
1885    - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
1886    - tails of basic blocks (ensure that boundary is necessary)
1887    - scans body of the basic block for JUMP_INSN, CODE_LABEL
1888      and NOTE_INSN_BASIC_BLOCK
1889    - verify that no fall_thru edge crosses hot/cold partition boundaries
1890
1891    In future it can be extended check a lot of other stuff as well
1892    (reachability of basic blocks, life information, etc. etc.).  */
1893
1894 static int
1895 rtl_verify_flow_info_1 (void)
1896 {
1897   const int max_uid = get_max_uid ();
1898   rtx last_head = get_last_insn ();
1899   basic_block *bb_info;
1900   rtx x;
1901   int err = 0;
1902   basic_block bb, last_bb_seen;
1903
1904   bb_info = xcalloc (max_uid, sizeof (basic_block));
1905
1906   /* Check bb chain & numbers.  */
1907   last_bb_seen = ENTRY_BLOCK_PTR;
1908
1909   FOR_EACH_BB_REVERSE (bb)
1910     {
1911       rtx head = BB_HEAD (bb);
1912       rtx end = BB_END (bb);
1913
1914       /* Verify the end of the basic block is in the INSN chain.  */
1915       for (x = last_head; x != NULL_RTX; x = PREV_INSN (x))
1916         if (x == end)
1917           break;
1918
1919       if (!x)
1920         {
1921           error ("end insn %d for block %d not found in the insn stream",
1922                  INSN_UID (end), bb->index);
1923           err = 1;
1924         }
1925
1926       /* Work backwards from the end to the head of the basic block
1927          to verify the head is in the RTL chain.  */
1928       for (; x != NULL_RTX; x = PREV_INSN (x))
1929         {
1930           /* While walking over the insn chain, verify insns appear
1931              in only one basic block and initialize the BB_INFO array
1932              used by other passes.  */
1933           if (bb_info[INSN_UID (x)] != NULL)
1934             {
1935               error ("insn %d is in multiple basic blocks (%d and %d)",
1936                      INSN_UID (x), bb->index, bb_info[INSN_UID (x)]->index);
1937               err = 1;
1938             }
1939
1940           bb_info[INSN_UID (x)] = bb;
1941
1942           if (x == head)
1943             break;
1944         }
1945       if (!x)
1946         {
1947           error ("head insn %d for block %d not found in the insn stream",
1948                  INSN_UID (head), bb->index);
1949           err = 1;
1950         }
1951
1952       last_head = x;
1953     }
1954
1955   /* Now check the basic blocks (boundaries etc.) */
1956   FOR_EACH_BB_REVERSE (bb)
1957     {
1958       int n_fallthru = 0, n_eh = 0, n_call = 0, n_abnormal = 0, n_branch = 0;
1959       edge e, fallthru = NULL;
1960       rtx note;
1961
1962       if (INSN_P (BB_END (bb))
1963           && (note = find_reg_note (BB_END (bb), REG_BR_PROB, NULL_RTX))
1964           && bb->succ && bb->succ->succ_next
1965           && any_condjump_p (BB_END (bb)))
1966         {
1967           if (INTVAL (XEXP (note, 0)) != BRANCH_EDGE (bb)->probability)
1968             {
1969               error ("verify_flow_info: REG_BR_PROB does not match cfg %wi %i",
1970                      INTVAL (XEXP (note, 0)), BRANCH_EDGE (bb)->probability);
1971               err = 1;
1972             }
1973         }
1974       for (e = bb->succ; e; e = e->succ_next)
1975         {
1976           if (e->flags & EDGE_FALLTHRU)
1977             {
1978               n_fallthru++, fallthru = e;
1979               if (e->crossing_edge)
1980                 { 
1981                   error ("Fallthru edge crosses section boundary (bb %i)",
1982                          e->src->index);
1983                   err = 1;
1984                 }
1985             }
1986
1987           if ((e->flags & ~(EDGE_DFS_BACK
1988                             | EDGE_CAN_FALLTHRU
1989                             | EDGE_IRREDUCIBLE_LOOP
1990                             | EDGE_LOOP_EXIT)) == 0)
1991             n_branch++;
1992
1993           if (e->flags & EDGE_ABNORMAL_CALL)
1994             n_call++;
1995
1996           if (e->flags & EDGE_EH)
1997             n_eh++;
1998           else if (e->flags & EDGE_ABNORMAL)
1999             n_abnormal++;
2000         }
2001
2002       if (n_eh && GET_CODE (PATTERN (BB_END (bb))) != RESX
2003           && !find_reg_note (BB_END (bb), REG_EH_REGION, NULL_RTX))
2004         {
2005           error ("Missing REG_EH_REGION note in the end of bb %i", bb->index);
2006           err = 1;
2007         }
2008       if (n_branch
2009           && (GET_CODE (BB_END (bb)) != JUMP_INSN
2010               || (n_branch > 1 && (any_uncondjump_p (BB_END (bb))
2011                                    || any_condjump_p (BB_END (bb))))))
2012         {
2013           error ("Too many outgoing branch edges from bb %i", bb->index);
2014           err = 1;
2015         }
2016       if (n_fallthru && any_uncondjump_p (BB_END (bb)))
2017         {
2018           error ("Fallthru edge after unconditional jump %i", bb->index);
2019           err = 1;
2020         }
2021       if (n_branch != 1 && any_uncondjump_p (BB_END (bb)))
2022         {
2023           error ("Wrong amount of branch edges after unconditional jump %i", bb->index);
2024           err = 1;
2025         }
2026       if (n_branch != 1 && any_condjump_p (BB_END (bb))
2027           && JUMP_LABEL (BB_END (bb)) != BB_HEAD (fallthru->dest))
2028         {
2029           error ("Wrong amount of branch edges after conditional jump %i", bb->index);
2030           err = 1;
2031         }
2032       if (n_call && GET_CODE (BB_END (bb)) != CALL_INSN)
2033         {
2034           error ("Call edges for non-call insn in bb %i", bb->index);
2035           err = 1;
2036         }
2037       if (n_abnormal
2038           && (GET_CODE (BB_END (bb)) != CALL_INSN && n_call != n_abnormal)
2039           && (GET_CODE (BB_END (bb)) != JUMP_INSN
2040               || any_condjump_p (BB_END (bb))
2041               || any_uncondjump_p (BB_END (bb))))
2042         {
2043           error ("Abnormal edges for no purpose in bb %i", bb->index);
2044           err = 1;
2045         }
2046
2047       for (x = BB_HEAD (bb); x != NEXT_INSN (BB_END (bb)); x = NEXT_INSN (x))
2048         if (BLOCK_FOR_INSN (x) != bb)
2049           {
2050             debug_rtx (x);
2051             if (! BLOCK_FOR_INSN (x))
2052               error
2053                 ("insn %d inside basic block %d but block_for_insn is NULL",
2054                  INSN_UID (x), bb->index);
2055             else
2056               error
2057                 ("insn %d inside basic block %d but block_for_insn is %i",
2058                  INSN_UID (x), bb->index, BLOCK_FOR_INSN (x)->index);
2059
2060             err = 1;
2061           }
2062
2063       /* OK pointers are correct.  Now check the header of basic
2064          block.  It ought to contain optional CODE_LABEL followed
2065          by NOTE_BASIC_BLOCK.  */
2066       x = BB_HEAD (bb);
2067       if (GET_CODE (x) == CODE_LABEL)
2068         {
2069           if (BB_END (bb) == x)
2070             {
2071               error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2072                      bb->index);
2073               err = 1;
2074             }
2075
2076           x = NEXT_INSN (x);
2077         }
2078
2079       if (!NOTE_INSN_BASIC_BLOCK_P (x) || NOTE_BASIC_BLOCK (x) != bb)
2080         {
2081           error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2082                  bb->index);
2083           err = 1;
2084         }
2085
2086       if (BB_END (bb) == x)
2087         /* Do checks for empty blocks her. e */
2088         ;
2089       else
2090         for (x = NEXT_INSN (x); x; x = NEXT_INSN (x))
2091           {
2092             if (NOTE_INSN_BASIC_BLOCK_P (x))
2093               {
2094                 error ("NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d",
2095                        INSN_UID (x), bb->index);
2096                 err = 1;
2097               }
2098
2099             if (x == BB_END (bb))
2100               break;
2101
2102             if (control_flow_insn_p (x))
2103               {
2104                 error ("in basic block %d:", bb->index);
2105                 fatal_insn ("flow control insn inside a basic block", x);
2106               }
2107           }
2108     }
2109
2110   /* Clean up.  */
2111   free (bb_info);
2112   return err;
2113 }
2114
2115 /* Verify the CFG and RTL consistency common for both underlying RTL and
2116    cfglayout RTL.
2117
2118    Currently it does following checks:
2119    - all checks of rtl_verify_flow_info_1
2120    - check that all insns are in the basic blocks
2121      (except the switch handling code, barriers and notes)
2122    - check that all returns are followed by barriers
2123    - check that all fallthru edge points to the adjacent blocks.  */
2124 static int
2125 rtl_verify_flow_info (void)
2126 {
2127   basic_block bb;
2128   int err = rtl_verify_flow_info_1 ();
2129   rtx x;
2130   int num_bb_notes;
2131   const rtx rtx_first = get_insns ();
2132   basic_block last_bb_seen = ENTRY_BLOCK_PTR, curr_bb = NULL;
2133
2134   FOR_EACH_BB_REVERSE (bb)
2135     {
2136       edge e;
2137       for (e = bb->succ; e; e = e->succ_next)
2138         if (e->flags & EDGE_FALLTHRU)
2139           break;
2140       if (!e)
2141         {
2142           rtx insn;
2143
2144           /* Ensure existence of barrier in BB with no fallthru edges.  */
2145           for (insn = BB_END (bb); !insn || GET_CODE (insn) != BARRIER;
2146                insn = NEXT_INSN (insn))
2147             if (!insn
2148                 || (GET_CODE (insn) == NOTE
2149                     && NOTE_LINE_NUMBER (insn) == NOTE_INSN_BASIC_BLOCK))
2150                 {
2151                   error ("missing barrier after block %i", bb->index);
2152                   err = 1;
2153                   break;
2154                 }
2155         }
2156       else if (e->src != ENTRY_BLOCK_PTR
2157                && e->dest != EXIT_BLOCK_PTR)
2158         {
2159           rtx insn;
2160
2161           if (e->src->next_bb != e->dest)
2162             {
2163               error
2164                 ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
2165                  e->src->index, e->dest->index);
2166               err = 1;
2167             }
2168           else
2169             for (insn = NEXT_INSN (BB_END (e->src)); insn != BB_HEAD (e->dest);
2170                  insn = NEXT_INSN (insn))
2171               if (GET_CODE (insn) == BARRIER
2172 #ifndef CASE_DROPS_THROUGH
2173                   || INSN_P (insn)
2174 #else
2175                   || (INSN_P (insn) && ! JUMP_TABLE_DATA_P (insn))
2176 #endif
2177                   )
2178                 {
2179                   error ("verify_flow_info: Incorrect fallthru %i->%i",
2180                          e->src->index, e->dest->index);
2181                   fatal_insn ("wrong insn in the fallthru edge", insn);
2182                   err = 1;
2183                 }
2184         }
2185     }
2186
2187   num_bb_notes = 0;
2188   last_bb_seen = ENTRY_BLOCK_PTR;
2189
2190   for (x = rtx_first; x; x = NEXT_INSN (x))
2191     {
2192       if (NOTE_INSN_BASIC_BLOCK_P (x))
2193         {
2194           bb = NOTE_BASIC_BLOCK (x);
2195
2196           num_bb_notes++;
2197           if (bb != last_bb_seen->next_bb)
2198             internal_error ("basic blocks not laid down consecutively");
2199
2200           curr_bb = last_bb_seen = bb;
2201         }
2202
2203       if (!curr_bb)
2204         {
2205           switch (GET_CODE (x))
2206             {
2207             case BARRIER:
2208             case NOTE:
2209               break;
2210
2211             case CODE_LABEL:
2212               /* An addr_vec is placed outside any basic block.  */
2213               if (NEXT_INSN (x)
2214                   && GET_CODE (NEXT_INSN (x)) == JUMP_INSN
2215                   && (GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_DIFF_VEC
2216                       || GET_CODE (PATTERN (NEXT_INSN (x))) == ADDR_VEC))
2217                 x = NEXT_INSN (x);
2218
2219               /* But in any case, non-deletable labels can appear anywhere.  */
2220               break;
2221
2222             default:
2223               fatal_insn ("insn outside basic block", x);
2224             }
2225         }
2226
2227       if (INSN_P (x)
2228           && GET_CODE (x) == JUMP_INSN
2229           && returnjump_p (x) && ! condjump_p (x)
2230           && ! (NEXT_INSN (x) && GET_CODE (NEXT_INSN (x)) == BARRIER))
2231             fatal_insn ("return not followed by barrier", x);
2232       if (curr_bb && x == BB_END (curr_bb))
2233         curr_bb = NULL;
2234     }
2235
2236   if (num_bb_notes != n_basic_blocks)
2237     internal_error
2238       ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
2239        num_bb_notes, n_basic_blocks);
2240
2241    return err;
2242 }
2243 \f
2244 /* Assume that the preceding pass has possibly eliminated jump instructions
2245    or converted the unconditional jumps.  Eliminate the edges from CFG.
2246    Return true if any edges are eliminated.  */
2247
2248 bool
2249 purge_dead_edges (basic_block bb)
2250 {
2251   edge e, next;
2252   rtx insn = BB_END (bb), note;
2253   bool purged = false;
2254
2255   /* If this instruction cannot trap, remove REG_EH_REGION notes.  */
2256   if (GET_CODE (insn) == INSN
2257       && (note = find_reg_note (insn, REG_EH_REGION, NULL)))
2258     {
2259       rtx eqnote;
2260
2261       if (! may_trap_p (PATTERN (insn))
2262           || ((eqnote = find_reg_equal_equiv_note (insn))
2263               && ! may_trap_p (XEXP (eqnote, 0))))
2264         remove_note (insn, note);
2265     }
2266
2267   /* Cleanup abnormal edges caused by exceptions or non-local gotos.  */
2268   for (e = bb->succ; e; e = next)
2269     {
2270       next = e->succ_next;
2271       if (e->flags & EDGE_EH)
2272         {
2273           if (can_throw_internal (BB_END (bb)))
2274             continue;
2275         }
2276       else if (e->flags & EDGE_ABNORMAL_CALL)
2277         {
2278           if (GET_CODE (BB_END (bb)) == CALL_INSN
2279               && (! (note = find_reg_note (insn, REG_EH_REGION, NULL))
2280                   || INTVAL (XEXP (note, 0)) >= 0))
2281             continue;
2282         }
2283       else
2284         continue;
2285
2286       remove_edge (e);
2287       bb->flags |= BB_DIRTY;
2288       purged = true;
2289     }
2290
2291   if (GET_CODE (insn) == JUMP_INSN)
2292     {
2293       rtx note;
2294       edge b,f;
2295
2296       /* We do care only about conditional jumps and simplejumps.  */
2297       if (!any_condjump_p (insn)
2298           && !returnjump_p (insn)
2299           && !simplejump_p (insn))
2300         return purged;
2301
2302       /* Branch probability/prediction notes are defined only for
2303          condjumps.  We've possibly turned condjump into simplejump.  */
2304       if (simplejump_p (insn))
2305         {
2306           note = find_reg_note (insn, REG_BR_PROB, NULL);
2307           if (note)
2308             remove_note (insn, note);
2309           while ((note = find_reg_note (insn, REG_BR_PRED, NULL)))
2310             remove_note (insn, note);
2311         }
2312
2313       for (e = bb->succ; e; e = next)
2314         {
2315           next = e->succ_next;
2316
2317           /* Avoid abnormal flags to leak from computed jumps turned
2318              into simplejumps.  */
2319
2320           e->flags &= ~EDGE_ABNORMAL;
2321
2322           /* See if this edge is one we should keep.  */
2323           if ((e->flags & EDGE_FALLTHRU) && any_condjump_p (insn))
2324             /* A conditional jump can fall through into the next
2325                block, so we should keep the edge.  */
2326             continue;
2327           else if (e->dest != EXIT_BLOCK_PTR
2328                    && BB_HEAD (e->dest) == JUMP_LABEL (insn))
2329             /* If the destination block is the target of the jump,
2330                keep the edge.  */
2331             continue;
2332           else if (e->dest == EXIT_BLOCK_PTR && returnjump_p (insn))
2333             /* If the destination block is the exit block, and this
2334                instruction is a return, then keep the edge.  */
2335             continue;
2336           else if ((e->flags & EDGE_EH) && can_throw_internal (insn))
2337             /* Keep the edges that correspond to exceptions thrown by
2338                this instruction and rematerialize the EDGE_ABNORMAL
2339                flag we just cleared above.  */
2340             {
2341               e->flags |= EDGE_ABNORMAL;
2342               continue;
2343             }
2344
2345           /* We do not need this edge.  */
2346           bb->flags |= BB_DIRTY;
2347           purged = true;
2348           remove_edge (e);
2349         }
2350
2351       if (!bb->succ || !purged)
2352         return purged;
2353
2354       if (dump_file)
2355         fprintf (dump_file, "Purged edges from bb %i\n", bb->index);
2356
2357       if (!optimize)
2358         return purged;
2359
2360       /* Redistribute probabilities.  */
2361       if (!bb->succ->succ_next)
2362         {
2363           bb->succ->probability = REG_BR_PROB_BASE;
2364           bb->succ->count = bb->count;
2365         }
2366       else
2367         {
2368           note = find_reg_note (insn, REG_BR_PROB, NULL);
2369           if (!note)
2370             return purged;
2371
2372           b = BRANCH_EDGE (bb);
2373           f = FALLTHRU_EDGE (bb);
2374           b->probability = INTVAL (XEXP (note, 0));
2375           f->probability = REG_BR_PROB_BASE - b->probability;
2376           b->count = bb->count * b->probability / REG_BR_PROB_BASE;
2377           f->count = bb->count * f->probability / REG_BR_PROB_BASE;
2378         }
2379
2380       return purged;
2381     }
2382   else if (GET_CODE (insn) == CALL_INSN && SIBLING_CALL_P (insn))
2383     {
2384       /* First, there should not be any EH or ABCALL edges resulting
2385          from non-local gotos and the like.  If there were, we shouldn't
2386          have created the sibcall in the first place.  Second, there
2387          should of course never have been a fallthru edge.  */
2388       if (!bb->succ || bb->succ->succ_next)
2389         abort ();
2390       if (bb->succ->flags != (EDGE_SIBCALL | EDGE_ABNORMAL))
2391         abort ();
2392
2393       return 0;
2394     }
2395
2396   /* If we don't see a jump insn, we don't know exactly why the block would
2397      have been broken at this point.  Look for a simple, non-fallthru edge,
2398      as these are only created by conditional branches.  If we find such an
2399      edge we know that there used to be a jump here and can then safely
2400      remove all non-fallthru edges.  */
2401   for (e = bb->succ; e && (e->flags & (EDGE_COMPLEX | EDGE_FALLTHRU));
2402        e = e->succ_next)
2403     ;
2404
2405   if (!e)
2406     return purged;
2407
2408   for (e = bb->succ; e; e = next)
2409     {
2410       next = e->succ_next;
2411       if (!(e->flags & EDGE_FALLTHRU))
2412         {
2413           bb->flags |= BB_DIRTY;
2414           remove_edge (e);
2415           purged = true;
2416         }
2417     }
2418
2419   if (!bb->succ || bb->succ->succ_next)
2420     abort ();
2421
2422   bb->succ->probability = REG_BR_PROB_BASE;
2423   bb->succ->count = bb->count;
2424
2425   if (dump_file)
2426     fprintf (dump_file, "Purged non-fallthru edges from bb %i\n",
2427              bb->index);
2428   return purged;
2429 }
2430
2431 /* Search all basic blocks for potentially dead edges and purge them.  Return
2432    true if some edge has been eliminated.  */
2433
2434 bool
2435 purge_all_dead_edges (int update_life_p)
2436 {
2437   int purged = false;
2438   sbitmap blocks = 0;
2439   basic_block bb;
2440
2441   if (update_life_p)
2442     {
2443       blocks = sbitmap_alloc (last_basic_block);
2444       sbitmap_zero (blocks);
2445     }
2446
2447   FOR_EACH_BB (bb)
2448     {
2449       bool purged_here = purge_dead_edges (bb);
2450
2451       purged |= purged_here;
2452       if (purged_here && update_life_p)
2453         SET_BIT (blocks, bb->index);
2454     }
2455
2456   if (update_life_p && purged)
2457     update_life_info (blocks, UPDATE_LIFE_GLOBAL,
2458                       PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE
2459                       | PROP_KILL_DEAD_CODE);
2460
2461   if (update_life_p)
2462     sbitmap_free (blocks);
2463   return purged;
2464 }
2465
2466 /* Same as split_block but update cfg_layout structures.  */
2467
2468 static basic_block
2469 cfg_layout_split_block (basic_block bb, void *insnp)
2470 {
2471   rtx insn = insnp;
2472   basic_block new_bb = rtl_split_block (bb, insn);
2473
2474   new_bb->rbi->footer = bb->rbi->footer;
2475   bb->rbi->footer = NULL;
2476
2477   return new_bb;
2478 }
2479
2480
2481 /* Redirect Edge to DEST.  */
2482 static edge
2483 cfg_layout_redirect_edge_and_branch (edge e, basic_block dest)
2484 {
2485   basic_block src = e->src;
2486   edge ret;
2487
2488   if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
2489     return NULL;
2490
2491   if (e->dest == dest)
2492     return e;
2493
2494   if (e->src != ENTRY_BLOCK_PTR
2495       && (ret = try_redirect_by_replacing_jump (e, dest, true)))
2496     {
2497       src->flags |= BB_DIRTY;
2498       return ret;
2499     }
2500
2501   if (e->src == ENTRY_BLOCK_PTR
2502       && (e->flags & EDGE_FALLTHRU) && !(e->flags & EDGE_COMPLEX))
2503     {
2504       if (dump_file)
2505         fprintf (dump_file, "Redirecting entry edge from bb %i to %i\n",
2506                  e->src->index, dest->index);
2507
2508       e->src->flags |= BB_DIRTY;
2509       redirect_edge_succ (e, dest);
2510       return e;
2511     }
2512
2513   /* Redirect_edge_and_branch may decide to turn branch into fallthru edge
2514      in the case the basic block appears to be in sequence.  Avoid this
2515      transformation.  */
2516
2517   if (e->flags & EDGE_FALLTHRU)
2518     {
2519       /* Redirect any branch edges unified with the fallthru one.  */
2520       if (GET_CODE (BB_END (src)) == JUMP_INSN
2521           && label_is_jump_target_p (BB_HEAD (e->dest),
2522                                      BB_END (src)))
2523         {
2524           if (dump_file)
2525             fprintf (dump_file, "Fallthru edge unified with branch "
2526                      "%i->%i redirected to %i\n",
2527                      e->src->index, e->dest->index, dest->index);
2528           e->flags &= ~EDGE_FALLTHRU;
2529           if (!redirect_branch_edge (e, dest))
2530             abort ();
2531           e->flags |= EDGE_FALLTHRU;
2532           e->src->flags |= BB_DIRTY;
2533           return e;
2534         }
2535       /* In case we are redirecting fallthru edge to the branch edge
2536          of conditional jump, remove it.  */
2537       if (src->succ->succ_next
2538           && !src->succ->succ_next->succ_next)
2539         {
2540           edge s = e->succ_next ? e->succ_next : src->succ;
2541           if (s->dest == dest
2542               && any_condjump_p (BB_END (src))
2543               && onlyjump_p (BB_END (src)))
2544             delete_insn (BB_END (src));
2545         }
2546       ret = redirect_edge_succ_nodup (e, dest);
2547       if (dump_file)
2548         fprintf (dump_file, "Fallthru edge %i->%i redirected to %i\n",
2549                  e->src->index, e->dest->index, dest->index);
2550     }
2551   else
2552     ret = redirect_branch_edge (e, dest);
2553
2554   /* We don't want simplejumps in the insn stream during cfglayout.  */
2555   if (simplejump_p (BB_END (src)))
2556     abort ();
2557
2558   src->flags |= BB_DIRTY;
2559   return ret;
2560 }
2561
2562 /* Simple wrapper as we always can redirect fallthru edges.  */
2563 static basic_block
2564 cfg_layout_redirect_edge_and_branch_force (edge e, basic_block dest)
2565 {
2566   if (!cfg_layout_redirect_edge_and_branch (e, dest))
2567     abort ();
2568   return NULL;
2569 }
2570
2571 /* Same as delete_basic_block but update cfg_layout structures.  */
2572
2573 static void
2574 cfg_layout_delete_block (basic_block bb)
2575 {
2576   rtx insn, next, prev = PREV_INSN (BB_HEAD (bb)), *to, remaints;
2577
2578   if (bb->rbi->header)
2579     {
2580       next = BB_HEAD (bb);
2581       if (prev)
2582         NEXT_INSN (prev) = bb->rbi->header;
2583       else
2584         set_first_insn (bb->rbi->header);
2585       PREV_INSN (bb->rbi->header) = prev;
2586       insn = bb->rbi->header;
2587       while (NEXT_INSN (insn))
2588         insn = NEXT_INSN (insn);
2589       NEXT_INSN (insn) = next;
2590       PREV_INSN (next) = insn;
2591     }
2592   next = NEXT_INSN (BB_END (bb));
2593   if (bb->rbi->footer)
2594     {
2595       insn = bb->rbi->footer;
2596       while (insn)
2597         {
2598           if (GET_CODE (insn) == BARRIER)
2599             {
2600               if (PREV_INSN (insn))
2601                 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
2602               else
2603                 bb->rbi->footer = NEXT_INSN (insn);
2604               if (NEXT_INSN (insn))
2605                 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
2606             }
2607           if (GET_CODE (insn) == CODE_LABEL)
2608             break;
2609           insn = NEXT_INSN (insn);
2610         }
2611       if (bb->rbi->footer)
2612         {
2613           insn = BB_END (bb);
2614           NEXT_INSN (insn) = bb->rbi->footer;
2615           PREV_INSN (bb->rbi->footer) = insn;
2616           while (NEXT_INSN (insn))
2617             insn = NEXT_INSN (insn);
2618           NEXT_INSN (insn) = next;
2619           if (next)
2620             PREV_INSN (next) = insn;
2621           else
2622             set_last_insn (insn);
2623         }
2624     }
2625   if (bb->next_bb != EXIT_BLOCK_PTR)
2626     to = &bb->next_bb->rbi->header;
2627   else
2628     to = &cfg_layout_function_footer;
2629   rtl_delete_block (bb);
2630
2631   if (prev)
2632     prev = NEXT_INSN (prev);
2633   else
2634     prev = get_insns ();
2635   if (next)
2636     next = PREV_INSN (next);
2637   else
2638     next = get_last_insn ();
2639
2640   if (next && NEXT_INSN (next) != prev)
2641     {
2642       remaints = unlink_insn_chain (prev, next);
2643       insn = remaints;
2644       while (NEXT_INSN (insn))
2645         insn = NEXT_INSN (insn);
2646       NEXT_INSN (insn) = *to;
2647       if (*to)
2648         PREV_INSN (*to) = insn;
2649       *to = remaints;
2650     }
2651 }
2652
2653 /* Return true when blocks A and B can be safely merged.  */
2654 static bool
2655 cfg_layout_can_merge_blocks_p (basic_block a, basic_block b)
2656 {
2657   bool partitions_ok = true;
2658
2659   /* If we are partitioning hot/cold basic blocks, we don't want to
2660      mess up unconditional or indirect jumps that cross between hot
2661      and cold sections.  */
2662   
2663   if (flag_reorder_blocks_and_partition
2664       && (find_reg_note (BB_END (a), REG_CROSSING_JUMP, NULL_RTX)
2665           || find_reg_note (BB_END (b), REG_CROSSING_JUMP, NULL_RTX)
2666           || a->partition != b->partition))
2667     partitions_ok = false;
2668
2669   /* There must be exactly one edge in between the blocks.  */
2670   return (a->succ && !a->succ->succ_next && a->succ->dest == b
2671           && !b->pred->pred_next && a != b
2672           /* Must be simple edge.  */
2673           && !(a->succ->flags & EDGE_COMPLEX)
2674           && partitions_ok
2675           && a != ENTRY_BLOCK_PTR && b != EXIT_BLOCK_PTR
2676           /* If the jump insn has side effects,
2677              we can't kill the edge.  */
2678           && (GET_CODE (BB_END (a)) != JUMP_INSN
2679               || (reload_completed
2680                   ? simplejump_p (BB_END (a)) : onlyjump_p (BB_END (a)))));
2681 }
2682
2683 /* Merge block A and B, abort when it is not possible.  */
2684 static void
2685 cfg_layout_merge_blocks (basic_block a, basic_block b)
2686 {
2687 #ifdef ENABLE_CHECKING
2688   if (!cfg_layout_can_merge_blocks_p (a, b))
2689     abort ();
2690 #endif
2691
2692   /* If there was a CODE_LABEL beginning B, delete it.  */
2693   if (GET_CODE (BB_HEAD (b)) == CODE_LABEL)
2694     delete_insn (BB_HEAD (b));
2695
2696   /* We should have fallthru edge in a, or we can do dummy redirection to get
2697      it cleaned up.  */
2698   if (GET_CODE (BB_END (a)) == JUMP_INSN)
2699     try_redirect_by_replacing_jump (a->succ, b, true);
2700   if (GET_CODE (BB_END (a)) == JUMP_INSN)
2701     abort ();
2702
2703   /* Possible line number notes should appear in between.  */
2704   if (b->rbi->header)
2705     {
2706       rtx first = BB_END (a), last;
2707
2708       last = emit_insn_after (b->rbi->header, BB_END (a));
2709       delete_insn_chain (NEXT_INSN (first), last);
2710       b->rbi->header = NULL;
2711     }
2712
2713   /* In the case basic blocks are not adjacent, move them around.  */
2714   if (NEXT_INSN (BB_END (a)) != BB_HEAD (b))
2715     {
2716       rtx first = unlink_insn_chain (BB_HEAD (b), BB_END (b));
2717
2718       emit_insn_after (first, BB_END (a));
2719       /* Skip possible DELETED_LABEL insn.  */
2720       if (!NOTE_INSN_BASIC_BLOCK_P (first))
2721         first = NEXT_INSN (first);
2722       if (!NOTE_INSN_BASIC_BLOCK_P (first))
2723         abort ();
2724       BB_HEAD (b) = NULL;
2725       delete_insn (first);
2726     }
2727   /* Otherwise just re-associate the instructions.  */
2728   else
2729     {
2730       rtx insn;
2731
2732       for (insn = BB_HEAD (b);
2733            insn != NEXT_INSN (BB_END (b));
2734            insn = NEXT_INSN (insn))
2735         set_block_for_insn (insn, a);
2736       insn = BB_HEAD (b);
2737       /* Skip possible DELETED_LABEL insn.  */
2738       if (!NOTE_INSN_BASIC_BLOCK_P (insn))
2739         insn = NEXT_INSN (insn);
2740       if (!NOTE_INSN_BASIC_BLOCK_P (insn))
2741         abort ();
2742       BB_HEAD (b) = NULL;
2743       BB_END (a) = BB_END (b);
2744       delete_insn (insn);
2745     }
2746
2747   /* Possible tablejumps and barriers should appear after the block.  */
2748   if (b->rbi->footer)
2749     {
2750       if (!a->rbi->footer)
2751         a->rbi->footer = b->rbi->footer;
2752       else
2753         {
2754           rtx last = a->rbi->footer;
2755
2756           while (NEXT_INSN (last))
2757             last = NEXT_INSN (last);
2758           NEXT_INSN (last) = b->rbi->footer;
2759           PREV_INSN (b->rbi->footer) = last;
2760         }
2761       b->rbi->footer = NULL;
2762     }
2763
2764   if (dump_file)
2765     fprintf (dump_file, "Merged blocks %d and %d.\n",
2766              a->index, b->index);
2767 }
2768
2769 /* Split edge E.  */
2770
2771 static basic_block
2772 cfg_layout_split_edge (edge e)
2773 {
2774   edge new_e;
2775   basic_block new_bb =
2776     create_basic_block (e->src != ENTRY_BLOCK_PTR
2777                         ? NEXT_INSN (BB_END (e->src)) : get_insns (),
2778                         NULL_RTX, e->src);
2779
2780   new_e = make_edge (new_bb, e->dest, EDGE_FALLTHRU);
2781   redirect_edge_and_branch_force (e, new_bb);
2782
2783   return new_bb;
2784 }
2785
2786 /* Do postprocessing after making a forwarder block joined by edge FALLTHRU.  */
2787
2788 static void
2789 rtl_make_forwarder_block (edge fallthru ATTRIBUTE_UNUSED)
2790 {
2791 }
2792
2793 /* Return 1 if BB ends with a call, possibly followed by some
2794    instructions that must stay with the call, 0 otherwise.  */
2795
2796 static bool
2797 rtl_block_ends_with_call_p (basic_block bb)
2798 {
2799   rtx insn = BB_END (bb);
2800
2801   while (GET_CODE (insn) != CALL_INSN
2802          && insn != BB_HEAD (bb)
2803          && keep_with_call_p (insn))
2804     insn = PREV_INSN (insn);
2805   return (GET_CODE (insn) == CALL_INSN);
2806 }
2807
2808 /* Return 1 if BB ends with a conditional branch, 0 otherwise.  */
2809
2810 static bool
2811 rtl_block_ends_with_condjump_p (basic_block bb)
2812 {
2813   return any_condjump_p (BB_END (bb));
2814 }
2815
2816 /* Return true if we need to add fake edge to exit.
2817    Helper function for rtl_flow_call_edges_add.  */
2818
2819 static bool
2820 need_fake_edge_p (rtx insn)
2821 {
2822   if (!INSN_P (insn))
2823     return false;
2824
2825   if ((GET_CODE (insn) == CALL_INSN
2826        && !SIBLING_CALL_P (insn)
2827        && !find_reg_note (insn, REG_NORETURN, NULL)
2828        && !find_reg_note (insn, REG_ALWAYS_RETURN, NULL)
2829        && !CONST_OR_PURE_CALL_P (insn)))
2830     return true;
2831
2832   return ((GET_CODE (PATTERN (insn)) == ASM_OPERANDS
2833            && MEM_VOLATILE_P (PATTERN (insn)))
2834           || (GET_CODE (PATTERN (insn)) == PARALLEL
2835               && asm_noperands (insn) != -1
2836               && MEM_VOLATILE_P (XVECEXP (PATTERN (insn), 0, 0)))
2837           || GET_CODE (PATTERN (insn)) == ASM_INPUT);
2838 }
2839
2840 /* Add fake edges to the function exit for any non constant and non noreturn
2841    calls, volatile inline assembly in the bitmap of blocks specified by
2842    BLOCKS or to the whole CFG if BLOCKS is zero.  Return the number of blocks
2843    that were split.
2844
2845    The goal is to expose cases in which entering a basic block does not imply
2846    that all subsequent instructions must be executed.  */
2847
2848 static int
2849 rtl_flow_call_edges_add (sbitmap blocks)
2850 {
2851   int i;
2852   int blocks_split = 0;
2853   int last_bb = last_basic_block;
2854   bool check_last_block = false;
2855
2856   if (n_basic_blocks == 0)
2857     return 0;
2858
2859   if (! blocks)
2860     check_last_block = true;
2861   else
2862     check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
2863
2864   /* In the last basic block, before epilogue generation, there will be
2865      a fallthru edge to EXIT.  Special care is required if the last insn
2866      of the last basic block is a call because make_edge folds duplicate
2867      edges, which would result in the fallthru edge also being marked
2868      fake, which would result in the fallthru edge being removed by
2869      remove_fake_edges, which would result in an invalid CFG.
2870
2871      Moreover, we can't elide the outgoing fake edge, since the block
2872      profiler needs to take this into account in order to solve the minimal
2873      spanning tree in the case that the call doesn't return.
2874
2875      Handle this by adding a dummy instruction in a new last basic block.  */
2876   if (check_last_block)
2877     {
2878       basic_block bb = EXIT_BLOCK_PTR->prev_bb;
2879       rtx insn = BB_END (bb);
2880
2881       /* Back up past insns that must be kept in the same block as a call.  */
2882       while (insn != BB_HEAD (bb)
2883              && keep_with_call_p (insn))
2884         insn = PREV_INSN (insn);
2885
2886       if (need_fake_edge_p (insn))
2887         {
2888           edge e;
2889
2890           for (e = bb->succ; e; e = e->succ_next)
2891             if (e->dest == EXIT_BLOCK_PTR)
2892               {
2893                 insert_insn_on_edge (gen_rtx_USE (VOIDmode, const0_rtx), e);
2894                 commit_edge_insertions ();
2895                 break;
2896               }
2897         }
2898     }
2899
2900   /* Now add fake edges to the function exit for any non constant
2901      calls since there is no way that we can determine if they will
2902      return or not...  */
2903
2904   for (i = 0; i < last_bb; i++)
2905     {
2906       basic_block bb = BASIC_BLOCK (i);
2907       rtx insn;
2908       rtx prev_insn;
2909
2910       if (!bb)
2911         continue;
2912
2913       if (blocks && !TEST_BIT (blocks, i))
2914         continue;
2915
2916       for (insn = BB_END (bb); ; insn = prev_insn)
2917         {
2918           prev_insn = PREV_INSN (insn);
2919           if (need_fake_edge_p (insn))
2920             {
2921               edge e;
2922               rtx split_at_insn = insn;
2923
2924               /* Don't split the block between a call and an insn that should
2925                  remain in the same block as the call.  */
2926               if (GET_CODE (insn) == CALL_INSN)
2927                 while (split_at_insn != BB_END (bb)
2928                        && keep_with_call_p (NEXT_INSN (split_at_insn)))
2929                   split_at_insn = NEXT_INSN (split_at_insn);
2930
2931               /* The handling above of the final block before the epilogue
2932                  should be enough to verify that there is no edge to the exit
2933                  block in CFG already.  Calling make_edge in such case would
2934                  cause us to mark that edge as fake and remove it later.  */
2935
2936 #ifdef ENABLE_CHECKING
2937               if (split_at_insn == BB_END (bb))
2938                 for (e = bb->succ; e; e = e->succ_next)
2939                   if (e->dest == EXIT_BLOCK_PTR)
2940                     abort ();
2941 #endif
2942
2943               /* Note that the following may create a new basic block
2944                  and renumber the existing basic blocks.  */
2945               if (split_at_insn != BB_END (bb))
2946                 {
2947                   e = split_block (bb, split_at_insn);
2948                   if (e)
2949                     blocks_split++;
2950                 }
2951
2952               make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
2953             }
2954
2955           if (insn == BB_HEAD (bb))
2956             break;
2957         }
2958     }
2959
2960   if (blocks_split)
2961     verify_flow_info ();
2962
2963   return blocks_split;
2964 }
2965
2966 /* Implementation of CFG manipulation for linearized RTL.  */
2967 struct cfg_hooks rtl_cfg_hooks = {
2968   "rtl",
2969   rtl_verify_flow_info,
2970   rtl_dump_bb,
2971   rtl_create_basic_block,
2972   rtl_redirect_edge_and_branch,
2973   rtl_redirect_edge_and_branch_force,
2974   rtl_delete_block,
2975   rtl_split_block,
2976   rtl_move_block_after,
2977   rtl_can_merge_blocks,  /* can_merge_blocks_p */
2978   rtl_merge_blocks,
2979   rtl_predict_edge,
2980   rtl_predicted_by_p,
2981   NULL, /* can_duplicate_block_p */
2982   NULL, /* duplicate_block */
2983   rtl_split_edge,
2984   rtl_make_forwarder_block,
2985   rtl_tidy_fallthru_edge,
2986   rtl_block_ends_with_call_p,
2987   rtl_block_ends_with_condjump_p,
2988   rtl_flow_call_edges_add
2989 };
2990
2991 /* Implementation of CFG manipulation for cfg layout RTL, where
2992    basic block connected via fallthru edges does not have to be adjacent.
2993    This representation will hopefully become the default one in future
2994    version of the compiler.  */
2995
2996 /* We do not want to declare these functions in a header file, since they
2997    should only be used through the cfghooks interface, and we do not want to
2998    move them here since it would require also moving quite a lot of related
2999    code.  */
3000 extern bool cfg_layout_can_duplicate_bb_p (basic_block);
3001 extern basic_block cfg_layout_duplicate_bb (basic_block);
3002
3003 struct cfg_hooks cfg_layout_rtl_cfg_hooks = {
3004   "cfglayout mode",
3005   rtl_verify_flow_info_1,
3006   rtl_dump_bb,
3007   cfg_layout_create_basic_block,
3008   cfg_layout_redirect_edge_and_branch,
3009   cfg_layout_redirect_edge_and_branch_force,
3010   cfg_layout_delete_block,
3011   cfg_layout_split_block,
3012   rtl_move_block_after,
3013   cfg_layout_can_merge_blocks_p,
3014   cfg_layout_merge_blocks,
3015   rtl_predict_edge,
3016   rtl_predicted_by_p,
3017   cfg_layout_can_duplicate_bb_p,
3018   cfg_layout_duplicate_bb,
3019   cfg_layout_split_edge,
3020   rtl_make_forwarder_block,
3021   NULL,
3022   rtl_block_ends_with_call_p,
3023   rtl_block_ends_with_condjump_p,
3024   rtl_flow_call_edges_add
3025 };
3026