1 /* Hooks for cfg representation specific functions.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <s.pop@laposte.net>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
28 #include "basic-block.h"
29 #include "tree-flow.h"
33 /* A pointer to one of the hooks containers. */
34 static struct cfg_hooks
*cfg_hooks
;
36 /* Initialization of functions specific to the rtl IR. */
38 rtl_register_cfg_hooks (void)
40 cfg_hooks
= &rtl_cfg_hooks
;
43 /* Initialization of functions specific to the rtl IR. */
45 cfg_layout_rtl_register_cfg_hooks (void)
47 cfg_hooks
= &cfg_layout_rtl_cfg_hooks
;
50 /* Initialization of functions specific to the tree IR. */
53 tree_register_cfg_hooks (void)
55 cfg_hooks
= &tree_cfg_hooks
;
58 /* Returns current ir type (rtl = 0, trees = 1). */
63 return cfg_hooks
== &tree_cfg_hooks
? 1 : 0;
66 /* Verify the CFG consistency.
68 Currently it does following: checks edge and basic block list correctness
69 and calls into IL dependent checking then. */
72 verify_flow_info (void)
74 size_t *edge_checksum
;
76 basic_block bb
, last_bb_seen
;
77 basic_block
*last_visited
;
79 timevar_push (TV_CFG_VERIFY
);
80 last_visited
= xcalloc (last_basic_block
+ 2, sizeof (basic_block
));
81 edge_checksum
= xcalloc (last_basic_block
+ 2, sizeof (size_t));
83 /* Check bb chain & numbers. */
84 last_bb_seen
= ENTRY_BLOCK_PTR
;
85 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
->next_bb
, NULL
, next_bb
)
87 if (bb
!= EXIT_BLOCK_PTR
88 && bb
!= BASIC_BLOCK (bb
->index
))
90 error ("bb %d on wrong place", bb
->index
);
94 if (bb
->prev_bb
!= last_bb_seen
)
96 error ("prev_bb of %d should be %d, not %d",
97 bb
->index
, last_bb_seen
->index
, bb
->prev_bb
->index
);
104 /* Now check the basic blocks (boundaries etc.) */
105 FOR_EACH_BB_REVERSE (bb
)
113 error ("verify_flow_info: Wrong count of block %i %i",
114 bb
->index
, (int)bb
->count
);
117 if (bb
->frequency
< 0)
119 error ("verify_flow_info: Wrong frequency of block %i %i",
120 bb
->index
, bb
->frequency
);
123 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
125 if (last_visited
[e
->dest
->index
+ 2] == bb
)
127 error ("verify_flow_info: Duplicate edge %i->%i",
128 e
->src
->index
, e
->dest
->index
);
131 if (e
->probability
< 0 || e
->probability
> REG_BR_PROB_BASE
)
133 error ("verify_flow_info: Wrong probability of edge %i->%i %i",
134 e
->src
->index
, e
->dest
->index
, e
->probability
);
139 error ("verify_flow_info: Wrong count of edge %i->%i %i",
140 e
->src
->index
, e
->dest
->index
, (int)e
->count
);
144 last_visited
[e
->dest
->index
+ 2] = bb
;
146 if (e
->flags
& EDGE_FALLTHRU
)
151 error ("verify_flow_info: Basic block %d succ edge is corrupted",
153 fprintf (stderr
, "Predecessor: ");
154 dump_edge_info (stderr
, e
, 0);
155 fprintf (stderr
, "\nSuccessor: ");
156 dump_edge_info (stderr
, e
, 1);
157 fprintf (stderr
, "\n");
161 edge_checksum
[e
->dest
->index
+ 2] += (size_t) e
;
165 error ("wrong amount of branch edges after unconditional jump %i", bb
->index
);
169 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
173 error ("basic block %d pred edge is corrupted", bb
->index
);
174 fputs ("Predecessor: ", stderr
);
175 dump_edge_info (stderr
, e
, 0);
176 fputs ("\nSuccessor: ", stderr
);
177 dump_edge_info (stderr
, e
, 1);
178 fputc ('\n', stderr
);
182 if (ei
.index
!= e
->dest_idx
)
184 error ("basic block %d pred edge is corrupted", bb
->index
);
185 error ("its dest_idx should be %d, not %d",
186 ei
.index
, e
->dest_idx
);
187 fputs ("Predecessor: ", stderr
);
188 dump_edge_info (stderr
, e
, 0);
189 fputs ("\nSuccessor: ", stderr
);
190 dump_edge_info (stderr
, e
, 1);
191 fputc ('\n', stderr
);
195 edge_checksum
[e
->dest
->index
+ 2] -= (size_t) e
;
199 /* Complete edge checksumming for ENTRY and EXIT. */
204 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR
->succs
)
205 edge_checksum
[e
->dest
->index
+ 2] += (size_t) e
;
207 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
208 edge_checksum
[e
->dest
->index
+ 2] -= (size_t) e
;
211 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
212 if (edge_checksum
[bb
->index
+ 2])
214 error ("basic block %i edge lists are corrupted", bb
->index
);
218 last_bb_seen
= ENTRY_BLOCK_PTR
;
222 free (edge_checksum
);
224 if (cfg_hooks
->verify_flow_info
)
225 err
|= cfg_hooks
->verify_flow_info ();
227 internal_error ("verify_flow_info failed");
228 timevar_pop (TV_CFG_VERIFY
);
231 /* Print out one basic block. This function takes care of the purely
232 graph related information. The cfg hook for the active representation
233 should dump representation-specific information. */
236 dump_bb (basic_block bb
, FILE *outf
, int indent
)
242 s_indent
= alloca ((size_t) indent
+ 1);
243 memset (s_indent
, ' ', (size_t) indent
);
244 s_indent
[indent
] = '\0';
246 fprintf (outf
, ";;%s basic block %d, loop depth %d, count ",
247 s_indent
, bb
->index
, bb
->loop_depth
);
248 fprintf (outf
, HOST_WIDEST_INT_PRINT_DEC
, (HOST_WIDEST_INT
) bb
->count
);
251 fprintf (outf
, ";;%s prev block ", s_indent
);
253 fprintf (outf
, "%d, ", bb
->prev_bb
->index
);
255 fprintf (outf
, "(nil), ");
256 fprintf (outf
, "next block ");
258 fprintf (outf
, "%d", bb
->next_bb
->index
);
260 fprintf (outf
, "(nil)");
263 fprintf (outf
, ";;%s pred: ", s_indent
);
264 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
265 dump_edge_info (outf
, e
, 0);
268 fprintf (outf
, ";;%s succ: ", s_indent
);
269 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
270 dump_edge_info (outf
, e
, 1);
273 if (cfg_hooks
->dump_bb
)
274 cfg_hooks
->dump_bb (bb
, outf
, indent
);
277 /* Redirect edge E to the given basic block DEST and update underlying program
278 representation. Returns edge representing redirected branch (that may not
279 be equivalent to E in the case of duplicate edges being removed) or NULL
280 if edge is not easily redirectable for whatever reason. */
283 redirect_edge_and_branch (edge e
, basic_block dest
)
287 if (!cfg_hooks
->redirect_edge_and_branch
)
288 internal_error ("%s does not support redirect_edge_and_branch",
291 ret
= cfg_hooks
->redirect_edge_and_branch (e
, dest
);
296 /* Redirect the edge E to basic block DEST even if it requires creating
297 of a new basic block; then it returns the newly created basic block.
298 Aborts when redirection is impossible. */
301 redirect_edge_and_branch_force (edge e
, basic_block dest
)
305 if (!cfg_hooks
->redirect_edge_and_branch_force
)
306 internal_error ("%s does not support redirect_edge_and_branch_force",
309 ret
= cfg_hooks
->redirect_edge_and_branch_force (e
, dest
);
314 /* Splits basic block BB after the specified instruction I (but at least after
315 the labels). If I is NULL, splits just after labels. The newly created edge
316 is returned. The new basic block is created just after the old one. */
319 split_block (basic_block bb
, void *i
)
323 if (!cfg_hooks
->split_block
)
324 internal_error ("%s does not support split_block", cfg_hooks
->name
);
326 new_bb
= cfg_hooks
->split_block (bb
, i
);
330 new_bb
->count
= bb
->count
;
331 new_bb
->frequency
= bb
->frequency
;
332 new_bb
->loop_depth
= bb
->loop_depth
;
334 if (dom_info_available_p (CDI_DOMINATORS
))
336 redirect_immediate_dominators (CDI_DOMINATORS
, bb
, new_bb
);
337 set_immediate_dominator (CDI_DOMINATORS
, new_bb
, bb
);
340 return make_single_succ_edge (bb
, new_bb
, EDGE_FALLTHRU
);
343 /* Splits block BB just after labels. The newly created edge is returned. */
346 split_block_after_labels (basic_block bb
)
348 return split_block (bb
, NULL
);
351 /* Moves block BB immediately after block AFTER. Returns false if the
352 movement was impossible. */
355 move_block_after (basic_block bb
, basic_block after
)
359 if (!cfg_hooks
->move_block_after
)
360 internal_error ("%s does not support move_block_after", cfg_hooks
->name
);
362 ret
= cfg_hooks
->move_block_after (bb
, after
);
367 /* Deletes the basic block BB. */
370 delete_basic_block (basic_block bb
)
372 if (!cfg_hooks
->delete_basic_block
)
373 internal_error ("%s does not support delete_basic_block", cfg_hooks
->name
);
375 cfg_hooks
->delete_basic_block (bb
);
377 /* Remove the edges into and out of this block. Note that there may
378 indeed be edges in, if we are removing an unreachable loop. */
379 while (EDGE_COUNT (bb
->preds
) != 0)
380 remove_edge (EDGE_PRED (bb
, 0));
381 while (EDGE_COUNT (bb
->succs
) != 0)
382 remove_edge (EDGE_SUCC (bb
, 0));
384 if (dom_computed
[CDI_DOMINATORS
])
385 delete_from_dominance_info (CDI_DOMINATORS
, bb
);
386 if (dom_computed
[CDI_POST_DOMINATORS
])
387 delete_from_dominance_info (CDI_POST_DOMINATORS
, bb
);
389 /* Remove the basic block from the array. */
393 /* Splits edge E and returns the newly created basic block. */
399 gcov_type count
= e
->count
;
400 int freq
= EDGE_FREQUENCY (e
);
402 bool irr
= (e
->flags
& EDGE_IRREDUCIBLE_LOOP
) != 0;
404 if (!cfg_hooks
->split_edge
)
405 internal_error ("%s does not support split_edge", cfg_hooks
->name
);
407 ret
= cfg_hooks
->split_edge (e
);
409 ret
->frequency
= freq
;
410 single_succ_edge (ret
)->probability
= REG_BR_PROB_BASE
;
411 single_succ_edge (ret
)->count
= count
;
415 ret
->flags
|= BB_IRREDUCIBLE_LOOP
;
416 single_pred_edge (ret
)->flags
|= EDGE_IRREDUCIBLE_LOOP
;
417 single_succ_edge (ret
)->flags
|= EDGE_IRREDUCIBLE_LOOP
;
420 if (dom_computed
[CDI_DOMINATORS
])
421 set_immediate_dominator (CDI_DOMINATORS
, ret
, single_pred (ret
));
423 if (dom_computed
[CDI_DOMINATORS
] >= DOM_NO_FAST_QUERY
)
425 /* There are two cases:
427 If the immediate dominator of e->dest is not e->src, it
430 If immediate dominator of e->dest is e->src, it may become
431 ret, provided that all other predecessors of e->dest are
432 dominated by e->dest. */
434 if (get_immediate_dominator (CDI_DOMINATORS
, single_succ (ret
))
435 == single_pred (ret
))
438 FOR_EACH_EDGE (f
, ei
, single_succ (ret
)->preds
)
440 if (f
== single_succ_edge (ret
))
443 if (!dominated_by_p (CDI_DOMINATORS
, f
->src
,
449 set_immediate_dominator (CDI_DOMINATORS
, single_succ (ret
), ret
);
456 /* Creates a new basic block just after the basic block AFTER.
457 HEAD and END are the first and the last statement belonging
458 to the block. If both are NULL, an empty block is created. */
461 create_basic_block (void *head
, void *end
, basic_block after
)
465 if (!cfg_hooks
->create_basic_block
)
466 internal_error ("%s does not support create_basic_block", cfg_hooks
->name
);
468 ret
= cfg_hooks
->create_basic_block (head
, end
, after
);
470 if (dom_computed
[CDI_DOMINATORS
])
471 add_to_dominance_info (CDI_DOMINATORS
, ret
);
472 if (dom_computed
[CDI_POST_DOMINATORS
])
473 add_to_dominance_info (CDI_POST_DOMINATORS
, ret
);
478 /* Creates an empty basic block just after basic block AFTER. */
481 create_empty_bb (basic_block after
)
483 return create_basic_block (NULL
, NULL
, after
);
486 /* Checks whether we may merge blocks BB1 and BB2. */
489 can_merge_blocks_p (basic_block bb1
, basic_block bb2
)
493 if (!cfg_hooks
->can_merge_blocks_p
)
494 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks
->name
);
496 ret
= cfg_hooks
->can_merge_blocks_p (bb1
, bb2
);
502 predict_edge (edge e
, enum br_predictor predictor
, int probability
)
504 if (!cfg_hooks
->predict_edge
)
505 internal_error ("%s does not support predict_edge", cfg_hooks
->name
);
507 cfg_hooks
->predict_edge (e
, predictor
, probability
);
511 predicted_by_p (basic_block bb
, enum br_predictor predictor
)
513 if (!cfg_hooks
->predict_edge
)
514 internal_error ("%s does not support predicted_by_p", cfg_hooks
->name
);
516 return cfg_hooks
->predicted_by_p (bb
, predictor
);
519 /* Merges basic block B into basic block A. */
522 merge_blocks (basic_block a
, basic_block b
)
527 if (!cfg_hooks
->merge_blocks
)
528 internal_error ("%s does not support merge_blocks", cfg_hooks
->name
);
530 cfg_hooks
->merge_blocks (a
, b
);
532 /* Normally there should only be one successor of A and that is B, but
533 partway though the merge of blocks for conditional_execution we'll
534 be merging a TEST block with THEN and ELSE successors. Free the
535 whole lot of them and hope the caller knows what they're doing. */
537 while (EDGE_COUNT (a
->succs
) != 0)
538 remove_edge (EDGE_SUCC (a
, 0));
540 /* Adjust the edges out of B for the new owner. */
541 FOR_EACH_EDGE (e
, ei
, b
->succs
)
544 a
->flags
|= b
->flags
;
546 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
547 b
->preds
= b
->succs
= NULL
;
549 if (dom_computed
[CDI_DOMINATORS
])
550 redirect_immediate_dominators (CDI_DOMINATORS
, b
, a
);
552 if (dom_computed
[CDI_DOMINATORS
])
553 delete_from_dominance_info (CDI_DOMINATORS
, b
);
554 if (dom_computed
[CDI_POST_DOMINATORS
])
555 delete_from_dominance_info (CDI_POST_DOMINATORS
, b
);
560 /* Split BB into entry part and the rest (the rest is the newly created block).
561 Redirect those edges for that REDIRECT_EDGE_P returns true to the entry
562 part. Returns the edge connecting the entry part to the rest. */
565 make_forwarder_block (basic_block bb
, bool (*redirect_edge_p
) (edge
),
566 void (*new_bb_cbk
) (basic_block
))
570 basic_block dummy
, jump
;
572 if (!cfg_hooks
->make_forwarder_block
)
573 internal_error ("%s does not support make_forwarder_block",
576 fallthru
= split_block_after_labels (bb
);
577 dummy
= fallthru
->src
;
580 /* Redirect back edges we want to keep. */
581 for (ei
= ei_start (dummy
->preds
); (e
= ei_safe_edge (ei
)); )
583 if (redirect_edge_p (e
))
589 dummy
->frequency
-= EDGE_FREQUENCY (e
);
590 dummy
->count
-= e
->count
;
591 if (dummy
->frequency
< 0)
592 dummy
->frequency
= 0;
593 if (dummy
->count
< 0)
595 fallthru
->count
-= e
->count
;
596 if (fallthru
->count
< 0)
599 jump
= redirect_edge_and_branch_force (e
, bb
);
604 if (dom_info_available_p (CDI_DOMINATORS
))
606 basic_block doms_to_fix
[2];
608 doms_to_fix
[0] = dummy
;
610 iterate_fix_dominators (CDI_DOMINATORS
, doms_to_fix
, 2);
613 cfg_hooks
->make_forwarder_block (fallthru
);
619 tidy_fallthru_edge (edge e
)
621 if (cfg_hooks
->tidy_fallthru_edge
)
622 cfg_hooks
->tidy_fallthru_edge (e
);
625 /* Fix up edges that now fall through, or rather should now fall through
626 but previously required a jump around now deleted blocks. Simplify
627 the search by only examining blocks numerically adjacent, since this
628 is how find_basic_blocks created them. */
631 tidy_fallthru_edges (void)
635 if (!cfg_hooks
->tidy_fallthru_edge
)
638 if (ENTRY_BLOCK_PTR
->next_bb
== EXIT_BLOCK_PTR
)
641 FOR_BB_BETWEEN (b
, ENTRY_BLOCK_PTR
->next_bb
, EXIT_BLOCK_PTR
->prev_bb
, next_bb
)
647 /* We care about simple conditional or unconditional jumps with
650 If we had a conditional branch to the next instruction when
651 find_basic_blocks was called, then there will only be one
652 out edge for the block which ended with the conditional
653 branch (since we do not create duplicate edges).
655 Furthermore, the edge will be marked as a fallthru because we
656 merge the flags for the duplicate edges. So we do not want to
657 check that the edge is not a FALLTHRU edge. */
659 if (single_succ_p (b
))
661 s
= single_succ_edge (b
);
662 if (! (s
->flags
& EDGE_COMPLEX
)
664 && !find_reg_note (BB_END (b
), REG_CROSSING_JUMP
, NULL_RTX
))
665 tidy_fallthru_edge (s
);
670 /* Returns true if we can duplicate basic block BB. */
673 can_duplicate_block_p (basic_block bb
)
677 if (!cfg_hooks
->can_duplicate_block_p
)
678 internal_error ("%s does not support can_duplicate_block_p",
681 if (bb
== EXIT_BLOCK_PTR
|| bb
== ENTRY_BLOCK_PTR
)
684 /* Duplicating fallthru block to exit would require adding a jump
685 and splitting the real last BB. */
686 e
= find_edge (bb
, EXIT_BLOCK_PTR
);
687 if (e
&& (e
->flags
& EDGE_FALLTHRU
))
690 return cfg_hooks
->can_duplicate_block_p (bb
);
693 /* Duplicates basic block BB and redirects edge E to it. Returns the
697 duplicate_block (basic_block bb
, edge e
)
701 gcov_type new_count
= e
? e
->count
: 0;
704 if (!cfg_hooks
->duplicate_block
)
705 internal_error ("%s does not support duplicate_block",
708 if (bb
->count
< new_count
)
709 new_count
= bb
->count
;
711 #ifdef ENABLE_CHECKING
712 gcc_assert (can_duplicate_block_p (bb
));
715 new_bb
= cfg_hooks
->duplicate_block (bb
);
717 new_bb
->loop_depth
= bb
->loop_depth
;
718 new_bb
->flags
= bb
->flags
;
719 FOR_EACH_EDGE (s
, ei
, bb
->succs
)
721 /* Since we are creating edges from a new block to successors
722 of another block (which therefore are known to be disjoint), there
723 is no need to actually check for duplicated edges. */
724 n
= unchecked_make_edge (new_bb
, s
->dest
, s
->flags
);
725 n
->probability
= s
->probability
;
728 /* Take care for overflows! */
729 n
->count
= s
->count
* (new_count
* 10000 / bb
->count
) / 10000;
730 s
->count
-= n
->count
;
739 new_bb
->count
= new_count
;
740 bb
->count
-= new_count
;
742 new_bb
->frequency
= EDGE_FREQUENCY (e
);
743 bb
->frequency
-= EDGE_FREQUENCY (e
);
745 redirect_edge_and_branch_force (e
, new_bb
);
749 if (bb
->frequency
< 0)
754 new_bb
->count
= bb
->count
;
755 new_bb
->frequency
= bb
->frequency
;
758 set_bb_original (new_bb
, bb
);
759 set_bb_copy (bb
, new_bb
);
764 /* Return 1 if BB ends with a call, possibly followed by some
765 instructions that must stay with the call, 0 otherwise. */
768 block_ends_with_call_p (basic_block bb
)
770 if (!cfg_hooks
->block_ends_with_call_p
)
771 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks
->name
);
773 return (cfg_hooks
->block_ends_with_call_p
) (bb
);
776 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
779 block_ends_with_condjump_p (basic_block bb
)
781 if (!cfg_hooks
->block_ends_with_condjump_p
)
782 internal_error ("%s does not support block_ends_with_condjump_p",
785 return (cfg_hooks
->block_ends_with_condjump_p
) (bb
);
788 /* Add fake edges to the function exit for any non constant and non noreturn
789 calls, volatile inline assembly in the bitmap of blocks specified by
790 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
793 The goal is to expose cases in which entering a basic block does not imply
794 that all subsequent instructions must be executed. */
797 flow_call_edges_add (sbitmap blocks
)
799 if (!cfg_hooks
->flow_call_edges_add
)
800 internal_error ("%s does not support flow_call_edges_add",
803 return (cfg_hooks
->flow_call_edges_add
) (blocks
);
806 /* This function is called immediately after edge E is added to the
807 edge vector E->dest->preds. */
810 execute_on_growing_pred (edge e
)
812 if (cfg_hooks
->execute_on_growing_pred
)
813 cfg_hooks
->execute_on_growing_pred (e
);
816 /* This function is called immediately before edge E is removed from
817 the edge vector E->dest->preds. */
820 execute_on_shrinking_pred (edge e
)
822 if (cfg_hooks
->execute_on_shrinking_pred
)
823 cfg_hooks
->execute_on_shrinking_pred (e
);
826 /* This is used inside loop versioning when we want to insert
827 stmts/insns on the edges, which have a different behavior
828 in tree's and in RTL, so we made a CFG hook. */
830 lv_flush_pending_stmts (edge e
)
832 if (cfg_hooks
->flush_pending_stmts
)
833 cfg_hooks
->flush_pending_stmts (e
);
836 /* Loop versioning uses the duplicate_loop_to_header_edge to create
837 a new version of the loop basic-blocks, the parameters here are
838 exactly the same as in duplicate_loop_to_header_edge or
839 tree_duplicate_loop_to_header_edge; while in tree-ssa there is
840 additional work to maintain ssa information that's why there is
841 a need to call the tree_duplicate_loop_to_header_edge rather
842 than duplicate_loop_to_header_edge when we are in tree mode. */
844 cfg_hook_duplicate_loop_to_header_edge (struct loop
*loop
, edge e
,
845 struct loops
*loops
, unsigned int ndupl
,
846 sbitmap wont_exit
, edge orig
,
848 unsigned int *n_to_remove
, int flags
)
850 gcc_assert (cfg_hooks
->cfg_hook_duplicate_loop_to_header_edge
);
851 return cfg_hooks
->cfg_hook_duplicate_loop_to_header_edge (loop
, e
, loops
,
857 /* Conditional jumps are represented differently in trees and RTL,
858 this hook takes a basic block that is known to have a cond jump
859 at its end and extracts the taken and not taken eges out of it
860 and store it in E1 and E2 respectively. */
862 extract_cond_bb_edges (basic_block b
, edge
*e1
, edge
*e2
)
864 gcc_assert (cfg_hooks
->extract_cond_bb_edges
);
865 cfg_hooks
->extract_cond_bb_edges (b
, e1
, e2
);
868 /* Responsible for updating the ssa info (PHI nodes) on the
869 new condition basic block that guards the versioned loop. */
871 lv_adjust_loop_header_phi (basic_block first
, basic_block second
,
872 basic_block
new, edge e
)
874 if (cfg_hooks
->lv_adjust_loop_header_phi
)
875 cfg_hooks
->lv_adjust_loop_header_phi (first
, second
, new, e
);
878 /* Conditions in trees and RTL are different so we need
879 a different handling when we add the condition to the
882 lv_add_condition_to_bb (basic_block first
, basic_block second
,
883 basic_block
new, void *cond
)
885 gcc_assert (cfg_hooks
->lv_add_condition_to_bb
);
886 cfg_hooks
->lv_add_condition_to_bb (first
, second
, new, cond
);