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, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011, 2012 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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 - 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 - CFG fixing after coarse manipulation
36 Functions not supposed for generic use:
37 - Infrastructure to determine quickly basic block for insn
38 compute_bb_for_insn, update_bb_for_insn, set_block_for_insn,
39 - Edge redirection with updating and optimizing of insn chain
40 block_label, tidy_fallthru_edge, force_nonfallthru */
44 #include "coretypes.h"
47 #include "hard-reg-set.h"
48 #include "basic-block.h"
53 #include "rtl-error.h"
56 #include "insn-attr.h"
57 #include "insn-config.h"
60 #include "common/common-target.h"
63 #include "tree-pass.h"
66 /* Holds the interesting leading and trailing notes for the function.
67 Only applicable if the CFG is in cfglayout mode. */
68 static GTY(()) rtx cfg_layout_function_footer
;
69 static GTY(()) rtx cfg_layout_function_header
;
71 static rtx
skip_insns_after_block (basic_block
);
72 static void record_effective_endpoints (void);
73 static rtx
label_for_bb (basic_block
);
74 static void fixup_reorder_chain (void);
76 void verify_insn_chain (void);
77 static void fixup_fallthru_exit_predecessor (void);
78 static int can_delete_note_p (const_rtx
);
79 static int can_delete_label_p (const_rtx
);
80 static basic_block
rtl_split_edge (edge
);
81 static bool rtl_move_block_after (basic_block
, basic_block
);
82 static int rtl_verify_flow_info (void);
83 static basic_block
cfg_layout_split_block (basic_block
, void *);
84 static edge
cfg_layout_redirect_edge_and_branch (edge
, basic_block
);
85 static basic_block
cfg_layout_redirect_edge_and_branch_force (edge
, basic_block
);
86 static void cfg_layout_delete_block (basic_block
);
87 static void rtl_delete_block (basic_block
);
88 static basic_block
rtl_redirect_edge_and_branch_force (edge
, basic_block
);
89 static edge
rtl_redirect_edge_and_branch (edge
, basic_block
);
90 static basic_block
rtl_split_block (basic_block
, void *);
91 static void rtl_dump_bb (basic_block
, FILE *, int, int);
92 static int rtl_verify_flow_info_1 (void);
93 static void rtl_make_forwarder_block (edge
);
95 /* Return true if NOTE is not one of the ones that must be kept paired,
96 so that we may simply delete it. */
99 can_delete_note_p (const_rtx note
)
101 switch (NOTE_KIND (note
))
103 case NOTE_INSN_DELETED
:
104 case NOTE_INSN_BASIC_BLOCK
:
105 case NOTE_INSN_EPILOGUE_BEG
:
113 /* True if a given label can be deleted. */
116 can_delete_label_p (const_rtx label
)
118 return (!LABEL_PRESERVE_P (label
)
119 /* User declared labels must be preserved. */
120 && LABEL_NAME (label
) == 0
121 && !in_expr_list_p (forced_labels
, label
));
124 /* Delete INSN by patching it out. */
127 delete_insn (rtx insn
)
130 bool really_delete
= true;
134 /* Some labels can't be directly removed from the INSN chain, as they
135 might be references via variables, constant pool etc.
136 Convert them to the special NOTE_INSN_DELETED_LABEL note. */
137 if (! can_delete_label_p (insn
))
139 const char *name
= LABEL_NAME (insn
);
140 basic_block bb
= BLOCK_FOR_INSN (insn
);
141 rtx bb_note
= NEXT_INSN (insn
);
143 really_delete
= false;
144 PUT_CODE (insn
, NOTE
);
145 NOTE_KIND (insn
) = NOTE_INSN_DELETED_LABEL
;
146 NOTE_DELETED_LABEL_NAME (insn
) = name
;
148 if (bb_note
!= NULL_RTX
&& NOTE_INSN_BASIC_BLOCK_P (bb_note
)
149 && BLOCK_FOR_INSN (bb_note
) == bb
)
151 reorder_insns_nobb (insn
, insn
, bb_note
);
152 BB_HEAD (bb
) = bb_note
;
153 if (BB_END (bb
) == bb_note
)
158 remove_node_from_expr_list (insn
, &nonlocal_goto_handler_labels
);
163 /* If this insn has already been deleted, something is very wrong. */
164 gcc_assert (!INSN_DELETED_P (insn
));
166 INSN_DELETED_P (insn
) = 1;
169 /* If deleting a jump, decrement the use count of the label. Deleting
170 the label itself should happen in the normal course of block merging. */
173 if (JUMP_LABEL (insn
)
174 && LABEL_P (JUMP_LABEL (insn
)))
175 LABEL_NUSES (JUMP_LABEL (insn
))--;
177 /* If there are more targets, remove them too. */
179 = find_reg_note (insn
, REG_LABEL_TARGET
, NULL_RTX
)) != NULL_RTX
180 && LABEL_P (XEXP (note
, 0)))
182 LABEL_NUSES (XEXP (note
, 0))--;
183 remove_note (insn
, note
);
187 /* Also if deleting any insn that references a label as an operand. */
188 while ((note
= find_reg_note (insn
, REG_LABEL_OPERAND
, NULL_RTX
)) != NULL_RTX
189 && LABEL_P (XEXP (note
, 0)))
191 LABEL_NUSES (XEXP (note
, 0))--;
192 remove_note (insn
, note
);
195 if (JUMP_TABLE_DATA_P (insn
))
197 rtx pat
= PATTERN (insn
);
198 int diff_vec_p
= GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
;
199 int len
= XVECLEN (pat
, diff_vec_p
);
202 for (i
= 0; i
< len
; i
++)
204 rtx label
= XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0);
206 /* When deleting code in bulk (e.g. removing many unreachable
207 blocks) we can delete a label that's a target of the vector
208 before deleting the vector itself. */
210 LABEL_NUSES (label
)--;
215 /* Like delete_insn but also purge dead edges from BB. */
218 delete_insn_and_edges (rtx insn
)
223 && BLOCK_FOR_INSN (insn
)
224 && BB_END (BLOCK_FOR_INSN (insn
)) == insn
)
228 purge_dead_edges (BLOCK_FOR_INSN (insn
));
231 /* Unlink a chain of insns between START and FINISH, leaving notes
232 that must be paired. If CLEAR_BB is true, we set bb field for
233 insns that cannot be removed to NULL. */
236 delete_insn_chain (rtx start
, rtx finish
, bool clear_bb
)
240 /* Unchain the insns one by one. It would be quicker to delete all of these
241 with a single unchaining, rather than one at a time, but we need to keep
246 prev
= PREV_INSN (current
);
247 if (NOTE_P (current
) && !can_delete_note_p (current
))
250 delete_insn (current
);
252 if (clear_bb
&& !INSN_DELETED_P (current
))
253 set_block_for_insn (current
, NULL
);
255 if (current
== start
)
261 /* Create a new basic block consisting of the instructions between HEAD and END
262 inclusive. This function is designed to allow fast BB construction - reuses
263 the note and basic block struct in BB_NOTE, if any and do not grow
264 BASIC_BLOCK chain and should be used directly only by CFG construction code.
265 END can be NULL in to create new empty basic block before HEAD. Both END
266 and HEAD can be NULL to create basic block at the end of INSN chain.
267 AFTER is the basic block we should be put after. */
270 create_basic_block_structure (rtx head
, rtx end
, rtx bb_note
, basic_block after
)
275 && (bb
= NOTE_BASIC_BLOCK (bb_note
)) != NULL
278 /* If we found an existing note, thread it back onto the chain. */
286 after
= PREV_INSN (head
);
290 if (after
!= bb_note
&& NEXT_INSN (after
) != bb_note
)
291 reorder_insns_nobb (bb_note
, bb_note
, after
);
295 /* Otherwise we must create a note and a basic block structure. */
299 init_rtl_bb_info (bb
);
302 = emit_note_after (NOTE_INSN_BASIC_BLOCK
, get_last_insn ());
303 else if (LABEL_P (head
) && end
)
305 bb_note
= emit_note_after (NOTE_INSN_BASIC_BLOCK
, head
);
311 bb_note
= emit_note_before (NOTE_INSN_BASIC_BLOCK
, head
);
317 NOTE_BASIC_BLOCK (bb_note
) = bb
;
320 /* Always include the bb note in the block. */
321 if (NEXT_INSN (end
) == bb_note
)
326 bb
->index
= last_basic_block
++;
327 bb
->flags
= BB_NEW
| BB_RTL
;
328 link_block (bb
, after
);
329 SET_BASIC_BLOCK (bb
->index
, bb
);
330 df_bb_refs_record (bb
->index
, false);
331 update_bb_for_insn (bb
);
332 BB_SET_PARTITION (bb
, BB_UNPARTITIONED
);
334 /* Tag the block so that we know it has been used when considering
335 other basic block notes. */
341 /* Create new basic block consisting of instructions in between HEAD and END
342 and place it to the BB chain after block AFTER. END can be NULL to
343 create a new empty basic block before HEAD. Both END and HEAD can be
344 NULL to create basic block at the end of INSN chain. */
347 rtl_create_basic_block (void *headp
, void *endp
, basic_block after
)
349 rtx head
= (rtx
) headp
, end
= (rtx
) endp
;
352 /* Grow the basic block array if needed. */
353 if ((size_t) last_basic_block
>= VEC_length (basic_block
, basic_block_info
))
355 size_t new_size
= last_basic_block
+ (last_basic_block
+ 3) / 4;
356 VEC_safe_grow_cleared (basic_block
, gc
, basic_block_info
, new_size
);
361 bb
= create_basic_block_structure (head
, end
, NULL
, after
);
367 cfg_layout_create_basic_block (void *head
, void *end
, basic_block after
)
369 basic_block newbb
= rtl_create_basic_block (head
, end
, after
);
374 /* Delete the insns in a (non-live) block. We physically delete every
375 non-deleted-note insn, and update the flow graph appropriately.
377 Return nonzero if we deleted an exception handler. */
379 /* ??? Preserving all such notes strikes me as wrong. It would be nice
380 to post-process the stream to remove empty blocks, loops, ranges, etc. */
383 rtl_delete_block (basic_block b
)
387 /* If the head of this block is a CODE_LABEL, then it might be the
388 label for an exception handler which can't be reached. We need
389 to remove the label from the exception_handler_label list. */
392 end
= get_last_bb_insn (b
);
394 /* Selectively delete the entire chain. */
396 delete_insn_chain (insn
, end
, true);
400 fprintf (dump_file
, "deleting block %d\n", b
->index
);
401 df_bb_delete (b
->index
);
404 /* Records the basic block struct in BLOCK_FOR_INSN for every insn. */
407 compute_bb_for_insn (void)
413 rtx end
= BB_END (bb
);
416 for (insn
= BB_HEAD (bb
); ; insn
= NEXT_INSN (insn
))
418 BLOCK_FOR_INSN (insn
) = bb
;
425 /* Release the basic_block_for_insn array. */
428 free_bb_for_insn (void)
431 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
432 if (!BARRIER_P (insn
))
433 BLOCK_FOR_INSN (insn
) = NULL
;
438 rest_of_pass_free_cfg (void)
441 /* The resource.c machinery uses DF but the CFG isn't guaranteed to be
442 valid at that point so it would be too late to call df_analyze. */
443 if (optimize
> 0 && flag_delayed_branch
)
445 df_note_add_problem ();
454 struct rtl_opt_pass pass_free_cfg
=
458 "*free_cfg", /* name */
460 rest_of_pass_free_cfg
, /* execute */
463 0, /* static_pass_number */
465 0, /* properties_required */
466 0, /* properties_provided */
467 PROP_cfg
, /* properties_destroyed */
468 0, /* todo_flags_start */
469 0, /* todo_flags_finish */
473 /* Return RTX to emit after when we want to emit code on the entry of function. */
475 entry_of_function (void)
477 return (n_basic_blocks
> NUM_FIXED_BLOCKS
?
478 BB_HEAD (ENTRY_BLOCK_PTR
->next_bb
) : get_insns ());
481 /* Emit INSN at the entry point of the function, ensuring that it is only
482 executed once per function. */
484 emit_insn_at_entry (rtx insn
)
486 edge_iterator ei
= ei_start (ENTRY_BLOCK_PTR
->succs
);
487 edge e
= ei_safe_edge (ei
);
488 gcc_assert (e
->flags
& EDGE_FALLTHRU
);
490 insert_insn_on_edge (insn
, e
);
491 commit_edge_insertions ();
494 /* Update BLOCK_FOR_INSN of insns between BEGIN and END
495 (or BARRIER if found) and notify df of the bb change.
496 The insn chain range is inclusive
497 (i.e. both BEGIN and END will be updated. */
500 update_bb_for_insn_chain (rtx begin
, rtx end
, basic_block bb
)
504 end
= NEXT_INSN (end
);
505 for (insn
= begin
; insn
!= end
; insn
= NEXT_INSN (insn
))
506 if (!BARRIER_P (insn
))
507 df_insn_change_bb (insn
, bb
);
510 /* Update BLOCK_FOR_INSN of insns in BB to BB,
511 and notify df of the change. */
514 update_bb_for_insn (basic_block bb
)
516 update_bb_for_insn_chain (BB_HEAD (bb
), BB_END (bb
), bb
);
520 /* Like active_insn_p, except keep the return value clobber around
521 even after reload. */
524 flow_active_insn_p (const_rtx insn
)
526 if (active_insn_p (insn
))
529 /* A clobber of the function return value exists for buggy
530 programs that fail to return a value. Its effect is to
531 keep the return value from being live across the entire
532 function. If we allow it to be skipped, we introduce the
533 possibility for register lifetime confusion. */
534 if (GET_CODE (PATTERN (insn
)) == CLOBBER
535 && REG_P (XEXP (PATTERN (insn
), 0))
536 && REG_FUNCTION_VALUE_P (XEXP (PATTERN (insn
), 0)))
542 /* Return true if the block has no effect and only forwards control flow to
543 its single destination. */
544 /* FIXME: Make this a cfg hook. */
547 forwarder_block_p (const_basic_block bb
)
551 if (bb
== EXIT_BLOCK_PTR
|| bb
== ENTRY_BLOCK_PTR
552 || !single_succ_p (bb
))
555 /* Protect loop latches, headers and preheaders. */
559 if (bb
->loop_father
->header
== bb
)
561 dest
= EDGE_SUCC (bb
, 0)->dest
;
562 if (dest
->loop_father
->header
== dest
)
566 for (insn
= BB_HEAD (bb
); insn
!= BB_END (bb
); insn
= NEXT_INSN (insn
))
567 if (INSN_P (insn
) && flow_active_insn_p (insn
))
570 return (!INSN_P (insn
)
571 || (JUMP_P (insn
) && simplejump_p (insn
))
572 || !flow_active_insn_p (insn
));
575 /* Return nonzero if we can reach target from src by falling through. */
576 /* FIXME: Make this a cfg hook. */
579 can_fallthru (basic_block src
, basic_block target
)
581 rtx insn
= BB_END (src
);
586 if (target
== EXIT_BLOCK_PTR
)
588 if (src
->next_bb
!= target
)
590 FOR_EACH_EDGE (e
, ei
, src
->succs
)
591 if (e
->dest
== EXIT_BLOCK_PTR
592 && e
->flags
& EDGE_FALLTHRU
)
595 insn2
= BB_HEAD (target
);
596 if (insn2
&& !active_insn_p (insn2
))
597 insn2
= next_active_insn (insn2
);
599 /* ??? Later we may add code to move jump tables offline. */
600 return next_active_insn (insn
) == insn2
;
603 /* Return nonzero if we could reach target from src by falling through,
604 if the target was made adjacent. If we already have a fall-through
605 edge to the exit block, we can't do that. */
607 could_fall_through (basic_block src
, basic_block target
)
612 if (target
== EXIT_BLOCK_PTR
)
614 FOR_EACH_EDGE (e
, ei
, src
->succs
)
615 if (e
->dest
== EXIT_BLOCK_PTR
616 && e
->flags
& EDGE_FALLTHRU
)
621 /* Return the NOTE_INSN_BASIC_BLOCK of BB. */
623 bb_note (basic_block bb
)
629 note
= NEXT_INSN (note
);
631 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note
));
635 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
636 note associated with the BLOCK. */
639 first_insn_after_basic_block_note (basic_block block
)
643 /* Get the first instruction in the block. */
644 insn
= BB_HEAD (block
);
646 if (insn
== NULL_RTX
)
649 insn
= NEXT_INSN (insn
);
650 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn
));
652 return NEXT_INSN (insn
);
655 /* Creates a new basic block just after basic block B by splitting
656 everything after specified instruction I. */
659 rtl_split_block (basic_block bb
, void *insnp
)
662 rtx insn
= (rtx
) insnp
;
668 insn
= first_insn_after_basic_block_note (bb
);
674 insn
= PREV_INSN (insn
);
676 /* If the block contains only debug insns, insn would have
677 been NULL in a non-debug compilation, and then we'd end
678 up emitting a DELETED note. For -fcompare-debug
679 stability, emit the note too. */
680 if (insn
!= BB_END (bb
)
681 && DEBUG_INSN_P (next
)
682 && DEBUG_INSN_P (BB_END (bb
)))
684 while (next
!= BB_END (bb
) && DEBUG_INSN_P (next
))
685 next
= NEXT_INSN (next
);
687 if (next
== BB_END (bb
))
688 emit_note_after (NOTE_INSN_DELETED
, next
);
692 insn
= get_last_insn ();
695 /* We probably should check type of the insn so that we do not create
696 inconsistent cfg. It is checked in verify_flow_info anyway, so do not
698 if (insn
== BB_END (bb
))
699 emit_note_after (NOTE_INSN_DELETED
, insn
);
701 /* Create the new basic block. */
702 new_bb
= create_basic_block (NEXT_INSN (insn
), BB_END (bb
), bb
);
703 BB_COPY_PARTITION (new_bb
, bb
);
706 /* Redirect the outgoing edges. */
707 new_bb
->succs
= bb
->succs
;
709 FOR_EACH_EDGE (e
, ei
, new_bb
->succs
)
712 /* The new block starts off being dirty. */
713 df_set_bb_dirty (bb
);
717 /* Return true if the single edge between blocks A and B is the only place
718 in RTL which holds some unique locus. */
721 unique_locus_on_edge_between_p (basic_block a
, basic_block b
)
723 const int goto_locus
= EDGE_SUCC (a
, 0)->goto_locus
;
729 /* First scan block A backward. */
731 end
= PREV_INSN (BB_HEAD (a
));
732 while (insn
!= end
&& (!NONDEBUG_INSN_P (insn
) || INSN_LOCATOR (insn
) == 0))
733 insn
= PREV_INSN (insn
);
735 if (insn
!= end
&& locator_eq (INSN_LOCATOR (insn
), goto_locus
))
738 /* Then scan block B forward. */
742 end
= NEXT_INSN (BB_END (b
));
743 while (insn
!= end
&& !NONDEBUG_INSN_P (insn
))
744 insn
= NEXT_INSN (insn
);
746 if (insn
!= end
&& INSN_LOCATOR (insn
) != 0
747 && locator_eq (INSN_LOCATOR (insn
), goto_locus
))
754 /* If the single edge between blocks A and B is the only place in RTL which
755 holds some unique locus, emit a nop with that locus between the blocks. */
758 emit_nop_for_unique_locus_between (basic_block a
, basic_block b
)
760 if (!unique_locus_on_edge_between_p (a
, b
))
763 BB_END (a
) = emit_insn_after_noloc (gen_nop (), BB_END (a
), a
);
764 INSN_LOCATOR (BB_END (a
)) = EDGE_SUCC (a
, 0)->goto_locus
;
767 /* Blocks A and B are to be merged into a single block A. The insns
768 are already contiguous. */
771 rtl_merge_blocks (basic_block a
, basic_block b
)
773 rtx b_head
= BB_HEAD (b
), b_end
= BB_END (b
), a_end
= BB_END (a
);
774 rtx del_first
= NULL_RTX
, del_last
= NULL_RTX
;
775 rtx b_debug_start
= b_end
, b_debug_end
= b_end
;
776 bool forwarder_p
= (b
->flags
& BB_FORWARDER_BLOCK
) != 0;
780 fprintf (dump_file
, "Merging block %d into block %d...\n", b
->index
,
783 while (DEBUG_INSN_P (b_end
))
784 b_end
= PREV_INSN (b_debug_start
= b_end
);
786 /* If there was a CODE_LABEL beginning B, delete it. */
787 if (LABEL_P (b_head
))
789 /* Detect basic blocks with nothing but a label. This can happen
790 in particular at the end of a function. */
794 del_first
= del_last
= b_head
;
795 b_head
= NEXT_INSN (b_head
);
798 /* Delete the basic block note and handle blocks containing just that
800 if (NOTE_INSN_BASIC_BLOCK_P (b_head
))
808 b_head
= NEXT_INSN (b_head
);
811 /* If there was a jump out of A, delete it. */
816 for (prev
= PREV_INSN (a_end
); ; prev
= PREV_INSN (prev
))
818 || NOTE_INSN_BASIC_BLOCK_P (prev
)
819 || prev
== BB_HEAD (a
))
825 /* If this was a conditional jump, we need to also delete
826 the insn that set cc0. */
827 if (only_sets_cc0_p (prev
))
831 prev
= prev_nonnote_insn (prev
);
838 a_end
= PREV_INSN (del_first
);
840 else if (BARRIER_P (NEXT_INSN (a_end
)))
841 del_first
= NEXT_INSN (a_end
);
843 /* Delete everything marked above as well as crap that might be
844 hanging out between the two blocks. */
846 BB_HEAD (b
) = b_empty
? NULL_RTX
: b_head
;
847 delete_insn_chain (del_first
, del_last
, true);
849 /* When not optimizing CFG and the edge is the only place in RTL which holds
850 some unique locus, emit a nop with that locus in between. */
853 emit_nop_for_unique_locus_between (a
, b
);
857 /* Reassociate the insns of B with A. */
860 update_bb_for_insn_chain (a_end
, b_debug_end
, a
);
862 BB_END (a
) = b_debug_end
;
863 BB_HEAD (b
) = NULL_RTX
;
865 else if (b_end
!= b_debug_end
)
867 /* Move any deleted labels and other notes between the end of A
868 and the debug insns that make up B after the debug insns,
869 bringing the debug insns into A while keeping the notes after
871 if (NEXT_INSN (a_end
) != b_debug_start
)
872 reorder_insns_nobb (NEXT_INSN (a_end
), PREV_INSN (b_debug_start
),
874 update_bb_for_insn_chain (b_debug_start
, b_debug_end
, a
);
875 BB_END (a
) = b_debug_end
;
878 df_bb_delete (b
->index
);
880 /* If B was a forwarder block, propagate the locus on the edge. */
881 if (forwarder_p
&& !EDGE_SUCC (b
, 0)->goto_locus
)
882 EDGE_SUCC (b
, 0)->goto_locus
= EDGE_SUCC (a
, 0)->goto_locus
;
885 fprintf (dump_file
, "Merged blocks %d and %d.\n", a
->index
, b
->index
);
889 /* Return true when block A and B can be merged. */
892 rtl_can_merge_blocks (basic_block a
, basic_block b
)
894 /* If we are partitioning hot/cold basic blocks, we don't want to
895 mess up unconditional or indirect jumps that cross between hot
898 Basic block partitioning may result in some jumps that appear to
899 be optimizable (or blocks that appear to be mergeable), but which really
900 must be left untouched (they are required to make it safely across
901 partition boundaries). See the comments at the top of
902 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
904 if (BB_PARTITION (a
) != BB_PARTITION (b
))
907 /* Protect the loop latches. */
908 if (current_loops
&& b
->loop_father
->latch
== b
)
911 /* There must be exactly one edge in between the blocks. */
912 return (single_succ_p (a
)
913 && single_succ (a
) == b
916 /* Must be simple edge. */
917 && !(single_succ_edge (a
)->flags
& EDGE_COMPLEX
)
919 && a
!= ENTRY_BLOCK_PTR
&& b
!= EXIT_BLOCK_PTR
920 /* If the jump insn has side effects,
921 we can't kill the edge. */
922 && (!JUMP_P (BB_END (a
))
924 ? simplejump_p (BB_END (a
)) : onlyjump_p (BB_END (a
)))));
927 /* Return the label in the head of basic block BLOCK. Create one if it doesn't
931 block_label (basic_block block
)
933 if (block
== EXIT_BLOCK_PTR
)
936 if (!LABEL_P (BB_HEAD (block
)))
938 BB_HEAD (block
) = emit_label_before (gen_label_rtx (), BB_HEAD (block
));
941 return BB_HEAD (block
);
944 /* Attempt to perform edge redirection by replacing possibly complex jump
945 instruction by unconditional jump or removing jump completely. This can
946 apply only if all edges now point to the same block. The parameters and
947 return values are equivalent to redirect_edge_and_branch. */
950 try_redirect_by_replacing_jump (edge e
, basic_block target
, bool in_cfglayout
)
952 basic_block src
= e
->src
;
953 rtx insn
= BB_END (src
), kill_from
;
957 /* If we are partitioning hot/cold basic blocks, we don't want to
958 mess up unconditional or indirect jumps that cross between hot
961 Basic block partitioning may result in some jumps that appear to
962 be optimizable (or blocks that appear to be mergeable), but which really
963 must be left untouched (they are required to make it safely across
964 partition boundaries). See the comments at the top of
965 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
967 if (find_reg_note (insn
, REG_CROSSING_JUMP
, NULL_RTX
)
968 || BB_PARTITION (src
) != BB_PARTITION (target
))
971 /* We can replace or remove a complex jump only when we have exactly
972 two edges. Also, if we have exactly one outgoing edge, we can
974 if (EDGE_COUNT (src
->succs
) >= 3
975 /* Verify that all targets will be TARGET. Specifically, the
976 edge that is not E must also go to TARGET. */
977 || (EDGE_COUNT (src
->succs
) == 2
978 && EDGE_SUCC (src
, EDGE_SUCC (src
, 0) == e
)->dest
!= target
))
981 if (!onlyjump_p (insn
))
983 if ((!optimize
|| reload_completed
) && tablejump_p (insn
, NULL
, NULL
))
986 /* Avoid removing branch with side effects. */
987 set
= single_set (insn
);
988 if (!set
|| side_effects_p (set
))
991 /* In case we zap a conditional jump, we'll need to kill
992 the cc0 setter too. */
995 if (reg_mentioned_p (cc0_rtx
, PATTERN (insn
))
996 && only_sets_cc0_p (PREV_INSN (insn
)))
997 kill_from
= PREV_INSN (insn
);
1000 /* See if we can create the fallthru edge. */
1001 if (in_cfglayout
|| can_fallthru (src
, target
))
1004 fprintf (dump_file
, "Removing jump %i.\n", INSN_UID (insn
));
1007 /* Selectively unlink whole insn chain. */
1010 rtx insn
= BB_FOOTER (src
);
1012 delete_insn_chain (kill_from
, BB_END (src
), false);
1014 /* Remove barriers but keep jumptables. */
1017 if (BARRIER_P (insn
))
1019 if (PREV_INSN (insn
))
1020 NEXT_INSN (PREV_INSN (insn
)) = NEXT_INSN (insn
);
1022 BB_FOOTER (src
) = NEXT_INSN (insn
);
1023 if (NEXT_INSN (insn
))
1024 PREV_INSN (NEXT_INSN (insn
)) = PREV_INSN (insn
);
1028 insn
= NEXT_INSN (insn
);
1032 delete_insn_chain (kill_from
, PREV_INSN (BB_HEAD (target
)),
1036 /* If this already is simplejump, redirect it. */
1037 else if (simplejump_p (insn
))
1039 if (e
->dest
== target
)
1042 fprintf (dump_file
, "Redirecting jump %i from %i to %i.\n",
1043 INSN_UID (insn
), e
->dest
->index
, target
->index
);
1044 if (!redirect_jump (insn
, block_label (target
), 0))
1046 gcc_assert (target
== EXIT_BLOCK_PTR
);
1051 /* Cannot do anything for target exit block. */
1052 else if (target
== EXIT_BLOCK_PTR
)
1055 /* Or replace possibly complicated jump insn by simple jump insn. */
1058 rtx target_label
= block_label (target
);
1059 rtx barrier
, label
, table
;
1061 emit_jump_insn_after_noloc (gen_jump (target_label
), insn
);
1062 JUMP_LABEL (BB_END (src
)) = target_label
;
1063 LABEL_NUSES (target_label
)++;
1065 fprintf (dump_file
, "Replacing insn %i by jump %i\n",
1066 INSN_UID (insn
), INSN_UID (BB_END (src
)));
1069 delete_insn_chain (kill_from
, insn
, false);
1071 /* Recognize a tablejump that we are converting to a
1072 simple jump and remove its associated CODE_LABEL
1073 and ADDR_VEC or ADDR_DIFF_VEC. */
1074 if (tablejump_p (insn
, &label
, &table
))
1075 delete_insn_chain (label
, table
, false);
1077 barrier
= next_nonnote_insn (BB_END (src
));
1078 if (!barrier
|| !BARRIER_P (barrier
))
1079 emit_barrier_after (BB_END (src
));
1082 if (barrier
!= NEXT_INSN (BB_END (src
)))
1084 /* Move the jump before barrier so that the notes
1085 which originally were or were created before jump table are
1086 inside the basic block. */
1087 rtx new_insn
= BB_END (src
);
1089 update_bb_for_insn_chain (NEXT_INSN (BB_END (src
)),
1090 PREV_INSN (barrier
), src
);
1092 NEXT_INSN (PREV_INSN (new_insn
)) = NEXT_INSN (new_insn
);
1093 PREV_INSN (NEXT_INSN (new_insn
)) = PREV_INSN (new_insn
);
1095 NEXT_INSN (new_insn
) = barrier
;
1096 NEXT_INSN (PREV_INSN (barrier
)) = new_insn
;
1098 PREV_INSN (new_insn
) = PREV_INSN (barrier
);
1099 PREV_INSN (barrier
) = new_insn
;
1104 /* Keep only one edge out and set proper flags. */
1105 if (!single_succ_p (src
))
1107 gcc_assert (single_succ_p (src
));
1109 e
= single_succ_edge (src
);
1111 e
->flags
= EDGE_FALLTHRU
;
1115 e
->probability
= REG_BR_PROB_BASE
;
1116 e
->count
= src
->count
;
1118 if (e
->dest
!= target
)
1119 redirect_edge_succ (e
, target
);
1123 /* Subroutine of redirect_branch_edge that tries to patch the jump
1124 instruction INSN so that it reaches block NEW. Do this
1125 only when it originally reached block OLD. Return true if this
1126 worked or the original target wasn't OLD, return false if redirection
1130 patch_jump_insn (rtx insn
, rtx old_label
, basic_block new_bb
)
1133 /* Recognize a tablejump and adjust all matching cases. */
1134 if (tablejump_p (insn
, NULL
, &tmp
))
1138 rtx new_label
= block_label (new_bb
);
1140 if (new_bb
== EXIT_BLOCK_PTR
)
1142 if (GET_CODE (PATTERN (tmp
)) == ADDR_VEC
)
1143 vec
= XVEC (PATTERN (tmp
), 0);
1145 vec
= XVEC (PATTERN (tmp
), 1);
1147 for (j
= GET_NUM_ELEM (vec
) - 1; j
>= 0; --j
)
1148 if (XEXP (RTVEC_ELT (vec
, j
), 0) == old_label
)
1150 RTVEC_ELT (vec
, j
) = gen_rtx_LABEL_REF (Pmode
, new_label
);
1151 --LABEL_NUSES (old_label
);
1152 ++LABEL_NUSES (new_label
);
1155 /* Handle casesi dispatch insns. */
1156 if ((tmp
= single_set (insn
)) != NULL
1157 && SET_DEST (tmp
) == pc_rtx
1158 && GET_CODE (SET_SRC (tmp
)) == IF_THEN_ELSE
1159 && GET_CODE (XEXP (SET_SRC (tmp
), 2)) == LABEL_REF
1160 && XEXP (XEXP (SET_SRC (tmp
), 2), 0) == old_label
)
1162 XEXP (SET_SRC (tmp
), 2) = gen_rtx_LABEL_REF (Pmode
,
1164 --LABEL_NUSES (old_label
);
1165 ++LABEL_NUSES (new_label
);
1168 else if ((tmp
= extract_asm_operands (PATTERN (insn
))) != NULL
)
1170 int i
, n
= ASM_OPERANDS_LABEL_LENGTH (tmp
);
1171 rtx new_label
, note
;
1173 if (new_bb
== EXIT_BLOCK_PTR
)
1175 new_label
= block_label (new_bb
);
1177 for (i
= 0; i
< n
; ++i
)
1179 rtx old_ref
= ASM_OPERANDS_LABEL (tmp
, i
);
1180 gcc_assert (GET_CODE (old_ref
) == LABEL_REF
);
1181 if (XEXP (old_ref
, 0) == old_label
)
1183 ASM_OPERANDS_LABEL (tmp
, i
)
1184 = gen_rtx_LABEL_REF (Pmode
, new_label
);
1185 --LABEL_NUSES (old_label
);
1186 ++LABEL_NUSES (new_label
);
1190 if (JUMP_LABEL (insn
) == old_label
)
1192 JUMP_LABEL (insn
) = new_label
;
1193 note
= find_reg_note (insn
, REG_LABEL_TARGET
, new_label
);
1195 remove_note (insn
, note
);
1199 note
= find_reg_note (insn
, REG_LABEL_TARGET
, old_label
);
1201 remove_note (insn
, note
);
1202 if (JUMP_LABEL (insn
) != new_label
1203 && !find_reg_note (insn
, REG_LABEL_TARGET
, new_label
))
1204 add_reg_note (insn
, REG_LABEL_TARGET
, new_label
);
1206 while ((note
= find_reg_note (insn
, REG_LABEL_OPERAND
, old_label
))
1208 XEXP (note
, 0) = new_label
;
1212 /* ?? We may play the games with moving the named labels from
1213 one basic block to the other in case only one computed_jump is
1215 if (computed_jump_p (insn
)
1216 /* A return instruction can't be redirected. */
1217 || returnjump_p (insn
))
1220 if (!currently_expanding_to_rtl
|| JUMP_LABEL (insn
) == old_label
)
1222 /* If the insn doesn't go where we think, we're confused. */
1223 gcc_assert (JUMP_LABEL (insn
) == old_label
);
1225 /* If the substitution doesn't succeed, die. This can happen
1226 if the back end emitted unrecognizable instructions or if
1227 target is exit block on some arches. */
1228 if (!redirect_jump (insn
, block_label (new_bb
), 0))
1230 gcc_assert (new_bb
== EXIT_BLOCK_PTR
);
1239 /* Redirect edge representing branch of (un)conditional jump or tablejump,
1242 redirect_branch_edge (edge e
, basic_block target
)
1244 rtx old_label
= BB_HEAD (e
->dest
);
1245 basic_block src
= e
->src
;
1246 rtx insn
= BB_END (src
);
1248 /* We can only redirect non-fallthru edges of jump insn. */
1249 if (e
->flags
& EDGE_FALLTHRU
)
1251 else if (!JUMP_P (insn
) && !currently_expanding_to_rtl
)
1254 if (!currently_expanding_to_rtl
)
1256 if (!patch_jump_insn (insn
, old_label
, target
))
1260 /* When expanding this BB might actually contain multiple
1261 jumps (i.e. not yet split by find_many_sub_basic_blocks).
1262 Redirect all of those that match our label. */
1263 FOR_BB_INSNS (src
, insn
)
1264 if (JUMP_P (insn
) && !patch_jump_insn (insn
, old_label
, target
))
1268 fprintf (dump_file
, "Edge %i->%i redirected to %i\n",
1269 e
->src
->index
, e
->dest
->index
, target
->index
);
1271 if (e
->dest
!= target
)
1272 e
= redirect_edge_succ_nodup (e
, target
);
1277 /* Attempt to change code to redirect edge E to TARGET. Don't do that on
1278 expense of adding new instructions or reordering basic blocks.
1280 Function can be also called with edge destination equivalent to the TARGET.
1281 Then it should try the simplifications and do nothing if none is possible.
1283 Return edge representing the branch if transformation succeeded. Return NULL
1285 We still return NULL in case E already destinated TARGET and we didn't
1286 managed to simplify instruction stream. */
1289 rtl_redirect_edge_and_branch (edge e
, basic_block target
)
1292 basic_block src
= e
->src
;
1294 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
1297 if (e
->dest
== target
)
1300 if ((ret
= try_redirect_by_replacing_jump (e
, target
, false)) != NULL
)
1302 df_set_bb_dirty (src
);
1306 ret
= redirect_branch_edge (e
, target
);
1310 df_set_bb_dirty (src
);
1314 /* Like force_nonfallthru below, but additionally performs redirection
1315 Used by redirect_edge_and_branch_force. JUMP_LABEL is used only
1316 when redirecting to the EXIT_BLOCK, it is either ret_rtx or
1317 simple_return_rtx, indicating which kind of returnjump to create.
1318 It should be NULL otherwise. */
1321 force_nonfallthru_and_redirect (edge e
, basic_block target
, rtx jump_label
)
1323 basic_block jump_block
, new_bb
= NULL
, src
= e
->src
;
1326 int abnormal_edge_flags
= 0;
1327 bool asm_goto_edge
= false;
1330 /* In the case the last instruction is conditional jump to the next
1331 instruction, first redirect the jump itself and then continue
1332 by creating a basic block afterwards to redirect fallthru edge. */
1333 if (e
->src
!= ENTRY_BLOCK_PTR
&& e
->dest
!= EXIT_BLOCK_PTR
1334 && any_condjump_p (BB_END (e
->src
))
1335 && JUMP_LABEL (BB_END (e
->src
)) == BB_HEAD (e
->dest
))
1338 edge b
= unchecked_make_edge (e
->src
, target
, 0);
1341 redirected
= redirect_jump (BB_END (e
->src
), block_label (target
), 0);
1342 gcc_assert (redirected
);
1344 note
= find_reg_note (BB_END (e
->src
), REG_BR_PROB
, NULL_RTX
);
1347 int prob
= INTVAL (XEXP (note
, 0));
1349 b
->probability
= prob
;
1350 b
->count
= e
->count
* prob
/ REG_BR_PROB_BASE
;
1351 e
->probability
-= e
->probability
;
1352 e
->count
-= b
->count
;
1353 if (e
->probability
< 0)
1360 if (e
->flags
& EDGE_ABNORMAL
)
1362 /* Irritating special case - fallthru edge to the same block as abnormal
1364 We can't redirect abnormal edge, but we still can split the fallthru
1365 one and create separate abnormal edge to original destination.
1366 This allows bb-reorder to make such edge non-fallthru. */
1367 gcc_assert (e
->dest
== target
);
1368 abnormal_edge_flags
= e
->flags
& ~EDGE_FALLTHRU
;
1369 e
->flags
&= EDGE_FALLTHRU
;
1373 gcc_assert (e
->flags
& EDGE_FALLTHRU
);
1374 if (e
->src
== ENTRY_BLOCK_PTR
)
1376 /* We can't redirect the entry block. Create an empty block
1377 at the start of the function which we use to add the new
1383 basic_block bb
= create_basic_block (BB_HEAD (e
->dest
), NULL
, ENTRY_BLOCK_PTR
);
1385 /* Change the existing edge's source to be the new block, and add
1386 a new edge from the entry block to the new block. */
1388 for (ei
= ei_start (ENTRY_BLOCK_PTR
->succs
); (tmp
= ei_safe_edge (ei
)); )
1392 VEC_unordered_remove (edge
, ENTRY_BLOCK_PTR
->succs
, ei
.index
);
1402 VEC_safe_push (edge
, gc
, bb
->succs
, e
);
1403 make_single_succ_edge (ENTRY_BLOCK_PTR
, bb
, EDGE_FALLTHRU
);
1407 /* If e->src ends with asm goto, see if any of the ASM_OPERANDS_LABELs
1408 don't point to the target or fallthru label. */
1409 if (JUMP_P (BB_END (e
->src
))
1410 && target
!= EXIT_BLOCK_PTR
1411 && (e
->flags
& EDGE_FALLTHRU
)
1412 && (note
= extract_asm_operands (PATTERN (BB_END (e
->src
)))))
1414 int i
, n
= ASM_OPERANDS_LABEL_LENGTH (note
);
1416 for (i
= 0; i
< n
; ++i
)
1418 if (XEXP (ASM_OPERANDS_LABEL (note
, i
), 0) == BB_HEAD (e
->dest
))
1419 XEXP (ASM_OPERANDS_LABEL (note
, i
), 0) = block_label (target
);
1420 if (XEXP (ASM_OPERANDS_LABEL (note
, i
), 0) == BB_HEAD (target
))
1421 asm_goto_edge
= true;
1425 if (EDGE_COUNT (e
->src
->succs
) >= 2 || abnormal_edge_flags
|| asm_goto_edge
)
1427 gcov_type count
= e
->count
;
1428 int probability
= e
->probability
;
1429 /* Create the new structures. */
1431 /* If the old block ended with a tablejump, skip its table
1432 by searching forward from there. Otherwise start searching
1433 forward from the last instruction of the old block. */
1434 if (!tablejump_p (BB_END (e
->src
), NULL
, ¬e
))
1435 note
= BB_END (e
->src
);
1436 note
= NEXT_INSN (note
);
1438 jump_block
= create_basic_block (note
, NULL
, e
->src
);
1439 jump_block
->count
= count
;
1440 jump_block
->frequency
= EDGE_FREQUENCY (e
);
1441 jump_block
->loop_depth
= target
->loop_depth
;
1443 /* Make sure new block ends up in correct hot/cold section. */
1445 BB_COPY_PARTITION (jump_block
, e
->src
);
1446 if (flag_reorder_blocks_and_partition
1447 && targetm_common
.have_named_sections
1448 && JUMP_P (BB_END (jump_block
))
1449 && !any_condjump_p (BB_END (jump_block
))
1450 && (EDGE_SUCC (jump_block
, 0)->flags
& EDGE_CROSSING
))
1451 add_reg_note (BB_END (jump_block
), REG_CROSSING_JUMP
, NULL_RTX
);
1454 new_edge
= make_edge (e
->src
, jump_block
, EDGE_FALLTHRU
);
1455 new_edge
->probability
= probability
;
1456 new_edge
->count
= count
;
1458 /* Redirect old edge. */
1459 redirect_edge_pred (e
, jump_block
);
1460 e
->probability
= REG_BR_PROB_BASE
;
1462 /* If asm goto has any label refs to target's label,
1463 add also edge from asm goto bb to target. */
1466 new_edge
->probability
/= 2;
1467 new_edge
->count
/= 2;
1468 jump_block
->count
/= 2;
1469 jump_block
->frequency
/= 2;
1470 new_edge
= make_edge (new_edge
->src
, target
,
1471 e
->flags
& ~EDGE_FALLTHRU
);
1472 new_edge
->probability
= probability
- probability
/ 2;
1473 new_edge
->count
= count
- count
/ 2;
1476 new_bb
= jump_block
;
1479 jump_block
= e
->src
;
1481 if (e
->goto_locus
&& e
->goto_block
== NULL
)
1482 loc
= e
->goto_locus
;
1485 e
->flags
&= ~EDGE_FALLTHRU
;
1486 if (target
== EXIT_BLOCK_PTR
)
1488 if (jump_label
== ret_rtx
)
1491 emit_jump_insn_after_setloc (gen_return (), BB_END (jump_block
), loc
);
1498 gcc_assert (jump_label
== simple_return_rtx
);
1499 #ifdef HAVE_simple_return
1500 emit_jump_insn_after_setloc (gen_simple_return (),
1501 BB_END (jump_block
), loc
);
1506 set_return_jump_label (BB_END (jump_block
));
1510 rtx label
= block_label (target
);
1511 emit_jump_insn_after_setloc (gen_jump (label
), BB_END (jump_block
), loc
);
1512 JUMP_LABEL (BB_END (jump_block
)) = label
;
1513 LABEL_NUSES (label
)++;
1516 emit_barrier_after (BB_END (jump_block
));
1517 redirect_edge_succ_nodup (e
, target
);
1519 if (abnormal_edge_flags
)
1520 make_edge (src
, target
, abnormal_edge_flags
);
1522 df_mark_solutions_dirty ();
1526 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
1527 (and possibly create new basic block) to make edge non-fallthru.
1528 Return newly created BB or NULL if none. */
1531 rtl_force_nonfallthru (edge e
)
1533 return force_nonfallthru_and_redirect (e
, e
->dest
, NULL_RTX
);
1536 /* Redirect edge even at the expense of creating new jump insn or
1537 basic block. Return new basic block if created, NULL otherwise.
1538 Conversion must be possible. */
1541 rtl_redirect_edge_and_branch_force (edge e
, basic_block target
)
1543 if (redirect_edge_and_branch (e
, target
)
1544 || e
->dest
== target
)
1547 /* In case the edge redirection failed, try to force it to be non-fallthru
1548 and redirect newly created simplejump. */
1549 df_set_bb_dirty (e
->src
);
1550 return force_nonfallthru_and_redirect (e
, target
, NULL_RTX
);
1553 /* The given edge should potentially be a fallthru edge. If that is in
1554 fact true, delete the jump and barriers that are in the way. */
1557 rtl_tidy_fallthru_edge (edge e
)
1560 basic_block b
= e
->src
, c
= b
->next_bb
;
1562 /* ??? In a late-running flow pass, other folks may have deleted basic
1563 blocks by nopping out blocks, leaving multiple BARRIERs between here
1564 and the target label. They ought to be chastised and fixed.
1566 We can also wind up with a sequence of undeletable labels between
1567 one block and the next.
1569 So search through a sequence of barriers, labels, and notes for
1570 the head of block C and assert that we really do fall through. */
1572 for (q
= NEXT_INSN (BB_END (b
)); q
!= BB_HEAD (c
); q
= NEXT_INSN (q
))
1576 /* Remove what will soon cease being the jump insn from the source block.
1577 If block B consisted only of this single jump, turn it into a deleted
1582 && (any_uncondjump_p (q
)
1583 || single_succ_p (b
)))
1586 /* If this was a conditional jump, we need to also delete
1587 the insn that set cc0. */
1588 if (any_condjump_p (q
) && only_sets_cc0_p (PREV_INSN (q
)))
1595 /* Selectively unlink the sequence. */
1596 if (q
!= PREV_INSN (BB_HEAD (c
)))
1597 delete_insn_chain (NEXT_INSN (q
), PREV_INSN (BB_HEAD (c
)), false);
1599 e
->flags
|= EDGE_FALLTHRU
;
1602 /* Should move basic block BB after basic block AFTER. NIY. */
1605 rtl_move_block_after (basic_block bb ATTRIBUTE_UNUSED
,
1606 basic_block after ATTRIBUTE_UNUSED
)
1611 /* Split a (typically critical) edge. Return the new block.
1612 The edge must not be abnormal.
1614 ??? The code generally expects to be called on critical edges.
1615 The case of a block ending in an unconditional jump to a
1616 block with multiple predecessors is not handled optimally. */
1619 rtl_split_edge (edge edge_in
)
1624 /* Abnormal edges cannot be split. */
1625 gcc_assert (!(edge_in
->flags
& EDGE_ABNORMAL
));
1627 /* We are going to place the new block in front of edge destination.
1628 Avoid existence of fallthru predecessors. */
1629 if ((edge_in
->flags
& EDGE_FALLTHRU
) == 0)
1631 edge e
= find_fallthru_edge (edge_in
->dest
->preds
);
1634 force_nonfallthru (e
);
1637 /* Create the basic block note. */
1638 if (edge_in
->dest
!= EXIT_BLOCK_PTR
)
1639 before
= BB_HEAD (edge_in
->dest
);
1643 /* If this is a fall through edge to the exit block, the blocks might be
1644 not adjacent, and the right place is after the source. */
1645 if ((edge_in
->flags
& EDGE_FALLTHRU
) && edge_in
->dest
== EXIT_BLOCK_PTR
)
1647 before
= NEXT_INSN (BB_END (edge_in
->src
));
1648 bb
= create_basic_block (before
, NULL
, edge_in
->src
);
1649 BB_COPY_PARTITION (bb
, edge_in
->src
);
1653 bb
= create_basic_block (before
, NULL
, edge_in
->dest
->prev_bb
);
1654 /* ??? Why not edge_in->dest->prev_bb here? */
1655 BB_COPY_PARTITION (bb
, edge_in
->dest
);
1658 make_single_succ_edge (bb
, edge_in
->dest
, EDGE_FALLTHRU
);
1660 /* For non-fallthru edges, we must adjust the predecessor's
1661 jump instruction to target our new block. */
1662 if ((edge_in
->flags
& EDGE_FALLTHRU
) == 0)
1664 edge redirected
= redirect_edge_and_branch (edge_in
, bb
);
1665 gcc_assert (redirected
);
1669 if (edge_in
->src
!= ENTRY_BLOCK_PTR
)
1671 /* For asm goto even splitting of fallthru edge might
1672 need insn patching, as other labels might point to the
1674 rtx last
= BB_END (edge_in
->src
);
1677 && edge_in
->dest
!= EXIT_BLOCK_PTR
1678 && extract_asm_operands (PATTERN (last
)) != NULL_RTX
1679 && patch_jump_insn (last
, before
, bb
))
1680 df_set_bb_dirty (edge_in
->src
);
1682 redirect_edge_succ (edge_in
, bb
);
1688 /* Queue instructions for insertion on an edge between two basic blocks.
1689 The new instructions and basic blocks (if any) will not appear in the
1690 CFG until commit_edge_insertions is called. */
1693 insert_insn_on_edge (rtx pattern
, edge e
)
1695 /* We cannot insert instructions on an abnormal critical edge.
1696 It will be easier to find the culprit if we die now. */
1697 gcc_assert (!((e
->flags
& EDGE_ABNORMAL
) && EDGE_CRITICAL_P (e
)));
1699 if (e
->insns
.r
== NULL_RTX
)
1702 push_to_sequence (e
->insns
.r
);
1704 emit_insn (pattern
);
1706 e
->insns
.r
= get_insns ();
1710 /* Update the CFG for the instructions queued on edge E. */
1713 commit_one_edge_insertion (edge e
)
1715 rtx before
= NULL_RTX
, after
= NULL_RTX
, insns
, tmp
, last
;
1718 /* Pull the insns off the edge now since the edge might go away. */
1720 e
->insns
.r
= NULL_RTX
;
1722 /* Figure out where to put these insns. If the destination has
1723 one predecessor, insert there. Except for the exit block. */
1724 if (single_pred_p (e
->dest
) && e
->dest
!= EXIT_BLOCK_PTR
)
1728 /* Get the location correct wrt a code label, and "nice" wrt
1729 a basic block note, and before everything else. */
1732 tmp
= NEXT_INSN (tmp
);
1733 if (NOTE_INSN_BASIC_BLOCK_P (tmp
))
1734 tmp
= NEXT_INSN (tmp
);
1735 if (tmp
== BB_HEAD (bb
))
1738 after
= PREV_INSN (tmp
);
1740 after
= get_last_insn ();
1743 /* If the source has one successor and the edge is not abnormal,
1744 insert there. Except for the entry block. */
1745 else if ((e
->flags
& EDGE_ABNORMAL
) == 0
1746 && single_succ_p (e
->src
)
1747 && e
->src
!= ENTRY_BLOCK_PTR
)
1751 /* It is possible to have a non-simple jump here. Consider a target
1752 where some forms of unconditional jumps clobber a register. This
1753 happens on the fr30 for example.
1755 We know this block has a single successor, so we can just emit
1756 the queued insns before the jump. */
1757 if (JUMP_P (BB_END (bb
)))
1758 before
= BB_END (bb
);
1761 /* We'd better be fallthru, or we've lost track of what's what. */
1762 gcc_assert (e
->flags
& EDGE_FALLTHRU
);
1764 after
= BB_END (bb
);
1768 /* Otherwise we must split the edge. */
1771 bb
= split_edge (e
);
1772 after
= BB_END (bb
);
1774 if (flag_reorder_blocks_and_partition
1775 && targetm_common
.have_named_sections
1776 && e
->src
!= ENTRY_BLOCK_PTR
1777 && BB_PARTITION (e
->src
) == BB_COLD_PARTITION
1778 && !(e
->flags
& EDGE_CROSSING
)
1780 && !any_condjump_p (after
)
1781 && (single_succ_edge (bb
)->flags
& EDGE_CROSSING
))
1782 add_reg_note (after
, REG_CROSSING_JUMP
, NULL_RTX
);
1785 /* Now that we've found the spot, do the insertion. */
1788 emit_insn_before_noloc (insns
, before
, bb
);
1789 last
= prev_nonnote_insn (before
);
1792 last
= emit_insn_after_noloc (insns
, after
, bb
);
1794 if (returnjump_p (last
))
1796 /* ??? Remove all outgoing edges from BB and add one for EXIT.
1797 This is not currently a problem because this only happens
1798 for the (single) epilogue, which already has a fallthru edge
1801 e
= single_succ_edge (bb
);
1802 gcc_assert (e
->dest
== EXIT_BLOCK_PTR
1803 && single_succ_p (bb
) && (e
->flags
& EDGE_FALLTHRU
));
1805 e
->flags
&= ~EDGE_FALLTHRU
;
1806 emit_barrier_after (last
);
1809 delete_insn (before
);
1812 gcc_assert (!JUMP_P (last
));
1815 /* Update the CFG for all queued instructions. */
1818 commit_edge_insertions (void)
1822 #ifdef ENABLE_CHECKING
1823 verify_flow_info ();
1826 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
1831 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1833 commit_one_edge_insertion (e
);
1838 /* Print out RTL-specific basic block information (live information
1839 at start and end). */
1842 rtl_dump_bb (basic_block bb
, FILE *outf
, int indent
, int flags ATTRIBUTE_UNUSED
)
1848 s_indent
= (char *) alloca ((size_t) indent
+ 1);
1849 memset (s_indent
, ' ', (size_t) indent
);
1850 s_indent
[indent
] = '\0';
1854 df_dump_top (bb
, outf
);
1858 if (bb
->index
!= ENTRY_BLOCK
&& bb
->index
!= EXIT_BLOCK
)
1859 for (insn
= BB_HEAD (bb
), last
= NEXT_INSN (BB_END (bb
)); insn
!= last
;
1860 insn
= NEXT_INSN (insn
))
1861 print_rtl_single (outf
, insn
);
1865 df_dump_bottom (bb
, outf
);
1871 /* Like print_rtl, but also print out live information for the start of each
1875 print_rtl_with_bb (FILE *outf
, const_rtx rtx_first
)
1879 fprintf (outf
, "(nil)\n");
1882 enum bb_state
{ NOT_IN_BB
, IN_ONE_BB
, IN_MULTIPLE_BB
};
1883 int max_uid
= get_max_uid ();
1884 basic_block
*start
= XCNEWVEC (basic_block
, max_uid
);
1885 basic_block
*end
= XCNEWVEC (basic_block
, max_uid
);
1886 enum bb_state
*in_bb_p
= XCNEWVEC (enum bb_state
, max_uid
);
1891 df_dump_start (outf
);
1893 FOR_EACH_BB_REVERSE (bb
)
1897 start
[INSN_UID (BB_HEAD (bb
))] = bb
;
1898 end
[INSN_UID (BB_END (bb
))] = bb
;
1899 for (x
= BB_HEAD (bb
); x
!= NULL_RTX
; x
= NEXT_INSN (x
))
1901 enum bb_state state
= IN_MULTIPLE_BB
;
1903 if (in_bb_p
[INSN_UID (x
)] == NOT_IN_BB
)
1905 in_bb_p
[INSN_UID (x
)] = state
;
1907 if (x
== BB_END (bb
))
1912 for (tmp_rtx
= rtx_first
; NULL
!= tmp_rtx
; tmp_rtx
= NEXT_INSN (tmp_rtx
))
1915 bool verbose
= ((dump_flags
& TDF_DETAILS
) != 0);
1917 bb
= start
[INSN_UID (tmp_rtx
)];
1919 dump_bb_info (bb
, true, false, verbose
, ";; ", outf
);
1921 if (in_bb_p
[INSN_UID (tmp_rtx
)] == NOT_IN_BB
1922 && !NOTE_P (tmp_rtx
)
1923 && !BARRIER_P (tmp_rtx
))
1924 fprintf (outf
, ";; Insn is not within a basic block\n");
1925 else if (in_bb_p
[INSN_UID (tmp_rtx
)] == IN_MULTIPLE_BB
)
1926 fprintf (outf
, ";; Insn is in multiple basic blocks\n");
1928 did_output
= print_rtl_single (outf
, tmp_rtx
);
1930 bb
= end
[INSN_UID (tmp_rtx
)];
1932 dump_bb_info (bb
, false, true, verbose
, ";; ", outf
);
1942 if (crtl
->epilogue_delay_list
!= 0)
1944 fprintf (outf
, "\n;; Insns in epilogue delay list:\n\n");
1945 for (tmp_rtx
= crtl
->epilogue_delay_list
; tmp_rtx
!= 0;
1946 tmp_rtx
= XEXP (tmp_rtx
, 1))
1947 print_rtl_single (outf
, XEXP (tmp_rtx
, 0));
1951 /* Emit basic block information for BB. HEADER is true if the user wants
1952 the generic information and the predecessors, FOOTER is true if they want
1953 the successors. If VERBOSE is true, emit global register liveness
1954 information. PREFIX is put in front of every line. The output is emitted
1955 to FILE. This function should only be called by RTL CFG users. */
1956 /* FIXME: Dumping of the basic block shared info (index, prev, next, etc.)
1957 is done here and also in dump_bb_header (but to a pretty-printer buffer).
1958 This should be re-factored to give similar dumps for RTL and GIMPLE. */
1961 dump_bb_info (basic_block bb
, bool header
, bool footer
, bool verbose
,
1962 const char *prefix
, FILE *file
)
1969 fprintf (file
, "\n%sBasic block %d ", prefix
, bb
->index
);
1971 fprintf (file
, ", prev %d", bb
->prev_bb
->index
);
1973 fprintf (file
, ", next %d", bb
->next_bb
->index
);
1974 fprintf (file
, ", loop_depth %d, count ", bb
->loop_depth
);
1975 fprintf (file
, HOST_WIDEST_INT_PRINT_DEC
, bb
->count
);
1976 fprintf (file
, ", freq %i", bb
->frequency
);
1977 if (maybe_hot_bb_p (bb
))
1978 fputs (", maybe hot", file
);
1979 if (probably_never_executed_bb_p (bb
))
1980 fputs (", probably never executed", file
);
1983 static const char * const bits
[] = {
1984 "new", "reachable", "irr_loop", "superblock", "disable_sched",
1985 "hot_partition", "cold_partition", "duplicated",
1986 "non_local_goto_target", "rtl", "forwarder", "nonthreadable",
1991 fputs (", flags:", file
);
1992 for (flags
= bb
->flags
; flags
; flags
&= flags
- 1)
1994 unsigned i
= ctz_hwi (flags
);
1995 if (i
< ARRAY_SIZE (bits
))
1996 fprintf (file
, " %s", bits
[i
]);
1998 fprintf (file
, " <%d>", i
);
2001 fputs (".\n", file
);
2003 fprintf (file
, "%sPredecessors: ", prefix
);
2004 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
2005 dump_edge_info (file
, e
, 0);
2008 && (bb
->flags
& BB_RTL
)
2012 df_dump_top (bb
, file
);
2018 fprintf (file
, "\n%sSuccessors: ", prefix
);
2019 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2020 dump_edge_info (file
, e
, 1);
2023 && (bb
->flags
& BB_RTL
)
2027 df_dump_bottom (bb
, file
);
2036 dump_flow_info (FILE *file
, int flags
)
2039 bool verbose
= ((flags
& TDF_DETAILS
) != 0);
2041 fprintf (file
, "\n%d basic blocks, %d edges.\n", n_basic_blocks
, n_edges
);
2044 dump_bb_info (bb
, true, true, verbose
, "", file
);
2045 check_bb_profile (bb
, file
);
2051 void debug_flow_info (void);
2053 debug_flow_info (void)
2055 dump_flow_info (stderr
, TDF_DETAILS
);
2058 /* Update the branch probability of BB if a REG_BR_PROB is present. */
2061 update_br_prob_note (basic_block bb
)
2064 if (!JUMP_P (BB_END (bb
)))
2066 note
= find_reg_note (BB_END (bb
), REG_BR_PROB
, NULL_RTX
);
2067 if (!note
|| INTVAL (XEXP (note
, 0)) == BRANCH_EDGE (bb
)->probability
)
2069 XEXP (note
, 0) = GEN_INT (BRANCH_EDGE (bb
)->probability
);
2072 /* Get the last insn associated with block BB (that includes barriers and
2073 tablejumps after BB). */
2075 get_last_bb_insn (basic_block bb
)
2078 rtx end
= BB_END (bb
);
2080 /* Include any jump table following the basic block. */
2081 if (tablejump_p (end
, NULL
, &tmp
))
2084 /* Include any barriers that may follow the basic block. */
2085 tmp
= next_nonnote_insn_bb (end
);
2086 while (tmp
&& BARRIER_P (tmp
))
2089 tmp
= next_nonnote_insn_bb (end
);
2095 /* Verify the CFG and RTL consistency common for both underlying RTL and
2098 Currently it does following checks:
2100 - overlapping of basic blocks
2101 - insns with wrong BLOCK_FOR_INSN pointers
2102 - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
2103 - tails of basic blocks (ensure that boundary is necessary)
2104 - scans body of the basic block for JUMP_INSN, CODE_LABEL
2105 and NOTE_INSN_BASIC_BLOCK
2106 - verify that no fall_thru edge crosses hot/cold partition boundaries
2107 - verify that there are no pending RTL branch predictions
2109 In future it can be extended check a lot of other stuff as well
2110 (reachability of basic blocks, life information, etc. etc.). */
2113 rtl_verify_flow_info_1 (void)
2119 /* Check the general integrity of the basic blocks. */
2120 FOR_EACH_BB_REVERSE (bb
)
2124 if (!(bb
->flags
& BB_RTL
))
2126 error ("BB_RTL flag not set for block %d", bb
->index
);
2130 FOR_BB_INSNS (bb
, insn
)
2131 if (BLOCK_FOR_INSN (insn
) != bb
)
2133 error ("insn %d basic block pointer is %d, should be %d",
2135 BLOCK_FOR_INSN (insn
) ? BLOCK_FOR_INSN (insn
)->index
: 0,
2140 for (insn
= BB_HEADER (bb
); insn
; insn
= NEXT_INSN (insn
))
2141 if (!BARRIER_P (insn
)
2142 && BLOCK_FOR_INSN (insn
) != NULL
)
2144 error ("insn %d in header of bb %d has non-NULL basic block",
2145 INSN_UID (insn
), bb
->index
);
2148 for (insn
= BB_FOOTER (bb
); insn
; insn
= NEXT_INSN (insn
))
2149 if (!BARRIER_P (insn
)
2150 && BLOCK_FOR_INSN (insn
) != NULL
)
2152 error ("insn %d in footer of bb %d has non-NULL basic block",
2153 INSN_UID (insn
), bb
->index
);
2158 /* Now check the basic blocks (boundaries etc.) */
2159 FOR_EACH_BB_REVERSE (bb
)
2161 int n_fallthru
= 0, n_eh
= 0, n_call
= 0, n_abnormal
= 0, n_branch
= 0;
2162 edge e
, fallthru
= NULL
;
2166 if (JUMP_P (BB_END (bb
))
2167 && (note
= find_reg_note (BB_END (bb
), REG_BR_PROB
, NULL_RTX
))
2168 && EDGE_COUNT (bb
->succs
) >= 2
2169 && any_condjump_p (BB_END (bb
)))
2171 if (INTVAL (XEXP (note
, 0)) != BRANCH_EDGE (bb
)->probability
2172 && profile_status
!= PROFILE_ABSENT
)
2174 error ("verify_flow_info: REG_BR_PROB does not match cfg %wi %i",
2175 INTVAL (XEXP (note
, 0)), BRANCH_EDGE (bb
)->probability
);
2179 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2183 if (e
->flags
& EDGE_FALLTHRU
)
2184 n_fallthru
++, fallthru
= e
;
2186 is_crossing
= (BB_PARTITION (e
->src
) != BB_PARTITION (e
->dest
)
2187 && e
->src
!= ENTRY_BLOCK_PTR
2188 && e
->dest
!= EXIT_BLOCK_PTR
);
2189 if (e
->flags
& EDGE_CROSSING
)
2193 error ("EDGE_CROSSING incorrectly set across same section");
2196 if (e
->flags
& EDGE_FALLTHRU
)
2198 error ("fallthru edge crosses section boundary (bb %i)",
2202 if (e
->flags
& EDGE_EH
)
2204 error ("EH edge crosses section boundary (bb %i)",
2209 else if (is_crossing
)
2211 error ("EDGE_CROSSING missing across section boundary");
2215 if ((e
->flags
& ~(EDGE_DFS_BACK
2217 | EDGE_IRREDUCIBLE_LOOP
2220 | EDGE_PRESERVE
)) == 0)
2223 if (e
->flags
& EDGE_ABNORMAL_CALL
)
2226 if (e
->flags
& EDGE_EH
)
2228 else if (e
->flags
& EDGE_ABNORMAL
)
2232 if (n_eh
&& !find_reg_note (BB_END (bb
), REG_EH_REGION
, NULL_RTX
))
2234 error ("missing REG_EH_REGION note in the end of bb %i", bb
->index
);
2239 error ("too many eh edges %i", bb
->index
);
2243 && (!JUMP_P (BB_END (bb
))
2244 || (n_branch
> 1 && (any_uncondjump_p (BB_END (bb
))
2245 || any_condjump_p (BB_END (bb
))))))
2247 error ("too many outgoing branch edges from bb %i", bb
->index
);
2250 if (n_fallthru
&& any_uncondjump_p (BB_END (bb
)))
2252 error ("fallthru edge after unconditional jump %i", bb
->index
);
2255 if (n_branch
!= 1 && any_uncondjump_p (BB_END (bb
)))
2257 error ("wrong number of branch edges after unconditional jump %i",
2261 if (n_branch
!= 1 && any_condjump_p (BB_END (bb
))
2262 && JUMP_LABEL (BB_END (bb
)) != BB_HEAD (fallthru
->dest
))
2264 error ("wrong amount of branch edges after conditional jump %i",
2268 if (n_call
&& !CALL_P (BB_END (bb
)))
2270 error ("call edges for non-call insn in bb %i", bb
->index
);
2274 && (!CALL_P (BB_END (bb
)) && n_call
!= n_abnormal
)
2275 && (!JUMP_P (BB_END (bb
))
2276 || any_condjump_p (BB_END (bb
))
2277 || any_uncondjump_p (BB_END (bb
))))
2279 error ("abnormal edges for no purpose in bb %i", bb
->index
);
2283 for (x
= BB_HEAD (bb
); x
!= NEXT_INSN (BB_END (bb
)); x
= NEXT_INSN (x
))
2284 /* We may have a barrier inside a basic block before dead code
2285 elimination. There is no BLOCK_FOR_INSN field in a barrier. */
2286 if (!BARRIER_P (x
) && BLOCK_FOR_INSN (x
) != bb
)
2289 if (! BLOCK_FOR_INSN (x
))
2291 ("insn %d inside basic block %d but block_for_insn is NULL",
2292 INSN_UID (x
), bb
->index
);
2295 ("insn %d inside basic block %d but block_for_insn is %i",
2296 INSN_UID (x
), bb
->index
, BLOCK_FOR_INSN (x
)->index
);
2301 /* OK pointers are correct. Now check the header of basic
2302 block. It ought to contain optional CODE_LABEL followed
2303 by NOTE_BASIC_BLOCK. */
2307 if (BB_END (bb
) == x
)
2309 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2317 if (!NOTE_INSN_BASIC_BLOCK_P (x
) || NOTE_BASIC_BLOCK (x
) != bb
)
2319 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2324 if (BB_END (bb
) == x
)
2325 /* Do checks for empty blocks here. */
2328 for (x
= NEXT_INSN (x
); x
; x
= NEXT_INSN (x
))
2330 if (NOTE_INSN_BASIC_BLOCK_P (x
))
2332 error ("NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d",
2333 INSN_UID (x
), bb
->index
);
2337 if (x
== BB_END (bb
))
2340 if (control_flow_insn_p (x
))
2342 error ("in basic block %d:", bb
->index
);
2343 fatal_insn ("flow control insn inside a basic block", x
);
2352 /* Verify the CFG and RTL consistency common for both underlying RTL and
2355 Currently it does following checks:
2356 - all checks of rtl_verify_flow_info_1
2357 - test head/end pointers
2358 - check that all insns are in the basic blocks
2359 (except the switch handling code, barriers and notes)
2360 - check that all returns are followed by barriers
2361 - check that all fallthru edge points to the adjacent blocks. */
2364 rtl_verify_flow_info (void)
2367 int err
= rtl_verify_flow_info_1 ();
2369 rtx last_head
= get_last_insn ();
2370 basic_block
*bb_info
;
2372 const rtx rtx_first
= get_insns ();
2373 basic_block last_bb_seen
= ENTRY_BLOCK_PTR
, curr_bb
= NULL
;
2374 const int max_uid
= get_max_uid ();
2376 bb_info
= XCNEWVEC (basic_block
, max_uid
);
2378 FOR_EACH_BB_REVERSE (bb
)
2381 rtx head
= BB_HEAD (bb
);
2382 rtx end
= BB_END (bb
);
2384 for (x
= last_head
; x
!= NULL_RTX
; x
= PREV_INSN (x
))
2386 /* Verify the end of the basic block is in the INSN chain. */
2390 /* And that the code outside of basic blocks has NULL bb field. */
2392 && BLOCK_FOR_INSN (x
) != NULL
)
2394 error ("insn %d outside of basic blocks has non-NULL bb field",
2402 error ("end insn %d for block %d not found in the insn stream",
2403 INSN_UID (end
), bb
->index
);
2407 /* Work backwards from the end to the head of the basic block
2408 to verify the head is in the RTL chain. */
2409 for (; x
!= NULL_RTX
; x
= PREV_INSN (x
))
2411 /* While walking over the insn chain, verify insns appear
2412 in only one basic block. */
2413 if (bb_info
[INSN_UID (x
)] != NULL
)
2415 error ("insn %d is in multiple basic blocks (%d and %d)",
2416 INSN_UID (x
), bb
->index
, bb_info
[INSN_UID (x
)]->index
);
2420 bb_info
[INSN_UID (x
)] = bb
;
2427 error ("head insn %d for block %d not found in the insn stream",
2428 INSN_UID (head
), bb
->index
);
2432 last_head
= PREV_INSN (x
);
2434 e
= find_fallthru_edge (bb
->succs
);
2439 /* Ensure existence of barrier in BB with no fallthru edges. */
2440 for (insn
= NEXT_INSN (BB_END (bb
)); ; insn
= NEXT_INSN (insn
))
2442 if (!insn
|| NOTE_INSN_BASIC_BLOCK_P (insn
))
2444 error ("missing barrier after block %i", bb
->index
);
2448 if (BARRIER_P (insn
))
2452 else if (e
->src
!= ENTRY_BLOCK_PTR
2453 && e
->dest
!= EXIT_BLOCK_PTR
)
2457 if (e
->src
->next_bb
!= e
->dest
)
2460 ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
2461 e
->src
->index
, e
->dest
->index
);
2465 for (insn
= NEXT_INSN (BB_END (e
->src
)); insn
!= BB_HEAD (e
->dest
);
2466 insn
= NEXT_INSN (insn
))
2467 if (BARRIER_P (insn
) || INSN_P (insn
))
2469 error ("verify_flow_info: Incorrect fallthru %i->%i",
2470 e
->src
->index
, e
->dest
->index
);
2471 fatal_insn ("wrong insn in the fallthru edge", insn
);
2477 for (x
= last_head
; x
!= NULL_RTX
; x
= PREV_INSN (x
))
2479 /* Check that the code before the first basic block has NULL
2482 && BLOCK_FOR_INSN (x
) != NULL
)
2484 error ("insn %d outside of basic blocks has non-NULL bb field",
2492 last_bb_seen
= ENTRY_BLOCK_PTR
;
2494 for (x
= rtx_first
; x
; x
= NEXT_INSN (x
))
2496 if (NOTE_INSN_BASIC_BLOCK_P (x
))
2498 bb
= NOTE_BASIC_BLOCK (x
);
2501 if (bb
!= last_bb_seen
->next_bb
)
2502 internal_error ("basic blocks not laid down consecutively");
2504 curr_bb
= last_bb_seen
= bb
;
2509 switch (GET_CODE (x
))
2516 /* An addr_vec is placed outside any basic block. */
2518 && JUMP_TABLE_DATA_P (NEXT_INSN (x
)))
2521 /* But in any case, non-deletable labels can appear anywhere. */
2525 fatal_insn ("insn outside basic block", x
);
2530 && returnjump_p (x
) && ! condjump_p (x
)
2531 && ! (next_nonnote_insn (x
) && BARRIER_P (next_nonnote_insn (x
))))
2532 fatal_insn ("return not followed by barrier", x
);
2533 if (curr_bb
&& x
== BB_END (curr_bb
))
2537 if (num_bb_notes
!= n_basic_blocks
- NUM_FIXED_BLOCKS
)
2539 ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
2540 num_bb_notes
, n_basic_blocks
);
2545 /* Assume that the preceding pass has possibly eliminated jump instructions
2546 or converted the unconditional jumps. Eliminate the edges from CFG.
2547 Return true if any edges are eliminated. */
2550 purge_dead_edges (basic_block bb
)
2553 rtx insn
= BB_END (bb
), note
;
2554 bool purged
= false;
2558 if (DEBUG_INSN_P (insn
) && insn
!= BB_HEAD (bb
))
2560 insn
= PREV_INSN (insn
);
2561 while ((DEBUG_INSN_P (insn
) || NOTE_P (insn
)) && insn
!= BB_HEAD (bb
));
2563 /* If this instruction cannot trap, remove REG_EH_REGION notes. */
2564 if (NONJUMP_INSN_P (insn
)
2565 && (note
= find_reg_note (insn
, REG_EH_REGION
, NULL
)))
2569 if (! may_trap_p (PATTERN (insn
))
2570 || ((eqnote
= find_reg_equal_equiv_note (insn
))
2571 && ! may_trap_p (XEXP (eqnote
, 0))))
2572 remove_note (insn
, note
);
2575 /* Cleanup abnormal edges caused by exceptions or non-local gotos. */
2576 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
2578 bool remove
= false;
2580 /* There are three types of edges we need to handle correctly here: EH
2581 edges, abnormal call EH edges, and abnormal call non-EH edges. The
2582 latter can appear when nonlocal gotos are used. */
2583 if (e
->flags
& EDGE_ABNORMAL_CALL
)
2587 else if (can_nonlocal_goto (insn
))
2589 else if ((e
->flags
& EDGE_EH
) && can_throw_internal (insn
))
2591 else if (flag_tm
&& find_reg_note (insn
, REG_TM
, NULL
))
2596 else if (e
->flags
& EDGE_EH
)
2597 remove
= !can_throw_internal (insn
);
2602 df_set_bb_dirty (bb
);
2615 /* We do care only about conditional jumps and simplejumps. */
2616 if (!any_condjump_p (insn
)
2617 && !returnjump_p (insn
)
2618 && !simplejump_p (insn
))
2621 /* Branch probability/prediction notes are defined only for
2622 condjumps. We've possibly turned condjump into simplejump. */
2623 if (simplejump_p (insn
))
2625 note
= find_reg_note (insn
, REG_BR_PROB
, NULL
);
2627 remove_note (insn
, note
);
2628 while ((note
= find_reg_note (insn
, REG_BR_PRED
, NULL
)))
2629 remove_note (insn
, note
);
2632 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
2634 /* Avoid abnormal flags to leak from computed jumps turned
2635 into simplejumps. */
2637 e
->flags
&= ~EDGE_ABNORMAL
;
2639 /* See if this edge is one we should keep. */
2640 if ((e
->flags
& EDGE_FALLTHRU
) && any_condjump_p (insn
))
2641 /* A conditional jump can fall through into the next
2642 block, so we should keep the edge. */
2647 else if (e
->dest
!= EXIT_BLOCK_PTR
2648 && BB_HEAD (e
->dest
) == JUMP_LABEL (insn
))
2649 /* If the destination block is the target of the jump,
2655 else if (e
->dest
== EXIT_BLOCK_PTR
&& returnjump_p (insn
))
2656 /* If the destination block is the exit block, and this
2657 instruction is a return, then keep the edge. */
2662 else if ((e
->flags
& EDGE_EH
) && can_throw_internal (insn
))
2663 /* Keep the edges that correspond to exceptions thrown by
2664 this instruction and rematerialize the EDGE_ABNORMAL
2665 flag we just cleared above. */
2667 e
->flags
|= EDGE_ABNORMAL
;
2672 /* We do not need this edge. */
2673 df_set_bb_dirty (bb
);
2678 if (EDGE_COUNT (bb
->succs
) == 0 || !purged
)
2682 fprintf (dump_file
, "Purged edges from bb %i\n", bb
->index
);
2687 /* Redistribute probabilities. */
2688 if (single_succ_p (bb
))
2690 single_succ_edge (bb
)->probability
= REG_BR_PROB_BASE
;
2691 single_succ_edge (bb
)->count
= bb
->count
;
2695 note
= find_reg_note (insn
, REG_BR_PROB
, NULL
);
2699 b
= BRANCH_EDGE (bb
);
2700 f
= FALLTHRU_EDGE (bb
);
2701 b
->probability
= INTVAL (XEXP (note
, 0));
2702 f
->probability
= REG_BR_PROB_BASE
- b
->probability
;
2703 b
->count
= bb
->count
* b
->probability
/ REG_BR_PROB_BASE
;
2704 f
->count
= bb
->count
* f
->probability
/ REG_BR_PROB_BASE
;
2709 else if (CALL_P (insn
) && SIBLING_CALL_P (insn
))
2711 /* First, there should not be any EH or ABCALL edges resulting
2712 from non-local gotos and the like. If there were, we shouldn't
2713 have created the sibcall in the first place. Second, there
2714 should of course never have been a fallthru edge. */
2715 gcc_assert (single_succ_p (bb
));
2716 gcc_assert (single_succ_edge (bb
)->flags
2717 == (EDGE_SIBCALL
| EDGE_ABNORMAL
));
2722 /* If we don't see a jump insn, we don't know exactly why the block would
2723 have been broken at this point. Look for a simple, non-fallthru edge,
2724 as these are only created by conditional branches. If we find such an
2725 edge we know that there used to be a jump here and can then safely
2726 remove all non-fallthru edges. */
2728 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2729 if (! (e
->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
)))
2738 /* Remove all but the fake and fallthru edges. The fake edge may be
2739 the only successor for this block in the case of noreturn
2741 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
2743 if (!(e
->flags
& (EDGE_FALLTHRU
| EDGE_FAKE
)))
2745 df_set_bb_dirty (bb
);
2753 gcc_assert (single_succ_p (bb
));
2755 single_succ_edge (bb
)->probability
= REG_BR_PROB_BASE
;
2756 single_succ_edge (bb
)->count
= bb
->count
;
2759 fprintf (dump_file
, "Purged non-fallthru edges from bb %i\n",
2764 /* Search all basic blocks for potentially dead edges and purge them. Return
2765 true if some edge has been eliminated. */
2768 purge_all_dead_edges (void)
2775 bool purged_here
= purge_dead_edges (bb
);
2777 purged
|= purged_here
;
2783 /* This is used by a few passes that emit some instructions after abnormal
2784 calls, moving the basic block's end, while they in fact do want to emit
2785 them on the fallthru edge. Look for abnormal call edges, find backward
2786 the call in the block and insert the instructions on the edge instead.
2788 Similarly, handle instructions throwing exceptions internally.
2790 Return true when instructions have been found and inserted on edges. */
2793 fixup_abnormal_edges (void)
2795 bool inserted
= false;
2803 /* Look for cases we are interested in - calls or instructions causing
2805 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2806 if ((e
->flags
& EDGE_ABNORMAL_CALL
)
2807 || ((e
->flags
& (EDGE_ABNORMAL
| EDGE_EH
))
2808 == (EDGE_ABNORMAL
| EDGE_EH
)))
2811 if (e
&& !CALL_P (BB_END (bb
)) && !can_throw_internal (BB_END (bb
)))
2815 /* Get past the new insns generated. Allow notes, as the insns
2816 may be already deleted. */
2818 while ((NONJUMP_INSN_P (insn
) || NOTE_P (insn
))
2819 && !can_throw_internal (insn
)
2820 && insn
!= BB_HEAD (bb
))
2821 insn
= PREV_INSN (insn
);
2823 if (CALL_P (insn
) || can_throw_internal (insn
))
2827 e
= find_fallthru_edge (bb
->succs
);
2829 stop
= NEXT_INSN (BB_END (bb
));
2832 for (insn
= NEXT_INSN (insn
); insn
!= stop
; insn
= next
)
2834 next
= NEXT_INSN (insn
);
2839 /* Sometimes there's still the return value USE.
2840 If it's placed after a trapping call (i.e. that
2841 call is the last insn anyway), we have no fallthru
2842 edge. Simply delete this use and don't try to insert
2843 on the non-existent edge. */
2844 if (GET_CODE (PATTERN (insn
)) != USE
)
2846 /* We're not deleting it, we're moving it. */
2847 INSN_DELETED_P (insn
) = 0;
2848 PREV_INSN (insn
) = NULL_RTX
;
2849 NEXT_INSN (insn
) = NULL_RTX
;
2851 insert_insn_on_edge (insn
, e
);
2855 else if (!BARRIER_P (insn
))
2856 set_block_for_insn (insn
, NULL
);
2860 /* It may be that we don't find any trapping insn. In this
2861 case we discovered quite late that the insn that had been
2862 marked as can_throw_internal in fact couldn't trap at all.
2863 So we should in fact delete the EH edges out of the block. */
2865 purge_dead_edges (bb
);
2872 /* Cut the insns from FIRST to LAST out of the insns stream. */
2875 unlink_insn_chain (rtx first
, rtx last
)
2877 rtx prevfirst
= PREV_INSN (first
);
2878 rtx nextlast
= NEXT_INSN (last
);
2880 PREV_INSN (first
) = NULL
;
2881 NEXT_INSN (last
) = NULL
;
2883 NEXT_INSN (prevfirst
) = nextlast
;
2885 PREV_INSN (nextlast
) = prevfirst
;
2887 set_last_insn (prevfirst
);
2889 set_first_insn (nextlast
);
2893 /* Skip over inter-block insns occurring after BB which are typically
2894 associated with BB (e.g., barriers). If there are any such insns,
2895 we return the last one. Otherwise, we return the end of BB. */
2898 skip_insns_after_block (basic_block bb
)
2900 rtx insn
, last_insn
, next_head
, prev
;
2902 next_head
= NULL_RTX
;
2903 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
2904 next_head
= BB_HEAD (bb
->next_bb
);
2906 for (last_insn
= insn
= BB_END (bb
); (insn
= NEXT_INSN (insn
)) != 0; )
2908 if (insn
== next_head
)
2911 switch (GET_CODE (insn
))
2918 switch (NOTE_KIND (insn
))
2920 case NOTE_INSN_BLOCK_END
:
2930 if (NEXT_INSN (insn
)
2931 && JUMP_TABLE_DATA_P (NEXT_INSN (insn
)))
2933 insn
= NEXT_INSN (insn
);
2946 /* It is possible to hit contradictory sequence. For instance:
2952 Where barrier belongs to jump_insn, but the note does not. This can be
2953 created by removing the basic block originally following
2954 NOTE_INSN_BLOCK_BEG. In such case reorder the notes. */
2956 for (insn
= last_insn
; insn
!= BB_END (bb
); insn
= prev
)
2958 prev
= PREV_INSN (insn
);
2960 switch (NOTE_KIND (insn
))
2962 case NOTE_INSN_BLOCK_END
:
2965 case NOTE_INSN_DELETED
:
2966 case NOTE_INSN_DELETED_LABEL
:
2967 case NOTE_INSN_DELETED_DEBUG_LABEL
:
2970 reorder_insns (insn
, insn
, last_insn
);
2977 /* Locate or create a label for a given basic block. */
2980 label_for_bb (basic_block bb
)
2982 rtx label
= BB_HEAD (bb
);
2984 if (!LABEL_P (label
))
2987 fprintf (dump_file
, "Emitting label for block %d\n", bb
->index
);
2989 label
= block_label (bb
);
2995 /* Locate the effective beginning and end of the insn chain for each
2996 block, as defined by skip_insns_after_block above. */
2999 record_effective_endpoints (void)
3005 for (insn
= get_insns ();
3008 && NOTE_KIND (insn
) != NOTE_INSN_BASIC_BLOCK
;
3009 insn
= NEXT_INSN (insn
))
3011 /* No basic blocks at all? */
3014 if (PREV_INSN (insn
))
3015 cfg_layout_function_header
=
3016 unlink_insn_chain (get_insns (), PREV_INSN (insn
));
3018 cfg_layout_function_header
= NULL_RTX
;
3020 next_insn
= get_insns ();
3025 if (PREV_INSN (BB_HEAD (bb
)) && next_insn
!= BB_HEAD (bb
))
3026 BB_HEADER (bb
) = unlink_insn_chain (next_insn
,
3027 PREV_INSN (BB_HEAD (bb
)));
3028 end
= skip_insns_after_block (bb
);
3029 if (NEXT_INSN (BB_END (bb
)) && BB_END (bb
) != end
)
3030 BB_FOOTER (bb
) = unlink_insn_chain (NEXT_INSN (BB_END (bb
)), end
);
3031 next_insn
= NEXT_INSN (BB_END (bb
));
3034 cfg_layout_function_footer
= next_insn
;
3035 if (cfg_layout_function_footer
)
3036 cfg_layout_function_footer
= unlink_insn_chain (cfg_layout_function_footer
, get_last_insn ());
3040 into_cfg_layout_mode (void)
3042 cfg_layout_initialize (0);
3047 outof_cfg_layout_mode (void)
3052 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
3053 bb
->aux
= bb
->next_bb
;
3055 cfg_layout_finalize ();
3060 struct rtl_opt_pass pass_into_cfg_layout_mode
=
3064 "into_cfglayout", /* name */
3066 into_cfg_layout_mode
, /* execute */
3069 0, /* static_pass_number */
3071 0, /* properties_required */
3072 PROP_cfglayout
, /* properties_provided */
3073 0, /* properties_destroyed */
3074 0, /* todo_flags_start */
3075 0 /* todo_flags_finish */
3079 struct rtl_opt_pass pass_outof_cfg_layout_mode
=
3083 "outof_cfglayout", /* name */
3085 outof_cfg_layout_mode
, /* execute */
3088 0, /* static_pass_number */
3090 0, /* properties_required */
3091 0, /* properties_provided */
3092 PROP_cfglayout
, /* properties_destroyed */
3093 0, /* todo_flags_start */
3094 0 /* todo_flags_finish */
3099 /* Link the basic blocks in the correct order, compacting the basic
3100 block queue while at it. If STAY_IN_CFGLAYOUT_MODE is false, this
3101 function also clears the basic block header and footer fields.
3103 This function is usually called after a pass (e.g. tracer) finishes
3104 some transformations while in cfglayout mode. The required sequence
3105 of the basic blocks is in a linked list along the bb->aux field.
3106 This functions re-links the basic block prev_bb and next_bb pointers
3107 accordingly, and it compacts and renumbers the blocks.
3109 FIXME: This currently works only for RTL, but the only RTL-specific
3110 bits are the STAY_IN_CFGLAYOUT_MODE bits. The tracer pass was moved
3111 to GIMPLE a long time ago, but it doesn't relink the basic block
3112 chain. It could do that (to give better initial RTL) if this function
3113 is made IR-agnostic (and moved to cfganal.c or cfg.c while at it). */
3116 relink_block_chain (bool stay_in_cfglayout_mode
)
3118 basic_block bb
, prev_bb
;
3121 /* Maybe dump the re-ordered sequence. */
3124 fprintf (dump_file
, "Reordered sequence:\n");
3125 for (bb
= ENTRY_BLOCK_PTR
->next_bb
, index
= NUM_FIXED_BLOCKS
;
3127 bb
= (basic_block
) bb
->aux
, index
++)
3129 fprintf (dump_file
, " %i ", index
);
3130 if (get_bb_original (bb
))
3131 fprintf (dump_file
, "duplicate of %i ",
3132 get_bb_original (bb
)->index
);
3133 else if (forwarder_block_p (bb
)
3134 && !LABEL_P (BB_HEAD (bb
)))
3135 fprintf (dump_file
, "compensation ");
3137 fprintf (dump_file
, "bb %i ", bb
->index
);
3138 fprintf (dump_file
, " [%i]\n", bb
->frequency
);
3142 /* Now reorder the blocks. */
3143 prev_bb
= ENTRY_BLOCK_PTR
;
3144 bb
= ENTRY_BLOCK_PTR
->next_bb
;
3145 for (; bb
; prev_bb
= bb
, bb
= (basic_block
) bb
->aux
)
3147 bb
->prev_bb
= prev_bb
;
3148 prev_bb
->next_bb
= bb
;
3150 prev_bb
->next_bb
= EXIT_BLOCK_PTR
;
3151 EXIT_BLOCK_PTR
->prev_bb
= prev_bb
;
3153 /* Then, clean up the aux fields. */
3157 if (!stay_in_cfglayout_mode
)
3158 BB_HEADER (bb
) = BB_FOOTER (bb
) = NULL
;
3161 /* Maybe reset the original copy tables, they are not valid anymore
3162 when we renumber the basic blocks in compact_blocks. If we are
3163 are going out of cfglayout mode, don't re-allocate the tables. */
3164 free_original_copy_tables ();
3165 if (stay_in_cfglayout_mode
)
3166 initialize_original_copy_tables ();
3168 /* Finally, put basic_block_info in the new order. */
3173 /* Given a reorder chain, rearrange the code to match. */
3176 fixup_reorder_chain (void)
3181 if (cfg_layout_function_header
)
3183 set_first_insn (cfg_layout_function_header
);
3184 insn
= cfg_layout_function_header
;
3185 while (NEXT_INSN (insn
))
3186 insn
= NEXT_INSN (insn
);
3189 /* First do the bulk reordering -- rechain the blocks without regard to
3190 the needed changes to jumps and labels. */
3192 for (bb
= ENTRY_BLOCK_PTR
->next_bb
; bb
; bb
= (basic_block
) bb
->aux
)
3197 NEXT_INSN (insn
) = BB_HEADER (bb
);
3199 set_first_insn (BB_HEADER (bb
));
3200 PREV_INSN (BB_HEADER (bb
)) = insn
;
3201 insn
= BB_HEADER (bb
);
3202 while (NEXT_INSN (insn
))
3203 insn
= NEXT_INSN (insn
);
3206 NEXT_INSN (insn
) = BB_HEAD (bb
);
3208 set_first_insn (BB_HEAD (bb
));
3209 PREV_INSN (BB_HEAD (bb
)) = insn
;
3213 NEXT_INSN (insn
) = BB_FOOTER (bb
);
3214 PREV_INSN (BB_FOOTER (bb
)) = insn
;
3215 while (NEXT_INSN (insn
))
3216 insn
= NEXT_INSN (insn
);
3220 NEXT_INSN (insn
) = cfg_layout_function_footer
;
3221 if (cfg_layout_function_footer
)
3222 PREV_INSN (cfg_layout_function_footer
) = insn
;
3224 while (NEXT_INSN (insn
))
3225 insn
= NEXT_INSN (insn
);
3227 set_last_insn (insn
);
3228 #ifdef ENABLE_CHECKING
3229 verify_insn_chain ();
3232 /* Now add jumps and labels as needed to match the blocks new
3235 for (bb
= ENTRY_BLOCK_PTR
->next_bb
; bb
; bb
= (basic_block
) bb
->aux
)
3237 edge e_fall
, e_taken
, e
;
3239 rtx ret_label
= NULL_RTX
;
3240 basic_block nb
, src_bb
;
3243 if (EDGE_COUNT (bb
->succs
) == 0)
3246 /* Find the old fallthru edge, and another non-EH edge for
3248 e_taken
= e_fall
= NULL
;
3250 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
3251 if (e
->flags
& EDGE_FALLTHRU
)
3253 else if (! (e
->flags
& EDGE_EH
))
3256 bb_end_insn
= BB_END (bb
);
3257 if (JUMP_P (bb_end_insn
))
3259 ret_label
= JUMP_LABEL (bb_end_insn
);
3260 if (any_condjump_p (bb_end_insn
))
3262 /* This might happen if the conditional jump has side
3263 effects and could therefore not be optimized away.
3264 Make the basic block to end with a barrier in order
3265 to prevent rtl_verify_flow_info from complaining. */
3268 gcc_assert (!onlyjump_p (bb_end_insn
)
3269 || returnjump_p (bb_end_insn
));
3270 BB_FOOTER (bb
) = emit_barrier_after (bb_end_insn
);
3274 /* If the old fallthru is still next, nothing to do. */
3275 if (bb
->aux
== e_fall
->dest
3276 || e_fall
->dest
== EXIT_BLOCK_PTR
)
3279 /* The degenerated case of conditional jump jumping to the next
3280 instruction can happen for jumps with side effects. We need
3281 to construct a forwarder block and this will be done just
3282 fine by force_nonfallthru below. */
3286 /* There is another special case: if *neither* block is next,
3287 such as happens at the very end of a function, then we'll
3288 need to add a new unconditional jump. Choose the taken
3289 edge based on known or assumed probability. */
3290 else if (bb
->aux
!= e_taken
->dest
)
3292 rtx note
= find_reg_note (bb_end_insn
, REG_BR_PROB
, 0);
3295 && INTVAL (XEXP (note
, 0)) < REG_BR_PROB_BASE
/ 2
3296 && invert_jump (bb_end_insn
,
3297 (e_fall
->dest
== EXIT_BLOCK_PTR
3299 : label_for_bb (e_fall
->dest
)), 0))
3301 e_fall
->flags
&= ~EDGE_FALLTHRU
;
3302 gcc_checking_assert (could_fall_through
3303 (e_taken
->src
, e_taken
->dest
));
3304 e_taken
->flags
|= EDGE_FALLTHRU
;
3305 update_br_prob_note (bb
);
3306 e
= e_fall
, e_fall
= e_taken
, e_taken
= e
;
3310 /* If the "jumping" edge is a crossing edge, and the fall
3311 through edge is non-crossing, leave things as they are. */
3312 else if ((e_taken
->flags
& EDGE_CROSSING
)
3313 && !(e_fall
->flags
& EDGE_CROSSING
))
3316 /* Otherwise we can try to invert the jump. This will
3317 basically never fail, however, keep up the pretense. */
3318 else if (invert_jump (bb_end_insn
,
3319 (e_fall
->dest
== EXIT_BLOCK_PTR
3321 : label_for_bb (e_fall
->dest
)), 0))
3323 e_fall
->flags
&= ~EDGE_FALLTHRU
;
3324 gcc_checking_assert (could_fall_through
3325 (e_taken
->src
, e_taken
->dest
));
3326 e_taken
->flags
|= EDGE_FALLTHRU
;
3327 update_br_prob_note (bb
);
3328 if (LABEL_NUSES (ret_label
) == 0
3329 && single_pred_p (e_taken
->dest
))
3330 delete_insn (ret_label
);
3334 else if (extract_asm_operands (PATTERN (bb_end_insn
)) != NULL
)
3336 /* If the old fallthru is still next or if
3337 asm goto doesn't have a fallthru (e.g. when followed by
3338 __builtin_unreachable ()), nothing to do. */
3340 || bb
->aux
== e_fall
->dest
3341 || e_fall
->dest
== EXIT_BLOCK_PTR
)
3344 /* Otherwise we'll have to use the fallthru fixup below. */
3348 /* Otherwise we have some return, switch or computed
3349 jump. In the 99% case, there should not have been a
3351 gcc_assert (returnjump_p (bb_end_insn
) || !e_fall
);
3357 /* No fallthru implies a noreturn function with EH edges, or
3358 something similarly bizarre. In any case, we don't need to
3363 /* If the fallthru block is still next, nothing to do. */
3364 if (bb
->aux
== e_fall
->dest
)
3367 /* A fallthru to exit block. */
3368 if (e_fall
->dest
== EXIT_BLOCK_PTR
)
3372 /* We got here if we need to add a new jump insn.
3373 Note force_nonfallthru can delete E_FALL and thus we have to
3374 save E_FALL->src prior to the call to force_nonfallthru. */
3375 src_bb
= e_fall
->src
;
3376 nb
= force_nonfallthru_and_redirect (e_fall
, e_fall
->dest
, ret_label
);
3381 /* Don't process this new block. */
3384 /* Make sure new bb is tagged for correct section (same as
3385 fall-thru source, since you cannot fall-thru across
3386 section boundaries). */
3387 BB_COPY_PARTITION (src_bb
, single_pred (bb
));
3388 if (flag_reorder_blocks_and_partition
3389 && targetm_common
.have_named_sections
3390 && JUMP_P (BB_END (bb
))
3391 && !any_condjump_p (BB_END (bb
))
3392 && (EDGE_SUCC (bb
, 0)->flags
& EDGE_CROSSING
))
3393 add_reg_note (BB_END (bb
), REG_CROSSING_JUMP
, NULL_RTX
);
3397 relink_block_chain (/*stay_in_cfglayout_mode=*/false);
3399 /* Annoying special case - jump around dead jumptables left in the code. */
3402 edge e
= find_fallthru_edge (bb
->succs
);
3404 if (e
&& !can_fallthru (e
->src
, e
->dest
))
3405 force_nonfallthru (e
);
3408 /* Ensure goto_locus from edges has some instructions with that locus
3416 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
3417 if (e
->goto_locus
&& !(e
->flags
& EDGE_ABNORMAL
))
3421 basic_block dest
, nb
;
3424 insn
= BB_END (e
->src
);
3425 end
= PREV_INSN (BB_HEAD (e
->src
));
3427 && (!NONDEBUG_INSN_P (insn
) || INSN_LOCATOR (insn
) == 0))
3428 insn
= PREV_INSN (insn
);
3430 && locator_eq (INSN_LOCATOR (insn
), (int) e
->goto_locus
))
3432 if (simplejump_p (BB_END (e
->src
))
3433 && INSN_LOCATOR (BB_END (e
->src
)) == 0)
3435 INSN_LOCATOR (BB_END (e
->src
)) = e
->goto_locus
;
3439 if (dest
== EXIT_BLOCK_PTR
)
3441 /* Non-fallthru edges to the exit block cannot be split. */
3442 if (!(e
->flags
& EDGE_FALLTHRU
))
3447 insn
= BB_HEAD (dest
);
3448 end
= NEXT_INSN (BB_END (dest
));
3449 while (insn
!= end
&& !NONDEBUG_INSN_P (insn
))
3450 insn
= NEXT_INSN (insn
);
3451 if (insn
!= end
&& INSN_LOCATOR (insn
)
3452 && locator_eq (INSN_LOCATOR (insn
), (int) e
->goto_locus
))
3455 nb
= split_edge (e
);
3456 if (!INSN_P (BB_END (nb
)))
3457 BB_END (nb
) = emit_insn_after_noloc (gen_nop (), BB_END (nb
),
3459 INSN_LOCATOR (BB_END (nb
)) = e
->goto_locus
;
3461 /* If there are other incoming edges to the destination block
3462 with the same goto locus, redirect them to the new block as
3463 well, this can prevent other such blocks from being created
3464 in subsequent iterations of the loop. */
3465 for (ei2
= ei_start (dest
->preds
); (e2
= ei_safe_edge (ei2
)); )
3467 && !(e2
->flags
& (EDGE_ABNORMAL
| EDGE_FALLTHRU
))
3468 && locator_eq (e
->goto_locus
, e2
->goto_locus
))
3469 redirect_edge_and_branch (e2
, nb
);
3476 /* Perform sanity checks on the insn chain.
3477 1. Check that next/prev pointers are consistent in both the forward and
3479 2. Count insns in chain, going both directions, and check if equal.
3480 3. Check that get_last_insn () returns the actual end of chain. */
3483 verify_insn_chain (void)
3485 rtx x
, prevx
, nextx
;
3486 int insn_cnt1
, insn_cnt2
;
3488 for (prevx
= NULL
, insn_cnt1
= 1, x
= get_insns ();
3490 prevx
= x
, insn_cnt1
++, x
= NEXT_INSN (x
))
3491 gcc_assert (PREV_INSN (x
) == prevx
);
3493 gcc_assert (prevx
== get_last_insn ());
3495 for (nextx
= NULL
, insn_cnt2
= 1, x
= get_last_insn ();
3497 nextx
= x
, insn_cnt2
++, x
= PREV_INSN (x
))
3498 gcc_assert (NEXT_INSN (x
) == nextx
);
3500 gcc_assert (insn_cnt1
== insn_cnt2
);
3503 /* If we have assembler epilogues, the block falling through to exit must
3504 be the last one in the reordered chain when we reach final. Ensure
3505 that this condition is met. */
3507 fixup_fallthru_exit_predecessor (void)
3510 basic_block bb
= NULL
;
3512 /* This transformation is not valid before reload, because we might
3513 separate a call from the instruction that copies the return
3515 gcc_assert (reload_completed
);
3517 e
= find_fallthru_edge (EXIT_BLOCK_PTR
->preds
);
3523 basic_block c
= ENTRY_BLOCK_PTR
->next_bb
;
3525 /* If the very first block is the one with the fall-through exit
3526 edge, we have to split that block. */
3529 bb
= split_block (bb
, NULL
)->dest
;
3532 BB_FOOTER (bb
) = BB_FOOTER (c
);
3533 BB_FOOTER (c
) = NULL
;
3536 while (c
->aux
!= bb
)
3537 c
= (basic_block
) c
->aux
;
3541 c
= (basic_block
) c
->aux
;
3548 /* In case there are more than one fallthru predecessors of exit, force that
3549 there is only one. */
3552 force_one_exit_fallthru (void)
3554 edge e
, predecessor
= NULL
;
3557 basic_block forwarder
, bb
;
3559 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
3560 if (e
->flags
& EDGE_FALLTHRU
)
3562 if (predecessor
== NULL
)
3574 /* Exit has several fallthru predecessors. Create a forwarder block for
3576 forwarder
= split_edge (predecessor
);
3577 for (ei
= ei_start (EXIT_BLOCK_PTR
->preds
); (e
= ei_safe_edge (ei
)); )
3579 if (e
->src
== forwarder
3580 || !(e
->flags
& EDGE_FALLTHRU
))
3583 redirect_edge_and_branch_force (e
, forwarder
);
3586 /* Fix up the chain of blocks -- make FORWARDER immediately precede the
3590 if (bb
->aux
== NULL
&& bb
!= forwarder
)
3592 bb
->aux
= forwarder
;
3598 /* Return true in case it is possible to duplicate the basic block BB. */
3601 cfg_layout_can_duplicate_bb_p (const_basic_block bb
)
3603 /* Do not attempt to duplicate tablejumps, as we need to unshare
3604 the dispatch table. This is difficult to do, as the instructions
3605 computing jump destination may be hoisted outside the basic block. */
3606 if (tablejump_p (BB_END (bb
), NULL
, NULL
))
3609 /* Do not duplicate blocks containing insns that can't be copied. */
3610 if (targetm
.cannot_copy_insn_p
)
3612 rtx insn
= BB_HEAD (bb
);
3615 if (INSN_P (insn
) && targetm
.cannot_copy_insn_p (insn
))
3617 if (insn
== BB_END (bb
))
3619 insn
= NEXT_INSN (insn
);
3627 duplicate_insn_chain (rtx from
, rtx to
)
3629 rtx insn
, last
, copy
;
3631 /* Avoid updating of boundaries of previous basic block. The
3632 note will get removed from insn stream in fixup. */
3633 last
= emit_note (NOTE_INSN_DELETED
);
3635 /* Create copy at the end of INSN chain. The chain will
3636 be reordered later. */
3637 for (insn
= from
; insn
!= NEXT_INSN (to
); insn
= NEXT_INSN (insn
))
3639 switch (GET_CODE (insn
))
3642 /* Don't duplicate label debug insns. */
3643 if (TREE_CODE (INSN_VAR_LOCATION_DECL (insn
)) == LABEL_DECL
)
3649 /* Avoid copying of dispatch tables. We never duplicate
3650 tablejumps, so this can hit only in case the table got
3651 moved far from original jump. */
3652 if (GET_CODE (PATTERN (insn
)) == ADDR_VEC
3653 || GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
)
3655 /* Avoid copying following barrier as well if any
3656 (and debug insns in between). */
3659 for (next
= NEXT_INSN (insn
);
3660 next
!= NEXT_INSN (to
);
3661 next
= NEXT_INSN (next
))
3662 if (!DEBUG_INSN_P (next
))
3664 if (next
!= NEXT_INSN (to
) && BARRIER_P (next
))
3668 copy
= emit_copy_of_insn_after (insn
, get_last_insn ());
3669 if (JUMP_P (insn
) && JUMP_LABEL (insn
) != NULL_RTX
3670 && ANY_RETURN_P (JUMP_LABEL (insn
)))
3671 JUMP_LABEL (copy
) = JUMP_LABEL (insn
);
3672 maybe_copy_prologue_epilogue_insn (insn
, copy
);
3683 switch (NOTE_KIND (insn
))
3685 /* In case prologue is empty and function contain label
3686 in first BB, we may want to copy the block. */
3687 case NOTE_INSN_PROLOGUE_END
:
3689 case NOTE_INSN_DELETED
:
3690 case NOTE_INSN_DELETED_LABEL
:
3691 case NOTE_INSN_DELETED_DEBUG_LABEL
:
3692 /* No problem to strip these. */
3693 case NOTE_INSN_FUNCTION_BEG
:
3694 /* There is always just single entry to function. */
3695 case NOTE_INSN_BASIC_BLOCK
:
3698 case NOTE_INSN_EPILOGUE_BEG
:
3699 case NOTE_INSN_SWITCH_TEXT_SECTIONS
:
3700 emit_note_copy (insn
);
3704 /* All other notes should have already been eliminated. */
3712 insn
= NEXT_INSN (last
);
3717 /* Create a duplicate of the basic block BB. */
3720 cfg_layout_duplicate_bb (basic_block bb
)
3725 insn
= duplicate_insn_chain (BB_HEAD (bb
), BB_END (bb
));
3726 new_bb
= create_basic_block (insn
,
3727 insn
? get_last_insn () : NULL
,
3728 EXIT_BLOCK_PTR
->prev_bb
);
3730 BB_COPY_PARTITION (new_bb
, bb
);
3733 insn
= BB_HEADER (bb
);
3734 while (NEXT_INSN (insn
))
3735 insn
= NEXT_INSN (insn
);
3736 insn
= duplicate_insn_chain (BB_HEADER (bb
), insn
);
3738 BB_HEADER (new_bb
) = unlink_insn_chain (insn
, get_last_insn ());
3743 insn
= BB_FOOTER (bb
);
3744 while (NEXT_INSN (insn
))
3745 insn
= NEXT_INSN (insn
);
3746 insn
= duplicate_insn_chain (BB_FOOTER (bb
), insn
);
3748 BB_FOOTER (new_bb
) = unlink_insn_chain (insn
, get_last_insn ());
3755 /* Main entry point to this module - initialize the datastructures for
3756 CFG layout changes. It keeps LOOPS up-to-date if not null.
3758 FLAGS is a set of additional flags to pass to cleanup_cfg(). */
3761 cfg_layout_initialize (unsigned int flags
)
3766 initialize_original_copy_tables ();
3768 cfg_layout_rtl_register_cfg_hooks ();
3770 record_effective_endpoints ();
3772 /* Make sure that the targets of non local gotos are marked. */
3773 for (x
= nonlocal_goto_handler_labels
; x
; x
= XEXP (x
, 1))
3775 bb
= BLOCK_FOR_INSN (XEXP (x
, 0));
3776 bb
->flags
|= BB_NON_LOCAL_GOTO_TARGET
;
3779 cleanup_cfg (CLEANUP_CFGLAYOUT
| flags
);
3782 /* Splits superblocks. */
3784 break_superblocks (void)
3786 sbitmap superblocks
;
3790 superblocks
= sbitmap_alloc (last_basic_block
);
3791 sbitmap_zero (superblocks
);
3794 if (bb
->flags
& BB_SUPERBLOCK
)
3796 bb
->flags
&= ~BB_SUPERBLOCK
;
3797 SET_BIT (superblocks
, bb
->index
);
3803 rebuild_jump_labels (get_insns ());
3804 find_many_sub_basic_blocks (superblocks
);
3810 /* Finalize the changes: reorder insn list according to the sequence specified
3811 by aux pointers, enter compensation code, rebuild scope forest. */
3814 cfg_layout_finalize (void)
3816 #ifdef ENABLE_CHECKING
3817 verify_flow_info ();
3819 force_one_exit_fallthru ();
3820 rtl_register_cfg_hooks ();
3821 if (reload_completed
3822 #ifdef HAVE_epilogue
3826 fixup_fallthru_exit_predecessor ();
3827 fixup_reorder_chain ();
3829 rebuild_jump_labels (get_insns ());
3830 delete_dead_jumptables ();
3832 #ifdef ENABLE_CHECKING
3833 verify_insn_chain ();
3834 verify_flow_info ();
3839 /* Same as split_block but update cfg_layout structures. */
3842 cfg_layout_split_block (basic_block bb
, void *insnp
)
3844 rtx insn
= (rtx
) insnp
;
3845 basic_block new_bb
= rtl_split_block (bb
, insn
);
3847 BB_FOOTER (new_bb
) = BB_FOOTER (bb
);
3848 BB_FOOTER (bb
) = NULL
;
3853 /* Redirect Edge to DEST. */
3855 cfg_layout_redirect_edge_and_branch (edge e
, basic_block dest
)
3857 basic_block src
= e
->src
;
3860 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
3863 if (e
->dest
== dest
)
3866 if (e
->src
!= ENTRY_BLOCK_PTR
3867 && (ret
= try_redirect_by_replacing_jump (e
, dest
, true)))
3869 df_set_bb_dirty (src
);
3873 if (e
->src
== ENTRY_BLOCK_PTR
3874 && (e
->flags
& EDGE_FALLTHRU
) && !(e
->flags
& EDGE_COMPLEX
))
3877 fprintf (dump_file
, "Redirecting entry edge from bb %i to %i\n",
3878 e
->src
->index
, dest
->index
);
3880 df_set_bb_dirty (e
->src
);
3881 redirect_edge_succ (e
, dest
);
3885 /* Redirect_edge_and_branch may decide to turn branch into fallthru edge
3886 in the case the basic block appears to be in sequence. Avoid this
3889 if (e
->flags
& EDGE_FALLTHRU
)
3891 /* Redirect any branch edges unified with the fallthru one. */
3892 if (JUMP_P (BB_END (src
))
3893 && label_is_jump_target_p (BB_HEAD (e
->dest
),
3899 fprintf (dump_file
, "Fallthru edge unified with branch "
3900 "%i->%i redirected to %i\n",
3901 e
->src
->index
, e
->dest
->index
, dest
->index
);
3902 e
->flags
&= ~EDGE_FALLTHRU
;
3903 redirected
= redirect_branch_edge (e
, dest
);
3904 gcc_assert (redirected
);
3905 redirected
->flags
|= EDGE_FALLTHRU
;
3906 df_set_bb_dirty (redirected
->src
);
3909 /* In case we are redirecting fallthru edge to the branch edge
3910 of conditional jump, remove it. */
3911 if (EDGE_COUNT (src
->succs
) == 2)
3913 /* Find the edge that is different from E. */
3914 edge s
= EDGE_SUCC (src
, EDGE_SUCC (src
, 0) == e
);
3917 && any_condjump_p (BB_END (src
))
3918 && onlyjump_p (BB_END (src
)))
3919 delete_insn (BB_END (src
));
3922 fprintf (dump_file
, "Redirecting fallthru edge %i->%i to %i\n",
3923 e
->src
->index
, e
->dest
->index
, dest
->index
);
3924 ret
= redirect_edge_succ_nodup (e
, dest
);
3927 ret
= redirect_branch_edge (e
, dest
);
3929 /* We don't want simplejumps in the insn stream during cfglayout. */
3930 gcc_assert (!simplejump_p (BB_END (src
)));
3932 df_set_bb_dirty (src
);
3936 /* Simple wrapper as we always can redirect fallthru edges. */
3938 cfg_layout_redirect_edge_and_branch_force (edge e
, basic_block dest
)
3940 edge redirected
= cfg_layout_redirect_edge_and_branch (e
, dest
);
3942 gcc_assert (redirected
);
3946 /* Same as delete_basic_block but update cfg_layout structures. */
3949 cfg_layout_delete_block (basic_block bb
)
3951 rtx insn
, next
, prev
= PREV_INSN (BB_HEAD (bb
)), *to
, remaints
;
3955 next
= BB_HEAD (bb
);
3957 NEXT_INSN (prev
) = BB_HEADER (bb
);
3959 set_first_insn (BB_HEADER (bb
));
3960 PREV_INSN (BB_HEADER (bb
)) = prev
;
3961 insn
= BB_HEADER (bb
);
3962 while (NEXT_INSN (insn
))
3963 insn
= NEXT_INSN (insn
);
3964 NEXT_INSN (insn
) = next
;
3965 PREV_INSN (next
) = insn
;
3967 next
= NEXT_INSN (BB_END (bb
));
3970 insn
= BB_FOOTER (bb
);
3973 if (BARRIER_P (insn
))
3975 if (PREV_INSN (insn
))
3976 NEXT_INSN (PREV_INSN (insn
)) = NEXT_INSN (insn
);
3978 BB_FOOTER (bb
) = NEXT_INSN (insn
);
3979 if (NEXT_INSN (insn
))
3980 PREV_INSN (NEXT_INSN (insn
)) = PREV_INSN (insn
);
3984 insn
= NEXT_INSN (insn
);
3989 NEXT_INSN (insn
) = BB_FOOTER (bb
);
3990 PREV_INSN (BB_FOOTER (bb
)) = insn
;
3991 while (NEXT_INSN (insn
))
3992 insn
= NEXT_INSN (insn
);
3993 NEXT_INSN (insn
) = next
;
3995 PREV_INSN (next
) = insn
;
3997 set_last_insn (insn
);
4000 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
4001 to
= &BB_HEADER (bb
->next_bb
);
4003 to
= &cfg_layout_function_footer
;
4005 rtl_delete_block (bb
);
4008 prev
= NEXT_INSN (prev
);
4010 prev
= get_insns ();
4012 next
= PREV_INSN (next
);
4014 next
= get_last_insn ();
4016 if (next
&& NEXT_INSN (next
) != prev
)
4018 remaints
= unlink_insn_chain (prev
, next
);
4020 while (NEXT_INSN (insn
))
4021 insn
= NEXT_INSN (insn
);
4022 NEXT_INSN (insn
) = *to
;
4024 PREV_INSN (*to
) = insn
;
4029 /* Return true when blocks A and B can be safely merged. */
4032 cfg_layout_can_merge_blocks_p (basic_block a
, basic_block b
)
4034 /* If we are partitioning hot/cold basic blocks, we don't want to
4035 mess up unconditional or indirect jumps that cross between hot
4038 Basic block partitioning may result in some jumps that appear to
4039 be optimizable (or blocks that appear to be mergeable), but which really
4040 must be left untouched (they are required to make it safely across
4041 partition boundaries). See the comments at the top of
4042 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4044 if (BB_PARTITION (a
) != BB_PARTITION (b
))
4047 /* Protect the loop latches. */
4048 if (current_loops
&& b
->loop_father
->latch
== b
)
4051 /* If we would end up moving B's instructions, make sure it doesn't fall
4052 through into the exit block, since we cannot recover from a fallthrough
4053 edge into the exit block occurring in the middle of a function. */
4054 if (NEXT_INSN (BB_END (a
)) != BB_HEAD (b
))
4056 edge e
= find_fallthru_edge (b
->succs
);
4057 if (e
&& e
->dest
== EXIT_BLOCK_PTR
)
4061 /* There must be exactly one edge in between the blocks. */
4062 return (single_succ_p (a
)
4063 && single_succ (a
) == b
4064 && single_pred_p (b
) == 1
4066 /* Must be simple edge. */
4067 && !(single_succ_edge (a
)->flags
& EDGE_COMPLEX
)
4068 && a
!= ENTRY_BLOCK_PTR
&& b
!= EXIT_BLOCK_PTR
4069 /* If the jump insn has side effects, we can't kill the edge.
4070 When not optimizing, try_redirect_by_replacing_jump will
4071 not allow us to redirect an edge by replacing a table jump. */
4072 && (!JUMP_P (BB_END (a
))
4073 || ((!optimize
|| reload_completed
)
4074 ? simplejump_p (BB_END (a
)) : onlyjump_p (BB_END (a
)))));
4077 /* Merge block A and B. The blocks must be mergeable. */
4080 cfg_layout_merge_blocks (basic_block a
, basic_block b
)
4082 bool forwarder_p
= (b
->flags
& BB_FORWARDER_BLOCK
) != 0;
4085 gcc_checking_assert (cfg_layout_can_merge_blocks_p (a
, b
));
4088 fprintf (dump_file
, "Merging block %d into block %d...\n", b
->index
,
4091 /* If there was a CODE_LABEL beginning B, delete it. */
4092 if (LABEL_P (BB_HEAD (b
)))
4094 delete_insn (BB_HEAD (b
));
4097 /* We should have fallthru edge in a, or we can do dummy redirection to get
4099 if (JUMP_P (BB_END (a
)))
4100 try_redirect_by_replacing_jump (EDGE_SUCC (a
, 0), b
, true);
4101 gcc_assert (!JUMP_P (BB_END (a
)));
4103 /* When not optimizing CFG and the edge is the only place in RTL which holds
4104 some unique locus, emit a nop with that locus in between. */
4106 emit_nop_for_unique_locus_between (a
, b
);
4108 /* Possible line number notes should appear in between. */
4111 rtx first
= BB_END (a
), last
;
4113 last
= emit_insn_after_noloc (BB_HEADER (b
), BB_END (a
), a
);
4114 /* The above might add a BARRIER as BB_END, but as barriers
4115 aren't valid parts of a bb, remove_insn doesn't update
4116 BB_END if it is a barrier. So adjust BB_END here. */
4117 while (BB_END (a
) != first
&& BARRIER_P (BB_END (a
)))
4118 BB_END (a
) = PREV_INSN (BB_END (a
));
4119 delete_insn_chain (NEXT_INSN (first
), last
, false);
4120 BB_HEADER (b
) = NULL
;
4123 /* In the case basic blocks are not adjacent, move them around. */
4124 if (NEXT_INSN (BB_END (a
)) != BB_HEAD (b
))
4126 insn
= unlink_insn_chain (BB_HEAD (b
), BB_END (b
));
4128 emit_insn_after_noloc (insn
, BB_END (a
), a
);
4130 /* Otherwise just re-associate the instructions. */
4134 BB_END (a
) = BB_END (b
);
4137 /* emit_insn_after_noloc doesn't call df_insn_change_bb.
4138 We need to explicitly call. */
4139 update_bb_for_insn_chain (insn
, BB_END (b
), a
);
4141 /* Skip possible DELETED_LABEL insn. */
4142 if (!NOTE_INSN_BASIC_BLOCK_P (insn
))
4143 insn
= NEXT_INSN (insn
);
4144 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn
));
4148 df_bb_delete (b
->index
);
4150 /* Possible tablejumps and barriers should appear after the block. */
4154 BB_FOOTER (a
) = BB_FOOTER (b
);
4157 rtx last
= BB_FOOTER (a
);
4159 while (NEXT_INSN (last
))
4160 last
= NEXT_INSN (last
);
4161 NEXT_INSN (last
) = BB_FOOTER (b
);
4162 PREV_INSN (BB_FOOTER (b
)) = last
;
4164 BB_FOOTER (b
) = NULL
;
4167 /* If B was a forwarder block, propagate the locus on the edge. */
4168 if (forwarder_p
&& !EDGE_SUCC (b
, 0)->goto_locus
)
4169 EDGE_SUCC (b
, 0)->goto_locus
= EDGE_SUCC (a
, 0)->goto_locus
;
4172 fprintf (dump_file
, "Merged blocks %d and %d.\n", a
->index
, b
->index
);
4178 cfg_layout_split_edge (edge e
)
4180 basic_block new_bb
=
4181 create_basic_block (e
->src
!= ENTRY_BLOCK_PTR
4182 ? NEXT_INSN (BB_END (e
->src
)) : get_insns (),
4185 if (e
->dest
== EXIT_BLOCK_PTR
)
4186 BB_COPY_PARTITION (new_bb
, e
->src
);
4188 BB_COPY_PARTITION (new_bb
, e
->dest
);
4189 make_edge (new_bb
, e
->dest
, EDGE_FALLTHRU
);
4190 redirect_edge_and_branch_force (e
, new_bb
);
4195 /* Do postprocessing after making a forwarder block joined by edge FALLTHRU. */
4198 rtl_make_forwarder_block (edge fallthru ATTRIBUTE_UNUSED
)
4202 /* Return 1 if BB ends with a call, possibly followed by some
4203 instructions that must stay with the call, 0 otherwise. */
4206 rtl_block_ends_with_call_p (basic_block bb
)
4208 rtx insn
= BB_END (bb
);
4210 while (!CALL_P (insn
)
4211 && insn
!= BB_HEAD (bb
)
4212 && (keep_with_call_p (insn
)
4214 || DEBUG_INSN_P (insn
)))
4215 insn
= PREV_INSN (insn
);
4216 return (CALL_P (insn
));
4219 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
4222 rtl_block_ends_with_condjump_p (const_basic_block bb
)
4224 return any_condjump_p (BB_END (bb
));
4227 /* Return true if we need to add fake edge to exit.
4228 Helper function for rtl_flow_call_edges_add. */
4231 need_fake_edge_p (const_rtx insn
)
4237 && !SIBLING_CALL_P (insn
)
4238 && !find_reg_note (insn
, REG_NORETURN
, NULL
)
4239 && !(RTL_CONST_OR_PURE_CALL_P (insn
))))
4242 return ((GET_CODE (PATTERN (insn
)) == ASM_OPERANDS
4243 && MEM_VOLATILE_P (PATTERN (insn
)))
4244 || (GET_CODE (PATTERN (insn
)) == PARALLEL
4245 && asm_noperands (insn
) != -1
4246 && MEM_VOLATILE_P (XVECEXP (PATTERN (insn
), 0, 0)))
4247 || GET_CODE (PATTERN (insn
)) == ASM_INPUT
);
4250 /* Add fake edges to the function exit for any non constant and non noreturn
4251 calls, volatile inline assembly in the bitmap of blocks specified by
4252 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
4255 The goal is to expose cases in which entering a basic block does not imply
4256 that all subsequent instructions must be executed. */
4259 rtl_flow_call_edges_add (sbitmap blocks
)
4262 int blocks_split
= 0;
4263 int last_bb
= last_basic_block
;
4264 bool check_last_block
= false;
4266 if (n_basic_blocks
== NUM_FIXED_BLOCKS
)
4270 check_last_block
= true;
4272 check_last_block
= TEST_BIT (blocks
, EXIT_BLOCK_PTR
->prev_bb
->index
);
4274 /* In the last basic block, before epilogue generation, there will be
4275 a fallthru edge to EXIT. Special care is required if the last insn
4276 of the last basic block is a call because make_edge folds duplicate
4277 edges, which would result in the fallthru edge also being marked
4278 fake, which would result in the fallthru edge being removed by
4279 remove_fake_edges, which would result in an invalid CFG.
4281 Moreover, we can't elide the outgoing fake edge, since the block
4282 profiler needs to take this into account in order to solve the minimal
4283 spanning tree in the case that the call doesn't return.
4285 Handle this by adding a dummy instruction in a new last basic block. */
4286 if (check_last_block
)
4288 basic_block bb
= EXIT_BLOCK_PTR
->prev_bb
;
4289 rtx insn
= BB_END (bb
);
4291 /* Back up past insns that must be kept in the same block as a call. */
4292 while (insn
!= BB_HEAD (bb
)
4293 && keep_with_call_p (insn
))
4294 insn
= PREV_INSN (insn
);
4296 if (need_fake_edge_p (insn
))
4300 e
= find_edge (bb
, EXIT_BLOCK_PTR
);
4303 insert_insn_on_edge (gen_use (const0_rtx
), e
);
4304 commit_edge_insertions ();
4309 /* Now add fake edges to the function exit for any non constant
4310 calls since there is no way that we can determine if they will
4313 for (i
= NUM_FIXED_BLOCKS
; i
< last_bb
; i
++)
4315 basic_block bb
= BASIC_BLOCK (i
);
4322 if (blocks
&& !TEST_BIT (blocks
, i
))
4325 for (insn
= BB_END (bb
); ; insn
= prev_insn
)
4327 prev_insn
= PREV_INSN (insn
);
4328 if (need_fake_edge_p (insn
))
4331 rtx split_at_insn
= insn
;
4333 /* Don't split the block between a call and an insn that should
4334 remain in the same block as the call. */
4336 while (split_at_insn
!= BB_END (bb
)
4337 && keep_with_call_p (NEXT_INSN (split_at_insn
)))
4338 split_at_insn
= NEXT_INSN (split_at_insn
);
4340 /* The handling above of the final block before the epilogue
4341 should be enough to verify that there is no edge to the exit
4342 block in CFG already. Calling make_edge in such case would
4343 cause us to mark that edge as fake and remove it later. */
4345 #ifdef ENABLE_CHECKING
4346 if (split_at_insn
== BB_END (bb
))
4348 e
= find_edge (bb
, EXIT_BLOCK_PTR
);
4349 gcc_assert (e
== NULL
);
4353 /* Note that the following may create a new basic block
4354 and renumber the existing basic blocks. */
4355 if (split_at_insn
!= BB_END (bb
))
4357 e
= split_block (bb
, split_at_insn
);
4362 make_edge (bb
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
4365 if (insn
== BB_HEAD (bb
))
4371 verify_flow_info ();
4373 return blocks_split
;
4376 /* Add COMP_RTX as a condition at end of COND_BB. FIRST_HEAD is
4377 the conditional branch target, SECOND_HEAD should be the fall-thru
4378 there is no need to handle this here the loop versioning code handles
4379 this. the reason for SECON_HEAD is that it is needed for condition
4380 in trees, and this should be of the same type since it is a hook. */
4382 rtl_lv_add_condition_to_bb (basic_block first_head
,
4383 basic_block second_head ATTRIBUTE_UNUSED
,
4384 basic_block cond_bb
, void *comp_rtx
)
4386 rtx label
, seq
, jump
;
4387 rtx op0
= XEXP ((rtx
)comp_rtx
, 0);
4388 rtx op1
= XEXP ((rtx
)comp_rtx
, 1);
4389 enum rtx_code comp
= GET_CODE ((rtx
)comp_rtx
);
4390 enum machine_mode mode
;
4393 label
= block_label (first_head
);
4394 mode
= GET_MODE (op0
);
4395 if (mode
== VOIDmode
)
4396 mode
= GET_MODE (op1
);
4399 op0
= force_operand (op0
, NULL_RTX
);
4400 op1
= force_operand (op1
, NULL_RTX
);
4401 do_compare_rtx_and_jump (op0
, op1
, comp
, 0,
4402 mode
, NULL_RTX
, NULL_RTX
, label
, -1);
4403 jump
= get_last_insn ();
4404 JUMP_LABEL (jump
) = label
;
4405 LABEL_NUSES (label
)++;
4409 /* Add the new cond , in the new head. */
4410 emit_insn_after(seq
, BB_END(cond_bb
));
4414 /* Given a block B with unconditional branch at its end, get the
4415 store the return the branch edge and the fall-thru edge in
4416 BRANCH_EDGE and FALLTHRU_EDGE respectively. */
4418 rtl_extract_cond_bb_edges (basic_block b
, edge
*branch_edge
,
4419 edge
*fallthru_edge
)
4421 edge e
= EDGE_SUCC (b
, 0);
4423 if (e
->flags
& EDGE_FALLTHRU
)
4426 *branch_edge
= EDGE_SUCC (b
, 1);
4431 *fallthru_edge
= EDGE_SUCC (b
, 1);
4436 init_rtl_bb_info (basic_block bb
)
4438 gcc_assert (!bb
->il
.x
.rtl
);
4439 bb
->il
.x
.head_
= NULL
;
4440 bb
->il
.x
.rtl
= ggc_alloc_cleared_rtl_bb_info ();
4443 /* Returns true if it is possible to remove edge E by redirecting
4444 it to the destination of the other edge from E->src. */
4447 rtl_can_remove_branch_p (const_edge e
)
4449 const_basic_block src
= e
->src
;
4450 const_basic_block target
= EDGE_SUCC (src
, EDGE_SUCC (src
, 0) == e
)->dest
;
4451 const_rtx insn
= BB_END (src
), set
;
4453 /* The conditions are taken from try_redirect_by_replacing_jump. */
4454 if (target
== EXIT_BLOCK_PTR
)
4457 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
4460 if (find_reg_note (insn
, REG_CROSSING_JUMP
, NULL_RTX
)
4461 || BB_PARTITION (src
) != BB_PARTITION (target
))
4464 if (!onlyjump_p (insn
)
4465 || tablejump_p (insn
, NULL
, NULL
))
4468 set
= single_set (insn
);
4469 if (!set
|| side_effects_p (set
))
4476 rtl_duplicate_bb (basic_block bb
)
4478 bb
= cfg_layout_duplicate_bb (bb
);
4483 /* Implementation of CFG manipulation for linearized RTL. */
4484 struct cfg_hooks rtl_cfg_hooks
= {
4486 rtl_verify_flow_info
,
4488 rtl_create_basic_block
,
4489 rtl_redirect_edge_and_branch
,
4490 rtl_redirect_edge_and_branch_force
,
4491 rtl_can_remove_branch_p
,
4494 rtl_move_block_after
,
4495 rtl_can_merge_blocks
, /* can_merge_blocks_p */
4499 cfg_layout_can_duplicate_bb_p
,
4502 rtl_make_forwarder_block
,
4503 rtl_tidy_fallthru_edge
,
4504 rtl_force_nonfallthru
,
4505 rtl_block_ends_with_call_p
,
4506 rtl_block_ends_with_condjump_p
,
4507 rtl_flow_call_edges_add
,
4508 NULL
, /* execute_on_growing_pred */
4509 NULL
, /* execute_on_shrinking_pred */
4510 NULL
, /* duplicate loop for trees */
4511 NULL
, /* lv_add_condition_to_bb */
4512 NULL
, /* lv_adjust_loop_header_phi*/
4513 NULL
, /* extract_cond_bb_edges */
4514 NULL
/* flush_pending_stmts */
4517 /* Implementation of CFG manipulation for cfg layout RTL, where
4518 basic block connected via fallthru edges does not have to be adjacent.
4519 This representation will hopefully become the default one in future
4520 version of the compiler. */
4522 struct cfg_hooks cfg_layout_rtl_cfg_hooks
= {
4524 rtl_verify_flow_info_1
,
4526 cfg_layout_create_basic_block
,
4527 cfg_layout_redirect_edge_and_branch
,
4528 cfg_layout_redirect_edge_and_branch_force
,
4529 rtl_can_remove_branch_p
,
4530 cfg_layout_delete_block
,
4531 cfg_layout_split_block
,
4532 rtl_move_block_after
,
4533 cfg_layout_can_merge_blocks_p
,
4534 cfg_layout_merge_blocks
,
4537 cfg_layout_can_duplicate_bb_p
,
4538 cfg_layout_duplicate_bb
,
4539 cfg_layout_split_edge
,
4540 rtl_make_forwarder_block
,
4541 NULL
, /* tidy_fallthru_edge */
4542 rtl_force_nonfallthru
,
4543 rtl_block_ends_with_call_p
,
4544 rtl_block_ends_with_condjump_p
,
4545 rtl_flow_call_edges_add
,
4546 NULL
, /* execute_on_growing_pred */
4547 NULL
, /* execute_on_shrinking_pred */
4548 duplicate_loop_to_header_edge
, /* duplicate loop for trees */
4549 rtl_lv_add_condition_to_bb
, /* lv_add_condition_to_bb */
4550 NULL
, /* lv_adjust_loop_header_phi*/
4551 rtl_extract_cond_bb_edges
, /* extract_cond_bb_edges */
4552 NULL
/* flush_pending_stmts */
4555 #include "gt-cfgrtl.h"