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 Free Software Foundation, Inc.
5 This file is part of GCC.
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
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
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
22 /* This file contains low level functions to manipulate the CFG and analyze it
23 that are aware of the RTL intermediate language.
25 Available functionality:
26 - CFG-aware instruction chain manipulation
27 delete_insn, delete_insn_chain
28 - Basic block manipulation
29 create_basic_block, flow_delete_block, split_block,
31 - Infrastructure to determine quickly basic block for insn
32 compute_bb_for_insn, update_bb_for_insn, set_block_for_insn,
33 - Edge redirection with updating and optimizing of insn chain
34 block_label, redirect_edge_and_branch,
35 redirect_edge_and_branch_force, tidy_fallthru_edge, force_nonfallthru
36 - Edge splitting and commiting to edges
37 split_edge, insert_insn_on_edge, commit_edge_insertions
38 - Dumping and debugging
39 print_rtl_with_bb, dump_bb, debug_bb, debug_bb_n
40 - Consistency checking
42 - CFG updating after constant propagation
43 purge_dead_edges, purge_all_dead_edges */
49 #include "hard-reg-set.h"
50 #include "basic-block.h"
60 /* Stubs in case we don't have a return insn. */
63 #define gen_return() NULL_RTX
66 /* The basic block structure for every insn, indexed by uid. */
67 varray_type basic_block_for_insn
;
69 /* The labels mentioned in non-jump rtl. Valid during find_basic_blocks. */
70 /* ??? Should probably be using LABEL_NUSES instead. It would take a
71 bit of surgery to be able to use or co-opt the routines in jump. */
73 rtx tail_recursion_label_list
;
75 static int can_delete_note_p
PARAMS ((rtx
));
76 static int can_delete_label_p
PARAMS ((rtx
));
77 static void commit_one_edge_insertion
PARAMS ((edge
));
78 static bool try_redirect_by_replacing_jump
PARAMS ((edge
, basic_block
));
79 static rtx last_loop_beg_note
PARAMS ((rtx
));
80 static bool back_edge_of_syntactic_loop_p
PARAMS ((basic_block
, basic_block
));
81 static basic_block force_nonfallthru_and_redirect
PARAMS ((edge
, basic_block
));
83 /* Return true if NOTE is not one of the ones that must be kept paired,
84 so that we may simply delete it. */
87 can_delete_note_p (note
)
90 return (NOTE_LINE_NUMBER (note
) == NOTE_INSN_DELETED
91 || NOTE_LINE_NUMBER (note
) == NOTE_INSN_BASIC_BLOCK
);
94 /* True if a given label can be deleted. */
97 can_delete_label_p (label
)
100 return (!LABEL_PRESERVE_P (label
)
101 /* User declared labels must be preserved. */
102 && LABEL_NAME (label
) == 0
103 && !in_expr_list_p (forced_labels
, label
)
104 && !in_expr_list_p (label_value_list
, label
)
105 && !in_expr_list_p (exception_handler_labels
, label
));
108 /* Delete INSN by patching it out. Return the next insn. */
114 rtx next
= NEXT_INSN (insn
);
116 bool really_delete
= true;
118 if (GET_CODE (insn
) == CODE_LABEL
)
120 /* Some labels can't be directly removed from the INSN chain, as they
121 might be references via variables, constant pool etc.
122 Convert them to the special NOTE_INSN_DELETED_LABEL note. */
123 if (! can_delete_label_p (insn
))
125 const char *name
= LABEL_NAME (insn
);
127 really_delete
= false;
128 PUT_CODE (insn
, NOTE
);
129 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED_LABEL
;
130 NOTE_SOURCE_FILE (insn
) = name
;
133 remove_node_from_expr_list (insn
, &nonlocal_goto_handler_labels
);
139 INSN_DELETED_P (insn
) = 1;
142 /* If deleting a jump, decrement the use count of the label. Deleting
143 the label itself should happen in the normal course of block merging. */
144 if (GET_CODE (insn
) == JUMP_INSN
146 && GET_CODE (JUMP_LABEL (insn
)) == CODE_LABEL
)
147 LABEL_NUSES (JUMP_LABEL (insn
))--;
149 /* Also if deleting an insn that references a label. */
150 else if ((note
= find_reg_note (insn
, REG_LABEL
, NULL_RTX
)) != NULL_RTX
151 && GET_CODE (XEXP (note
, 0)) == CODE_LABEL
)
152 LABEL_NUSES (XEXP (note
, 0))--;
154 if (GET_CODE (insn
) == JUMP_INSN
155 && (GET_CODE (PATTERN (insn
)) == ADDR_VEC
156 || GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
))
158 rtx pat
= PATTERN (insn
);
159 int diff_vec_p
= GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
;
160 int len
= XVECLEN (pat
, diff_vec_p
);
163 for (i
= 0; i
< len
; i
++)
165 rtx label
= XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0);
167 /* When deleting code in bulk (e.g. removing many unreachable
168 blocks) we can delete a label that's a target of the vector
169 before deleting the vector itself. */
170 if (GET_CODE (label
) != NOTE
)
171 LABEL_NUSES (label
)--;
178 /* Unlink a chain of insns between START and FINISH, leaving notes
179 that must be paired. */
182 delete_insn_chain (start
, finish
)
187 /* Unchain the insns one by one. It would be quicker to delete all of these
188 with a single unchaining, rather than one at a time, but we need to keep
192 next
= NEXT_INSN (start
);
193 if (GET_CODE (start
) == NOTE
&& !can_delete_note_p (start
))
196 next
= delete_insn (start
);
204 /* Create a new basic block consisting of the instructions between HEAD and END
205 inclusive. This function is designed to allow fast BB construction - reuses
206 the note and basic block struct in BB_NOTE, if any and do not grow
207 BASIC_BLOCK chain and should be used directly only by CFG construction code.
208 END can be NULL in to create new empty basic block before HEAD. Both END
209 and HEAD can be NULL to create basic block at the end of INSN chain. */
212 create_basic_block_structure (index
, head
, end
, bb_note
)
214 rtx head
, end
, bb_note
;
219 && ! RTX_INTEGRATED_P (bb_note
)
220 && (bb
= NOTE_BASIC_BLOCK (bb_note
)) != NULL
223 /* If we found an existing note, thread it back onto the chain. */
227 if (GET_CODE (head
) == CODE_LABEL
)
231 after
= PREV_INSN (head
);
235 if (after
!= bb_note
&& NEXT_INSN (after
) != bb_note
)
236 reorder_insns (bb_note
, bb_note
, after
);
240 /* Otherwise we must create a note and a basic block structure. */
246 = emit_note_after (NOTE_INSN_BASIC_BLOCK
, get_last_insn ());
247 else if (GET_CODE (head
) == CODE_LABEL
&& end
)
249 bb_note
= emit_note_after (NOTE_INSN_BASIC_BLOCK
, head
);
255 bb_note
= emit_note_before (NOTE_INSN_BASIC_BLOCK
, head
);
261 NOTE_BASIC_BLOCK (bb_note
) = bb
;
264 /* Always include the bb note in the block. */
265 if (NEXT_INSN (end
) == bb_note
)
271 BASIC_BLOCK (index
) = bb
;
272 if (basic_block_for_insn
)
273 update_bb_for_insn (bb
);
275 /* Tag the block so that we know it has been used when considering
276 other basic block notes. */
282 /* Create new basic block consisting of instructions in between HEAD and END
283 and place it to the BB chain at position INDEX. END can be NULL in to
284 create new empty basic block before HEAD. Both END and HEAD can be NULL to
285 create basic block at the end of INSN chain. */
288 create_basic_block (index
, head
, end
)
295 /* Place the new block just after the block being split. */
296 VARRAY_GROW (basic_block_info
, ++n_basic_blocks
);
298 /* Some parts of the compiler expect blocks to be number in
299 sequential order so insert the new block immediately after the
300 block being split.. */
301 for (i
= n_basic_blocks
- 1; i
> index
; --i
)
303 basic_block tmp
= BASIC_BLOCK (i
- 1);
305 BASIC_BLOCK (i
) = tmp
;
309 bb
= create_basic_block_structure (index
, head
, end
, NULL
);
314 /* Delete the insns in a (non-live) block. We physically delete every
315 non-deleted-note insn, and update the flow graph appropriately.
317 Return nonzero if we deleted an exception handler. */
319 /* ??? Preserving all such notes strikes me as wrong. It would be nice
320 to post-process the stream to remove empty blocks, loops, ranges, etc. */
323 flow_delete_block (b
)
326 int deleted_handler
= 0;
329 /* If the head of this block is a CODE_LABEL, then it might be the
330 label for an exception handler which can't be reached.
332 We need to remove the label from the exception_handler_label list
333 and remove the associated NOTE_INSN_EH_REGION_BEG and
334 NOTE_INSN_EH_REGION_END notes. */
338 never_reached_warning (insn
);
340 if (GET_CODE (insn
) == CODE_LABEL
)
341 maybe_remove_eh_handler (insn
);
343 /* Include any jump table following the basic block. */
345 if (GET_CODE (end
) == JUMP_INSN
346 && (tmp
= JUMP_LABEL (end
)) != NULL_RTX
347 && (tmp
= NEXT_INSN (tmp
)) != NULL_RTX
348 && GET_CODE (tmp
) == JUMP_INSN
349 && (GET_CODE (PATTERN (tmp
)) == ADDR_VEC
350 || GET_CODE (PATTERN (tmp
)) == ADDR_DIFF_VEC
))
353 /* Include any barrier that may follow the basic block. */
354 tmp
= next_nonnote_insn (end
);
355 if (tmp
&& GET_CODE (tmp
) == BARRIER
)
358 /* Selectively delete the entire chain. */
360 delete_insn_chain (insn
, end
);
362 /* Remove the edges into and out of this block. Note that there may
363 indeed be edges in, if we are removing an unreachable loop. */
364 while (b
->pred
!= NULL
)
365 remove_edge (b
->pred
);
366 while (b
->succ
!= NULL
)
367 remove_edge (b
->succ
);
372 /* Remove the basic block from the array, and compact behind it. */
375 return deleted_handler
;
378 /* Records the basic block struct in BB_FOR_INSN, for every instruction
379 indexed by INSN_UID. MAX is the size of the array. */
382 compute_bb_for_insn (max
)
387 if (basic_block_for_insn
)
388 VARRAY_FREE (basic_block_for_insn
);
390 VARRAY_BB_INIT (basic_block_for_insn
, max
, "basic_block_for_insn");
392 for (i
= 0; i
< n_basic_blocks
; ++i
)
394 basic_block bb
= BASIC_BLOCK (i
);
398 for (insn
= bb
->head
; ; insn
= NEXT_INSN (insn
))
400 if (INSN_UID (insn
) < max
)
401 VARRAY_BB (basic_block_for_insn
, INSN_UID (insn
)) = bb
;
409 /* Release the basic_block_for_insn array. */
414 if (basic_block_for_insn
)
415 VARRAY_FREE (basic_block_for_insn
);
417 basic_block_for_insn
= 0;
420 /* Update insns block within BB. */
423 update_bb_for_insn (bb
)
428 if (! basic_block_for_insn
)
431 for (insn
= bb
->head
; ; insn
= NEXT_INSN (insn
))
433 set_block_for_insn (insn
, bb
);
439 /* Record INSN's block as BB. */
442 set_block_for_insn (insn
, bb
)
446 size_t uid
= INSN_UID (insn
);
448 if (uid
>= basic_block_for_insn
->num_elements
)
450 /* Add one-eighth the size so we don't keep calling xrealloc. */
451 size_t new_size
= uid
+ (uid
+ 7) / 8;
453 VARRAY_GROW (basic_block_for_insn
, new_size
);
456 VARRAY_BB (basic_block_for_insn
, uid
) = bb
;
459 /* Split a block BB after insn INSN creating a new fallthru edge.
460 Return the new edge. Note that to keep other parts of the compiler happy,
461 this function renumbers all the basic blocks so that the new
462 one has a number one greater than the block split. */
465 split_block (bb
, insn
)
473 /* There is no point splitting the block after its end. */
477 /* Create the new basic block. */
478 new_bb
= create_basic_block (bb
->index
+ 1, NEXT_INSN (insn
), bb
->end
);
479 new_bb
->count
= bb
->count
;
480 new_bb
->frequency
= bb
->frequency
;
481 new_bb
->loop_depth
= bb
->loop_depth
;
484 /* Redirect the outgoing edges. */
485 new_bb
->succ
= bb
->succ
;
487 for (e
= new_bb
->succ
; e
; e
= e
->succ_next
)
490 new_edge
= make_single_succ_edge (bb
, new_bb
, EDGE_FALLTHRU
);
492 if (bb
->global_live_at_start
)
494 new_bb
->global_live_at_start
= OBSTACK_ALLOC_REG_SET (&flow_obstack
);
495 new_bb
->global_live_at_end
= OBSTACK_ALLOC_REG_SET (&flow_obstack
);
496 COPY_REG_SET (new_bb
->global_live_at_end
, bb
->global_live_at_end
);
498 /* We now have to calculate which registers are live at the end
499 of the split basic block and at the start of the new basic
500 block. Start with those registers that are known to be live
501 at the end of the original basic block and get
502 propagate_block to determine which registers are live. */
503 COPY_REG_SET (new_bb
->global_live_at_start
, bb
->global_live_at_end
);
504 propagate_block (new_bb
, new_bb
->global_live_at_start
, NULL
, NULL
, 0);
505 COPY_REG_SET (bb
->global_live_at_end
,
506 new_bb
->global_live_at_start
);
512 /* Blocks A and B are to be merged into a single block A. The insns
513 are already contiguous, hence `nomove'. */
516 merge_blocks_nomove (a
, b
)
519 rtx b_head
= b
->head
, b_end
= b
->end
, a_end
= a
->end
;
520 rtx del_first
= NULL_RTX
, del_last
= NULL_RTX
;
524 /* If there was a CODE_LABEL beginning B, delete it. */
525 if (GET_CODE (b_head
) == CODE_LABEL
)
527 /* Detect basic blocks with nothing but a label. This can happen
528 in particular at the end of a function. */
532 del_first
= del_last
= b_head
;
533 b_head
= NEXT_INSN (b_head
);
536 /* Delete the basic block note and handle blocks containing just that
538 if (NOTE_INSN_BASIC_BLOCK_P (b_head
))
546 b_head
= NEXT_INSN (b_head
);
549 /* If there was a jump out of A, delete it. */
550 if (GET_CODE (a_end
) == JUMP_INSN
)
554 for (prev
= PREV_INSN (a_end
); ; prev
= PREV_INSN (prev
))
555 if (GET_CODE (prev
) != NOTE
556 || NOTE_LINE_NUMBER (prev
) == NOTE_INSN_BASIC_BLOCK
563 /* If this was a conditional jump, we need to also delete
564 the insn that set cc0. */
565 if (only_sets_cc0_p (prev
))
569 prev
= prev_nonnote_insn (prev
);
576 a_end
= PREV_INSN (del_first
);
578 else if (GET_CODE (NEXT_INSN (a_end
)) == BARRIER
)
579 del_first
= NEXT_INSN (a_end
);
581 /* Normally there should only be one successor of A and that is B, but
582 partway though the merge of blocks for conditional_execution we'll
583 be merging a TEST block with THEN and ELSE successors. Free the
584 whole lot of them and hope the caller knows what they're doing. */
586 remove_edge (a
->succ
);
588 /* Adjust the edges out of B for the new owner. */
589 for (e
= b
->succ
; e
; e
= e
->succ_next
)
593 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
594 b
->pred
= b
->succ
= NULL
;
595 a
->global_live_at_end
= b
->global_live_at_end
;
599 /* Delete everything marked above as well as crap that might be
600 hanging out between the two blocks. */
601 delete_insn_chain (del_first
, del_last
);
603 /* Reassociate the insns of B with A. */
606 if (basic_block_for_insn
)
610 for (x
= a_end
; x
!= b_end
; x
= NEXT_INSN (x
))
611 BLOCK_FOR_INSN (x
) = a
;
613 BLOCK_FOR_INSN (b_end
) = a
;
622 /* Return the label in the head of basic block BLOCK. Create one if it doesn't
629 if (block
== EXIT_BLOCK_PTR
)
632 if (GET_CODE (block
->head
) != CODE_LABEL
)
634 block
->head
= emit_label_before (gen_label_rtx (), block
->head
);
635 if (basic_block_for_insn
)
636 set_block_for_insn (block
->head
, block
);
642 /* Attempt to perform edge redirection by replacing possibly complex jump
643 instruction by unconditional jump or removing jump completely. This can
644 apply only if all edges now point to the same block. The parameters and
645 return values are equivalent to redirect_edge_and_branch. */
648 try_redirect_by_replacing_jump (e
, target
)
652 basic_block src
= e
->src
;
653 rtx insn
= src
->end
, kill_from
;
658 /* Verify that all targets will be TARGET. */
659 for (tmp
= src
->succ
; tmp
; tmp
= tmp
->succ_next
)
660 if (tmp
->dest
!= target
&& tmp
!= e
)
663 if (tmp
|| !onlyjump_p (insn
))
666 /* Avoid removing branch with side effects. */
667 set
= single_set (insn
);
668 if (!set
|| side_effects_p (set
))
671 /* In case we zap a conditional jump, we'll need to kill
672 the cc0 setter too. */
675 if (reg_mentioned_p (cc0_rtx
, PATTERN (insn
)))
676 kill_from
= PREV_INSN (insn
);
679 /* See if we can create the fallthru edge. */
680 if (can_fallthru (src
, target
))
683 fprintf (rtl_dump_file
, "Removing jump %i.\n", INSN_UID (insn
));
686 /* Selectively unlink whole insn chain. */
687 delete_insn_chain (kill_from
, PREV_INSN (target
->head
));
690 /* If this already is simplejump, redirect it. */
691 else if (simplejump_p (insn
))
693 if (e
->dest
== target
)
696 fprintf (rtl_dump_file
, "Redirecting jump %i from %i to %i.\n",
697 INSN_UID (insn
), e
->dest
->index
, target
->index
);
698 if (!redirect_jump (insn
, block_label (target
), 0))
700 if (target
== EXIT_BLOCK_PTR
)
706 /* Cannot do anything for target exit block. */
707 else if (target
== EXIT_BLOCK_PTR
)
710 /* Or replace possibly complicated jump insn by simple jump insn. */
713 rtx target_label
= block_label (target
);
716 emit_jump_insn_after (gen_jump (target_label
), insn
);
717 JUMP_LABEL (src
->end
) = target_label
;
718 LABEL_NUSES (target_label
)++;
720 fprintf (rtl_dump_file
, "Replacing insn %i by jump %i\n",
721 INSN_UID (insn
), INSN_UID (src
->end
));
723 delete_insn_chain (kill_from
, insn
);
725 barrier
= next_nonnote_insn (src
->end
);
726 if (!barrier
|| GET_CODE (barrier
) != BARRIER
)
727 emit_barrier_after (src
->end
);
730 /* Keep only one edge out and set proper flags. */
731 while (src
->succ
->succ_next
)
732 remove_edge (src
->succ
);
735 e
->flags
= EDGE_FALLTHRU
;
739 e
->probability
= REG_BR_PROB_BASE
;
740 e
->count
= src
->count
;
742 /* We don't want a block to end on a line-number note since that has
743 the potential of changing the code between -g and not -g. */
744 while (GET_CODE (e
->src
->end
) == NOTE
745 && NOTE_LINE_NUMBER (e
->src
->end
) >= 0)
746 delete_insn (e
->src
->end
);
748 if (e
->dest
!= target
)
749 redirect_edge_succ (e
, target
);
754 /* Return last loop_beg note appearing after INSN, before start of next
755 basic block. Return INSN if there are no such notes.
757 When emitting jump to redirect an fallthru edge, it should always appear
758 after the LOOP_BEG notes, as loop optimizer expect loop to either start by
759 fallthru edge or jump following the LOOP_BEG note jumping to the loop exit
763 last_loop_beg_note (insn
)
768 for (insn
= NEXT_INSN (insn
); insn
&& GET_CODE (insn
) == NOTE
769 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_BASIC_BLOCK
;
770 insn
= NEXT_INSN (insn
))
771 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
)
777 /* Attempt to change code to redirect edge E to TARGET. Don't do that on
778 expense of adding new instructions or reordering basic blocks.
780 Function can be also called with edge destination equivalent to the TARGET.
781 Then it should try the simplifications and do nothing if none is possible.
783 Return true if transformation succeeded. We still return false in case E
784 already destinated TARGET and we didn't managed to simplify instruction
788 redirect_edge_and_branch (e
, target
)
793 rtx old_label
= e
->dest
->head
;
794 basic_block src
= e
->src
;
797 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
800 if (try_redirect_by_replacing_jump (e
, target
))
803 /* Do this fast path late, as we want above code to simplify for cases
804 where called on single edge leaving basic block containing nontrivial
806 else if (e
->dest
== target
)
809 /* We can only redirect non-fallthru edges of jump insn. */
810 if (e
->flags
& EDGE_FALLTHRU
)
812 else if (GET_CODE (insn
) != JUMP_INSN
)
815 /* Recognize a tablejump and adjust all matching cases. */
816 if ((tmp
= JUMP_LABEL (insn
)) != NULL_RTX
817 && (tmp
= NEXT_INSN (tmp
)) != NULL_RTX
818 && GET_CODE (tmp
) == JUMP_INSN
819 && (GET_CODE (PATTERN (tmp
)) == ADDR_VEC
820 || GET_CODE (PATTERN (tmp
)) == ADDR_DIFF_VEC
))
824 rtx new_label
= block_label (target
);
826 if (target
== EXIT_BLOCK_PTR
)
828 if (GET_CODE (PATTERN (tmp
)) == ADDR_VEC
)
829 vec
= XVEC (PATTERN (tmp
), 0);
831 vec
= XVEC (PATTERN (tmp
), 1);
833 for (j
= GET_NUM_ELEM (vec
) - 1; j
>= 0; --j
)
834 if (XEXP (RTVEC_ELT (vec
, j
), 0) == old_label
)
836 RTVEC_ELT (vec
, j
) = gen_rtx_LABEL_REF (Pmode
, new_label
);
837 --LABEL_NUSES (old_label
);
838 ++LABEL_NUSES (new_label
);
841 /* Handle casesi dispatch insns */
842 if ((tmp
= single_set (insn
)) != NULL
843 && SET_DEST (tmp
) == pc_rtx
844 && GET_CODE (SET_SRC (tmp
)) == IF_THEN_ELSE
845 && GET_CODE (XEXP (SET_SRC (tmp
), 2)) == LABEL_REF
846 && XEXP (XEXP (SET_SRC (tmp
), 2), 0) == old_label
)
848 XEXP (SET_SRC (tmp
), 2) = gen_rtx_LABEL_REF (VOIDmode
,
850 --LABEL_NUSES (old_label
);
851 ++LABEL_NUSES (new_label
);
856 /* ?? We may play the games with moving the named labels from
857 one basic block to the other in case only one computed_jump is
859 if (computed_jump_p (insn
)
860 /* A return instruction can't be redirected. */
861 || returnjump_p (insn
))
864 /* If the insn doesn't go where we think, we're confused. */
865 if (JUMP_LABEL (insn
) != old_label
)
868 /* If the substitution doesn't succeed, die. This can happen
869 if the back end emitted unrecognizable instructions or if
870 target is exit block on some arches. */
871 if (!redirect_jump (insn
, block_label (target
), 0))
873 if (target
== EXIT_BLOCK_PTR
)
880 fprintf (rtl_dump_file
, "Edge %i->%i redirected to %i\n",
881 e
->src
->index
, e
->dest
->index
, target
->index
);
883 if (e
->dest
!= target
)
884 redirect_edge_succ_nodup (e
, target
);
889 /* Like force_nonfallthru below, but additionally performs redirection
890 Used by redirect_edge_and_branch_force. */
893 force_nonfallthru_and_redirect (e
, target
)
897 basic_block jump_block
, new_bb
= NULL
;
901 if (e
->flags
& EDGE_ABNORMAL
)
903 else if (!(e
->flags
& EDGE_FALLTHRU
))
905 else if (e
->src
->succ
->succ_next
)
907 /* Create the new structures. */
908 note
= last_loop_beg_note (e
->src
->end
);
910 = create_basic_block (e
->src
->index
+ 1, NEXT_INSN (note
), NULL
);
911 jump_block
->count
= e
->count
;
912 jump_block
->frequency
= EDGE_FREQUENCY (e
);
913 jump_block
->loop_depth
= target
->loop_depth
;
915 if (target
->global_live_at_start
)
917 jump_block
->global_live_at_start
918 = OBSTACK_ALLOC_REG_SET (&flow_obstack
);
919 jump_block
->global_live_at_end
920 = OBSTACK_ALLOC_REG_SET (&flow_obstack
);
921 COPY_REG_SET (jump_block
->global_live_at_start
,
922 target
->global_live_at_start
);
923 COPY_REG_SET (jump_block
->global_live_at_end
,
924 target
->global_live_at_start
);
928 new_edge
= make_edge (e
->src
, jump_block
, EDGE_FALLTHRU
);
929 new_edge
->probability
= e
->probability
;
930 new_edge
->count
= e
->count
;
932 /* Redirect old edge. */
933 redirect_edge_pred (e
, jump_block
);
934 e
->probability
= REG_BR_PROB_BASE
;
941 e
->flags
&= ~EDGE_FALLTHRU
;
942 if (target
== EXIT_BLOCK_PTR
)
945 emit_jump_insn_after (gen_return (), jump_block
->end
);
951 rtx label
= block_label (target
);
952 emit_jump_insn_after (gen_jump (label
), jump_block
->end
);
953 JUMP_LABEL (jump_block
->end
) = label
;
954 LABEL_NUSES (label
)++;
957 emit_barrier_after (jump_block
->end
);
958 redirect_edge_succ_nodup (e
, target
);
963 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
964 (and possibly create new basic block) to make edge non-fallthru.
965 Return newly created BB or NULL if none. */
968 force_nonfallthru (e
)
971 return force_nonfallthru_and_redirect (e
, e
->dest
);
974 /* Redirect edge even at the expense of creating new jump insn or
975 basic block. Return new basic block if created, NULL otherwise.
976 Abort if conversion is impossible. */
979 redirect_edge_and_branch_force (e
, target
)
983 if (redirect_edge_and_branch (e
, target
)
984 || e
->dest
== target
)
987 /* In case the edge redirection failed, try to force it to be non-fallthru
988 and redirect newly created simplejump. */
989 return force_nonfallthru_and_redirect (e
, target
);
992 /* The given edge should potentially be a fallthru edge. If that is in
993 fact true, delete the jump and barriers that are in the way. */
996 tidy_fallthru_edge (e
, b
, c
)
1002 /* ??? In a late-running flow pass, other folks may have deleted basic
1003 blocks by nopping out blocks, leaving multiple BARRIERs between here
1004 and the target label. They ought to be chastized and fixed.
1006 We can also wind up with a sequence of undeletable labels between
1007 one block and the next.
1009 So search through a sequence of barriers, labels, and notes for
1010 the head of block C and assert that we really do fall through. */
1012 if (next_real_insn (b
->end
) != next_real_insn (PREV_INSN (c
->head
)))
1015 /* Remove what will soon cease being the jump insn from the source block.
1016 If block B consisted only of this single jump, turn it into a deleted
1019 if (GET_CODE (q
) == JUMP_INSN
1021 && (any_uncondjump_p (q
)
1022 || (b
->succ
== e
&& e
->succ_next
== NULL
)))
1025 /* If this was a conditional jump, we need to also delete
1026 the insn that set cc0. */
1027 if (any_condjump_p (q
) && only_sets_cc0_p (PREV_INSN (q
)))
1033 /* We don't want a block to end on a line-number note since that has
1034 the potential of changing the code between -g and not -g. */
1035 while (GET_CODE (q
) == NOTE
&& NOTE_LINE_NUMBER (q
) >= 0)
1039 /* Selectively unlink the sequence. */
1040 if (q
!= PREV_INSN (c
->head
))
1041 delete_insn_chain (NEXT_INSN (q
), PREV_INSN (c
->head
));
1043 e
->flags
|= EDGE_FALLTHRU
;
1046 /* Fix up edges that now fall through, or rather should now fall through
1047 but previously required a jump around now deleted blocks. Simplify
1048 the search by only examining blocks numerically adjacent, since this
1049 is how find_basic_blocks created them. */
1052 tidy_fallthru_edges ()
1056 for (i
= 1; i
< n_basic_blocks
; i
++)
1058 basic_block b
= BASIC_BLOCK (i
- 1);
1059 basic_block c
= BASIC_BLOCK (i
);
1062 /* We care about simple conditional or unconditional jumps with
1065 If we had a conditional branch to the next instruction when
1066 find_basic_blocks was called, then there will only be one
1067 out edge for the block which ended with the conditional
1068 branch (since we do not create duplicate edges).
1070 Furthermore, the edge will be marked as a fallthru because we
1071 merge the flags for the duplicate edges. So we do not want to
1072 check that the edge is not a FALLTHRU edge. */
1074 if ((s
= b
->succ
) != NULL
1075 && ! (s
->flags
& EDGE_COMPLEX
)
1076 && s
->succ_next
== NULL
1078 /* If the jump insn has side effects, we can't tidy the edge. */
1079 && (GET_CODE (b
->end
) != JUMP_INSN
1080 || onlyjump_p (b
->end
)))
1081 tidy_fallthru_edge (s
, b
, c
);
1085 /* Helper function for split_edge. Return true in case edge BB2 to BB1
1086 is back edge of syntactic loop. */
1089 back_edge_of_syntactic_loop_p (bb1
, bb2
)
1090 basic_block bb1
, bb2
;
1095 if (bb1
->index
> bb2
->index
)
1097 else if (bb1
->index
== bb2
->index
)
1100 for (insn
= bb1
->end
; insn
!= bb2
->head
&& count
>= 0;
1101 insn
= NEXT_INSN (insn
))
1102 if (GET_CODE (insn
) == NOTE
)
1104 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
)
1106 else if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_END
)
1113 /* Split a (typically critical) edge. Return the new block.
1114 Abort on abnormal edges.
1116 ??? The code generally expects to be called on critical edges.
1117 The case of a block ending in an unconditional jump to a
1118 block with multiple predecessors is not handled optimally. */
1121 split_edge (edge_in
)
1128 /* Abnormal edges cannot be split. */
1129 if ((edge_in
->flags
& EDGE_ABNORMAL
) != 0)
1132 /* We are going to place the new block in front of edge destination.
1133 Avoid existence of fallthru predecessors. */
1134 if ((edge_in
->flags
& EDGE_FALLTHRU
) == 0)
1138 for (e
= edge_in
->dest
->pred
; e
; e
= e
->pred_next
)
1139 if (e
->flags
& EDGE_FALLTHRU
)
1143 force_nonfallthru (e
);
1146 /* Create the basic block note.
1148 Where we place the note can have a noticeable impact on the generated
1149 code. Consider this cfg:
1159 If we need to insert an insn on the edge from block 0 to block 1,
1160 we want to ensure the instructions we insert are outside of any
1161 loop notes that physically sit between block 0 and block 1. Otherwise
1162 we confuse the loop optimizer into thinking the loop is a phony. */
1164 if (edge_in
->dest
!= EXIT_BLOCK_PTR
1165 && PREV_INSN (edge_in
->dest
->head
)
1166 && GET_CODE (PREV_INSN (edge_in
->dest
->head
)) == NOTE
1167 && (NOTE_LINE_NUMBER (PREV_INSN (edge_in
->dest
->head
))
1168 == NOTE_INSN_LOOP_BEG
)
1169 && !back_edge_of_syntactic_loop_p (edge_in
->dest
, edge_in
->src
))
1170 before
= PREV_INSN (edge_in
->dest
->head
);
1171 else if (edge_in
->dest
!= EXIT_BLOCK_PTR
)
1172 before
= edge_in
->dest
->head
;
1176 bb
= create_basic_block (edge_in
->dest
== EXIT_BLOCK_PTR
? n_basic_blocks
1177 : edge_in
->dest
->index
, before
, NULL
);
1178 bb
->count
= edge_in
->count
;
1179 bb
->frequency
= EDGE_FREQUENCY (edge_in
);
1181 /* ??? This info is likely going to be out of date very soon. */
1182 if (edge_in
->dest
->global_live_at_start
)
1184 bb
->global_live_at_start
= OBSTACK_ALLOC_REG_SET (&flow_obstack
);
1185 bb
->global_live_at_end
= OBSTACK_ALLOC_REG_SET (&flow_obstack
);
1186 COPY_REG_SET (bb
->global_live_at_start
,
1187 edge_in
->dest
->global_live_at_start
);
1188 COPY_REG_SET (bb
->global_live_at_end
,
1189 edge_in
->dest
->global_live_at_start
);
1192 edge_out
= make_single_succ_edge (bb
, edge_in
->dest
, EDGE_FALLTHRU
);
1194 /* For non-fallthry edges, we must adjust the predecessor's
1195 jump instruction to target our new block. */
1196 if ((edge_in
->flags
& EDGE_FALLTHRU
) == 0)
1198 if (!redirect_edge_and_branch (edge_in
, bb
))
1202 redirect_edge_succ (edge_in
, bb
);
1207 /* Queue instructions for insertion on an edge between two basic blocks.
1208 The new instructions and basic blocks (if any) will not appear in the
1209 CFG until commit_edge_insertions is called. */
1212 insert_insn_on_edge (pattern
, e
)
1216 /* We cannot insert instructions on an abnormal critical edge.
1217 It will be easier to find the culprit if we die now. */
1218 if ((e
->flags
& EDGE_ABNORMAL
) && EDGE_CRITICAL_P (e
))
1221 if (e
->insns
== NULL_RTX
)
1224 push_to_sequence (e
->insns
);
1226 emit_insn (pattern
);
1228 e
->insns
= get_insns ();
1232 /* Update the CFG for the instructions queued on edge E. */
1235 commit_one_edge_insertion (e
)
1238 rtx before
= NULL_RTX
, after
= NULL_RTX
, insns
, tmp
, last
;
1241 /* Pull the insns off the edge now since the edge might go away. */
1243 e
->insns
= NULL_RTX
;
1245 /* Figure out where to put these things. If the destination has
1246 one predecessor, insert there. Except for the exit block. */
1247 if (e
->dest
->pred
->pred_next
== NULL
1248 && e
->dest
!= EXIT_BLOCK_PTR
)
1252 /* Get the location correct wrt a code label, and "nice" wrt
1253 a basic block note, and before everything else. */
1255 if (GET_CODE (tmp
) == CODE_LABEL
)
1256 tmp
= NEXT_INSN (tmp
);
1257 if (NOTE_INSN_BASIC_BLOCK_P (tmp
))
1258 tmp
= NEXT_INSN (tmp
);
1259 if (tmp
== bb
->head
)
1262 after
= PREV_INSN (tmp
);
1265 /* If the source has one successor and the edge is not abnormal,
1266 insert there. Except for the entry block. */
1267 else if ((e
->flags
& EDGE_ABNORMAL
) == 0
1268 && e
->src
->succ
->succ_next
== NULL
1269 && e
->src
!= ENTRY_BLOCK_PTR
)
1273 /* It is possible to have a non-simple jump here. Consider a target
1274 where some forms of unconditional jumps clobber a register. This
1275 happens on the fr30 for example.
1277 We know this block has a single successor, so we can just emit
1278 the queued insns before the jump. */
1279 if (GET_CODE (bb
->end
) == JUMP_INSN
)
1280 for (before
= bb
->end
;
1281 GET_CODE (PREV_INSN (before
)) == NOTE
1282 && NOTE_LINE_NUMBER (PREV_INSN (before
)) == NOTE_INSN_LOOP_BEG
;
1283 before
= PREV_INSN (before
))
1287 /* We'd better be fallthru, or we've lost track of what's what. */
1288 if ((e
->flags
& EDGE_FALLTHRU
) == 0)
1295 /* Otherwise we must split the edge. */
1298 bb
= split_edge (e
);
1302 /* Now that we've found the spot, do the insertion. */
1306 emit_insns_before (insns
, before
);
1307 last
= prev_nonnote_insn (before
);
1310 last
= emit_insns_after (insns
, after
);
1312 if (returnjump_p (last
))
1314 /* ??? Remove all outgoing edges from BB and add one for EXIT.
1315 This is not currently a problem because this only happens
1316 for the (single) epilogue, which already has a fallthru edge
1320 if (e
->dest
!= EXIT_BLOCK_PTR
1321 || e
->succ_next
!= NULL
1322 || (e
->flags
& EDGE_FALLTHRU
) == 0)
1325 e
->flags
&= ~EDGE_FALLTHRU
;
1326 emit_barrier_after (last
);
1329 delete_insn (before
);
1331 else if (GET_CODE (last
) == JUMP_INSN
)
1334 find_sub_basic_blocks (bb
);
1337 /* Update the CFG for all queued instructions. */
1340 commit_edge_insertions ()
1345 #ifdef ENABLE_CHECKING
1346 verify_flow_info ();
1350 bb
= ENTRY_BLOCK_PTR
;
1355 for (e
= bb
->succ
; e
; e
= next
)
1357 next
= e
->succ_next
;
1359 commit_one_edge_insertion (e
);
1362 if (++i
>= n_basic_blocks
)
1364 bb
= BASIC_BLOCK (i
);
1368 /* Print out one basic block with live information at start and end. */
1379 fprintf (outf
, ";; Basic block %d, loop depth %d, count ",
1380 bb
->index
, bb
->loop_depth
);
1381 fprintf (outf
, HOST_WIDEST_INT_PRINT_DEC
, (HOST_WIDEST_INT
) bb
->count
);
1384 fputs (";; Predecessors: ", outf
);
1385 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
1386 dump_edge_info (outf
, e
, 0);
1389 fputs (";; Registers live at start:", outf
);
1390 dump_regset (bb
->global_live_at_start
, outf
);
1393 for (insn
= bb
->head
, last
= NEXT_INSN (bb
->end
); insn
!= last
;
1394 insn
= NEXT_INSN (insn
))
1395 print_rtl_single (outf
, insn
);
1397 fputs (";; Registers live at end:", outf
);
1398 dump_regset (bb
->global_live_at_end
, outf
);
1401 fputs (";; Successors: ", outf
);
1402 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
1403 dump_edge_info (outf
, e
, 1);
1411 dump_bb (bb
, stderr
);
1418 dump_bb (BASIC_BLOCK (n
), stderr
);
1421 /* Like print_rtl, but also print out live information for the start of each
1425 print_rtl_with_bb (outf
, rtx_first
)
1432 fprintf (outf
, "(nil)\n");
1436 enum bb_state
{ NOT_IN_BB
, IN_ONE_BB
, IN_MULTIPLE_BB
};
1437 int max_uid
= get_max_uid ();
1439 = (basic_block
*) xcalloc (max_uid
, sizeof (basic_block
));
1441 = (basic_block
*) xcalloc (max_uid
, sizeof (basic_block
));
1442 enum bb_state
*in_bb_p
1443 = (enum bb_state
*) xcalloc (max_uid
, sizeof (enum bb_state
));
1445 for (i
= n_basic_blocks
- 1; i
>= 0; i
--)
1447 basic_block bb
= BASIC_BLOCK (i
);
1450 start
[INSN_UID (bb
->head
)] = bb
;
1451 end
[INSN_UID (bb
->end
)] = bb
;
1452 for (x
= bb
->head
; x
!= NULL_RTX
; x
= NEXT_INSN (x
))
1454 enum bb_state state
= IN_MULTIPLE_BB
;
1456 if (in_bb_p
[INSN_UID (x
)] == NOT_IN_BB
)
1458 in_bb_p
[INSN_UID (x
)] = state
;
1465 for (tmp_rtx
= rtx_first
; NULL
!= tmp_rtx
; tmp_rtx
= NEXT_INSN (tmp_rtx
))
1470 if ((bb
= start
[INSN_UID (tmp_rtx
)]) != NULL
)
1472 fprintf (outf
, ";; Start of basic block %d, registers live:",
1474 dump_regset (bb
->global_live_at_start
, outf
);
1478 if (in_bb_p
[INSN_UID (tmp_rtx
)] == NOT_IN_BB
1479 && GET_CODE (tmp_rtx
) != NOTE
1480 && GET_CODE (tmp_rtx
) != BARRIER
)
1481 fprintf (outf
, ";; Insn is not within a basic block\n");
1482 else if (in_bb_p
[INSN_UID (tmp_rtx
)] == IN_MULTIPLE_BB
)
1483 fprintf (outf
, ";; Insn is in multiple basic blocks\n");
1485 did_output
= print_rtl_single (outf
, tmp_rtx
);
1487 if ((bb
= end
[INSN_UID (tmp_rtx
)]) != NULL
)
1489 fprintf (outf
, ";; End of basic block %d, registers live:\n",
1491 dump_regset (bb
->global_live_at_end
, outf
);
1504 if (current_function_epilogue_delay_list
!= 0)
1506 fprintf (outf
, "\n;; Insns in epilogue delay list:\n\n");
1507 for (tmp_rtx
= current_function_epilogue_delay_list
; tmp_rtx
!= 0;
1508 tmp_rtx
= XEXP (tmp_rtx
, 1))
1509 print_rtl_single (outf
, XEXP (tmp_rtx
, 0));
1513 /* Verify the CFG consistency. This function check some CFG invariants and
1514 aborts when something is wrong. Hope that this function will help to
1515 convert many optimization passes to preserve CFG consistent.
1517 Currently it does following checks:
1519 - test head/end pointers
1520 - overlapping of basic blocks
1521 - edge list correctness
1522 - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
1523 - tails of basic blocks (ensure that boundary is necessary)
1524 - scans body of the basic block for JUMP_INSN, CODE_LABEL
1525 and NOTE_INSN_BASIC_BLOCK
1526 - check that all insns are in the basic blocks
1527 (except the switch handling code, barriers and notes)
1528 - check that all returns are followed by barriers
1530 In future it can be extended check a lot of other stuff as well
1531 (reachability of basic blocks, life information, etc. etc.). */
1536 const int max_uid
= get_max_uid ();
1537 const rtx rtx_first
= get_insns ();
1538 rtx last_head
= get_last_insn ();
1539 basic_block
*bb_info
, *last_visited
;
1540 size_t *edge_checksum
;
1542 int i
, last_bb_num_seen
, num_bb_notes
, err
= 0;
1544 bb_info
= (basic_block
*) xcalloc (max_uid
, sizeof (basic_block
));
1545 last_visited
= (basic_block
*) xcalloc (n_basic_blocks
+ 2,
1546 sizeof (basic_block
));
1547 edge_checksum
= (size_t *) xcalloc (n_basic_blocks
+ 2, sizeof (size_t));
1549 for (i
= n_basic_blocks
- 1; i
>= 0; i
--)
1551 basic_block bb
= BASIC_BLOCK (i
);
1552 rtx head
= bb
->head
;
1555 /* Verify the end of the basic block is in the INSN chain. */
1556 for (x
= last_head
; x
!= NULL_RTX
; x
= PREV_INSN (x
))
1562 error ("end insn %d for block %d not found in the insn stream",
1563 INSN_UID (end
), bb
->index
);
1567 /* Work backwards from the end to the head of the basic block
1568 to verify the head is in the RTL chain. */
1569 for (; x
!= NULL_RTX
; x
= PREV_INSN (x
))
1571 /* While walking over the insn chain, verify insns appear
1572 in only one basic block and initialize the BB_INFO array
1573 used by other passes. */
1574 if (bb_info
[INSN_UID (x
)] != NULL
)
1576 error ("insn %d is in multiple basic blocks (%d and %d)",
1577 INSN_UID (x
), bb
->index
, bb_info
[INSN_UID (x
)]->index
);
1581 bb_info
[INSN_UID (x
)] = bb
;
1588 error ("head insn %d for block %d not found in the insn stream",
1589 INSN_UID (head
), bb
->index
);
1596 /* Now check the basic blocks (boundaries etc.) */
1597 for (i
= n_basic_blocks
- 1; i
>= 0; i
--)
1599 basic_block bb
= BASIC_BLOCK (i
);
1600 int has_fallthru
= 0;
1603 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
1605 if (last_visited
[e
->dest
->index
+ 2] == bb
)
1607 error ("verify_flow_info: Duplicate edge %i->%i",
1608 e
->src
->index
, e
->dest
->index
);
1612 last_visited
[e
->dest
->index
+ 2] = bb
;
1614 if (e
->flags
& EDGE_FALLTHRU
)
1617 if ((e
->flags
& EDGE_FALLTHRU
)
1618 && e
->src
!= ENTRY_BLOCK_PTR
1619 && e
->dest
!= EXIT_BLOCK_PTR
)
1623 if (e
->src
->index
+ 1 != e
->dest
->index
)
1626 ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
1627 e
->src
->index
, e
->dest
->index
);
1631 for (insn
= NEXT_INSN (e
->src
->end
); insn
!= e
->dest
->head
;
1632 insn
= NEXT_INSN (insn
))
1633 if (GET_CODE (insn
) == BARRIER
1634 #ifndef CASE_DROPS_THROUGH
1637 || (INSN_P (insn
) && ! JUMP_TABLE_DATA_P (insn
))
1641 error ("verify_flow_info: Incorrect fallthru %i->%i",
1642 e
->src
->index
, e
->dest
->index
);
1643 fatal_insn ("wrong insn in the fallthru edge", insn
);
1650 error ("verify_flow_info: Basic block %d succ edge is corrupted",
1652 fprintf (stderr
, "Predecessor: ");
1653 dump_edge_info (stderr
, e
, 0);
1654 fprintf (stderr
, "\nSuccessor: ");
1655 dump_edge_info (stderr
, e
, 1);
1656 fprintf (stderr
, "\n");
1660 edge_checksum
[e
->dest
->index
+ 2] += (size_t) e
;
1667 /* Ensure existence of barrier in BB with no fallthru edges. */
1668 for (insn
= bb
->end
; !insn
|| GET_CODE (insn
) != BARRIER
;
1669 insn
= NEXT_INSN (insn
))
1671 || (GET_CODE (insn
) == NOTE
1672 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BASIC_BLOCK
))
1674 error ("missing barrier after block %i", bb
->index
);
1680 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
1684 error ("basic block %d pred edge is corrupted", bb
->index
);
1685 fputs ("Predecessor: ", stderr
);
1686 dump_edge_info (stderr
, e
, 0);
1687 fputs ("\nSuccessor: ", stderr
);
1688 dump_edge_info (stderr
, e
, 1);
1689 fputc ('\n', stderr
);
1692 edge_checksum
[e
->dest
->index
+ 2] -= (size_t) e
;
1695 for (x
= bb
->head
; x
!= NEXT_INSN (bb
->end
); x
= NEXT_INSN (x
))
1696 if (basic_block_for_insn
&& BLOCK_FOR_INSN (x
) != bb
)
1699 if (! BLOCK_FOR_INSN (x
))
1701 ("insn %d inside basic block %d but block_for_insn is NULL",
1702 INSN_UID (x
), bb
->index
);
1705 ("insn %d inside basic block %d but block_for_insn is %i",
1706 INSN_UID (x
), bb
->index
, BLOCK_FOR_INSN (x
)->index
);
1711 /* OK pointers are correct. Now check the header of basic
1712 block. It ought to contain optional CODE_LABEL followed
1713 by NOTE_BASIC_BLOCK. */
1715 if (GET_CODE (x
) == CODE_LABEL
)
1719 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
1727 if (!NOTE_INSN_BASIC_BLOCK_P (x
) || NOTE_BASIC_BLOCK (x
) != bb
)
1729 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
1735 /* Do checks for empty blocks her. e */
1738 for (x
= NEXT_INSN (x
); x
; x
= NEXT_INSN (x
))
1740 if (NOTE_INSN_BASIC_BLOCK_P (x
))
1742 error ("NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d",
1743 INSN_UID (x
), bb
->index
);
1750 if (GET_CODE (x
) == JUMP_INSN
1751 || GET_CODE (x
) == CODE_LABEL
1752 || GET_CODE (x
) == BARRIER
)
1754 error ("in basic block %d:", bb
->index
);
1755 fatal_insn ("flow control insn inside a basic block", x
);
1760 /* Complete edge checksumming for ENTRY and EXIT. */
1764 for (e
= ENTRY_BLOCK_PTR
->succ
; e
; e
= e
->succ_next
)
1765 edge_checksum
[e
->dest
->index
+ 2] += (size_t) e
;
1767 for (e
= EXIT_BLOCK_PTR
->pred
; e
; e
= e
->pred_next
)
1768 edge_checksum
[e
->dest
->index
+ 2] -= (size_t) e
;
1771 for (i
= -2; i
< n_basic_blocks
; ++i
)
1772 if (edge_checksum
[i
+ 2])
1774 error ("basic block %i edge lists are corrupted", i
);
1778 last_bb_num_seen
= -1;
1780 for (x
= rtx_first
; x
; x
= NEXT_INSN (x
))
1782 if (NOTE_INSN_BASIC_BLOCK_P (x
))
1784 basic_block bb
= NOTE_BASIC_BLOCK (x
);
1787 if (bb
->index
!= last_bb_num_seen
+ 1)
1788 internal_error ("basic blocks not numbered consecutively");
1790 last_bb_num_seen
= bb
->index
;
1793 if (!bb_info
[INSN_UID (x
)])
1795 switch (GET_CODE (x
))
1802 /* An addr_vec is placed outside any block block. */
1804 && GET_CODE (NEXT_INSN (x
)) == JUMP_INSN
1805 && (GET_CODE (PATTERN (NEXT_INSN (x
))) == ADDR_DIFF_VEC
1806 || GET_CODE (PATTERN (NEXT_INSN (x
))) == ADDR_VEC
))
1809 /* But in any case, non-deletable labels can appear anywhere. */
1813 fatal_insn ("insn outside basic block", x
);
1818 && GET_CODE (x
) == JUMP_INSN
1819 && returnjump_p (x
) && ! condjump_p (x
)
1820 && ! (NEXT_INSN (x
) && GET_CODE (NEXT_INSN (x
)) == BARRIER
))
1821 fatal_insn ("return not followed by barrier", x
);
1824 if (num_bb_notes
!= n_basic_blocks
)
1826 ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
1827 num_bb_notes
, n_basic_blocks
);
1830 internal_error ("verify_flow_info failed");
1834 free (last_visited
);
1835 free (edge_checksum
);
1838 /* Assume that the preceding pass has possibly eliminated jump instructions
1839 or converted the unconditional jumps. Eliminate the edges from CFG.
1840 Return true if any edges are eliminated. */
1843 purge_dead_edges (bb
)
1847 rtx insn
= bb
->end
, note
;
1848 bool purged
= false;
1850 /* ??? This makes no sense since the later test includes more cases. */
1851 if (GET_CODE (insn
) == JUMP_INSN
&& !simplejump_p (insn
))
1854 if (GET_CODE (insn
) == JUMP_INSN
)
1859 /* We do care only about conditional jumps and simplejumps. */
1860 if (!any_condjump_p (insn
)
1861 && !returnjump_p (insn
)
1862 && !simplejump_p (insn
))
1865 for (e
= bb
->succ
; e
; e
= next
)
1867 next
= e
->succ_next
;
1869 /* Avoid abnormal flags to leak from computed jumps turned
1870 into simplejumps. */
1872 e
->flags
&= ~EDGE_ABNORMAL
;
1874 /* Check purposes we can have edge. */
1875 if ((e
->flags
& EDGE_FALLTHRU
)
1876 && any_condjump_p (insn
))
1878 else if (e
->dest
!= EXIT_BLOCK_PTR
1879 && e
->dest
->head
== JUMP_LABEL (insn
))
1881 else if (e
->dest
== EXIT_BLOCK_PTR
1882 && returnjump_p (insn
))
1889 if (!bb
->succ
|| !purged
)
1893 fprintf (rtl_dump_file
, "Purged edges from bb %i\n", bb
->index
);
1898 /* Redistribute probabilities. */
1899 if (!bb
->succ
->succ_next
)
1901 bb
->succ
->probability
= REG_BR_PROB_BASE
;
1902 bb
->succ
->count
= bb
->count
;
1906 note
= find_reg_note (insn
, REG_BR_PROB
, NULL
);
1910 b
= BRANCH_EDGE (bb
);
1911 f
= FALLTHRU_EDGE (bb
);
1912 b
->probability
= INTVAL (XEXP (note
, 0));
1913 f
->probability
= REG_BR_PROB_BASE
- b
->probability
;
1914 b
->count
= bb
->count
* b
->probability
/ REG_BR_PROB_BASE
;
1915 f
->count
= bb
->count
* f
->probability
/ REG_BR_PROB_BASE
;
1921 /* If this instruction cannot trap, remove REG_EH_REGION notes. */
1922 if (GET_CODE (insn
) == INSN
1923 && (note
= find_reg_note (insn
, REG_EH_REGION
, NULL
)))
1927 if (! may_trap_p (PATTERN (insn
))
1928 || ((eqnote
= find_reg_equal_equiv_note (insn
))
1929 && ! may_trap_p (XEXP (eqnote
, 0))))
1930 remove_note (insn
, note
);
1933 /* Cleanup abnormal edges caused by throwing insns that have been
1935 if (! can_throw_internal (bb
->end
))
1936 for (e
= bb
->succ
; e
; e
= next
)
1938 next
= e
->succ_next
;
1939 if (e
->flags
& EDGE_EH
)
1946 /* If we don't see a jump insn, we don't know exactly why the block would
1947 have been broken at this point. Look for a simple, non-fallthru edge,
1948 as these are only created by conditional branches. If we find such an
1949 edge we know that there used to be a jump here and can then safely
1950 remove all non-fallthru edges. */
1951 for (e
= bb
->succ
; e
&& (e
->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
));
1958 for (e
= bb
->succ
; e
; e
= next
)
1960 next
= e
->succ_next
;
1961 if (!(e
->flags
& EDGE_FALLTHRU
))
1962 remove_edge (e
), purged
= true;
1965 if (!bb
->succ
|| bb
->succ
->succ_next
)
1968 bb
->succ
->probability
= REG_BR_PROB_BASE
;
1969 bb
->succ
->count
= bb
->count
;
1972 fprintf (rtl_dump_file
, "Purged non-fallthru edges from bb %i\n",
1977 /* Search all basic blocks for potentially dead edges and purge them. Return
1978 true if some edge has been eliminated. */
1981 purge_all_dead_edges (update_life_p
)
1984 int i
, purged
= false;
1989 blocks
= sbitmap_alloc (n_basic_blocks
);
1990 sbitmap_zero (blocks
);
1993 for (i
= 0; i
< n_basic_blocks
; i
++)
1995 bool purged_here
= purge_dead_edges (BASIC_BLOCK (i
));
1997 purged
|= purged_here
;
1998 if (purged_here
&& update_life_p
)
1999 SET_BIT (blocks
, i
);
2002 if (update_life_p
&& purged
)
2003 update_life_info (blocks
, UPDATE_LIFE_GLOBAL
,
2004 PROP_DEATH_NOTES
| PROP_SCAN_DEAD_CODE
2005 | PROP_KILL_DEAD_CODE
);
2008 sbitmap_free (blocks
);