1 /* Control flow graph manipulation code for GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains low level functions to manipulate the CFG and analyze it
21 that are aware of the RTL intermediate language.
23 Available functionality:
24 - Basic CFG/RTL manipulation API documented in cfghooks.h
25 - CFG-aware instruction chain manipulation
26 delete_insn, delete_insn_chain
27 - Edge splitting and committing to edges
28 insert_insn_on_edge, commit_edge_insertions
29 - CFG updating after insn simplification
30 purge_dead_edges, purge_all_dead_edges
31 - CFG fixing after coarse manipulation
34 Functions not supposed for generic use:
35 - Infrastructure to determine quickly basic block for insn
36 compute_bb_for_insn, update_bb_for_insn, set_block_for_insn,
37 - Edge redirection with updating and optimizing of insn chain
38 block_label, tidy_fallthru_edge, force_nonfallthru */
42 #include "coretypes.h"
45 #include "hard-reg-set.h"
46 #include "basic-block.h"
51 #include "rtl-error.h"
54 #include "insn-attr.h"
55 #include "insn-config.h"
58 #include "common/common-target.h"
61 #include "tree-pass.h"
64 /* Holds the interesting leading and trailing notes for the function.
65 Only applicable if the CFG is in cfglayout mode. */
66 static GTY(()) rtx cfg_layout_function_footer
;
67 static GTY(()) rtx cfg_layout_function_header
;
69 static rtx
skip_insns_after_block (basic_block
);
70 static void record_effective_endpoints (void);
71 static rtx
label_for_bb (basic_block
);
72 static void fixup_reorder_chain (void);
74 void verify_insn_chain (void);
75 static void fixup_fallthru_exit_predecessor (void);
76 static int can_delete_note_p (const_rtx
);
77 static int can_delete_label_p (const_rtx
);
78 static basic_block
rtl_split_edge (edge
);
79 static bool rtl_move_block_after (basic_block
, basic_block
);
80 static int rtl_verify_flow_info (void);
81 static basic_block
cfg_layout_split_block (basic_block
, void *);
82 static edge
cfg_layout_redirect_edge_and_branch (edge
, basic_block
);
83 static basic_block
cfg_layout_redirect_edge_and_branch_force (edge
, basic_block
);
84 static void cfg_layout_delete_block (basic_block
);
85 static void rtl_delete_block (basic_block
);
86 static basic_block
rtl_redirect_edge_and_branch_force (edge
, basic_block
);
87 static edge
rtl_redirect_edge_and_branch (edge
, basic_block
);
88 static basic_block
rtl_split_block (basic_block
, void *);
89 static void rtl_dump_bb (FILE *, basic_block
, int, int);
90 static int rtl_verify_flow_info_1 (void);
91 static void rtl_make_forwarder_block (edge
);
93 /* Return true if NOTE is not one of the ones that must be kept paired,
94 so that we may simply delete it. */
97 can_delete_note_p (const_rtx note
)
99 switch (NOTE_KIND (note
))
101 case NOTE_INSN_DELETED
:
102 case NOTE_INSN_BASIC_BLOCK
:
103 case NOTE_INSN_EPILOGUE_BEG
:
111 /* True if a given label can be deleted. */
114 can_delete_label_p (const_rtx label
)
116 return (!LABEL_PRESERVE_P (label
)
117 /* User declared labels must be preserved. */
118 && LABEL_NAME (label
) == 0
119 && !in_expr_list_p (forced_labels
, label
));
122 /* Delete INSN by patching it out. */
125 delete_insn (rtx insn
)
128 bool really_delete
= true;
132 /* Some labels can't be directly removed from the INSN chain, as they
133 might be references via variables, constant pool etc.
134 Convert them to the special NOTE_INSN_DELETED_LABEL note. */
135 if (! can_delete_label_p (insn
))
137 const char *name
= LABEL_NAME (insn
);
138 basic_block bb
= BLOCK_FOR_INSN (insn
);
139 rtx bb_note
= NEXT_INSN (insn
);
141 really_delete
= false;
142 PUT_CODE (insn
, NOTE
);
143 NOTE_KIND (insn
) = NOTE_INSN_DELETED_LABEL
;
144 NOTE_DELETED_LABEL_NAME (insn
) = name
;
146 /* If the note following the label starts a basic block, and the
147 label is a member of the same basic block, interchange the two. */
148 if (bb_note
!= NULL_RTX
149 && NOTE_INSN_BASIC_BLOCK_P (bb_note
)
151 && bb
== BLOCK_FOR_INSN (bb_note
))
153 reorder_insns_nobb (insn
, insn
, bb_note
);
154 BB_HEAD (bb
) = bb_note
;
155 if (BB_END (bb
) == bb_note
)
160 remove_node_from_expr_list (insn
, &nonlocal_goto_handler_labels
);
165 /* If this insn has already been deleted, something is very wrong. */
166 gcc_assert (!INSN_DELETED_P (insn
));
168 INSN_DELETED_P (insn
) = 1;
171 /* If deleting a jump, decrement the use count of the label. Deleting
172 the label itself should happen in the normal course of block merging. */
175 if (JUMP_LABEL (insn
)
176 && LABEL_P (JUMP_LABEL (insn
)))
177 LABEL_NUSES (JUMP_LABEL (insn
))--;
179 /* If there are more targets, remove them too. */
181 = find_reg_note (insn
, REG_LABEL_TARGET
, NULL_RTX
)) != NULL_RTX
182 && LABEL_P (XEXP (note
, 0)))
184 LABEL_NUSES (XEXP (note
, 0))--;
185 remove_note (insn
, note
);
189 /* Also if deleting any insn that references a label as an operand. */
190 while ((note
= find_reg_note (insn
, REG_LABEL_OPERAND
, NULL_RTX
)) != NULL_RTX
191 && LABEL_P (XEXP (note
, 0)))
193 LABEL_NUSES (XEXP (note
, 0))--;
194 remove_note (insn
, note
);
197 if (JUMP_TABLE_DATA_P (insn
))
199 rtx pat
= PATTERN (insn
);
200 int diff_vec_p
= GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
;
201 int len
= XVECLEN (pat
, diff_vec_p
);
204 for (i
= 0; i
< len
; i
++)
206 rtx label
= XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0);
208 /* When deleting code in bulk (e.g. removing many unreachable
209 blocks) we can delete a label that's a target of the vector
210 before deleting the vector itself. */
212 LABEL_NUSES (label
)--;
217 /* Like delete_insn but also purge dead edges from BB. */
220 delete_insn_and_edges (rtx insn
)
225 && BLOCK_FOR_INSN (insn
)
226 && BB_END (BLOCK_FOR_INSN (insn
)) == insn
)
230 purge_dead_edges (BLOCK_FOR_INSN (insn
));
233 /* Unlink a chain of insns between START and FINISH, leaving notes
234 that must be paired. If CLEAR_BB is true, we set bb field for
235 insns that cannot be removed to NULL. */
238 delete_insn_chain (rtx start
, rtx finish
, bool clear_bb
)
242 /* Unchain the insns one by one. It would be quicker to delete all of these
243 with a single unchaining, rather than one at a time, but we need to keep
248 prev
= PREV_INSN (current
);
249 if (NOTE_P (current
) && !can_delete_note_p (current
))
252 delete_insn (current
);
254 if (clear_bb
&& !INSN_DELETED_P (current
))
255 set_block_for_insn (current
, NULL
);
257 if (current
== start
)
263 /* Create a new basic block consisting of the instructions between HEAD and END
264 inclusive. This function is designed to allow fast BB construction - reuses
265 the note and basic block struct in BB_NOTE, if any and do not grow
266 BASIC_BLOCK chain and should be used directly only by CFG construction code.
267 END can be NULL in to create new empty basic block before HEAD. Both END
268 and HEAD can be NULL to create basic block at the end of INSN chain.
269 AFTER is the basic block we should be put after. */
272 create_basic_block_structure (rtx head
, rtx end
, rtx bb_note
, basic_block after
)
277 && (bb
= NOTE_BASIC_BLOCK (bb_note
)) != NULL
280 /* If we found an existing note, thread it back onto the chain. */
288 after
= PREV_INSN (head
);
292 if (after
!= bb_note
&& NEXT_INSN (after
) != bb_note
)
293 reorder_insns_nobb (bb_note
, bb_note
, after
);
297 /* Otherwise we must create a note and a basic block structure. */
301 init_rtl_bb_info (bb
);
304 = emit_note_after (NOTE_INSN_BASIC_BLOCK
, get_last_insn ());
305 else if (LABEL_P (head
) && end
)
307 bb_note
= emit_note_after (NOTE_INSN_BASIC_BLOCK
, head
);
313 bb_note
= emit_note_before (NOTE_INSN_BASIC_BLOCK
, head
);
319 NOTE_BASIC_BLOCK (bb_note
) = bb
;
322 /* Always include the bb note in the block. */
323 if (NEXT_INSN (end
) == bb_note
)
328 bb
->index
= last_basic_block
++;
329 bb
->flags
= BB_NEW
| BB_RTL
;
330 link_block (bb
, after
);
331 SET_BASIC_BLOCK (bb
->index
, bb
);
332 df_bb_refs_record (bb
->index
, false);
333 update_bb_for_insn (bb
);
334 BB_SET_PARTITION (bb
, BB_UNPARTITIONED
);
336 /* Tag the block so that we know it has been used when considering
337 other basic block notes. */
343 /* Create new basic block consisting of instructions in between HEAD and END
344 and place it to the BB chain after block AFTER. END can be NULL to
345 create a new empty basic block before HEAD. Both END and HEAD can be
346 NULL to create basic block at the end of INSN chain. */
349 rtl_create_basic_block (void *headp
, void *endp
, basic_block after
)
351 rtx head
= (rtx
) headp
, end
= (rtx
) endp
;
354 /* Grow the basic block array if needed. */
355 if ((size_t) last_basic_block
>= basic_block_info
->length ())
357 size_t new_size
= last_basic_block
+ (last_basic_block
+ 3) / 4;
358 vec_safe_grow_cleared (basic_block_info
, new_size
);
363 bb
= create_basic_block_structure (head
, end
, NULL
, after
);
369 cfg_layout_create_basic_block (void *head
, void *end
, basic_block after
)
371 basic_block newbb
= rtl_create_basic_block (head
, end
, after
);
376 /* Delete the insns in a (non-live) block. We physically delete every
377 non-deleted-note insn, and update the flow graph appropriately.
379 Return nonzero if we deleted an exception handler. */
381 /* ??? Preserving all such notes strikes me as wrong. It would be nice
382 to post-process the stream to remove empty blocks, loops, ranges, etc. */
385 rtl_delete_block (basic_block b
)
389 /* If the head of this block is a CODE_LABEL, then it might be the
390 label for an exception handler which can't be reached. We need
391 to remove the label from the exception_handler_label list. */
394 end
= get_last_bb_insn (b
);
396 /* Selectively delete the entire chain. */
398 delete_insn_chain (insn
, end
, true);
402 fprintf (dump_file
, "deleting block %d\n", b
->index
);
403 df_bb_delete (b
->index
);
406 /* Records the basic block struct in BLOCK_FOR_INSN for every insn. */
409 compute_bb_for_insn (void)
415 rtx end
= BB_END (bb
);
418 for (insn
= BB_HEAD (bb
); ; insn
= NEXT_INSN (insn
))
420 BLOCK_FOR_INSN (insn
) = bb
;
427 /* Release the basic_block_for_insn array. */
430 free_bb_for_insn (void)
433 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
434 if (!BARRIER_P (insn
))
435 BLOCK_FOR_INSN (insn
) = NULL
;
440 rest_of_pass_free_cfg (void)
443 /* The resource.c machinery uses DF but the CFG isn't guaranteed to be
444 valid at that point so it would be too late to call df_analyze. */
445 if (optimize
> 0 && flag_delayed_branch
)
447 df_note_add_problem ();
456 struct rtl_opt_pass pass_free_cfg
=
460 "*free_cfg", /* name */
461 OPTGROUP_NONE
, /* optinfo_flags */
463 rest_of_pass_free_cfg
, /* execute */
466 0, /* static_pass_number */
468 0, /* properties_required */
469 0, /* properties_provided */
470 PROP_cfg
, /* properties_destroyed */
471 0, /* todo_flags_start */
472 0, /* todo_flags_finish */
476 /* Return RTX to emit after when we want to emit code on the entry of function. */
478 entry_of_function (void)
480 return (n_basic_blocks
> NUM_FIXED_BLOCKS
?
481 BB_HEAD (ENTRY_BLOCK_PTR
->next_bb
) : get_insns ());
484 /* Emit INSN at the entry point of the function, ensuring that it is only
485 executed once per function. */
487 emit_insn_at_entry (rtx insn
)
489 edge_iterator ei
= ei_start (ENTRY_BLOCK_PTR
->succs
);
490 edge e
= ei_safe_edge (ei
);
491 gcc_assert (e
->flags
& EDGE_FALLTHRU
);
493 insert_insn_on_edge (insn
, e
);
494 commit_edge_insertions ();
497 /* Update BLOCK_FOR_INSN of insns between BEGIN and END
498 (or BARRIER if found) and notify df of the bb change.
499 The insn chain range is inclusive
500 (i.e. both BEGIN and END will be updated. */
503 update_bb_for_insn_chain (rtx begin
, rtx end
, basic_block bb
)
507 end
= NEXT_INSN (end
);
508 for (insn
= begin
; insn
!= end
; insn
= NEXT_INSN (insn
))
509 if (!BARRIER_P (insn
))
510 df_insn_change_bb (insn
, bb
);
513 /* Update BLOCK_FOR_INSN of insns in BB to BB,
514 and notify df of the change. */
517 update_bb_for_insn (basic_block bb
)
519 update_bb_for_insn_chain (BB_HEAD (bb
), BB_END (bb
), bb
);
523 /* Like active_insn_p, except keep the return value clobber around
524 even after reload. */
527 flow_active_insn_p (const_rtx insn
)
529 if (active_insn_p (insn
))
532 /* A clobber of the function return value exists for buggy
533 programs that fail to return a value. Its effect is to
534 keep the return value from being live across the entire
535 function. If we allow it to be skipped, we introduce the
536 possibility for register lifetime confusion. */
537 if (GET_CODE (PATTERN (insn
)) == CLOBBER
538 && REG_P (XEXP (PATTERN (insn
), 0))
539 && REG_FUNCTION_VALUE_P (XEXP (PATTERN (insn
), 0)))
545 /* Return true if the block has no effect and only forwards control flow to
546 its single destination. */
549 contains_no_active_insn_p (const_basic_block bb
)
553 if (bb
== EXIT_BLOCK_PTR
|| bb
== ENTRY_BLOCK_PTR
554 || !single_succ_p (bb
))
557 for (insn
= BB_HEAD (bb
); insn
!= BB_END (bb
); insn
= NEXT_INSN (insn
))
558 if (INSN_P (insn
) && flow_active_insn_p (insn
))
561 return (!INSN_P (insn
)
562 || (JUMP_P (insn
) && simplejump_p (insn
))
563 || !flow_active_insn_p (insn
));
566 /* Likewise, but protect loop latches, headers and preheaders. */
567 /* FIXME: Make this a cfg hook. */
570 forwarder_block_p (const_basic_block bb
)
572 if (!contains_no_active_insn_p (bb
))
575 /* Protect loop latches, headers and preheaders. */
579 if (bb
->loop_father
->header
== bb
)
581 dest
= EDGE_SUCC (bb
, 0)->dest
;
582 if (dest
->loop_father
->header
== dest
)
589 /* Return nonzero if we can reach target from src by falling through. */
590 /* FIXME: Make this a cfg hook. */
593 can_fallthru (basic_block src
, basic_block target
)
595 rtx insn
= BB_END (src
);
600 if (target
== EXIT_BLOCK_PTR
)
602 if (src
->next_bb
!= target
)
604 FOR_EACH_EDGE (e
, ei
, src
->succs
)
605 if (e
->dest
== EXIT_BLOCK_PTR
606 && e
->flags
& EDGE_FALLTHRU
)
609 insn2
= BB_HEAD (target
);
610 if (insn2
&& !active_insn_p (insn2
))
611 insn2
= next_active_insn (insn2
);
613 /* ??? Later we may add code to move jump tables offline. */
614 return next_active_insn (insn
) == insn2
;
617 /* Return nonzero if we could reach target from src by falling through,
618 if the target was made adjacent. If we already have a fall-through
619 edge to the exit block, we can't do that. */
621 could_fall_through (basic_block src
, basic_block target
)
626 if (target
== EXIT_BLOCK_PTR
)
628 FOR_EACH_EDGE (e
, ei
, src
->succs
)
629 if (e
->dest
== EXIT_BLOCK_PTR
630 && e
->flags
& EDGE_FALLTHRU
)
635 /* Return the NOTE_INSN_BASIC_BLOCK of BB. */
637 bb_note (basic_block bb
)
643 note
= NEXT_INSN (note
);
645 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note
));
649 /* Return the INSN immediately following the NOTE_INSN_BASIC_BLOCK
650 note associated with the BLOCK. */
653 first_insn_after_basic_block_note (basic_block block
)
657 /* Get the first instruction in the block. */
658 insn
= BB_HEAD (block
);
660 if (insn
== NULL_RTX
)
663 insn
= NEXT_INSN (insn
);
664 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn
));
666 return NEXT_INSN (insn
);
669 /* Creates a new basic block just after basic block B by splitting
670 everything after specified instruction I. */
673 rtl_split_block (basic_block bb
, void *insnp
)
676 rtx insn
= (rtx
) insnp
;
682 insn
= first_insn_after_basic_block_note (bb
);
688 insn
= PREV_INSN (insn
);
690 /* If the block contains only debug insns, insn would have
691 been NULL in a non-debug compilation, and then we'd end
692 up emitting a DELETED note. For -fcompare-debug
693 stability, emit the note too. */
694 if (insn
!= BB_END (bb
)
695 && DEBUG_INSN_P (next
)
696 && DEBUG_INSN_P (BB_END (bb
)))
698 while (next
!= BB_END (bb
) && DEBUG_INSN_P (next
))
699 next
= NEXT_INSN (next
);
701 if (next
== BB_END (bb
))
702 emit_note_after (NOTE_INSN_DELETED
, next
);
706 insn
= get_last_insn ();
709 /* We probably should check type of the insn so that we do not create
710 inconsistent cfg. It is checked in verify_flow_info anyway, so do not
712 if (insn
== BB_END (bb
))
713 emit_note_after (NOTE_INSN_DELETED
, insn
);
715 /* Create the new basic block. */
716 new_bb
= create_basic_block (NEXT_INSN (insn
), BB_END (bb
), bb
);
717 BB_COPY_PARTITION (new_bb
, bb
);
720 /* Redirect the outgoing edges. */
721 new_bb
->succs
= bb
->succs
;
723 FOR_EACH_EDGE (e
, ei
, new_bb
->succs
)
726 /* The new block starts off being dirty. */
727 df_set_bb_dirty (bb
);
731 /* Return true if the single edge between blocks A and B is the only place
732 in RTL which holds some unique locus. */
735 unique_locus_on_edge_between_p (basic_block a
, basic_block b
)
737 const location_t goto_locus
= EDGE_SUCC (a
, 0)->goto_locus
;
740 if (LOCATION_LOCUS (goto_locus
) == UNKNOWN_LOCATION
)
743 /* First scan block A backward. */
745 end
= PREV_INSN (BB_HEAD (a
));
746 while (insn
!= end
&& (!NONDEBUG_INSN_P (insn
) || !INSN_HAS_LOCATION (insn
)))
747 insn
= PREV_INSN (insn
);
749 if (insn
!= end
&& INSN_LOCATION (insn
) == goto_locus
)
752 /* Then scan block B forward. */
756 end
= NEXT_INSN (BB_END (b
));
757 while (insn
!= end
&& !NONDEBUG_INSN_P (insn
))
758 insn
= NEXT_INSN (insn
);
760 if (insn
!= end
&& INSN_HAS_LOCATION (insn
)
761 && INSN_LOCATION (insn
) == goto_locus
)
768 /* If the single edge between blocks A and B is the only place in RTL which
769 holds some unique locus, emit a nop with that locus between the blocks. */
772 emit_nop_for_unique_locus_between (basic_block a
, basic_block b
)
774 if (!unique_locus_on_edge_between_p (a
, b
))
777 BB_END (a
) = emit_insn_after_noloc (gen_nop (), BB_END (a
), a
);
778 INSN_LOCATION (BB_END (a
)) = EDGE_SUCC (a
, 0)->goto_locus
;
781 /* Blocks A and B are to be merged into a single block A. The insns
782 are already contiguous. */
785 rtl_merge_blocks (basic_block a
, basic_block b
)
787 rtx b_head
= BB_HEAD (b
), b_end
= BB_END (b
), a_end
= BB_END (a
);
788 rtx del_first
= NULL_RTX
, del_last
= NULL_RTX
;
789 rtx b_debug_start
= b_end
, b_debug_end
= b_end
;
790 bool forwarder_p
= (b
->flags
& BB_FORWARDER_BLOCK
) != 0;
794 fprintf (dump_file
, "Merging block %d into block %d...\n", b
->index
,
797 while (DEBUG_INSN_P (b_end
))
798 b_end
= PREV_INSN (b_debug_start
= b_end
);
800 /* If there was a CODE_LABEL beginning B, delete it. */
801 if (LABEL_P (b_head
))
803 /* Detect basic blocks with nothing but a label. This can happen
804 in particular at the end of a function. */
808 del_first
= del_last
= b_head
;
809 b_head
= NEXT_INSN (b_head
);
812 /* Delete the basic block note and handle blocks containing just that
814 if (NOTE_INSN_BASIC_BLOCK_P (b_head
))
822 b_head
= NEXT_INSN (b_head
);
825 /* If there was a jump out of A, delete it. */
830 for (prev
= PREV_INSN (a_end
); ; prev
= PREV_INSN (prev
))
832 || NOTE_INSN_BASIC_BLOCK_P (prev
)
833 || prev
== BB_HEAD (a
))
839 /* If this was a conditional jump, we need to also delete
840 the insn that set cc0. */
841 if (only_sets_cc0_p (prev
))
845 prev
= prev_nonnote_insn (prev
);
852 a_end
= PREV_INSN (del_first
);
854 else if (BARRIER_P (NEXT_INSN (a_end
)))
855 del_first
= NEXT_INSN (a_end
);
857 /* Delete everything marked above as well as crap that might be
858 hanging out between the two blocks. */
860 BB_HEAD (b
) = b_empty
? NULL_RTX
: b_head
;
861 delete_insn_chain (del_first
, del_last
, true);
863 /* When not optimizing CFG and the edge is the only place in RTL which holds
864 some unique locus, emit a nop with that locus in between. */
867 emit_nop_for_unique_locus_between (a
, b
);
871 /* Reassociate the insns of B with A. */
874 update_bb_for_insn_chain (a_end
, b_debug_end
, a
);
876 BB_END (a
) = b_debug_end
;
877 BB_HEAD (b
) = NULL_RTX
;
879 else if (b_end
!= b_debug_end
)
881 /* Move any deleted labels and other notes between the end of A
882 and the debug insns that make up B after the debug insns,
883 bringing the debug insns into A while keeping the notes after
885 if (NEXT_INSN (a_end
) != b_debug_start
)
886 reorder_insns_nobb (NEXT_INSN (a_end
), PREV_INSN (b_debug_start
),
888 update_bb_for_insn_chain (b_debug_start
, b_debug_end
, a
);
889 BB_END (a
) = b_debug_end
;
892 df_bb_delete (b
->index
);
894 /* If B was a forwarder block, propagate the locus on the edge. */
896 && LOCATION_LOCUS (EDGE_SUCC (b
, 0)->goto_locus
) == UNKNOWN_LOCATION
)
897 EDGE_SUCC (b
, 0)->goto_locus
= EDGE_SUCC (a
, 0)->goto_locus
;
900 fprintf (dump_file
, "Merged blocks %d and %d.\n", a
->index
, b
->index
);
904 /* Return true when block A and B can be merged. */
907 rtl_can_merge_blocks (basic_block a
, basic_block b
)
909 /* If we are partitioning hot/cold basic blocks, we don't want to
910 mess up unconditional or indirect jumps that cross between hot
913 Basic block partitioning may result in some jumps that appear to
914 be optimizable (or blocks that appear to be mergeable), but which really
915 must be left untouched (they are required to make it safely across
916 partition boundaries). See the comments at the top of
917 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
919 if (BB_PARTITION (a
) != BB_PARTITION (b
))
922 /* Protect the loop latches. */
923 if (current_loops
&& b
->loop_father
->latch
== b
)
926 /* There must be exactly one edge in between the blocks. */
927 return (single_succ_p (a
)
928 && single_succ (a
) == b
931 /* Must be simple edge. */
932 && !(single_succ_edge (a
)->flags
& EDGE_COMPLEX
)
934 && a
!= ENTRY_BLOCK_PTR
&& b
!= EXIT_BLOCK_PTR
935 /* If the jump insn has side effects,
936 we can't kill the edge. */
937 && (!JUMP_P (BB_END (a
))
939 ? simplejump_p (BB_END (a
)) : onlyjump_p (BB_END (a
)))));
942 /* Return the label in the head of basic block BLOCK. Create one if it doesn't
946 block_label (basic_block block
)
948 if (block
== EXIT_BLOCK_PTR
)
951 if (!LABEL_P (BB_HEAD (block
)))
953 BB_HEAD (block
) = emit_label_before (gen_label_rtx (), BB_HEAD (block
));
956 return BB_HEAD (block
);
959 /* Attempt to perform edge redirection by replacing possibly complex jump
960 instruction by unconditional jump or removing jump completely. This can
961 apply only if all edges now point to the same block. The parameters and
962 return values are equivalent to redirect_edge_and_branch. */
965 try_redirect_by_replacing_jump (edge e
, basic_block target
, bool in_cfglayout
)
967 basic_block src
= e
->src
;
968 rtx insn
= BB_END (src
), kill_from
;
972 /* If we are partitioning hot/cold basic blocks, we don't want to
973 mess up unconditional or indirect jumps that cross between hot
976 Basic block partitioning may result in some jumps that appear to
977 be optimizable (or blocks that appear to be mergeable), but which really
978 must be left untouched (they are required to make it safely across
979 partition boundaries). See the comments at the top of
980 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
982 if (find_reg_note (insn
, REG_CROSSING_JUMP
, NULL_RTX
)
983 || BB_PARTITION (src
) != BB_PARTITION (target
))
986 /* We can replace or remove a complex jump only when we have exactly
987 two edges. Also, if we have exactly one outgoing edge, we can
989 if (EDGE_COUNT (src
->succs
) >= 3
990 /* Verify that all targets will be TARGET. Specifically, the
991 edge that is not E must also go to TARGET. */
992 || (EDGE_COUNT (src
->succs
) == 2
993 && EDGE_SUCC (src
, EDGE_SUCC (src
, 0) == e
)->dest
!= target
))
996 if (!onlyjump_p (insn
))
998 if ((!optimize
|| reload_completed
) && tablejump_p (insn
, NULL
, NULL
))
1001 /* Avoid removing branch with side effects. */
1002 set
= single_set (insn
);
1003 if (!set
|| side_effects_p (set
))
1006 /* In case we zap a conditional jump, we'll need to kill
1007 the cc0 setter too. */
1010 if (reg_mentioned_p (cc0_rtx
, PATTERN (insn
))
1011 && only_sets_cc0_p (PREV_INSN (insn
)))
1012 kill_from
= PREV_INSN (insn
);
1015 /* See if we can create the fallthru edge. */
1016 if (in_cfglayout
|| can_fallthru (src
, target
))
1019 fprintf (dump_file
, "Removing jump %i.\n", INSN_UID (insn
));
1022 /* Selectively unlink whole insn chain. */
1025 rtx insn
= BB_FOOTER (src
);
1027 delete_insn_chain (kill_from
, BB_END (src
), false);
1029 /* Remove barriers but keep jumptables. */
1032 if (BARRIER_P (insn
))
1034 if (PREV_INSN (insn
))
1035 NEXT_INSN (PREV_INSN (insn
)) = NEXT_INSN (insn
);
1037 BB_FOOTER (src
) = NEXT_INSN (insn
);
1038 if (NEXT_INSN (insn
))
1039 PREV_INSN (NEXT_INSN (insn
)) = PREV_INSN (insn
);
1043 insn
= NEXT_INSN (insn
);
1047 delete_insn_chain (kill_from
, PREV_INSN (BB_HEAD (target
)),
1051 /* If this already is simplejump, redirect it. */
1052 else if (simplejump_p (insn
))
1054 if (e
->dest
== target
)
1057 fprintf (dump_file
, "Redirecting jump %i from %i to %i.\n",
1058 INSN_UID (insn
), e
->dest
->index
, target
->index
);
1059 if (!redirect_jump (insn
, block_label (target
), 0))
1061 gcc_assert (target
== EXIT_BLOCK_PTR
);
1066 /* Cannot do anything for target exit block. */
1067 else if (target
== EXIT_BLOCK_PTR
)
1070 /* Or replace possibly complicated jump insn by simple jump insn. */
1073 rtx target_label
= block_label (target
);
1074 rtx barrier
, label
, table
;
1076 emit_jump_insn_after_noloc (gen_jump (target_label
), insn
);
1077 JUMP_LABEL (BB_END (src
)) = target_label
;
1078 LABEL_NUSES (target_label
)++;
1080 fprintf (dump_file
, "Replacing insn %i by jump %i\n",
1081 INSN_UID (insn
), INSN_UID (BB_END (src
)));
1084 delete_insn_chain (kill_from
, insn
, false);
1086 /* Recognize a tablejump that we are converting to a
1087 simple jump and remove its associated CODE_LABEL
1088 and ADDR_VEC or ADDR_DIFF_VEC. */
1089 if (tablejump_p (insn
, &label
, &table
))
1090 delete_insn_chain (label
, table
, false);
1092 barrier
= next_nonnote_insn (BB_END (src
));
1093 if (!barrier
|| !BARRIER_P (barrier
))
1094 emit_barrier_after (BB_END (src
));
1097 if (barrier
!= NEXT_INSN (BB_END (src
)))
1099 /* Move the jump before barrier so that the notes
1100 which originally were or were created before jump table are
1101 inside the basic block. */
1102 rtx new_insn
= BB_END (src
);
1104 update_bb_for_insn_chain (NEXT_INSN (BB_END (src
)),
1105 PREV_INSN (barrier
), src
);
1107 NEXT_INSN (PREV_INSN (new_insn
)) = NEXT_INSN (new_insn
);
1108 PREV_INSN (NEXT_INSN (new_insn
)) = PREV_INSN (new_insn
);
1110 NEXT_INSN (new_insn
) = barrier
;
1111 NEXT_INSN (PREV_INSN (barrier
)) = new_insn
;
1113 PREV_INSN (new_insn
) = PREV_INSN (barrier
);
1114 PREV_INSN (barrier
) = new_insn
;
1119 /* Keep only one edge out and set proper flags. */
1120 if (!single_succ_p (src
))
1122 gcc_assert (single_succ_p (src
));
1124 e
= single_succ_edge (src
);
1126 e
->flags
= EDGE_FALLTHRU
;
1130 e
->probability
= REG_BR_PROB_BASE
;
1131 e
->count
= src
->count
;
1133 if (e
->dest
!= target
)
1134 redirect_edge_succ (e
, target
);
1138 /* Subroutine of redirect_branch_edge that tries to patch the jump
1139 instruction INSN so that it reaches block NEW. Do this
1140 only when it originally reached block OLD. Return true if this
1141 worked or the original target wasn't OLD, return false if redirection
1145 patch_jump_insn (rtx insn
, rtx old_label
, basic_block new_bb
)
1148 /* Recognize a tablejump and adjust all matching cases. */
1149 if (tablejump_p (insn
, NULL
, &tmp
))
1153 rtx new_label
= block_label (new_bb
);
1155 if (new_bb
== EXIT_BLOCK_PTR
)
1157 if (GET_CODE (PATTERN (tmp
)) == ADDR_VEC
)
1158 vec
= XVEC (PATTERN (tmp
), 0);
1160 vec
= XVEC (PATTERN (tmp
), 1);
1162 for (j
= GET_NUM_ELEM (vec
) - 1; j
>= 0; --j
)
1163 if (XEXP (RTVEC_ELT (vec
, j
), 0) == old_label
)
1165 RTVEC_ELT (vec
, j
) = gen_rtx_LABEL_REF (Pmode
, new_label
);
1166 --LABEL_NUSES (old_label
);
1167 ++LABEL_NUSES (new_label
);
1170 /* Handle casesi dispatch insns. */
1171 if ((tmp
= single_set (insn
)) != NULL
1172 && SET_DEST (tmp
) == pc_rtx
1173 && GET_CODE (SET_SRC (tmp
)) == IF_THEN_ELSE
1174 && GET_CODE (XEXP (SET_SRC (tmp
), 2)) == LABEL_REF
1175 && XEXP (XEXP (SET_SRC (tmp
), 2), 0) == old_label
)
1177 XEXP (SET_SRC (tmp
), 2) = gen_rtx_LABEL_REF (Pmode
,
1179 --LABEL_NUSES (old_label
);
1180 ++LABEL_NUSES (new_label
);
1183 else if ((tmp
= extract_asm_operands (PATTERN (insn
))) != NULL
)
1185 int i
, n
= ASM_OPERANDS_LABEL_LENGTH (tmp
);
1186 rtx new_label
, note
;
1188 if (new_bb
== EXIT_BLOCK_PTR
)
1190 new_label
= block_label (new_bb
);
1192 for (i
= 0; i
< n
; ++i
)
1194 rtx old_ref
= ASM_OPERANDS_LABEL (tmp
, i
);
1195 gcc_assert (GET_CODE (old_ref
) == LABEL_REF
);
1196 if (XEXP (old_ref
, 0) == old_label
)
1198 ASM_OPERANDS_LABEL (tmp
, i
)
1199 = gen_rtx_LABEL_REF (Pmode
, new_label
);
1200 --LABEL_NUSES (old_label
);
1201 ++LABEL_NUSES (new_label
);
1205 if (JUMP_LABEL (insn
) == old_label
)
1207 JUMP_LABEL (insn
) = new_label
;
1208 note
= find_reg_note (insn
, REG_LABEL_TARGET
, new_label
);
1210 remove_note (insn
, note
);
1214 note
= find_reg_note (insn
, REG_LABEL_TARGET
, old_label
);
1216 remove_note (insn
, note
);
1217 if (JUMP_LABEL (insn
) != new_label
1218 && !find_reg_note (insn
, REG_LABEL_TARGET
, new_label
))
1219 add_reg_note (insn
, REG_LABEL_TARGET
, new_label
);
1221 while ((note
= find_reg_note (insn
, REG_LABEL_OPERAND
, old_label
))
1223 XEXP (note
, 0) = new_label
;
1227 /* ?? We may play the games with moving the named labels from
1228 one basic block to the other in case only one computed_jump is
1230 if (computed_jump_p (insn
)
1231 /* A return instruction can't be redirected. */
1232 || returnjump_p (insn
))
1235 if (!currently_expanding_to_rtl
|| JUMP_LABEL (insn
) == old_label
)
1237 /* If the insn doesn't go where we think, we're confused. */
1238 gcc_assert (JUMP_LABEL (insn
) == old_label
);
1240 /* If the substitution doesn't succeed, die. This can happen
1241 if the back end emitted unrecognizable instructions or if
1242 target is exit block on some arches. */
1243 if (!redirect_jump (insn
, block_label (new_bb
), 0))
1245 gcc_assert (new_bb
== EXIT_BLOCK_PTR
);
1254 /* Redirect edge representing branch of (un)conditional jump or tablejump,
1257 redirect_branch_edge (edge e
, basic_block target
)
1259 rtx old_label
= BB_HEAD (e
->dest
);
1260 basic_block src
= e
->src
;
1261 rtx insn
= BB_END (src
);
1263 /* We can only redirect non-fallthru edges of jump insn. */
1264 if (e
->flags
& EDGE_FALLTHRU
)
1266 else if (!JUMP_P (insn
) && !currently_expanding_to_rtl
)
1269 if (!currently_expanding_to_rtl
)
1271 if (!patch_jump_insn (insn
, old_label
, target
))
1275 /* When expanding this BB might actually contain multiple
1276 jumps (i.e. not yet split by find_many_sub_basic_blocks).
1277 Redirect all of those that match our label. */
1278 FOR_BB_INSNS (src
, insn
)
1279 if (JUMP_P (insn
) && !patch_jump_insn (insn
, old_label
, target
))
1283 fprintf (dump_file
, "Edge %i->%i redirected to %i\n",
1284 e
->src
->index
, e
->dest
->index
, target
->index
);
1286 if (e
->dest
!= target
)
1287 e
= redirect_edge_succ_nodup (e
, target
);
1292 /* Attempt to change code to redirect edge E to TARGET. Don't do that on
1293 expense of adding new instructions or reordering basic blocks.
1295 Function can be also called with edge destination equivalent to the TARGET.
1296 Then it should try the simplifications and do nothing if none is possible.
1298 Return edge representing the branch if transformation succeeded. Return NULL
1300 We still return NULL in case E already destinated TARGET and we didn't
1301 managed to simplify instruction stream. */
1304 rtl_redirect_edge_and_branch (edge e
, basic_block target
)
1307 basic_block src
= e
->src
;
1309 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
1312 if (e
->dest
== target
)
1315 if ((ret
= try_redirect_by_replacing_jump (e
, target
, false)) != NULL
)
1317 df_set_bb_dirty (src
);
1321 ret
= redirect_branch_edge (e
, target
);
1325 df_set_bb_dirty (src
);
1329 /* Like force_nonfallthru below, but additionally performs redirection
1330 Used by redirect_edge_and_branch_force. JUMP_LABEL is used only
1331 when redirecting to the EXIT_BLOCK, it is either ret_rtx or
1332 simple_return_rtx, indicating which kind of returnjump to create.
1333 It should be NULL otherwise. */
1336 force_nonfallthru_and_redirect (edge e
, basic_block target
, rtx jump_label
)
1338 basic_block jump_block
, new_bb
= NULL
, src
= e
->src
;
1341 int abnormal_edge_flags
= 0;
1342 bool asm_goto_edge
= false;
1345 /* In the case the last instruction is conditional jump to the next
1346 instruction, first redirect the jump itself and then continue
1347 by creating a basic block afterwards to redirect fallthru edge. */
1348 if (e
->src
!= ENTRY_BLOCK_PTR
&& e
->dest
!= EXIT_BLOCK_PTR
1349 && any_condjump_p (BB_END (e
->src
))
1350 && JUMP_LABEL (BB_END (e
->src
)) == BB_HEAD (e
->dest
))
1353 edge b
= unchecked_make_edge (e
->src
, target
, 0);
1356 redirected
= redirect_jump (BB_END (e
->src
), block_label (target
), 0);
1357 gcc_assert (redirected
);
1359 note
= find_reg_note (BB_END (e
->src
), REG_BR_PROB
, NULL_RTX
);
1362 int prob
= INTVAL (XEXP (note
, 0));
1364 b
->probability
= prob
;
1365 b
->count
= e
->count
* prob
/ REG_BR_PROB_BASE
;
1366 e
->probability
-= e
->probability
;
1367 e
->count
-= b
->count
;
1368 if (e
->probability
< 0)
1375 if (e
->flags
& EDGE_ABNORMAL
)
1377 /* Irritating special case - fallthru edge to the same block as abnormal
1379 We can't redirect abnormal edge, but we still can split the fallthru
1380 one and create separate abnormal edge to original destination.
1381 This allows bb-reorder to make such edge non-fallthru. */
1382 gcc_assert (e
->dest
== target
);
1383 abnormal_edge_flags
= e
->flags
& ~EDGE_FALLTHRU
;
1384 e
->flags
&= EDGE_FALLTHRU
;
1388 gcc_assert (e
->flags
& EDGE_FALLTHRU
);
1389 if (e
->src
== ENTRY_BLOCK_PTR
)
1391 /* We can't redirect the entry block. Create an empty block
1392 at the start of the function which we use to add the new
1398 basic_block bb
= create_basic_block (BB_HEAD (e
->dest
), NULL
, ENTRY_BLOCK_PTR
);
1400 /* Change the existing edge's source to be the new block, and add
1401 a new edge from the entry block to the new block. */
1403 for (ei
= ei_start (ENTRY_BLOCK_PTR
->succs
); (tmp
= ei_safe_edge (ei
)); )
1407 ENTRY_BLOCK_PTR
->succs
->unordered_remove (ei
.index
);
1417 vec_safe_push (bb
->succs
, e
);
1418 make_single_succ_edge (ENTRY_BLOCK_PTR
, bb
, EDGE_FALLTHRU
);
1422 /* If e->src ends with asm goto, see if any of the ASM_OPERANDS_LABELs
1423 don't point to the target or fallthru label. */
1424 if (JUMP_P (BB_END (e
->src
))
1425 && target
!= EXIT_BLOCK_PTR
1426 && (e
->flags
& EDGE_FALLTHRU
)
1427 && (note
= extract_asm_operands (PATTERN (BB_END (e
->src
)))))
1429 int i
, n
= ASM_OPERANDS_LABEL_LENGTH (note
);
1430 bool adjust_jump_target
= false;
1432 for (i
= 0; i
< n
; ++i
)
1434 if (XEXP (ASM_OPERANDS_LABEL (note
, i
), 0) == BB_HEAD (e
->dest
))
1436 LABEL_NUSES (XEXP (ASM_OPERANDS_LABEL (note
, i
), 0))--;
1437 XEXP (ASM_OPERANDS_LABEL (note
, i
), 0) = block_label (target
);
1438 LABEL_NUSES (XEXP (ASM_OPERANDS_LABEL (note
, i
), 0))++;
1439 adjust_jump_target
= true;
1441 if (XEXP (ASM_OPERANDS_LABEL (note
, i
), 0) == BB_HEAD (target
))
1442 asm_goto_edge
= true;
1444 if (adjust_jump_target
)
1446 rtx insn
= BB_END (e
->src
), note
;
1447 rtx old_label
= BB_HEAD (e
->dest
);
1448 rtx new_label
= BB_HEAD (target
);
1450 if (JUMP_LABEL (insn
) == old_label
)
1452 JUMP_LABEL (insn
) = new_label
;
1453 note
= find_reg_note (insn
, REG_LABEL_TARGET
, new_label
);
1455 remove_note (insn
, note
);
1459 note
= find_reg_note (insn
, REG_LABEL_TARGET
, old_label
);
1461 remove_note (insn
, note
);
1462 if (JUMP_LABEL (insn
) != new_label
1463 && !find_reg_note (insn
, REG_LABEL_TARGET
, new_label
))
1464 add_reg_note (insn
, REG_LABEL_TARGET
, new_label
);
1466 while ((note
= find_reg_note (insn
, REG_LABEL_OPERAND
, old_label
))
1468 XEXP (note
, 0) = new_label
;
1472 if (EDGE_COUNT (e
->src
->succs
) >= 2 || abnormal_edge_flags
|| asm_goto_edge
)
1474 gcov_type count
= e
->count
;
1475 int probability
= e
->probability
;
1476 /* Create the new structures. */
1478 /* If the old block ended with a tablejump, skip its table
1479 by searching forward from there. Otherwise start searching
1480 forward from the last instruction of the old block. */
1481 if (!tablejump_p (BB_END (e
->src
), NULL
, ¬e
))
1482 note
= BB_END (e
->src
);
1483 note
= NEXT_INSN (note
);
1485 jump_block
= create_basic_block (note
, NULL
, e
->src
);
1486 jump_block
->count
= count
;
1487 jump_block
->frequency
= EDGE_FREQUENCY (e
);
1489 /* Make sure new block ends up in correct hot/cold section. */
1491 BB_COPY_PARTITION (jump_block
, e
->src
);
1492 if (flag_reorder_blocks_and_partition
1493 && targetm_common
.have_named_sections
1494 && JUMP_P (BB_END (jump_block
))
1495 && !any_condjump_p (BB_END (jump_block
))
1496 && (EDGE_SUCC (jump_block
, 0)->flags
& EDGE_CROSSING
))
1497 add_reg_note (BB_END (jump_block
), REG_CROSSING_JUMP
, NULL_RTX
);
1500 new_edge
= make_edge (e
->src
, jump_block
, EDGE_FALLTHRU
);
1501 new_edge
->probability
= probability
;
1502 new_edge
->count
= count
;
1504 /* Redirect old edge. */
1505 redirect_edge_pred (e
, jump_block
);
1506 e
->probability
= REG_BR_PROB_BASE
;
1508 /* If asm goto has any label refs to target's label,
1509 add also edge from asm goto bb to target. */
1512 new_edge
->probability
/= 2;
1513 new_edge
->count
/= 2;
1514 jump_block
->count
/= 2;
1515 jump_block
->frequency
/= 2;
1516 new_edge
= make_edge (new_edge
->src
, target
,
1517 e
->flags
& ~EDGE_FALLTHRU
);
1518 new_edge
->probability
= probability
- probability
/ 2;
1519 new_edge
->count
= count
- count
/ 2;
1522 new_bb
= jump_block
;
1525 jump_block
= e
->src
;
1527 loc
= e
->goto_locus
;
1528 e
->flags
&= ~EDGE_FALLTHRU
;
1529 if (target
== EXIT_BLOCK_PTR
)
1531 if (jump_label
== ret_rtx
)
1534 emit_jump_insn_after_setloc (gen_return (), BB_END (jump_block
), loc
);
1541 gcc_assert (jump_label
== simple_return_rtx
);
1542 #ifdef HAVE_simple_return
1543 emit_jump_insn_after_setloc (gen_simple_return (),
1544 BB_END (jump_block
), loc
);
1549 set_return_jump_label (BB_END (jump_block
));
1553 rtx label
= block_label (target
);
1554 emit_jump_insn_after_setloc (gen_jump (label
), BB_END (jump_block
), loc
);
1555 JUMP_LABEL (BB_END (jump_block
)) = label
;
1556 LABEL_NUSES (label
)++;
1559 emit_barrier_after (BB_END (jump_block
));
1560 redirect_edge_succ_nodup (e
, target
);
1562 if (abnormal_edge_flags
)
1563 make_edge (src
, target
, abnormal_edge_flags
);
1565 df_mark_solutions_dirty ();
1569 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
1570 (and possibly create new basic block) to make edge non-fallthru.
1571 Return newly created BB or NULL if none. */
1574 rtl_force_nonfallthru (edge e
)
1576 return force_nonfallthru_and_redirect (e
, e
->dest
, NULL_RTX
);
1579 /* Redirect edge even at the expense of creating new jump insn or
1580 basic block. Return new basic block if created, NULL otherwise.
1581 Conversion must be possible. */
1584 rtl_redirect_edge_and_branch_force (edge e
, basic_block target
)
1586 if (redirect_edge_and_branch (e
, target
)
1587 || e
->dest
== target
)
1590 /* In case the edge redirection failed, try to force it to be non-fallthru
1591 and redirect newly created simplejump. */
1592 df_set_bb_dirty (e
->src
);
1593 return force_nonfallthru_and_redirect (e
, target
, NULL_RTX
);
1596 /* The given edge should potentially be a fallthru edge. If that is in
1597 fact true, delete the jump and barriers that are in the way. */
1600 rtl_tidy_fallthru_edge (edge e
)
1603 basic_block b
= e
->src
, c
= b
->next_bb
;
1605 /* ??? In a late-running flow pass, other folks may have deleted basic
1606 blocks by nopping out blocks, leaving multiple BARRIERs between here
1607 and the target label. They ought to be chastised and fixed.
1609 We can also wind up with a sequence of undeletable labels between
1610 one block and the next.
1612 So search through a sequence of barriers, labels, and notes for
1613 the head of block C and assert that we really do fall through. */
1615 for (q
= NEXT_INSN (BB_END (b
)); q
!= BB_HEAD (c
); q
= NEXT_INSN (q
))
1619 /* Remove what will soon cease being the jump insn from the source block.
1620 If block B consisted only of this single jump, turn it into a deleted
1625 && (any_uncondjump_p (q
)
1626 || single_succ_p (b
)))
1629 /* If this was a conditional jump, we need to also delete
1630 the insn that set cc0. */
1631 if (any_condjump_p (q
) && only_sets_cc0_p (PREV_INSN (q
)))
1638 /* Selectively unlink the sequence. */
1639 if (q
!= PREV_INSN (BB_HEAD (c
)))
1640 delete_insn_chain (NEXT_INSN (q
), PREV_INSN (BB_HEAD (c
)), false);
1642 e
->flags
|= EDGE_FALLTHRU
;
1645 /* Should move basic block BB after basic block AFTER. NIY. */
1648 rtl_move_block_after (basic_block bb ATTRIBUTE_UNUSED
,
1649 basic_block after ATTRIBUTE_UNUSED
)
1654 /* Split a (typically critical) edge. Return the new block.
1655 The edge must not be abnormal.
1657 ??? The code generally expects to be called on critical edges.
1658 The case of a block ending in an unconditional jump to a
1659 block with multiple predecessors is not handled optimally. */
1662 rtl_split_edge (edge edge_in
)
1667 /* Abnormal edges cannot be split. */
1668 gcc_assert (!(edge_in
->flags
& EDGE_ABNORMAL
));
1670 /* We are going to place the new block in front of edge destination.
1671 Avoid existence of fallthru predecessors. */
1672 if ((edge_in
->flags
& EDGE_FALLTHRU
) == 0)
1674 edge e
= find_fallthru_edge (edge_in
->dest
->preds
);
1677 force_nonfallthru (e
);
1680 /* Create the basic block note. */
1681 if (edge_in
->dest
!= EXIT_BLOCK_PTR
)
1682 before
= BB_HEAD (edge_in
->dest
);
1686 /* If this is a fall through edge to the exit block, the blocks might be
1687 not adjacent, and the right place is after the source. */
1688 if ((edge_in
->flags
& EDGE_FALLTHRU
) && edge_in
->dest
== EXIT_BLOCK_PTR
)
1690 before
= NEXT_INSN (BB_END (edge_in
->src
));
1691 bb
= create_basic_block (before
, NULL
, edge_in
->src
);
1692 BB_COPY_PARTITION (bb
, edge_in
->src
);
1696 bb
= create_basic_block (before
, NULL
, edge_in
->dest
->prev_bb
);
1697 /* ??? Why not edge_in->dest->prev_bb here? */
1698 BB_COPY_PARTITION (bb
, edge_in
->dest
);
1701 make_single_succ_edge (bb
, edge_in
->dest
, EDGE_FALLTHRU
);
1703 /* For non-fallthru edges, we must adjust the predecessor's
1704 jump instruction to target our new block. */
1705 if ((edge_in
->flags
& EDGE_FALLTHRU
) == 0)
1707 edge redirected
= redirect_edge_and_branch (edge_in
, bb
);
1708 gcc_assert (redirected
);
1712 if (edge_in
->src
!= ENTRY_BLOCK_PTR
)
1714 /* For asm goto even splitting of fallthru edge might
1715 need insn patching, as other labels might point to the
1717 rtx last
= BB_END (edge_in
->src
);
1720 && edge_in
->dest
!= EXIT_BLOCK_PTR
1721 && extract_asm_operands (PATTERN (last
)) != NULL_RTX
1722 && patch_jump_insn (last
, before
, bb
))
1723 df_set_bb_dirty (edge_in
->src
);
1725 redirect_edge_succ (edge_in
, bb
);
1731 /* Queue instructions for insertion on an edge between two basic blocks.
1732 The new instructions and basic blocks (if any) will not appear in the
1733 CFG until commit_edge_insertions is called. */
1736 insert_insn_on_edge (rtx pattern
, edge e
)
1738 /* We cannot insert instructions on an abnormal critical edge.
1739 It will be easier to find the culprit if we die now. */
1740 gcc_assert (!((e
->flags
& EDGE_ABNORMAL
) && EDGE_CRITICAL_P (e
)));
1742 if (e
->insns
.r
== NULL_RTX
)
1745 push_to_sequence (e
->insns
.r
);
1747 emit_insn (pattern
);
1749 e
->insns
.r
= get_insns ();
1753 /* Update the CFG for the instructions queued on edge E. */
1756 commit_one_edge_insertion (edge e
)
1758 rtx before
= NULL_RTX
, after
= NULL_RTX
, insns
, tmp
, last
;
1761 /* Pull the insns off the edge now since the edge might go away. */
1763 e
->insns
.r
= NULL_RTX
;
1765 /* Figure out where to put these insns. If the destination has
1766 one predecessor, insert there. Except for the exit block. */
1767 if (single_pred_p (e
->dest
) && e
->dest
!= EXIT_BLOCK_PTR
)
1771 /* Get the location correct wrt a code label, and "nice" wrt
1772 a basic block note, and before everything else. */
1775 tmp
= NEXT_INSN (tmp
);
1776 if (NOTE_INSN_BASIC_BLOCK_P (tmp
))
1777 tmp
= NEXT_INSN (tmp
);
1778 if (tmp
== BB_HEAD (bb
))
1781 after
= PREV_INSN (tmp
);
1783 after
= get_last_insn ();
1786 /* If the source has one successor and the edge is not abnormal,
1787 insert there. Except for the entry block.
1788 Don't do this if the predecessor ends in a jump other than
1789 unconditional simple jump. E.g. for asm goto that points all
1790 its labels at the fallthru basic block, we can't insert instructions
1791 before the asm goto, as the asm goto can have various of side effects,
1792 and can't emit instructions after the asm goto, as it must end
1794 else if ((e
->flags
& EDGE_ABNORMAL
) == 0
1795 && single_succ_p (e
->src
)
1796 && e
->src
!= ENTRY_BLOCK_PTR
1797 && (!JUMP_P (BB_END (e
->src
))
1798 || simplejump_p (BB_END (e
->src
))))
1802 /* It is possible to have a non-simple jump here. Consider a target
1803 where some forms of unconditional jumps clobber a register. This
1804 happens on the fr30 for example.
1806 We know this block has a single successor, so we can just emit
1807 the queued insns before the jump. */
1808 if (JUMP_P (BB_END (bb
)))
1809 before
= BB_END (bb
);
1812 /* We'd better be fallthru, or we've lost track of what's what. */
1813 gcc_assert (e
->flags
& EDGE_FALLTHRU
);
1815 after
= BB_END (bb
);
1819 /* Otherwise we must split the edge. */
1822 bb
= split_edge (e
);
1823 after
= BB_END (bb
);
1825 if (flag_reorder_blocks_and_partition
1826 && targetm_common
.have_named_sections
1827 && e
->src
!= ENTRY_BLOCK_PTR
1828 && BB_PARTITION (e
->src
) == BB_COLD_PARTITION
1829 && !(e
->flags
& EDGE_CROSSING
)
1831 && !any_condjump_p (after
)
1832 && (single_succ_edge (bb
)->flags
& EDGE_CROSSING
))
1833 add_reg_note (after
, REG_CROSSING_JUMP
, NULL_RTX
);
1836 /* Now that we've found the spot, do the insertion. */
1839 emit_insn_before_noloc (insns
, before
, bb
);
1840 last
= prev_nonnote_insn (before
);
1843 last
= emit_insn_after_noloc (insns
, after
, bb
);
1845 if (returnjump_p (last
))
1847 /* ??? Remove all outgoing edges from BB and add one for EXIT.
1848 This is not currently a problem because this only happens
1849 for the (single) epilogue, which already has a fallthru edge
1852 e
= single_succ_edge (bb
);
1853 gcc_assert (e
->dest
== EXIT_BLOCK_PTR
1854 && single_succ_p (bb
) && (e
->flags
& EDGE_FALLTHRU
));
1856 e
->flags
&= ~EDGE_FALLTHRU
;
1857 emit_barrier_after (last
);
1860 delete_insn (before
);
1863 gcc_assert (!JUMP_P (last
));
1866 /* Update the CFG for all queued instructions. */
1869 commit_edge_insertions (void)
1873 #ifdef ENABLE_CHECKING
1874 verify_flow_info ();
1877 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
1882 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1884 commit_one_edge_insertion (e
);
1889 /* Print out RTL-specific basic block information (live information
1890 at start and end with TDF_DETAILS). FLAGS are the TDF_* masks
1891 documented in dumpfile.h. */
1894 rtl_dump_bb (FILE *outf
, basic_block bb
, int indent
, int flags
)
1900 s_indent
= (char *) alloca ((size_t) indent
+ 1);
1901 memset (s_indent
, ' ', (size_t) indent
);
1902 s_indent
[indent
] = '\0';
1904 if (df
&& (flags
& TDF_DETAILS
))
1906 df_dump_top (bb
, outf
);
1910 if (bb
->index
!= ENTRY_BLOCK
&& bb
->index
!= EXIT_BLOCK
)
1911 for (insn
= BB_HEAD (bb
), last
= NEXT_INSN (BB_END (bb
)); insn
!= last
;
1912 insn
= NEXT_INSN (insn
))
1914 if (flags
& TDF_DETAILS
)
1915 df_dump_insn_top (insn
, outf
);
1916 if (! (flags
& TDF_SLIM
))
1917 print_rtl_single (outf
, insn
);
1919 dump_insn_slim (outf
, insn
);
1920 if (flags
& TDF_DETAILS
)
1921 df_dump_insn_bottom (insn
, outf
);
1924 if (df
&& (flags
& TDF_DETAILS
))
1926 df_dump_bottom (bb
, outf
);
1932 /* Like dump_function_to_file, but for RTL. Print out dataflow information
1933 for the start of each basic block. FLAGS are the TDF_* masks documented
1937 print_rtl_with_bb (FILE *outf
, const_rtx rtx_first
, int flags
)
1941 fprintf (outf
, "(nil)\n");
1944 enum bb_state
{ NOT_IN_BB
, IN_ONE_BB
, IN_MULTIPLE_BB
};
1945 int max_uid
= get_max_uid ();
1946 basic_block
*start
= XCNEWVEC (basic_block
, max_uid
);
1947 basic_block
*end
= XCNEWVEC (basic_block
, max_uid
);
1948 enum bb_state
*in_bb_p
= XCNEWVEC (enum bb_state
, max_uid
);
1951 /* After freeing the CFG, we still have BLOCK_FOR_INSN set on most
1952 insns, but the CFG is not maintained so the basic block info
1953 is not reliable. Therefore it's omitted from the dumps. */
1954 if (! (cfun
->curr_properties
& PROP_cfg
))
1955 flags
&= ~TDF_BLOCKS
;
1958 df_dump_start (outf
);
1960 if (flags
& TDF_BLOCKS
)
1962 FOR_EACH_BB_REVERSE (bb
)
1966 start
[INSN_UID (BB_HEAD (bb
))] = bb
;
1967 end
[INSN_UID (BB_END (bb
))] = bb
;
1968 for (x
= BB_HEAD (bb
); x
!= NULL_RTX
; x
= NEXT_INSN (x
))
1970 enum bb_state state
= IN_MULTIPLE_BB
;
1972 if (in_bb_p
[INSN_UID (x
)] == NOT_IN_BB
)
1974 in_bb_p
[INSN_UID (x
)] = state
;
1976 if (x
== BB_END (bb
))
1982 for (tmp_rtx
= rtx_first
; NULL
!= tmp_rtx
; tmp_rtx
= NEXT_INSN (tmp_rtx
))
1984 if (flags
& TDF_BLOCKS
)
1986 bb
= start
[INSN_UID (tmp_rtx
)];
1989 dump_bb_info (outf
, bb
, 0, dump_flags
| TDF_COMMENT
, true, false);
1990 if (df
&& (flags
& TDF_DETAILS
))
1991 df_dump_top (bb
, outf
);
1994 if (in_bb_p
[INSN_UID (tmp_rtx
)] == NOT_IN_BB
1995 && !NOTE_P (tmp_rtx
)
1996 && !BARRIER_P (tmp_rtx
))
1997 fprintf (outf
, ";; Insn is not within a basic block\n");
1998 else if (in_bb_p
[INSN_UID (tmp_rtx
)] == IN_MULTIPLE_BB
)
1999 fprintf (outf
, ";; Insn is in multiple basic blocks\n");
2002 if (flags
& TDF_DETAILS
)
2003 df_dump_insn_top (tmp_rtx
, outf
);
2004 if (! (flags
& TDF_SLIM
))
2005 print_rtl_single (outf
, tmp_rtx
);
2007 dump_insn_slim (outf
, tmp_rtx
);
2008 if (flags
& TDF_DETAILS
)
2009 df_dump_insn_bottom (tmp_rtx
, outf
);
2011 if (flags
& TDF_BLOCKS
)
2013 bb
= end
[INSN_UID (tmp_rtx
)];
2016 dump_bb_info (outf
, bb
, 0, dump_flags
| TDF_COMMENT
, false, true);
2017 if (df
&& (flags
& TDF_DETAILS
))
2018 df_dump_bottom (bb
, outf
);
2030 /* Update the branch probability of BB if a REG_BR_PROB is present. */
2033 update_br_prob_note (basic_block bb
)
2036 if (!JUMP_P (BB_END (bb
)))
2038 note
= find_reg_note (BB_END (bb
), REG_BR_PROB
, NULL_RTX
);
2039 if (!note
|| INTVAL (XEXP (note
, 0)) == BRANCH_EDGE (bb
)->probability
)
2041 XEXP (note
, 0) = GEN_INT (BRANCH_EDGE (bb
)->probability
);
2044 /* Get the last insn associated with block BB (that includes barriers and
2045 tablejumps after BB). */
2047 get_last_bb_insn (basic_block bb
)
2050 rtx end
= BB_END (bb
);
2052 /* Include any jump table following the basic block. */
2053 if (tablejump_p (end
, NULL
, &tmp
))
2056 /* Include any barriers that may follow the basic block. */
2057 tmp
= next_nonnote_insn_bb (end
);
2058 while (tmp
&& BARRIER_P (tmp
))
2061 tmp
= next_nonnote_insn_bb (end
);
2067 /* Verify the CFG and RTL consistency common for both underlying RTL and
2070 Currently it does following checks:
2072 - overlapping of basic blocks
2073 - insns with wrong BLOCK_FOR_INSN pointers
2074 - headers of basic blocks (the NOTE_INSN_BASIC_BLOCK note)
2075 - tails of basic blocks (ensure that boundary is necessary)
2076 - scans body of the basic block for JUMP_INSN, CODE_LABEL
2077 and NOTE_INSN_BASIC_BLOCK
2078 - verify that no fall_thru edge crosses hot/cold partition boundaries
2079 - verify that there are no pending RTL branch predictions
2081 In future it can be extended check a lot of other stuff as well
2082 (reachability of basic blocks, life information, etc. etc.). */
2085 rtl_verify_flow_info_1 (void)
2091 /* Check the general integrity of the basic blocks. */
2092 FOR_EACH_BB_REVERSE (bb
)
2096 if (!(bb
->flags
& BB_RTL
))
2098 error ("BB_RTL flag not set for block %d", bb
->index
);
2102 FOR_BB_INSNS (bb
, insn
)
2103 if (BLOCK_FOR_INSN (insn
) != bb
)
2105 error ("insn %d basic block pointer is %d, should be %d",
2107 BLOCK_FOR_INSN (insn
) ? BLOCK_FOR_INSN (insn
)->index
: 0,
2112 for (insn
= BB_HEADER (bb
); insn
; insn
= NEXT_INSN (insn
))
2113 if (!BARRIER_P (insn
)
2114 && BLOCK_FOR_INSN (insn
) != NULL
)
2116 error ("insn %d in header of bb %d has non-NULL basic block",
2117 INSN_UID (insn
), bb
->index
);
2120 for (insn
= BB_FOOTER (bb
); insn
; insn
= NEXT_INSN (insn
))
2121 if (!BARRIER_P (insn
)
2122 && BLOCK_FOR_INSN (insn
) != NULL
)
2124 error ("insn %d in footer of bb %d has non-NULL basic block",
2125 INSN_UID (insn
), bb
->index
);
2130 /* Now check the basic blocks (boundaries etc.) */
2131 FOR_EACH_BB_REVERSE (bb
)
2133 int n_fallthru
= 0, n_branch
= 0, n_abnormal_call
= 0, n_sibcall
= 0;
2134 int n_eh
= 0, n_abnormal
= 0;
2135 edge e
, fallthru
= NULL
;
2139 if (JUMP_P (BB_END (bb
))
2140 && (note
= find_reg_note (BB_END (bb
), REG_BR_PROB
, NULL_RTX
))
2141 && EDGE_COUNT (bb
->succs
) >= 2
2142 && any_condjump_p (BB_END (bb
)))
2144 if (INTVAL (XEXP (note
, 0)) != BRANCH_EDGE (bb
)->probability
2145 && profile_status
!= PROFILE_ABSENT
)
2147 error ("verify_flow_info: REG_BR_PROB does not match cfg %wi %i",
2148 INTVAL (XEXP (note
, 0)), BRANCH_EDGE (bb
)->probability
);
2152 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2156 if (e
->flags
& EDGE_FALLTHRU
)
2157 n_fallthru
++, fallthru
= e
;
2159 is_crossing
= (BB_PARTITION (e
->src
) != BB_PARTITION (e
->dest
)
2160 && e
->src
!= ENTRY_BLOCK_PTR
2161 && e
->dest
!= EXIT_BLOCK_PTR
);
2162 if (e
->flags
& EDGE_CROSSING
)
2166 error ("EDGE_CROSSING incorrectly set across same section");
2169 if (e
->flags
& EDGE_FALLTHRU
)
2171 error ("fallthru edge crosses section boundary in bb %i",
2175 if (e
->flags
& EDGE_EH
)
2177 error ("EH edge crosses section boundary in bb %i",
2182 else if (is_crossing
)
2184 error ("EDGE_CROSSING missing across section boundary");
2188 if ((e
->flags
& ~(EDGE_DFS_BACK
2190 | EDGE_IRREDUCIBLE_LOOP
2193 | EDGE_PRESERVE
)) == 0)
2196 if (e
->flags
& EDGE_ABNORMAL_CALL
)
2199 if (e
->flags
& EDGE_SIBCALL
)
2202 if (e
->flags
& EDGE_EH
)
2205 if (e
->flags
& EDGE_ABNORMAL
)
2209 if (n_eh
&& !find_reg_note (BB_END (bb
), REG_EH_REGION
, NULL_RTX
))
2211 error ("missing REG_EH_REGION note at the end of bb %i", bb
->index
);
2216 error ("too many exception handling edges in bb %i", bb
->index
);
2220 && (!JUMP_P (BB_END (bb
))
2221 || (n_branch
> 1 && (any_uncondjump_p (BB_END (bb
))
2222 || any_condjump_p (BB_END (bb
))))))
2224 error ("too many outgoing branch edges from bb %i", bb
->index
);
2227 if (n_fallthru
&& any_uncondjump_p (BB_END (bb
)))
2229 error ("fallthru edge after unconditional jump in bb %i", bb
->index
);
2232 if (n_branch
!= 1 && any_uncondjump_p (BB_END (bb
)))
2234 error ("wrong number of branch edges after unconditional jump"
2235 " in bb %i", bb
->index
);
2238 if (n_branch
!= 1 && any_condjump_p (BB_END (bb
))
2239 && JUMP_LABEL (BB_END (bb
)) != BB_HEAD (fallthru
->dest
))
2241 error ("wrong amount of branch edges after conditional jump"
2242 " in bb %i", bb
->index
);
2245 if (n_abnormal_call
&& !CALL_P (BB_END (bb
)))
2247 error ("abnormal call edges for non-call insn in bb %i", bb
->index
);
2250 if (n_sibcall
&& !CALL_P (BB_END (bb
)))
2252 error ("sibcall edges for non-call insn in bb %i", bb
->index
);
2255 if (n_abnormal
> n_eh
2256 && !(CALL_P (BB_END (bb
))
2257 && n_abnormal
== n_abnormal_call
+ n_sibcall
)
2258 && (!JUMP_P (BB_END (bb
))
2259 || any_condjump_p (BB_END (bb
))
2260 || any_uncondjump_p (BB_END (bb
))))
2262 error ("abnormal edges for no purpose in bb %i", bb
->index
);
2266 for (x
= BB_HEAD (bb
); x
!= NEXT_INSN (BB_END (bb
)); x
= NEXT_INSN (x
))
2267 /* We may have a barrier inside a basic block before dead code
2268 elimination. There is no BLOCK_FOR_INSN field in a barrier. */
2269 if (!BARRIER_P (x
) && BLOCK_FOR_INSN (x
) != bb
)
2272 if (! BLOCK_FOR_INSN (x
))
2274 ("insn %d inside basic block %d but block_for_insn is NULL",
2275 INSN_UID (x
), bb
->index
);
2278 ("insn %d inside basic block %d but block_for_insn is %i",
2279 INSN_UID (x
), bb
->index
, BLOCK_FOR_INSN (x
)->index
);
2284 /* OK pointers are correct. Now check the header of basic
2285 block. It ought to contain optional CODE_LABEL followed
2286 by NOTE_BASIC_BLOCK. */
2290 if (BB_END (bb
) == x
)
2292 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2300 if (!NOTE_INSN_BASIC_BLOCK_P (x
) || NOTE_BASIC_BLOCK (x
) != bb
)
2302 error ("NOTE_INSN_BASIC_BLOCK is missing for block %d",
2307 if (BB_END (bb
) == x
)
2308 /* Do checks for empty blocks here. */
2311 for (x
= NEXT_INSN (x
); x
; x
= NEXT_INSN (x
))
2313 if (NOTE_INSN_BASIC_BLOCK_P (x
))
2315 error ("NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d",
2316 INSN_UID (x
), bb
->index
);
2320 if (x
== BB_END (bb
))
2323 if (control_flow_insn_p (x
))
2325 error ("in basic block %d:", bb
->index
);
2326 fatal_insn ("flow control insn inside a basic block", x
);
2335 /* Verify the CFG and RTL consistency common for both underlying RTL and
2338 Currently it does following checks:
2339 - all checks of rtl_verify_flow_info_1
2340 - test head/end pointers
2341 - check that all insns are in the basic blocks
2342 (except the switch handling code, barriers and notes)
2343 - check that all returns are followed by barriers
2344 - check that all fallthru edge points to the adjacent blocks. */
2347 rtl_verify_flow_info (void)
2350 int err
= rtl_verify_flow_info_1 ();
2352 rtx last_head
= get_last_insn ();
2353 basic_block
*bb_info
;
2355 const rtx rtx_first
= get_insns ();
2356 basic_block last_bb_seen
= ENTRY_BLOCK_PTR
, curr_bb
= NULL
;
2357 const int max_uid
= get_max_uid ();
2359 bb_info
= XCNEWVEC (basic_block
, max_uid
);
2361 FOR_EACH_BB_REVERSE (bb
)
2364 rtx head
= BB_HEAD (bb
);
2365 rtx end
= BB_END (bb
);
2367 for (x
= last_head
; x
!= NULL_RTX
; x
= PREV_INSN (x
))
2369 /* Verify the end of the basic block is in the INSN chain. */
2373 /* And that the code outside of basic blocks has NULL bb field. */
2375 && BLOCK_FOR_INSN (x
) != NULL
)
2377 error ("insn %d outside of basic blocks has non-NULL bb field",
2385 error ("end insn %d for block %d not found in the insn stream",
2386 INSN_UID (end
), bb
->index
);
2390 /* Work backwards from the end to the head of the basic block
2391 to verify the head is in the RTL chain. */
2392 for (; x
!= NULL_RTX
; x
= PREV_INSN (x
))
2394 /* While walking over the insn chain, verify insns appear
2395 in only one basic block. */
2396 if (bb_info
[INSN_UID (x
)] != NULL
)
2398 error ("insn %d is in multiple basic blocks (%d and %d)",
2399 INSN_UID (x
), bb
->index
, bb_info
[INSN_UID (x
)]->index
);
2403 bb_info
[INSN_UID (x
)] = bb
;
2410 error ("head insn %d for block %d not found in the insn stream",
2411 INSN_UID (head
), bb
->index
);
2415 last_head
= PREV_INSN (x
);
2417 e
= find_fallthru_edge (bb
->succs
);
2422 /* Ensure existence of barrier in BB with no fallthru edges. */
2423 for (insn
= NEXT_INSN (BB_END (bb
)); ; insn
= NEXT_INSN (insn
))
2425 if (!insn
|| NOTE_INSN_BASIC_BLOCK_P (insn
))
2427 error ("missing barrier after block %i", bb
->index
);
2431 if (BARRIER_P (insn
))
2435 else if (e
->src
!= ENTRY_BLOCK_PTR
2436 && e
->dest
!= EXIT_BLOCK_PTR
)
2440 if (e
->src
->next_bb
!= e
->dest
)
2443 ("verify_flow_info: Incorrect blocks for fallthru %i->%i",
2444 e
->src
->index
, e
->dest
->index
);
2448 for (insn
= NEXT_INSN (BB_END (e
->src
)); insn
!= BB_HEAD (e
->dest
);
2449 insn
= NEXT_INSN (insn
))
2450 if (BARRIER_P (insn
) || INSN_P (insn
))
2452 error ("verify_flow_info: Incorrect fallthru %i->%i",
2453 e
->src
->index
, e
->dest
->index
);
2454 fatal_insn ("wrong insn in the fallthru edge", insn
);
2460 for (x
= last_head
; x
!= NULL_RTX
; x
= PREV_INSN (x
))
2462 /* Check that the code before the first basic block has NULL
2465 && BLOCK_FOR_INSN (x
) != NULL
)
2467 error ("insn %d outside of basic blocks has non-NULL bb field",
2475 last_bb_seen
= ENTRY_BLOCK_PTR
;
2477 for (x
= rtx_first
; x
; x
= NEXT_INSN (x
))
2479 if (NOTE_INSN_BASIC_BLOCK_P (x
))
2481 bb
= NOTE_BASIC_BLOCK (x
);
2484 if (bb
!= last_bb_seen
->next_bb
)
2485 internal_error ("basic blocks not laid down consecutively");
2487 curr_bb
= last_bb_seen
= bb
;
2492 switch (GET_CODE (x
))
2499 /* An addr_vec is placed outside any basic block. */
2501 && JUMP_TABLE_DATA_P (NEXT_INSN (x
)))
2504 /* But in any case, non-deletable labels can appear anywhere. */
2508 fatal_insn ("insn outside basic block", x
);
2513 && returnjump_p (x
) && ! condjump_p (x
)
2514 && ! (next_nonnote_insn (x
) && BARRIER_P (next_nonnote_insn (x
))))
2515 fatal_insn ("return not followed by barrier", x
);
2516 if (curr_bb
&& x
== BB_END (curr_bb
))
2520 if (num_bb_notes
!= n_basic_blocks
- NUM_FIXED_BLOCKS
)
2522 ("number of bb notes in insn chain (%d) != n_basic_blocks (%d)",
2523 num_bb_notes
, n_basic_blocks
);
2528 /* Assume that the preceding pass has possibly eliminated jump instructions
2529 or converted the unconditional jumps. Eliminate the edges from CFG.
2530 Return true if any edges are eliminated. */
2533 purge_dead_edges (basic_block bb
)
2536 rtx insn
= BB_END (bb
), note
;
2537 bool purged
= false;
2541 if (DEBUG_INSN_P (insn
) && insn
!= BB_HEAD (bb
))
2543 insn
= PREV_INSN (insn
);
2544 while ((DEBUG_INSN_P (insn
) || NOTE_P (insn
)) && insn
!= BB_HEAD (bb
));
2546 /* If this instruction cannot trap, remove REG_EH_REGION notes. */
2547 if (NONJUMP_INSN_P (insn
)
2548 && (note
= find_reg_note (insn
, REG_EH_REGION
, NULL
)))
2552 if (! may_trap_p (PATTERN (insn
))
2553 || ((eqnote
= find_reg_equal_equiv_note (insn
))
2554 && ! may_trap_p (XEXP (eqnote
, 0))))
2555 remove_note (insn
, note
);
2558 /* Cleanup abnormal edges caused by exceptions or non-local gotos. */
2559 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
2561 bool remove
= false;
2563 /* There are three types of edges we need to handle correctly here: EH
2564 edges, abnormal call EH edges, and abnormal call non-EH edges. The
2565 latter can appear when nonlocal gotos are used. */
2566 if (e
->flags
& EDGE_ABNORMAL_CALL
)
2570 else if (can_nonlocal_goto (insn
))
2572 else if ((e
->flags
& EDGE_EH
) && can_throw_internal (insn
))
2574 else if (flag_tm
&& find_reg_note (insn
, REG_TM
, NULL
))
2579 else if (e
->flags
& EDGE_EH
)
2580 remove
= !can_throw_internal (insn
);
2585 df_set_bb_dirty (bb
);
2598 /* We do care only about conditional jumps and simplejumps. */
2599 if (!any_condjump_p (insn
)
2600 && !returnjump_p (insn
)
2601 && !simplejump_p (insn
))
2604 /* Branch probability/prediction notes are defined only for
2605 condjumps. We've possibly turned condjump into simplejump. */
2606 if (simplejump_p (insn
))
2608 note
= find_reg_note (insn
, REG_BR_PROB
, NULL
);
2610 remove_note (insn
, note
);
2611 while ((note
= find_reg_note (insn
, REG_BR_PRED
, NULL
)))
2612 remove_note (insn
, note
);
2615 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
2617 /* Avoid abnormal flags to leak from computed jumps turned
2618 into simplejumps. */
2620 e
->flags
&= ~EDGE_ABNORMAL
;
2622 /* See if this edge is one we should keep. */
2623 if ((e
->flags
& EDGE_FALLTHRU
) && any_condjump_p (insn
))
2624 /* A conditional jump can fall through into the next
2625 block, so we should keep the edge. */
2630 else if (e
->dest
!= EXIT_BLOCK_PTR
2631 && BB_HEAD (e
->dest
) == JUMP_LABEL (insn
))
2632 /* If the destination block is the target of the jump,
2638 else if (e
->dest
== EXIT_BLOCK_PTR
&& returnjump_p (insn
))
2639 /* If the destination block is the exit block, and this
2640 instruction is a return, then keep the edge. */
2645 else if ((e
->flags
& EDGE_EH
) && can_throw_internal (insn
))
2646 /* Keep the edges that correspond to exceptions thrown by
2647 this instruction and rematerialize the EDGE_ABNORMAL
2648 flag we just cleared above. */
2650 e
->flags
|= EDGE_ABNORMAL
;
2655 /* We do not need this edge. */
2656 df_set_bb_dirty (bb
);
2661 if (EDGE_COUNT (bb
->succs
) == 0 || !purged
)
2665 fprintf (dump_file
, "Purged edges from bb %i\n", bb
->index
);
2670 /* Redistribute probabilities. */
2671 if (single_succ_p (bb
))
2673 single_succ_edge (bb
)->probability
= REG_BR_PROB_BASE
;
2674 single_succ_edge (bb
)->count
= bb
->count
;
2678 note
= find_reg_note (insn
, REG_BR_PROB
, NULL
);
2682 b
= BRANCH_EDGE (bb
);
2683 f
= FALLTHRU_EDGE (bb
);
2684 b
->probability
= INTVAL (XEXP (note
, 0));
2685 f
->probability
= REG_BR_PROB_BASE
- b
->probability
;
2686 b
->count
= bb
->count
* b
->probability
/ REG_BR_PROB_BASE
;
2687 f
->count
= bb
->count
* f
->probability
/ REG_BR_PROB_BASE
;
2692 else if (CALL_P (insn
) && SIBLING_CALL_P (insn
))
2694 /* First, there should not be any EH or ABCALL edges resulting
2695 from non-local gotos and the like. If there were, we shouldn't
2696 have created the sibcall in the first place. Second, there
2697 should of course never have been a fallthru edge. */
2698 gcc_assert (single_succ_p (bb
));
2699 gcc_assert (single_succ_edge (bb
)->flags
2700 == (EDGE_SIBCALL
| EDGE_ABNORMAL
));
2705 /* If we don't see a jump insn, we don't know exactly why the block would
2706 have been broken at this point. Look for a simple, non-fallthru edge,
2707 as these are only created by conditional branches. If we find such an
2708 edge we know that there used to be a jump here and can then safely
2709 remove all non-fallthru edges. */
2711 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2712 if (! (e
->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
)))
2721 /* Remove all but the fake and fallthru edges. The fake edge may be
2722 the only successor for this block in the case of noreturn
2724 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
2726 if (!(e
->flags
& (EDGE_FALLTHRU
| EDGE_FAKE
)))
2728 df_set_bb_dirty (bb
);
2736 gcc_assert (single_succ_p (bb
));
2738 single_succ_edge (bb
)->probability
= REG_BR_PROB_BASE
;
2739 single_succ_edge (bb
)->count
= bb
->count
;
2742 fprintf (dump_file
, "Purged non-fallthru edges from bb %i\n",
2747 /* Search all basic blocks for potentially dead edges and purge them. Return
2748 true if some edge has been eliminated. */
2751 purge_all_dead_edges (void)
2758 bool purged_here
= purge_dead_edges (bb
);
2760 purged
|= purged_here
;
2766 /* This is used by a few passes that emit some instructions after abnormal
2767 calls, moving the basic block's end, while they in fact do want to emit
2768 them on the fallthru edge. Look for abnormal call edges, find backward
2769 the call in the block and insert the instructions on the edge instead.
2771 Similarly, handle instructions throwing exceptions internally.
2773 Return true when instructions have been found and inserted on edges. */
2776 fixup_abnormal_edges (void)
2778 bool inserted
= false;
2786 /* Look for cases we are interested in - calls or instructions causing
2788 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2789 if ((e
->flags
& EDGE_ABNORMAL_CALL
)
2790 || ((e
->flags
& (EDGE_ABNORMAL
| EDGE_EH
))
2791 == (EDGE_ABNORMAL
| EDGE_EH
)))
2794 if (e
&& !CALL_P (BB_END (bb
)) && !can_throw_internal (BB_END (bb
)))
2798 /* Get past the new insns generated. Allow notes, as the insns
2799 may be already deleted. */
2801 while ((NONJUMP_INSN_P (insn
) || NOTE_P (insn
))
2802 && !can_throw_internal (insn
)
2803 && insn
!= BB_HEAD (bb
))
2804 insn
= PREV_INSN (insn
);
2806 if (CALL_P (insn
) || can_throw_internal (insn
))
2810 e
= find_fallthru_edge (bb
->succs
);
2812 stop
= NEXT_INSN (BB_END (bb
));
2815 for (insn
= NEXT_INSN (insn
); insn
!= stop
; insn
= next
)
2817 next
= NEXT_INSN (insn
);
2822 /* Sometimes there's still the return value USE.
2823 If it's placed after a trapping call (i.e. that
2824 call is the last insn anyway), we have no fallthru
2825 edge. Simply delete this use and don't try to insert
2826 on the non-existent edge. */
2827 if (GET_CODE (PATTERN (insn
)) != USE
)
2829 /* We're not deleting it, we're moving it. */
2830 INSN_DELETED_P (insn
) = 0;
2831 PREV_INSN (insn
) = NULL_RTX
;
2832 NEXT_INSN (insn
) = NULL_RTX
;
2834 insert_insn_on_edge (insn
, e
);
2838 else if (!BARRIER_P (insn
))
2839 set_block_for_insn (insn
, NULL
);
2843 /* It may be that we don't find any trapping insn. In this
2844 case we discovered quite late that the insn that had been
2845 marked as can_throw_internal in fact couldn't trap at all.
2846 So we should in fact delete the EH edges out of the block. */
2848 purge_dead_edges (bb
);
2855 /* Cut the insns from FIRST to LAST out of the insns stream. */
2858 unlink_insn_chain (rtx first
, rtx last
)
2860 rtx prevfirst
= PREV_INSN (first
);
2861 rtx nextlast
= NEXT_INSN (last
);
2863 PREV_INSN (first
) = NULL
;
2864 NEXT_INSN (last
) = NULL
;
2866 NEXT_INSN (prevfirst
) = nextlast
;
2868 PREV_INSN (nextlast
) = prevfirst
;
2870 set_last_insn (prevfirst
);
2872 set_first_insn (nextlast
);
2876 /* Skip over inter-block insns occurring after BB which are typically
2877 associated with BB (e.g., barriers). If there are any such insns,
2878 we return the last one. Otherwise, we return the end of BB. */
2881 skip_insns_after_block (basic_block bb
)
2883 rtx insn
, last_insn
, next_head
, prev
;
2885 next_head
= NULL_RTX
;
2886 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
2887 next_head
= BB_HEAD (bb
->next_bb
);
2889 for (last_insn
= insn
= BB_END (bb
); (insn
= NEXT_INSN (insn
)) != 0; )
2891 if (insn
== next_head
)
2894 switch (GET_CODE (insn
))
2901 switch (NOTE_KIND (insn
))
2903 case NOTE_INSN_BLOCK_END
:
2913 if (NEXT_INSN (insn
)
2914 && JUMP_TABLE_DATA_P (NEXT_INSN (insn
)))
2916 insn
= NEXT_INSN (insn
);
2929 /* It is possible to hit contradictory sequence. For instance:
2935 Where barrier belongs to jump_insn, but the note does not. This can be
2936 created by removing the basic block originally following
2937 NOTE_INSN_BLOCK_BEG. In such case reorder the notes. */
2939 for (insn
= last_insn
; insn
!= BB_END (bb
); insn
= prev
)
2941 prev
= PREV_INSN (insn
);
2943 switch (NOTE_KIND (insn
))
2945 case NOTE_INSN_BLOCK_END
:
2948 case NOTE_INSN_DELETED
:
2949 case NOTE_INSN_DELETED_LABEL
:
2950 case NOTE_INSN_DELETED_DEBUG_LABEL
:
2953 reorder_insns (insn
, insn
, last_insn
);
2960 /* Locate or create a label for a given basic block. */
2963 label_for_bb (basic_block bb
)
2965 rtx label
= BB_HEAD (bb
);
2967 if (!LABEL_P (label
))
2970 fprintf (dump_file
, "Emitting label for block %d\n", bb
->index
);
2972 label
= block_label (bb
);
2978 /* Locate the effective beginning and end of the insn chain for each
2979 block, as defined by skip_insns_after_block above. */
2982 record_effective_endpoints (void)
2988 for (insn
= get_insns ();
2991 && NOTE_KIND (insn
) != NOTE_INSN_BASIC_BLOCK
;
2992 insn
= NEXT_INSN (insn
))
2994 /* No basic blocks at all? */
2997 if (PREV_INSN (insn
))
2998 cfg_layout_function_header
=
2999 unlink_insn_chain (get_insns (), PREV_INSN (insn
));
3001 cfg_layout_function_header
= NULL_RTX
;
3003 next_insn
= get_insns ();
3008 if (PREV_INSN (BB_HEAD (bb
)) && next_insn
!= BB_HEAD (bb
))
3009 BB_HEADER (bb
) = unlink_insn_chain (next_insn
,
3010 PREV_INSN (BB_HEAD (bb
)));
3011 end
= skip_insns_after_block (bb
);
3012 if (NEXT_INSN (BB_END (bb
)) && BB_END (bb
) != end
)
3013 BB_FOOTER (bb
) = unlink_insn_chain (NEXT_INSN (BB_END (bb
)), end
);
3014 next_insn
= NEXT_INSN (BB_END (bb
));
3017 cfg_layout_function_footer
= next_insn
;
3018 if (cfg_layout_function_footer
)
3019 cfg_layout_function_footer
= unlink_insn_chain (cfg_layout_function_footer
, get_last_insn ());
3023 into_cfg_layout_mode (void)
3025 cfg_layout_initialize (0);
3030 outof_cfg_layout_mode (void)
3035 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
3036 bb
->aux
= bb
->next_bb
;
3038 cfg_layout_finalize ();
3043 struct rtl_opt_pass pass_into_cfg_layout_mode
=
3047 "into_cfglayout", /* name */
3048 OPTGROUP_NONE
, /* optinfo_flags */
3050 into_cfg_layout_mode
, /* execute */
3053 0, /* static_pass_number */
3055 0, /* properties_required */
3056 PROP_cfglayout
, /* properties_provided */
3057 0, /* properties_destroyed */
3058 0, /* todo_flags_start */
3059 0 /* todo_flags_finish */
3063 struct rtl_opt_pass pass_outof_cfg_layout_mode
=
3067 "outof_cfglayout", /* name */
3068 OPTGROUP_NONE
, /* optinfo_flags */
3070 outof_cfg_layout_mode
, /* execute */
3073 0, /* static_pass_number */
3075 0, /* properties_required */
3076 0, /* properties_provided */
3077 PROP_cfglayout
, /* properties_destroyed */
3078 0, /* todo_flags_start */
3079 0 /* todo_flags_finish */
3084 /* Link the basic blocks in the correct order, compacting the basic
3085 block queue while at it. If STAY_IN_CFGLAYOUT_MODE is false, this
3086 function also clears the basic block header and footer fields.
3088 This function is usually called after a pass (e.g. tracer) finishes
3089 some transformations while in cfglayout mode. The required sequence
3090 of the basic blocks is in a linked list along the bb->aux field.
3091 This functions re-links the basic block prev_bb and next_bb pointers
3092 accordingly, and it compacts and renumbers the blocks.
3094 FIXME: This currently works only for RTL, but the only RTL-specific
3095 bits are the STAY_IN_CFGLAYOUT_MODE bits. The tracer pass was moved
3096 to GIMPLE a long time ago, but it doesn't relink the basic block
3097 chain. It could do that (to give better initial RTL) if this function
3098 is made IR-agnostic (and moved to cfganal.c or cfg.c while at it). */
3101 relink_block_chain (bool stay_in_cfglayout_mode
)
3103 basic_block bb
, prev_bb
;
3106 /* Maybe dump the re-ordered sequence. */
3109 fprintf (dump_file
, "Reordered sequence:\n");
3110 for (bb
= ENTRY_BLOCK_PTR
->next_bb
, index
= NUM_FIXED_BLOCKS
;
3112 bb
= (basic_block
) bb
->aux
, index
++)
3114 fprintf (dump_file
, " %i ", index
);
3115 if (get_bb_original (bb
))
3116 fprintf (dump_file
, "duplicate of %i ",
3117 get_bb_original (bb
)->index
);
3118 else if (forwarder_block_p (bb
)
3119 && !LABEL_P (BB_HEAD (bb
)))
3120 fprintf (dump_file
, "compensation ");
3122 fprintf (dump_file
, "bb %i ", bb
->index
);
3123 fprintf (dump_file
, " [%i]\n", bb
->frequency
);
3127 /* Now reorder the blocks. */
3128 prev_bb
= ENTRY_BLOCK_PTR
;
3129 bb
= ENTRY_BLOCK_PTR
->next_bb
;
3130 for (; bb
; prev_bb
= bb
, bb
= (basic_block
) bb
->aux
)
3132 bb
->prev_bb
= prev_bb
;
3133 prev_bb
->next_bb
= bb
;
3135 prev_bb
->next_bb
= EXIT_BLOCK_PTR
;
3136 EXIT_BLOCK_PTR
->prev_bb
= prev_bb
;
3138 /* Then, clean up the aux fields. */
3142 if (!stay_in_cfglayout_mode
)
3143 BB_HEADER (bb
) = BB_FOOTER (bb
) = NULL
;
3146 /* Maybe reset the original copy tables, they are not valid anymore
3147 when we renumber the basic blocks in compact_blocks. If we are
3148 are going out of cfglayout mode, don't re-allocate the tables. */
3149 free_original_copy_tables ();
3150 if (stay_in_cfglayout_mode
)
3151 initialize_original_copy_tables ();
3153 /* Finally, put basic_block_info in the new order. */
3158 /* Given a reorder chain, rearrange the code to match. */
3161 fixup_reorder_chain (void)
3166 if (cfg_layout_function_header
)
3168 set_first_insn (cfg_layout_function_header
);
3169 insn
= cfg_layout_function_header
;
3170 while (NEXT_INSN (insn
))
3171 insn
= NEXT_INSN (insn
);
3174 /* First do the bulk reordering -- rechain the blocks without regard to
3175 the needed changes to jumps and labels. */
3177 for (bb
= ENTRY_BLOCK_PTR
->next_bb
; bb
; bb
= (basic_block
) bb
->aux
)
3182 NEXT_INSN (insn
) = BB_HEADER (bb
);
3184 set_first_insn (BB_HEADER (bb
));
3185 PREV_INSN (BB_HEADER (bb
)) = insn
;
3186 insn
= BB_HEADER (bb
);
3187 while (NEXT_INSN (insn
))
3188 insn
= NEXT_INSN (insn
);
3191 NEXT_INSN (insn
) = BB_HEAD (bb
);
3193 set_first_insn (BB_HEAD (bb
));
3194 PREV_INSN (BB_HEAD (bb
)) = insn
;
3198 NEXT_INSN (insn
) = BB_FOOTER (bb
);
3199 PREV_INSN (BB_FOOTER (bb
)) = insn
;
3200 while (NEXT_INSN (insn
))
3201 insn
= NEXT_INSN (insn
);
3205 NEXT_INSN (insn
) = cfg_layout_function_footer
;
3206 if (cfg_layout_function_footer
)
3207 PREV_INSN (cfg_layout_function_footer
) = insn
;
3209 while (NEXT_INSN (insn
))
3210 insn
= NEXT_INSN (insn
);
3212 set_last_insn (insn
);
3213 #ifdef ENABLE_CHECKING
3214 verify_insn_chain ();
3217 /* Now add jumps and labels as needed to match the blocks new
3220 for (bb
= ENTRY_BLOCK_PTR
->next_bb
; bb
; bb
= (basic_block
) bb
->aux
)
3222 edge e_fall
, e_taken
, e
;
3224 rtx ret_label
= NULL_RTX
;
3225 basic_block nb
, src_bb
;
3228 if (EDGE_COUNT (bb
->succs
) == 0)
3231 /* Find the old fallthru edge, and another non-EH edge for
3233 e_taken
= e_fall
= NULL
;
3235 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
3236 if (e
->flags
& EDGE_FALLTHRU
)
3238 else if (! (e
->flags
& EDGE_EH
))
3241 bb_end_insn
= BB_END (bb
);
3242 if (JUMP_P (bb_end_insn
))
3244 ret_label
= JUMP_LABEL (bb_end_insn
);
3245 if (any_condjump_p (bb_end_insn
))
3247 /* This might happen if the conditional jump has side
3248 effects and could therefore not be optimized away.
3249 Make the basic block to end with a barrier in order
3250 to prevent rtl_verify_flow_info from complaining. */
3253 gcc_assert (!onlyjump_p (bb_end_insn
)
3254 || returnjump_p (bb_end_insn
));
3255 BB_FOOTER (bb
) = emit_barrier_after (bb_end_insn
);
3259 /* If the old fallthru is still next, nothing to do. */
3260 if (bb
->aux
== e_fall
->dest
3261 || e_fall
->dest
== EXIT_BLOCK_PTR
)
3264 /* The degenerated case of conditional jump jumping to the next
3265 instruction can happen for jumps with side effects. We need
3266 to construct a forwarder block and this will be done just
3267 fine by force_nonfallthru below. */
3271 /* There is another special case: if *neither* block is next,
3272 such as happens at the very end of a function, then we'll
3273 need to add a new unconditional jump. Choose the taken
3274 edge based on known or assumed probability. */
3275 else if (bb
->aux
!= e_taken
->dest
)
3277 rtx note
= find_reg_note (bb_end_insn
, REG_BR_PROB
, 0);
3280 && INTVAL (XEXP (note
, 0)) < REG_BR_PROB_BASE
/ 2
3281 && invert_jump (bb_end_insn
,
3282 (e_fall
->dest
== EXIT_BLOCK_PTR
3284 : label_for_bb (e_fall
->dest
)), 0))
3286 e_fall
->flags
&= ~EDGE_FALLTHRU
;
3287 gcc_checking_assert (could_fall_through
3288 (e_taken
->src
, e_taken
->dest
));
3289 e_taken
->flags
|= EDGE_FALLTHRU
;
3290 update_br_prob_note (bb
);
3291 e
= e_fall
, e_fall
= e_taken
, e_taken
= e
;
3295 /* If the "jumping" edge is a crossing edge, and the fall
3296 through edge is non-crossing, leave things as they are. */
3297 else if ((e_taken
->flags
& EDGE_CROSSING
)
3298 && !(e_fall
->flags
& EDGE_CROSSING
))
3301 /* Otherwise we can try to invert the jump. This will
3302 basically never fail, however, keep up the pretense. */
3303 else if (invert_jump (bb_end_insn
,
3304 (e_fall
->dest
== EXIT_BLOCK_PTR
3306 : label_for_bb (e_fall
->dest
)), 0))
3308 e_fall
->flags
&= ~EDGE_FALLTHRU
;
3309 gcc_checking_assert (could_fall_through
3310 (e_taken
->src
, e_taken
->dest
));
3311 e_taken
->flags
|= EDGE_FALLTHRU
;
3312 update_br_prob_note (bb
);
3313 if (LABEL_NUSES (ret_label
) == 0
3314 && single_pred_p (e_taken
->dest
))
3315 delete_insn (ret_label
);
3319 else if (extract_asm_operands (PATTERN (bb_end_insn
)) != NULL
)
3321 /* If the old fallthru is still next or if
3322 asm goto doesn't have a fallthru (e.g. when followed by
3323 __builtin_unreachable ()), nothing to do. */
3325 || bb
->aux
== e_fall
->dest
3326 || e_fall
->dest
== EXIT_BLOCK_PTR
)
3329 /* Otherwise we'll have to use the fallthru fixup below. */
3333 /* Otherwise we have some return, switch or computed
3334 jump. In the 99% case, there should not have been a
3336 gcc_assert (returnjump_p (bb_end_insn
) || !e_fall
);
3342 /* No fallthru implies a noreturn function with EH edges, or
3343 something similarly bizarre. In any case, we don't need to
3348 /* If the fallthru block is still next, nothing to do. */
3349 if (bb
->aux
== e_fall
->dest
)
3352 /* A fallthru to exit block. */
3353 if (e_fall
->dest
== EXIT_BLOCK_PTR
)
3357 /* We got here if we need to add a new jump insn.
3358 Note force_nonfallthru can delete E_FALL and thus we have to
3359 save E_FALL->src prior to the call to force_nonfallthru. */
3360 src_bb
= e_fall
->src
;
3361 nb
= force_nonfallthru_and_redirect (e_fall
, e_fall
->dest
, ret_label
);
3366 /* Don't process this new block. */
3369 /* Make sure new bb is tagged for correct section (same as
3370 fall-thru source, since you cannot fall-thru across
3371 section boundaries). */
3372 BB_COPY_PARTITION (src_bb
, single_pred (bb
));
3373 if (flag_reorder_blocks_and_partition
3374 && targetm_common
.have_named_sections
3375 && JUMP_P (BB_END (bb
))
3376 && !any_condjump_p (BB_END (bb
))
3377 && (EDGE_SUCC (bb
, 0)->flags
& EDGE_CROSSING
))
3378 add_reg_note (BB_END (bb
), REG_CROSSING_JUMP
, NULL_RTX
);
3382 relink_block_chain (/*stay_in_cfglayout_mode=*/false);
3384 /* Annoying special case - jump around dead jumptables left in the code. */
3387 edge e
= find_fallthru_edge (bb
->succs
);
3389 if (e
&& !can_fallthru (e
->src
, e
->dest
))
3390 force_nonfallthru (e
);
3393 /* Ensure goto_locus from edges has some instructions with that locus
3401 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
3402 if (LOCATION_LOCUS (e
->goto_locus
) != UNKNOWN_LOCATION
3403 && !(e
->flags
& EDGE_ABNORMAL
))
3407 basic_block dest
, nb
;
3410 insn
= BB_END (e
->src
);
3411 end
= PREV_INSN (BB_HEAD (e
->src
));
3413 && (!NONDEBUG_INSN_P (insn
) || !INSN_HAS_LOCATION (insn
)))
3414 insn
= PREV_INSN (insn
);
3416 && INSN_LOCATION (insn
) == e
->goto_locus
)
3418 if (simplejump_p (BB_END (e
->src
))
3419 && !INSN_HAS_LOCATION (BB_END (e
->src
)))
3421 INSN_LOCATION (BB_END (e
->src
)) = e
->goto_locus
;
3425 if (dest
== EXIT_BLOCK_PTR
)
3427 /* Non-fallthru edges to the exit block cannot be split. */
3428 if (!(e
->flags
& EDGE_FALLTHRU
))
3433 insn
= BB_HEAD (dest
);
3434 end
= NEXT_INSN (BB_END (dest
));
3435 while (insn
!= end
&& !NONDEBUG_INSN_P (insn
))
3436 insn
= NEXT_INSN (insn
);
3437 if (insn
!= end
&& INSN_HAS_LOCATION (insn
)
3438 && INSN_LOCATION (insn
) == e
->goto_locus
)
3441 nb
= split_edge (e
);
3442 if (!INSN_P (BB_END (nb
)))
3443 BB_END (nb
) = emit_insn_after_noloc (gen_nop (), BB_END (nb
),
3445 INSN_LOCATION (BB_END (nb
)) = e
->goto_locus
;
3447 /* If there are other incoming edges to the destination block
3448 with the same goto locus, redirect them to the new block as
3449 well, this can prevent other such blocks from being created
3450 in subsequent iterations of the loop. */
3451 for (ei2
= ei_start (dest
->preds
); (e2
= ei_safe_edge (ei2
)); )
3452 if (LOCATION_LOCUS (e2
->goto_locus
) != UNKNOWN_LOCATION
3453 && !(e2
->flags
& (EDGE_ABNORMAL
| EDGE_FALLTHRU
))
3454 && e
->goto_locus
== e2
->goto_locus
)
3455 redirect_edge_and_branch (e2
, nb
);
3462 /* Perform sanity checks on the insn chain.
3463 1. Check that next/prev pointers are consistent in both the forward and
3465 2. Count insns in chain, going both directions, and check if equal.
3466 3. Check that get_last_insn () returns the actual end of chain. */
3469 verify_insn_chain (void)
3471 rtx x
, prevx
, nextx
;
3472 int insn_cnt1
, insn_cnt2
;
3474 for (prevx
= NULL
, insn_cnt1
= 1, x
= get_insns ();
3476 prevx
= x
, insn_cnt1
++, x
= NEXT_INSN (x
))
3477 gcc_assert (PREV_INSN (x
) == prevx
);
3479 gcc_assert (prevx
== get_last_insn ());
3481 for (nextx
= NULL
, insn_cnt2
= 1, x
= get_last_insn ();
3483 nextx
= x
, insn_cnt2
++, x
= PREV_INSN (x
))
3484 gcc_assert (NEXT_INSN (x
) == nextx
);
3486 gcc_assert (insn_cnt1
== insn_cnt2
);
3489 /* If we have assembler epilogues, the block falling through to exit must
3490 be the last one in the reordered chain when we reach final. Ensure
3491 that this condition is met. */
3493 fixup_fallthru_exit_predecessor (void)
3496 basic_block bb
= NULL
;
3498 /* This transformation is not valid before reload, because we might
3499 separate a call from the instruction that copies the return
3501 gcc_assert (reload_completed
);
3503 e
= find_fallthru_edge (EXIT_BLOCK_PTR
->preds
);
3509 basic_block c
= ENTRY_BLOCK_PTR
->next_bb
;
3511 /* If the very first block is the one with the fall-through exit
3512 edge, we have to split that block. */
3515 bb
= split_block (bb
, NULL
)->dest
;
3518 BB_FOOTER (bb
) = BB_FOOTER (c
);
3519 BB_FOOTER (c
) = NULL
;
3522 while (c
->aux
!= bb
)
3523 c
= (basic_block
) c
->aux
;
3527 c
= (basic_block
) c
->aux
;
3534 /* In case there are more than one fallthru predecessors of exit, force that
3535 there is only one. */
3538 force_one_exit_fallthru (void)
3540 edge e
, predecessor
= NULL
;
3543 basic_block forwarder
, bb
;
3545 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
3546 if (e
->flags
& EDGE_FALLTHRU
)
3548 if (predecessor
== NULL
)
3560 /* Exit has several fallthru predecessors. Create a forwarder block for
3562 forwarder
= split_edge (predecessor
);
3563 for (ei
= ei_start (EXIT_BLOCK_PTR
->preds
); (e
= ei_safe_edge (ei
)); )
3565 if (e
->src
== forwarder
3566 || !(e
->flags
& EDGE_FALLTHRU
))
3569 redirect_edge_and_branch_force (e
, forwarder
);
3572 /* Fix up the chain of blocks -- make FORWARDER immediately precede the
3576 if (bb
->aux
== NULL
&& bb
!= forwarder
)
3578 bb
->aux
= forwarder
;
3584 /* Return true in case it is possible to duplicate the basic block BB. */
3587 cfg_layout_can_duplicate_bb_p (const_basic_block bb
)
3589 /* Do not attempt to duplicate tablejumps, as we need to unshare
3590 the dispatch table. This is difficult to do, as the instructions
3591 computing jump destination may be hoisted outside the basic block. */
3592 if (tablejump_p (BB_END (bb
), NULL
, NULL
))
3595 /* Do not duplicate blocks containing insns that can't be copied. */
3596 if (targetm
.cannot_copy_insn_p
)
3598 rtx insn
= BB_HEAD (bb
);
3601 if (INSN_P (insn
) && targetm
.cannot_copy_insn_p (insn
))
3603 if (insn
== BB_END (bb
))
3605 insn
= NEXT_INSN (insn
);
3613 duplicate_insn_chain (rtx from
, rtx to
)
3615 rtx insn
, last
, copy
;
3617 /* Avoid updating of boundaries of previous basic block. The
3618 note will get removed from insn stream in fixup. */
3619 last
= emit_note (NOTE_INSN_DELETED
);
3621 /* Create copy at the end of INSN chain. The chain will
3622 be reordered later. */
3623 for (insn
= from
; insn
!= NEXT_INSN (to
); insn
= NEXT_INSN (insn
))
3625 switch (GET_CODE (insn
))
3628 /* Don't duplicate label debug insns. */
3629 if (TREE_CODE (INSN_VAR_LOCATION_DECL (insn
)) == LABEL_DECL
)
3635 /* Avoid copying of dispatch tables. We never duplicate
3636 tablejumps, so this can hit only in case the table got
3637 moved far from original jump. */
3638 if (GET_CODE (PATTERN (insn
)) == ADDR_VEC
3639 || GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
)
3641 /* Avoid copying following barrier as well if any
3642 (and debug insns in between). */
3645 for (next
= NEXT_INSN (insn
);
3646 next
!= NEXT_INSN (to
);
3647 next
= NEXT_INSN (next
))
3648 if (!DEBUG_INSN_P (next
))
3650 if (next
!= NEXT_INSN (to
) && BARRIER_P (next
))
3654 copy
= emit_copy_of_insn_after (insn
, get_last_insn ());
3655 if (JUMP_P (insn
) && JUMP_LABEL (insn
) != NULL_RTX
3656 && ANY_RETURN_P (JUMP_LABEL (insn
)))
3657 JUMP_LABEL (copy
) = JUMP_LABEL (insn
);
3658 maybe_copy_prologue_epilogue_insn (insn
, copy
);
3669 switch (NOTE_KIND (insn
))
3671 /* In case prologue is empty and function contain label
3672 in first BB, we may want to copy the block. */
3673 case NOTE_INSN_PROLOGUE_END
:
3675 case NOTE_INSN_DELETED
:
3676 case NOTE_INSN_DELETED_LABEL
:
3677 case NOTE_INSN_DELETED_DEBUG_LABEL
:
3678 /* No problem to strip these. */
3679 case NOTE_INSN_FUNCTION_BEG
:
3680 /* There is always just single entry to function. */
3681 case NOTE_INSN_BASIC_BLOCK
:
3684 case NOTE_INSN_EPILOGUE_BEG
:
3685 case NOTE_INSN_SWITCH_TEXT_SECTIONS
:
3686 emit_note_copy (insn
);
3690 /* All other notes should have already been eliminated. */
3698 insn
= NEXT_INSN (last
);
3703 /* Create a duplicate of the basic block BB. */
3706 cfg_layout_duplicate_bb (basic_block bb
)
3711 insn
= duplicate_insn_chain (BB_HEAD (bb
), BB_END (bb
));
3712 new_bb
= create_basic_block (insn
,
3713 insn
? get_last_insn () : NULL
,
3714 EXIT_BLOCK_PTR
->prev_bb
);
3716 BB_COPY_PARTITION (new_bb
, bb
);
3719 insn
= BB_HEADER (bb
);
3720 while (NEXT_INSN (insn
))
3721 insn
= NEXT_INSN (insn
);
3722 insn
= duplicate_insn_chain (BB_HEADER (bb
), insn
);
3724 BB_HEADER (new_bb
) = unlink_insn_chain (insn
, get_last_insn ());
3729 insn
= BB_FOOTER (bb
);
3730 while (NEXT_INSN (insn
))
3731 insn
= NEXT_INSN (insn
);
3732 insn
= duplicate_insn_chain (BB_FOOTER (bb
), insn
);
3734 BB_FOOTER (new_bb
) = unlink_insn_chain (insn
, get_last_insn ());
3741 /* Main entry point to this module - initialize the datastructures for
3742 CFG layout changes. It keeps LOOPS up-to-date if not null.
3744 FLAGS is a set of additional flags to pass to cleanup_cfg(). */
3747 cfg_layout_initialize (unsigned int flags
)
3752 initialize_original_copy_tables ();
3754 cfg_layout_rtl_register_cfg_hooks ();
3756 record_effective_endpoints ();
3758 /* Make sure that the targets of non local gotos are marked. */
3759 for (x
= nonlocal_goto_handler_labels
; x
; x
= XEXP (x
, 1))
3761 bb
= BLOCK_FOR_INSN (XEXP (x
, 0));
3762 bb
->flags
|= BB_NON_LOCAL_GOTO_TARGET
;
3765 cleanup_cfg (CLEANUP_CFGLAYOUT
| flags
);
3768 /* Splits superblocks. */
3770 break_superblocks (void)
3772 sbitmap superblocks
;
3776 superblocks
= sbitmap_alloc (last_basic_block
);
3777 bitmap_clear (superblocks
);
3780 if (bb
->flags
& BB_SUPERBLOCK
)
3782 bb
->flags
&= ~BB_SUPERBLOCK
;
3783 bitmap_set_bit (superblocks
, bb
->index
);
3789 rebuild_jump_labels (get_insns ());
3790 find_many_sub_basic_blocks (superblocks
);
3796 /* Finalize the changes: reorder insn list according to the sequence specified
3797 by aux pointers, enter compensation code, rebuild scope forest. */
3800 cfg_layout_finalize (void)
3802 #ifdef ENABLE_CHECKING
3803 verify_flow_info ();
3805 force_one_exit_fallthru ();
3806 rtl_register_cfg_hooks ();
3807 if (reload_completed
3808 #ifdef HAVE_epilogue
3812 fixup_fallthru_exit_predecessor ();
3813 fixup_reorder_chain ();
3815 rebuild_jump_labels (get_insns ());
3816 delete_dead_jumptables ();
3818 #ifdef ENABLE_CHECKING
3819 verify_insn_chain ();
3820 verify_flow_info ();
3825 /* Same as split_block but update cfg_layout structures. */
3828 cfg_layout_split_block (basic_block bb
, void *insnp
)
3830 rtx insn
= (rtx
) insnp
;
3831 basic_block new_bb
= rtl_split_block (bb
, insn
);
3833 BB_FOOTER (new_bb
) = BB_FOOTER (bb
);
3834 BB_FOOTER (bb
) = NULL
;
3839 /* Redirect Edge to DEST. */
3841 cfg_layout_redirect_edge_and_branch (edge e
, basic_block dest
)
3843 basic_block src
= e
->src
;
3846 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
3849 if (e
->dest
== dest
)
3852 if (e
->src
!= ENTRY_BLOCK_PTR
3853 && (ret
= try_redirect_by_replacing_jump (e
, dest
, true)))
3855 df_set_bb_dirty (src
);
3859 if (e
->src
== ENTRY_BLOCK_PTR
3860 && (e
->flags
& EDGE_FALLTHRU
) && !(e
->flags
& EDGE_COMPLEX
))
3863 fprintf (dump_file
, "Redirecting entry edge from bb %i to %i\n",
3864 e
->src
->index
, dest
->index
);
3866 df_set_bb_dirty (e
->src
);
3867 redirect_edge_succ (e
, dest
);
3871 /* Redirect_edge_and_branch may decide to turn branch into fallthru edge
3872 in the case the basic block appears to be in sequence. Avoid this
3875 if (e
->flags
& EDGE_FALLTHRU
)
3877 /* Redirect any branch edges unified with the fallthru one. */
3878 if (JUMP_P (BB_END (src
))
3879 && label_is_jump_target_p (BB_HEAD (e
->dest
),
3885 fprintf (dump_file
, "Fallthru edge unified with branch "
3886 "%i->%i redirected to %i\n",
3887 e
->src
->index
, e
->dest
->index
, dest
->index
);
3888 e
->flags
&= ~EDGE_FALLTHRU
;
3889 redirected
= redirect_branch_edge (e
, dest
);
3890 gcc_assert (redirected
);
3891 redirected
->flags
|= EDGE_FALLTHRU
;
3892 df_set_bb_dirty (redirected
->src
);
3895 /* In case we are redirecting fallthru edge to the branch edge
3896 of conditional jump, remove it. */
3897 if (EDGE_COUNT (src
->succs
) == 2)
3899 /* Find the edge that is different from E. */
3900 edge s
= EDGE_SUCC (src
, EDGE_SUCC (src
, 0) == e
);
3903 && any_condjump_p (BB_END (src
))
3904 && onlyjump_p (BB_END (src
)))
3905 delete_insn (BB_END (src
));
3908 fprintf (dump_file
, "Redirecting fallthru edge %i->%i to %i\n",
3909 e
->src
->index
, e
->dest
->index
, dest
->index
);
3910 ret
= redirect_edge_succ_nodup (e
, dest
);
3913 ret
= redirect_branch_edge (e
, dest
);
3915 /* We don't want simplejumps in the insn stream during cfglayout. */
3916 gcc_assert (!simplejump_p (BB_END (src
)));
3918 df_set_bb_dirty (src
);
3922 /* Simple wrapper as we always can redirect fallthru edges. */
3924 cfg_layout_redirect_edge_and_branch_force (edge e
, basic_block dest
)
3926 edge redirected
= cfg_layout_redirect_edge_and_branch (e
, dest
);
3928 gcc_assert (redirected
);
3932 /* Same as delete_basic_block but update cfg_layout structures. */
3935 cfg_layout_delete_block (basic_block bb
)
3937 rtx insn
, next
, prev
= PREV_INSN (BB_HEAD (bb
)), *to
, remaints
;
3941 next
= BB_HEAD (bb
);
3943 NEXT_INSN (prev
) = BB_HEADER (bb
);
3945 set_first_insn (BB_HEADER (bb
));
3946 PREV_INSN (BB_HEADER (bb
)) = prev
;
3947 insn
= BB_HEADER (bb
);
3948 while (NEXT_INSN (insn
))
3949 insn
= NEXT_INSN (insn
);
3950 NEXT_INSN (insn
) = next
;
3951 PREV_INSN (next
) = insn
;
3953 next
= NEXT_INSN (BB_END (bb
));
3956 insn
= BB_FOOTER (bb
);
3959 if (BARRIER_P (insn
))
3961 if (PREV_INSN (insn
))
3962 NEXT_INSN (PREV_INSN (insn
)) = NEXT_INSN (insn
);
3964 BB_FOOTER (bb
) = NEXT_INSN (insn
);
3965 if (NEXT_INSN (insn
))
3966 PREV_INSN (NEXT_INSN (insn
)) = PREV_INSN (insn
);
3970 insn
= NEXT_INSN (insn
);
3975 NEXT_INSN (insn
) = BB_FOOTER (bb
);
3976 PREV_INSN (BB_FOOTER (bb
)) = insn
;
3977 while (NEXT_INSN (insn
))
3978 insn
= NEXT_INSN (insn
);
3979 NEXT_INSN (insn
) = next
;
3981 PREV_INSN (next
) = insn
;
3983 set_last_insn (insn
);
3986 if (bb
->next_bb
!= EXIT_BLOCK_PTR
)
3987 to
= &BB_HEADER (bb
->next_bb
);
3989 to
= &cfg_layout_function_footer
;
3991 rtl_delete_block (bb
);
3994 prev
= NEXT_INSN (prev
);
3996 prev
= get_insns ();
3998 next
= PREV_INSN (next
);
4000 next
= get_last_insn ();
4002 if (next
&& NEXT_INSN (next
) != prev
)
4004 remaints
= unlink_insn_chain (prev
, next
);
4006 while (NEXT_INSN (insn
))
4007 insn
= NEXT_INSN (insn
);
4008 NEXT_INSN (insn
) = *to
;
4010 PREV_INSN (*to
) = insn
;
4015 /* Return true when blocks A and B can be safely merged. */
4018 cfg_layout_can_merge_blocks_p (basic_block a
, basic_block b
)
4020 /* If we are partitioning hot/cold basic blocks, we don't want to
4021 mess up unconditional or indirect jumps that cross between hot
4024 Basic block partitioning may result in some jumps that appear to
4025 be optimizable (or blocks that appear to be mergeable), but which really
4026 must be left untouched (they are required to make it safely across
4027 partition boundaries). See the comments at the top of
4028 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4030 if (BB_PARTITION (a
) != BB_PARTITION (b
))
4033 /* Protect the loop latches. */
4034 if (current_loops
&& b
->loop_father
->latch
== b
)
4037 /* If we would end up moving B's instructions, make sure it doesn't fall
4038 through into the exit block, since we cannot recover from a fallthrough
4039 edge into the exit block occurring in the middle of a function. */
4040 if (NEXT_INSN (BB_END (a
)) != BB_HEAD (b
))
4042 edge e
= find_fallthru_edge (b
->succs
);
4043 if (e
&& e
->dest
== EXIT_BLOCK_PTR
)
4047 /* There must be exactly one edge in between the blocks. */
4048 return (single_succ_p (a
)
4049 && single_succ (a
) == b
4050 && single_pred_p (b
) == 1
4052 /* Must be simple edge. */
4053 && !(single_succ_edge (a
)->flags
& EDGE_COMPLEX
)
4054 && a
!= ENTRY_BLOCK_PTR
&& b
!= EXIT_BLOCK_PTR
4055 /* If the jump insn has side effects, we can't kill the edge.
4056 When not optimizing, try_redirect_by_replacing_jump will
4057 not allow us to redirect an edge by replacing a table jump. */
4058 && (!JUMP_P (BB_END (a
))
4059 || ((!optimize
|| reload_completed
)
4060 ? simplejump_p (BB_END (a
)) : onlyjump_p (BB_END (a
)))));
4063 /* Merge block A and B. The blocks must be mergeable. */
4066 cfg_layout_merge_blocks (basic_block a
, basic_block b
)
4068 bool forwarder_p
= (b
->flags
& BB_FORWARDER_BLOCK
) != 0;
4071 gcc_checking_assert (cfg_layout_can_merge_blocks_p (a
, b
));
4074 fprintf (dump_file
, "Merging block %d into block %d...\n", b
->index
,
4077 /* If there was a CODE_LABEL beginning B, delete it. */
4078 if (LABEL_P (BB_HEAD (b
)))
4080 delete_insn (BB_HEAD (b
));
4083 /* We should have fallthru edge in a, or we can do dummy redirection to get
4085 if (JUMP_P (BB_END (a
)))
4086 try_redirect_by_replacing_jump (EDGE_SUCC (a
, 0), b
, true);
4087 gcc_assert (!JUMP_P (BB_END (a
)));
4089 /* When not optimizing CFG and the edge is the only place in RTL which holds
4090 some unique locus, emit a nop with that locus in between. */
4092 emit_nop_for_unique_locus_between (a
, b
);
4094 /* Possible line number notes should appear in between. */
4097 rtx first
= BB_END (a
), last
;
4099 last
= emit_insn_after_noloc (BB_HEADER (b
), BB_END (a
), a
);
4100 /* The above might add a BARRIER as BB_END, but as barriers
4101 aren't valid parts of a bb, remove_insn doesn't update
4102 BB_END if it is a barrier. So adjust BB_END here. */
4103 while (BB_END (a
) != first
&& BARRIER_P (BB_END (a
)))
4104 BB_END (a
) = PREV_INSN (BB_END (a
));
4105 delete_insn_chain (NEXT_INSN (first
), last
, false);
4106 BB_HEADER (b
) = NULL
;
4109 /* In the case basic blocks are not adjacent, move them around. */
4110 if (NEXT_INSN (BB_END (a
)) != BB_HEAD (b
))
4112 insn
= unlink_insn_chain (BB_HEAD (b
), BB_END (b
));
4114 emit_insn_after_noloc (insn
, BB_END (a
), a
);
4116 /* Otherwise just re-associate the instructions. */
4120 BB_END (a
) = BB_END (b
);
4123 /* emit_insn_after_noloc doesn't call df_insn_change_bb.
4124 We need to explicitly call. */
4125 update_bb_for_insn_chain (insn
, BB_END (b
), a
);
4127 /* Skip possible DELETED_LABEL insn. */
4128 if (!NOTE_INSN_BASIC_BLOCK_P (insn
))
4129 insn
= NEXT_INSN (insn
);
4130 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn
));
4134 df_bb_delete (b
->index
);
4136 /* Possible tablejumps and barriers should appear after the block. */
4140 BB_FOOTER (a
) = BB_FOOTER (b
);
4143 rtx last
= BB_FOOTER (a
);
4145 while (NEXT_INSN (last
))
4146 last
= NEXT_INSN (last
);
4147 NEXT_INSN (last
) = BB_FOOTER (b
);
4148 PREV_INSN (BB_FOOTER (b
)) = last
;
4150 BB_FOOTER (b
) = NULL
;
4153 /* If B was a forwarder block, propagate the locus on the edge. */
4155 && LOCATION_LOCUS (EDGE_SUCC (b
, 0)->goto_locus
) == UNKNOWN_LOCATION
)
4156 EDGE_SUCC (b
, 0)->goto_locus
= EDGE_SUCC (a
, 0)->goto_locus
;
4159 fprintf (dump_file
, "Merged blocks %d and %d.\n", a
->index
, b
->index
);
4165 cfg_layout_split_edge (edge e
)
4167 basic_block new_bb
=
4168 create_basic_block (e
->src
!= ENTRY_BLOCK_PTR
4169 ? NEXT_INSN (BB_END (e
->src
)) : get_insns (),
4172 if (e
->dest
== EXIT_BLOCK_PTR
)
4173 BB_COPY_PARTITION (new_bb
, e
->src
);
4175 BB_COPY_PARTITION (new_bb
, e
->dest
);
4176 make_edge (new_bb
, e
->dest
, EDGE_FALLTHRU
);
4177 redirect_edge_and_branch_force (e
, new_bb
);
4182 /* Do postprocessing after making a forwarder block joined by edge FALLTHRU. */
4185 rtl_make_forwarder_block (edge fallthru ATTRIBUTE_UNUSED
)
4189 /* Return true if BB contains only labels or non-executable
4193 rtl_block_empty_p (basic_block bb
)
4197 if (bb
== ENTRY_BLOCK_PTR
|| bb
== EXIT_BLOCK_PTR
)
4200 FOR_BB_INSNS (bb
, insn
)
4201 if (NONDEBUG_INSN_P (insn
) && !any_uncondjump_p (insn
))
4207 /* Split a basic block if it ends with a conditional branch and if
4208 the other part of the block is not empty. */
4211 rtl_split_block_before_cond_jump (basic_block bb
)
4214 rtx split_point
= NULL
;
4216 bool found_code
= false;
4218 FOR_BB_INSNS (bb
, insn
)
4220 if (any_condjump_p (insn
))
4222 else if (NONDEBUG_INSN_P (insn
))
4227 /* Did not find everything. */
4228 if (found_code
&& split_point
)
4229 return split_block (bb
, split_point
)->dest
;
4234 /* Return 1 if BB ends with a call, possibly followed by some
4235 instructions that must stay with the call, 0 otherwise. */
4238 rtl_block_ends_with_call_p (basic_block bb
)
4240 rtx insn
= BB_END (bb
);
4242 while (!CALL_P (insn
)
4243 && insn
!= BB_HEAD (bb
)
4244 && (keep_with_call_p (insn
)
4246 || DEBUG_INSN_P (insn
)))
4247 insn
= PREV_INSN (insn
);
4248 return (CALL_P (insn
));
4251 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
4254 rtl_block_ends_with_condjump_p (const_basic_block bb
)
4256 return any_condjump_p (BB_END (bb
));
4259 /* Return true if we need to add fake edge to exit.
4260 Helper function for rtl_flow_call_edges_add. */
4263 need_fake_edge_p (const_rtx insn
)
4269 && !SIBLING_CALL_P (insn
)
4270 && !find_reg_note (insn
, REG_NORETURN
, NULL
)
4271 && !(RTL_CONST_OR_PURE_CALL_P (insn
))))
4274 return ((GET_CODE (PATTERN (insn
)) == ASM_OPERANDS
4275 && MEM_VOLATILE_P (PATTERN (insn
)))
4276 || (GET_CODE (PATTERN (insn
)) == PARALLEL
4277 && asm_noperands (insn
) != -1
4278 && MEM_VOLATILE_P (XVECEXP (PATTERN (insn
), 0, 0)))
4279 || GET_CODE (PATTERN (insn
)) == ASM_INPUT
);
4282 /* Add fake edges to the function exit for any non constant and non noreturn
4283 calls, volatile inline assembly in the bitmap of blocks specified by
4284 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
4287 The goal is to expose cases in which entering a basic block does not imply
4288 that all subsequent instructions must be executed. */
4291 rtl_flow_call_edges_add (sbitmap blocks
)
4294 int blocks_split
= 0;
4295 int last_bb
= last_basic_block
;
4296 bool check_last_block
= false;
4298 if (n_basic_blocks
== NUM_FIXED_BLOCKS
)
4302 check_last_block
= true;
4304 check_last_block
= bitmap_bit_p (blocks
, EXIT_BLOCK_PTR
->prev_bb
->index
);
4306 /* In the last basic block, before epilogue generation, there will be
4307 a fallthru edge to EXIT. Special care is required if the last insn
4308 of the last basic block is a call because make_edge folds duplicate
4309 edges, which would result in the fallthru edge also being marked
4310 fake, which would result in the fallthru edge being removed by
4311 remove_fake_edges, which would result in an invalid CFG.
4313 Moreover, we can't elide the outgoing fake edge, since the block
4314 profiler needs to take this into account in order to solve the minimal
4315 spanning tree in the case that the call doesn't return.
4317 Handle this by adding a dummy instruction in a new last basic block. */
4318 if (check_last_block
)
4320 basic_block bb
= EXIT_BLOCK_PTR
->prev_bb
;
4321 rtx insn
= BB_END (bb
);
4323 /* Back up past insns that must be kept in the same block as a call. */
4324 while (insn
!= BB_HEAD (bb
)
4325 && keep_with_call_p (insn
))
4326 insn
= PREV_INSN (insn
);
4328 if (need_fake_edge_p (insn
))
4332 e
= find_edge (bb
, EXIT_BLOCK_PTR
);
4335 insert_insn_on_edge (gen_use (const0_rtx
), e
);
4336 commit_edge_insertions ();
4341 /* Now add fake edges to the function exit for any non constant
4342 calls since there is no way that we can determine if they will
4345 for (i
= NUM_FIXED_BLOCKS
; i
< last_bb
; i
++)
4347 basic_block bb
= BASIC_BLOCK (i
);
4354 if (blocks
&& !bitmap_bit_p (blocks
, i
))
4357 for (insn
= BB_END (bb
); ; insn
= prev_insn
)
4359 prev_insn
= PREV_INSN (insn
);
4360 if (need_fake_edge_p (insn
))
4363 rtx split_at_insn
= insn
;
4365 /* Don't split the block between a call and an insn that should
4366 remain in the same block as the call. */
4368 while (split_at_insn
!= BB_END (bb
)
4369 && keep_with_call_p (NEXT_INSN (split_at_insn
)))
4370 split_at_insn
= NEXT_INSN (split_at_insn
);
4372 /* The handling above of the final block before the epilogue
4373 should be enough to verify that there is no edge to the exit
4374 block in CFG already. Calling make_edge in such case would
4375 cause us to mark that edge as fake and remove it later. */
4377 #ifdef ENABLE_CHECKING
4378 if (split_at_insn
== BB_END (bb
))
4380 e
= find_edge (bb
, EXIT_BLOCK_PTR
);
4381 gcc_assert (e
== NULL
);
4385 /* Note that the following may create a new basic block
4386 and renumber the existing basic blocks. */
4387 if (split_at_insn
!= BB_END (bb
))
4389 e
= split_block (bb
, split_at_insn
);
4394 make_edge (bb
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
4397 if (insn
== BB_HEAD (bb
))
4403 verify_flow_info ();
4405 return blocks_split
;
4408 /* Add COMP_RTX as a condition at end of COND_BB. FIRST_HEAD is
4409 the conditional branch target, SECOND_HEAD should be the fall-thru
4410 there is no need to handle this here the loop versioning code handles
4411 this. the reason for SECON_HEAD is that it is needed for condition
4412 in trees, and this should be of the same type since it is a hook. */
4414 rtl_lv_add_condition_to_bb (basic_block first_head
,
4415 basic_block second_head ATTRIBUTE_UNUSED
,
4416 basic_block cond_bb
, void *comp_rtx
)
4418 rtx label
, seq
, jump
;
4419 rtx op0
= XEXP ((rtx
)comp_rtx
, 0);
4420 rtx op1
= XEXP ((rtx
)comp_rtx
, 1);
4421 enum rtx_code comp
= GET_CODE ((rtx
)comp_rtx
);
4422 enum machine_mode mode
;
4425 label
= block_label (first_head
);
4426 mode
= GET_MODE (op0
);
4427 if (mode
== VOIDmode
)
4428 mode
= GET_MODE (op1
);
4431 op0
= force_operand (op0
, NULL_RTX
);
4432 op1
= force_operand (op1
, NULL_RTX
);
4433 do_compare_rtx_and_jump (op0
, op1
, comp
, 0,
4434 mode
, NULL_RTX
, NULL_RTX
, label
, -1);
4435 jump
= get_last_insn ();
4436 JUMP_LABEL (jump
) = label
;
4437 LABEL_NUSES (label
)++;
4441 /* Add the new cond , in the new head. */
4442 emit_insn_after(seq
, BB_END(cond_bb
));
4446 /* Given a block B with unconditional branch at its end, get the
4447 store the return the branch edge and the fall-thru edge in
4448 BRANCH_EDGE and FALLTHRU_EDGE respectively. */
4450 rtl_extract_cond_bb_edges (basic_block b
, edge
*branch_edge
,
4451 edge
*fallthru_edge
)
4453 edge e
= EDGE_SUCC (b
, 0);
4455 if (e
->flags
& EDGE_FALLTHRU
)
4458 *branch_edge
= EDGE_SUCC (b
, 1);
4463 *fallthru_edge
= EDGE_SUCC (b
, 1);
4468 init_rtl_bb_info (basic_block bb
)
4470 gcc_assert (!bb
->il
.x
.rtl
);
4471 bb
->il
.x
.head_
= NULL
;
4472 bb
->il
.x
.rtl
= ggc_alloc_cleared_rtl_bb_info ();
4475 /* Returns true if it is possible to remove edge E by redirecting
4476 it to the destination of the other edge from E->src. */
4479 rtl_can_remove_branch_p (const_edge e
)
4481 const_basic_block src
= e
->src
;
4482 const_basic_block target
= EDGE_SUCC (src
, EDGE_SUCC (src
, 0) == e
)->dest
;
4483 const_rtx insn
= BB_END (src
), set
;
4485 /* The conditions are taken from try_redirect_by_replacing_jump. */
4486 if (target
== EXIT_BLOCK_PTR
)
4489 if (e
->flags
& (EDGE_ABNORMAL_CALL
| EDGE_EH
))
4492 if (find_reg_note (insn
, REG_CROSSING_JUMP
, NULL_RTX
)
4493 || BB_PARTITION (src
) != BB_PARTITION (target
))
4496 if (!onlyjump_p (insn
)
4497 || tablejump_p (insn
, NULL
, NULL
))
4500 set
= single_set (insn
);
4501 if (!set
|| side_effects_p (set
))
4508 rtl_duplicate_bb (basic_block bb
)
4510 bb
= cfg_layout_duplicate_bb (bb
);
4515 /* Do book-keeping of basic block BB for the profile consistency checker.
4516 If AFTER_PASS is 0, do pre-pass accounting, or if AFTER_PASS is 1
4517 then do post-pass accounting. Store the counting in RECORD. */
4519 rtl_account_profile_record (basic_block bb
, int after_pass
,
4520 struct profile_record
*record
)
4523 FOR_BB_INSNS (bb
, insn
)
4526 record
->size
[after_pass
]
4527 += insn_rtx_cost (PATTERN (insn
), false);
4528 if (profile_status
== PROFILE_READ
)
4529 record
->time
[after_pass
]
4530 += insn_rtx_cost (PATTERN (insn
), true) * bb
->count
;
4531 else if (profile_status
== PROFILE_GUESSED
)
4532 record
->time
[after_pass
]
4533 += insn_rtx_cost (PATTERN (insn
), true) * bb
->frequency
;
4537 /* Implementation of CFG manipulation for linearized RTL. */
4538 struct cfg_hooks rtl_cfg_hooks
= {
4540 rtl_verify_flow_info
,
4542 rtl_dump_bb_for_graph
,
4543 rtl_create_basic_block
,
4544 rtl_redirect_edge_and_branch
,
4545 rtl_redirect_edge_and_branch_force
,
4546 rtl_can_remove_branch_p
,
4549 rtl_move_block_after
,
4550 rtl_can_merge_blocks
, /* can_merge_blocks_p */
4554 cfg_layout_can_duplicate_bb_p
,
4557 rtl_make_forwarder_block
,
4558 rtl_tidy_fallthru_edge
,
4559 rtl_force_nonfallthru
,
4560 rtl_block_ends_with_call_p
,
4561 rtl_block_ends_with_condjump_p
,
4562 rtl_flow_call_edges_add
,
4563 NULL
, /* execute_on_growing_pred */
4564 NULL
, /* execute_on_shrinking_pred */
4565 NULL
, /* duplicate loop for trees */
4566 NULL
, /* lv_add_condition_to_bb */
4567 NULL
, /* lv_adjust_loop_header_phi*/
4568 NULL
, /* extract_cond_bb_edges */
4569 NULL
, /* flush_pending_stmts */
4570 rtl_block_empty_p
, /* block_empty_p */
4571 rtl_split_block_before_cond_jump
, /* split_block_before_cond_jump */
4572 rtl_account_profile_record
,
4575 /* Implementation of CFG manipulation for cfg layout RTL, where
4576 basic block connected via fallthru edges does not have to be adjacent.
4577 This representation will hopefully become the default one in future
4578 version of the compiler. */
4580 struct cfg_hooks cfg_layout_rtl_cfg_hooks
= {
4582 rtl_verify_flow_info_1
,
4584 rtl_dump_bb_for_graph
,
4585 cfg_layout_create_basic_block
,
4586 cfg_layout_redirect_edge_and_branch
,
4587 cfg_layout_redirect_edge_and_branch_force
,
4588 rtl_can_remove_branch_p
,
4589 cfg_layout_delete_block
,
4590 cfg_layout_split_block
,
4591 rtl_move_block_after
,
4592 cfg_layout_can_merge_blocks_p
,
4593 cfg_layout_merge_blocks
,
4596 cfg_layout_can_duplicate_bb_p
,
4597 cfg_layout_duplicate_bb
,
4598 cfg_layout_split_edge
,
4599 rtl_make_forwarder_block
,
4600 NULL
, /* tidy_fallthru_edge */
4601 rtl_force_nonfallthru
,
4602 rtl_block_ends_with_call_p
,
4603 rtl_block_ends_with_condjump_p
,
4604 rtl_flow_call_edges_add
,
4605 NULL
, /* execute_on_growing_pred */
4606 NULL
, /* execute_on_shrinking_pred */
4607 duplicate_loop_to_header_edge
, /* duplicate loop for trees */
4608 rtl_lv_add_condition_to_bb
, /* lv_add_condition_to_bb */
4609 NULL
, /* lv_adjust_loop_header_phi*/
4610 rtl_extract_cond_bb_edges
, /* extract_cond_bb_edges */
4611 NULL
, /* flush_pending_stmts */
4612 rtl_block_empty_p
, /* block_empty_p */
4613 rtl_split_block_before_cond_jump
, /* split_block_before_cond_jump */
4614 rtl_account_profile_record
,
4617 #include "gt-cfgrtl.h"