* gimple-ssa-store-merging.c (struct store_immediate_info): Add
[official-gcc.git] / gcc / cfghooks.c
blob4a224243e3200324549313c1513bbe27639ab942
1 /* Hooks for cfg representation specific functions.
2 Copyright (C) 2003-2017 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 3, or (at your option)
10 any later version.
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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "rtl.h"
26 #include "cfghooks.h"
27 #include "timevar.h"
28 #include "pretty-print.h"
29 #include "diagnostic-core.h"
30 #include "dumpfile.h"
31 #include "cfganal.h"
32 #include "tree-ssa.h"
33 #include "cfgloop.h"
35 /* A pointer to one of the hooks containers. */
36 static struct cfg_hooks *cfg_hooks;
38 /* Initialization of functions specific to the rtl IR. */
39 void
40 rtl_register_cfg_hooks (void)
42 cfg_hooks = &rtl_cfg_hooks;
45 /* Initialization of functions specific to the rtl IR. */
46 void
47 cfg_layout_rtl_register_cfg_hooks (void)
49 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
52 /* Initialization of functions specific to the tree IR. */
54 void
55 gimple_register_cfg_hooks (void)
57 cfg_hooks = &gimple_cfg_hooks;
60 struct cfg_hooks
61 get_cfg_hooks (void)
63 return *cfg_hooks;
66 void
67 set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
69 *cfg_hooks = new_cfg_hooks;
72 /* Returns current ir type. */
74 enum ir_type
75 current_ir_type (void)
77 if (cfg_hooks == &gimple_cfg_hooks)
78 return IR_GIMPLE;
79 else if (cfg_hooks == &rtl_cfg_hooks)
80 return IR_RTL_CFGRTL;
81 else if (cfg_hooks == &cfg_layout_rtl_cfg_hooks)
82 return IR_RTL_CFGLAYOUT;
83 else
84 gcc_unreachable ();
87 /* Verify the CFG consistency.
89 Currently it does following: checks edge and basic block list correctness
90 and calls into IL dependent checking then. */
92 DEBUG_FUNCTION void
93 verify_flow_info (void)
95 size_t *edge_checksum;
96 int err = 0;
97 basic_block bb, last_bb_seen;
98 basic_block *last_visited;
100 timevar_push (TV_CFG_VERIFY);
101 last_visited = XCNEWVEC (basic_block, last_basic_block_for_fn (cfun));
102 edge_checksum = XCNEWVEC (size_t, last_basic_block_for_fn (cfun));
104 /* Check bb chain & numbers. */
105 last_bb_seen = ENTRY_BLOCK_PTR_FOR_FN (cfun);
106 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb, NULL, next_bb)
108 if (bb != EXIT_BLOCK_PTR_FOR_FN (cfun)
109 && bb != BASIC_BLOCK_FOR_FN (cfun, bb->index))
111 error ("bb %d on wrong place", bb->index);
112 err = 1;
115 if (bb->prev_bb != last_bb_seen)
117 error ("prev_bb of %d should be %d, not %d",
118 bb->index, last_bb_seen->index, bb->prev_bb->index);
119 err = 1;
122 last_bb_seen = bb;
125 /* Now check the basic blocks (boundaries etc.) */
126 FOR_EACH_BB_REVERSE_FN (bb, cfun)
128 int n_fallthru = 0;
129 edge e;
130 edge_iterator ei;
132 if (bb->loop_father != NULL && current_loops == NULL)
134 error ("verify_flow_info: Block %i has loop_father, but there are no loops",
135 bb->index);
136 err = 1;
138 if (bb->loop_father == NULL && current_loops != NULL)
140 error ("verify_flow_info: Block %i lacks loop_father", bb->index);
141 err = 1;
144 if (!bb->count.verify ())
146 error ("verify_flow_info: Wrong count of block %i", bb->index);
147 err = 1;
149 /* FIXME: Graphite and SLJL and target code still tends to produce
150 edges with no probablity. */
151 if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
152 && !bb->count.initialized_p () && !flag_graphite && 0)
154 error ("verify_flow_info: Missing count of block %i", bb->index);
155 err = 1;
158 FOR_EACH_EDGE (e, ei, bb->succs)
160 if (last_visited [e->dest->index] == bb)
162 error ("verify_flow_info: Duplicate edge %i->%i",
163 e->src->index, e->dest->index);
164 err = 1;
166 /* FIXME: Graphite and SLJL and target code still tends to produce
167 edges with no probablity. */
168 if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
169 && !e->probability.initialized_p () && !flag_graphite && 0)
171 error ("Uninitialized probability of edge %i->%i", e->src->index,
172 e->dest->index);
173 err = 1;
175 if (!e->probability.verify ())
177 error ("verify_flow_info: Wrong probability of edge %i->%i",
178 e->src->index, e->dest->index);
179 err = 1;
182 last_visited [e->dest->index] = bb;
184 if (e->flags & EDGE_FALLTHRU)
185 n_fallthru++;
187 if (e->src != bb)
189 error ("verify_flow_info: Basic block %d succ edge is corrupted",
190 bb->index);
191 fprintf (stderr, "Predecessor: ");
192 dump_edge_info (stderr, e, TDF_DETAILS, 0);
193 fprintf (stderr, "\nSuccessor: ");
194 dump_edge_info (stderr, e, TDF_DETAILS, 1);
195 fprintf (stderr, "\n");
196 err = 1;
199 edge_checksum[e->dest->index] += (size_t) e;
201 if (n_fallthru > 1)
203 error ("wrong amount of branch edges after unconditional jump %i", bb->index);
204 err = 1;
207 FOR_EACH_EDGE (e, ei, bb->preds)
209 if (e->dest != bb)
211 error ("basic block %d pred edge is corrupted", bb->index);
212 fputs ("Predecessor: ", stderr);
213 dump_edge_info (stderr, e, TDF_DETAILS, 0);
214 fputs ("\nSuccessor: ", stderr);
215 dump_edge_info (stderr, e, TDF_DETAILS, 1);
216 fputc ('\n', stderr);
217 err = 1;
220 if (ei.index != e->dest_idx)
222 error ("basic block %d pred edge is corrupted", bb->index);
223 error ("its dest_idx should be %d, not %d",
224 ei.index, e->dest_idx);
225 fputs ("Predecessor: ", stderr);
226 dump_edge_info (stderr, e, TDF_DETAILS, 0);
227 fputs ("\nSuccessor: ", stderr);
228 dump_edge_info (stderr, e, TDF_DETAILS, 1);
229 fputc ('\n', stderr);
230 err = 1;
233 edge_checksum[e->dest->index] -= (size_t) e;
237 /* Complete edge checksumming for ENTRY and EXIT. */
239 edge e;
240 edge_iterator ei;
242 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs)
243 edge_checksum[e->dest->index] += (size_t) e;
245 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
246 edge_checksum[e->dest->index] -= (size_t) e;
249 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun), NULL, next_bb)
250 if (edge_checksum[bb->index])
252 error ("basic block %i edge lists are corrupted", bb->index);
253 err = 1;
256 last_bb_seen = ENTRY_BLOCK_PTR_FOR_FN (cfun);
258 /* Clean up. */
259 free (last_visited);
260 free (edge_checksum);
262 if (cfg_hooks->verify_flow_info)
263 err |= cfg_hooks->verify_flow_info ();
264 if (err)
265 internal_error ("verify_flow_info failed");
266 timevar_pop (TV_CFG_VERIFY);
269 /* Print out one basic block BB to file OUTF. INDENT is printed at the
270 start of each new line. FLAGS are the TDF_* flags in dumpfile.h.
272 This function takes care of the purely graph related information.
273 The cfg hook for the active representation should dump
274 representation-specific information. */
276 void
277 dump_bb (FILE *outf, basic_block bb, int indent, dump_flags_t flags)
279 if (flags & TDF_BLOCKS)
280 dump_bb_info (outf, bb, indent, flags, true, false);
281 if (cfg_hooks->dump_bb)
282 cfg_hooks->dump_bb (outf, bb, indent, flags);
283 if (flags & TDF_BLOCKS)
284 dump_bb_info (outf, bb, indent, flags, false, true);
285 fputc ('\n', outf);
288 DEBUG_FUNCTION void
289 debug (basic_block_def &ref)
291 dump_bb (stderr, &ref, 0, 0);
294 DEBUG_FUNCTION void
295 debug (basic_block_def *ptr)
297 if (ptr)
298 debug (*ptr);
299 else
300 fprintf (stderr, "<nil>\n");
304 /* Dumps basic block BB to pretty-printer PP, for use as a label of
305 a DOT graph record-node. The implementation of this hook is
306 expected to write the label to the stream that is attached to PP.
307 Field separators between instructions are pipe characters printed
308 verbatim. Instructions should be written with some characters
309 escaped, using pp_write_text_as_dot_label_to_stream(). */
311 void
312 dump_bb_for_graph (pretty_printer *pp, basic_block bb)
314 if (!cfg_hooks->dump_bb_for_graph)
315 internal_error ("%s does not support dump_bb_for_graph",
316 cfg_hooks->name);
317 /* TODO: Add pretty printer for counter. */
318 if (bb->count.initialized_p ())
319 pp_printf (pp, "COUNT:" "%" PRId64, bb->count.to_gcov_type ());
320 pp_write_text_to_stream (pp);
321 if (!(dump_flags & TDF_SLIM))
322 cfg_hooks->dump_bb_for_graph (pp, bb);
325 /* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
326 void
327 dump_flow_info (FILE *file, dump_flags_t flags)
329 basic_block bb;
331 fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks_for_fn (cfun),
332 n_edges_for_fn (cfun));
333 FOR_ALL_BB_FN (bb, cfun)
334 dump_bb (file, bb, 0, flags);
336 putc ('\n', file);
339 /* Like above, but dump to stderr. To be called from debuggers. */
340 void debug_flow_info (void);
341 DEBUG_FUNCTION void
342 debug_flow_info (void)
344 dump_flow_info (stderr, TDF_DETAILS);
347 /* Redirect edge E to the given basic block DEST and update underlying program
348 representation. Returns edge representing redirected branch (that may not
349 be equivalent to E in the case of duplicate edges being removed) or NULL
350 if edge is not easily redirectable for whatever reason. */
352 edge
353 redirect_edge_and_branch (edge e, basic_block dest)
355 edge ret;
357 if (!cfg_hooks->redirect_edge_and_branch)
358 internal_error ("%s does not support redirect_edge_and_branch",
359 cfg_hooks->name);
361 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
363 /* If RET != E, then either the redirection failed, or the edge E
364 was removed since RET already lead to the same destination. */
365 if (current_loops != NULL && ret == e)
366 rescan_loop_exit (e, false, false);
368 return ret;
371 /* Returns true if it is possible to remove the edge E by redirecting it
372 to the destination of the other edge going from its source. */
374 bool
375 can_remove_branch_p (const_edge e)
377 if (!cfg_hooks->can_remove_branch_p)
378 internal_error ("%s does not support can_remove_branch_p",
379 cfg_hooks->name);
381 if (EDGE_COUNT (e->src->succs) != 2)
382 return false;
384 return cfg_hooks->can_remove_branch_p (e);
387 /* Removes E, by redirecting it to the destination of the other edge going
388 from its source. Can_remove_branch_p must be true for E, hence this
389 operation cannot fail. */
391 void
392 remove_branch (edge e)
394 edge other;
395 basic_block src = e->src;
396 int irr;
398 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
400 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
401 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
403 e = redirect_edge_and_branch (e, other->dest);
404 gcc_assert (e != NULL);
406 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
407 e->flags |= irr;
410 /* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
412 void
413 remove_edge (edge e)
415 if (current_loops != NULL)
417 rescan_loop_exit (e, false, true);
419 /* Removal of an edge inside an irreducible region or which leads
420 to an irreducible region can turn the region into a natural loop.
421 In that case, ask for the loop structure fixups.
423 FIXME: Note that LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS is not always
424 set, so always ask for fixups when removing an edge in that case. */
425 if (!loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS)
426 || (e->flags & EDGE_IRREDUCIBLE_LOOP)
427 || (e->dest->flags & BB_IRREDUCIBLE_LOOP))
428 loops_state_set (LOOPS_NEED_FIXUP);
431 /* This is probably not needed, but it doesn't hurt. */
432 /* FIXME: This should be called via a remove_edge hook. */
433 if (current_ir_type () == IR_GIMPLE)
434 redirect_edge_var_map_clear (e);
436 remove_edge_raw (e);
439 /* Like redirect_edge_succ but avoid possible duplicate edge. */
441 edge
442 redirect_edge_succ_nodup (edge e, basic_block new_succ)
444 edge s;
446 s = find_edge (e->src, new_succ);
447 if (s && s != e)
449 s->flags |= e->flags;
450 s->probability += e->probability;
451 /* FIXME: This should be called via a hook and only for IR_GIMPLE. */
452 redirect_edge_var_map_dup (s, e);
453 remove_edge (e);
454 e = s;
456 else
457 redirect_edge_succ (e, new_succ);
459 return e;
462 /* Redirect the edge E to basic block DEST even if it requires creating
463 of a new basic block; then it returns the newly created basic block.
464 Aborts when redirection is impossible. */
466 basic_block
467 redirect_edge_and_branch_force (edge e, basic_block dest)
469 basic_block ret, src = e->src;
471 if (!cfg_hooks->redirect_edge_and_branch_force)
472 internal_error ("%s does not support redirect_edge_and_branch_force",
473 cfg_hooks->name);
475 if (current_loops != NULL)
476 rescan_loop_exit (e, false, true);
478 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
480 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
481 set_immediate_dominator (CDI_DOMINATORS, ret, src);
483 if (current_loops != NULL)
485 if (ret != NULL)
487 struct loop *loop
488 = find_common_loop (single_pred (ret)->loop_father,
489 single_succ (ret)->loop_father);
490 add_bb_to_loop (ret, loop);
492 else if (find_edge (src, dest) == e)
493 rescan_loop_exit (e, true, false);
496 return ret;
499 /* Splits basic block BB after the specified instruction I (but at least after
500 the labels). If I is NULL, splits just after labels. The newly created edge
501 is returned. The new basic block is created just after the old one. */
503 static edge
504 split_block_1 (basic_block bb, void *i)
506 basic_block new_bb;
507 edge res;
509 if (!cfg_hooks->split_block)
510 internal_error ("%s does not support split_block", cfg_hooks->name);
512 new_bb = cfg_hooks->split_block (bb, i);
513 if (!new_bb)
514 return NULL;
516 new_bb->count = bb->count;
517 new_bb->discriminator = bb->discriminator;
519 if (dom_info_available_p (CDI_DOMINATORS))
521 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
522 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
525 if (current_loops != NULL)
527 edge_iterator ei;
528 edge e;
529 add_bb_to_loop (new_bb, bb->loop_father);
530 /* Identify all loops bb may have been the latch of and adjust them. */
531 FOR_EACH_EDGE (e, ei, new_bb->succs)
532 if (e->dest->loop_father->latch == bb)
533 e->dest->loop_father->latch = new_bb;
536 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
538 if (bb->flags & BB_IRREDUCIBLE_LOOP)
540 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
541 res->flags |= EDGE_IRREDUCIBLE_LOOP;
544 return res;
547 edge
548 split_block (basic_block bb, gimple *i)
550 return split_block_1 (bb, i);
553 edge
554 split_block (basic_block bb, rtx i)
556 return split_block_1 (bb, i);
559 /* Splits block BB just after labels. The newly created edge is returned. */
561 edge
562 split_block_after_labels (basic_block bb)
564 return split_block_1 (bb, NULL);
567 /* Moves block BB immediately after block AFTER. Returns false if the
568 movement was impossible. */
570 bool
571 move_block_after (basic_block bb, basic_block after)
573 bool ret;
575 if (!cfg_hooks->move_block_after)
576 internal_error ("%s does not support move_block_after", cfg_hooks->name);
578 ret = cfg_hooks->move_block_after (bb, after);
580 return ret;
583 /* Deletes the basic block BB. */
585 void
586 delete_basic_block (basic_block bb)
588 if (!cfg_hooks->delete_basic_block)
589 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
591 cfg_hooks->delete_basic_block (bb);
593 if (current_loops != NULL)
595 struct loop *loop = bb->loop_father;
597 /* If we remove the header or the latch of a loop, mark the loop for
598 removal. */
599 if (loop->latch == bb
600 || loop->header == bb)
601 mark_loop_for_removal (loop);
603 remove_bb_from_loops (bb);
606 /* Remove the edges into and out of this block. Note that there may
607 indeed be edges in, if we are removing an unreachable loop. */
608 while (EDGE_COUNT (bb->preds) != 0)
609 remove_edge (EDGE_PRED (bb, 0));
610 while (EDGE_COUNT (bb->succs) != 0)
611 remove_edge (EDGE_SUCC (bb, 0));
613 if (dom_info_available_p (CDI_DOMINATORS))
614 delete_from_dominance_info (CDI_DOMINATORS, bb);
615 if (dom_info_available_p (CDI_POST_DOMINATORS))
616 delete_from_dominance_info (CDI_POST_DOMINATORS, bb);
618 /* Remove the basic block from the array. */
619 expunge_block (bb);
622 /* Splits edge E and returns the newly created basic block. */
624 basic_block
625 split_edge (edge e)
627 basic_block ret;
628 profile_count count = e->count ();
629 edge f;
630 bool irr = (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
631 struct loop *loop;
632 basic_block src = e->src, dest = e->dest;
634 if (!cfg_hooks->split_edge)
635 internal_error ("%s does not support split_edge", cfg_hooks->name);
637 if (current_loops != NULL)
638 rescan_loop_exit (e, false, true);
640 ret = cfg_hooks->split_edge (e);
641 ret->count = count;
642 single_succ_edge (ret)->probability = profile_probability::always ();
644 if (irr)
646 ret->flags |= BB_IRREDUCIBLE_LOOP;
647 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
648 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
651 if (dom_info_available_p (CDI_DOMINATORS))
652 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
654 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
656 /* There are two cases:
658 If the immediate dominator of e->dest is not e->src, it
659 remains unchanged.
661 If immediate dominator of e->dest is e->src, it may become
662 ret, provided that all other predecessors of e->dest are
663 dominated by e->dest. */
665 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
666 == single_pred (ret))
668 edge_iterator ei;
669 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
671 if (f == single_succ_edge (ret))
672 continue;
674 if (!dominated_by_p (CDI_DOMINATORS, f->src,
675 single_succ (ret)))
676 break;
679 if (!f)
680 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
684 if (current_loops != NULL)
686 loop = find_common_loop (src->loop_father, dest->loop_father);
687 add_bb_to_loop (ret, loop);
689 /* If we split the latch edge of loop adjust the latch block. */
690 if (loop->latch == src
691 && loop->header == dest)
692 loop->latch = ret;
695 return ret;
698 /* Creates a new basic block just after the basic block AFTER.
699 HEAD and END are the first and the last statement belonging
700 to the block. If both are NULL, an empty block is created. */
702 static basic_block
703 create_basic_block_1 (void *head, void *end, basic_block after)
705 basic_block ret;
707 if (!cfg_hooks->create_basic_block)
708 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
710 ret = cfg_hooks->create_basic_block (head, end, after);
712 if (dom_info_available_p (CDI_DOMINATORS))
713 add_to_dominance_info (CDI_DOMINATORS, ret);
714 if (dom_info_available_p (CDI_POST_DOMINATORS))
715 add_to_dominance_info (CDI_POST_DOMINATORS, ret);
717 return ret;
720 basic_block
721 create_basic_block (gimple_seq seq, basic_block after)
723 return create_basic_block_1 (seq, NULL, after);
726 basic_block
727 create_basic_block (rtx head, rtx end, basic_block after)
729 return create_basic_block_1 (head, end, after);
733 /* Creates an empty basic block just after basic block AFTER. */
735 basic_block
736 create_empty_bb (basic_block after)
738 return create_basic_block_1 (NULL, NULL, after);
741 /* Checks whether we may merge blocks BB1 and BB2. */
743 bool
744 can_merge_blocks_p (basic_block bb1, basic_block bb2)
746 bool ret;
748 if (!cfg_hooks->can_merge_blocks_p)
749 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
751 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
753 return ret;
756 void
757 predict_edge (edge e, enum br_predictor predictor, int probability)
759 if (!cfg_hooks->predict_edge)
760 internal_error ("%s does not support predict_edge", cfg_hooks->name);
762 cfg_hooks->predict_edge (e, predictor, probability);
765 bool
766 predicted_by_p (const_basic_block bb, enum br_predictor predictor)
768 if (!cfg_hooks->predict_edge)
769 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
771 return cfg_hooks->predicted_by_p (bb, predictor);
774 /* Merges basic block B into basic block A. */
776 void
777 merge_blocks (basic_block a, basic_block b)
779 edge e;
780 edge_iterator ei;
782 if (!cfg_hooks->merge_blocks)
783 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
785 cfg_hooks->merge_blocks (a, b);
787 if (current_loops != NULL)
789 /* If the block we merge into is a loop header do nothing unless ... */
790 if (a->loop_father->header == a)
792 /* ... we merge two loop headers, in which case we kill
793 the inner loop. */
794 if (b->loop_father->header == b)
795 mark_loop_for_removal (b->loop_father);
797 /* If we merge a loop header into its predecessor, update the loop
798 structure. */
799 else if (b->loop_father->header == b)
801 remove_bb_from_loops (a);
802 add_bb_to_loop (a, b->loop_father);
803 a->loop_father->header = a;
805 /* If we merge a loop latch into its predecessor, update the loop
806 structure. */
807 if (b->loop_father->latch
808 && b->loop_father->latch == b)
809 b->loop_father->latch = a;
810 remove_bb_from_loops (b);
813 /* Normally there should only be one successor of A and that is B, but
814 partway though the merge of blocks for conditional_execution we'll
815 be merging a TEST block with THEN and ELSE successors. Free the
816 whole lot of them and hope the caller knows what they're doing. */
818 while (EDGE_COUNT (a->succs) != 0)
819 remove_edge (EDGE_SUCC (a, 0));
821 /* Adjust the edges out of B for the new owner. */
822 FOR_EACH_EDGE (e, ei, b->succs)
824 e->src = a;
825 if (current_loops != NULL)
827 /* If b was a latch, a now is. */
828 if (e->dest->loop_father->latch == b)
829 e->dest->loop_father->latch = a;
830 rescan_loop_exit (e, true, false);
833 a->succs = b->succs;
834 a->flags |= b->flags;
836 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
837 b->preds = b->succs = NULL;
839 if (dom_info_available_p (CDI_DOMINATORS))
840 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
842 if (dom_info_available_p (CDI_DOMINATORS))
843 delete_from_dominance_info (CDI_DOMINATORS, b);
844 if (dom_info_available_p (CDI_POST_DOMINATORS))
845 delete_from_dominance_info (CDI_POST_DOMINATORS, b);
847 expunge_block (b);
850 /* Split BB into entry part and the rest (the rest is the newly created block).
851 Redirect those edges for that REDIRECT_EDGE_P returns true to the entry
852 part. Returns the edge connecting the entry part to the rest. */
854 edge
855 make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
856 void (*new_bb_cbk) (basic_block))
858 edge e, fallthru;
859 edge_iterator ei;
860 basic_block dummy, jump;
861 struct loop *loop, *ploop, *cloop;
863 if (!cfg_hooks->make_forwarder_block)
864 internal_error ("%s does not support make_forwarder_block",
865 cfg_hooks->name);
867 fallthru = split_block_after_labels (bb);
868 dummy = fallthru->src;
869 dummy->count = profile_count::zero ();
870 bb = fallthru->dest;
872 /* Redirect back edges we want to keep. */
873 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
875 basic_block e_src;
877 if (redirect_edge_p (e))
879 dummy->count += e->count ();
880 ei_next (&ei);
881 continue;
884 e_src = e->src;
885 jump = redirect_edge_and_branch_force (e, bb);
886 if (jump != NULL)
888 /* If we redirected the loop latch edge, the JUMP block now acts like
889 the new latch of the loop. */
890 if (current_loops != NULL
891 && dummy->loop_father != NULL
892 && dummy->loop_father->header == dummy
893 && dummy->loop_father->latch == e_src)
894 dummy->loop_father->latch = jump;
896 if (new_bb_cbk != NULL)
897 new_bb_cbk (jump);
901 if (dom_info_available_p (CDI_DOMINATORS))
903 vec<basic_block> doms_to_fix;
904 doms_to_fix.create (2);
905 doms_to_fix.quick_push (dummy);
906 doms_to_fix.quick_push (bb);
907 iterate_fix_dominators (CDI_DOMINATORS, doms_to_fix, false);
908 doms_to_fix.release ();
911 if (current_loops != NULL)
913 /* If we do not split a loop header, then both blocks belong to the
914 same loop. In case we split loop header and do not redirect the
915 latch edge to DUMMY, then DUMMY belongs to the outer loop, and
916 BB becomes the new header. If latch is not recorded for the loop,
917 we leave this updating on the caller (this may only happen during
918 loop analysis). */
919 loop = dummy->loop_father;
920 if (loop->header == dummy
921 && loop->latch != NULL
922 && find_edge (loop->latch, dummy) == NULL)
924 remove_bb_from_loops (dummy);
925 loop->header = bb;
927 cloop = loop;
928 FOR_EACH_EDGE (e, ei, dummy->preds)
930 cloop = find_common_loop (cloop, e->src->loop_father);
932 add_bb_to_loop (dummy, cloop);
935 /* In case we split loop latch, update it. */
936 for (ploop = loop; ploop; ploop = loop_outer (ploop))
937 if (ploop->latch == dummy)
938 ploop->latch = bb;
941 cfg_hooks->make_forwarder_block (fallthru);
943 return fallthru;
946 /* Try to make the edge fallthru. */
948 void
949 tidy_fallthru_edge (edge e)
951 if (cfg_hooks->tidy_fallthru_edge)
952 cfg_hooks->tidy_fallthru_edge (e);
955 /* Fix up edges that now fall through, or rather should now fall through
956 but previously required a jump around now deleted blocks. Simplify
957 the search by only examining blocks numerically adjacent, since this
958 is how they were created.
960 ??? This routine is currently RTL specific. */
962 void
963 tidy_fallthru_edges (void)
965 basic_block b, c;
967 if (!cfg_hooks->tidy_fallthru_edge)
968 return;
970 if (ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
971 return;
973 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb,
974 EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb, next_bb)
976 edge s;
978 c = b->next_bb;
980 /* We care about simple conditional or unconditional jumps with
981 a single successor.
983 If we had a conditional branch to the next instruction when
984 CFG was built, then there will only be one out edge for the
985 block which ended with the conditional branch (since we do
986 not create duplicate edges).
988 Furthermore, the edge will be marked as a fallthru because we
989 merge the flags for the duplicate edges. So we do not want to
990 check that the edge is not a FALLTHRU edge. */
992 if (single_succ_p (b))
994 s = single_succ_edge (b);
995 if (! (s->flags & EDGE_COMPLEX)
996 && s->dest == c
997 && !(JUMP_P (BB_END (b)) && CROSSING_JUMP_P (BB_END (b))))
998 tidy_fallthru_edge (s);
1003 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
1004 (and possibly create new basic block) to make edge non-fallthru.
1005 Return newly created BB or NULL if none. */
1007 basic_block
1008 force_nonfallthru (edge e)
1010 basic_block ret, src = e->src;
1012 if (!cfg_hooks->force_nonfallthru)
1013 internal_error ("%s does not support force_nonfallthru",
1014 cfg_hooks->name);
1016 ret = cfg_hooks->force_nonfallthru (e);
1017 if (ret != NULL)
1019 if (dom_info_available_p (CDI_DOMINATORS))
1020 set_immediate_dominator (CDI_DOMINATORS, ret, src);
1022 if (current_loops != NULL)
1024 basic_block pred = single_pred (ret);
1025 basic_block succ = single_succ (ret);
1026 struct loop *loop
1027 = find_common_loop (pred->loop_father, succ->loop_father);
1028 rescan_loop_exit (e, false, true);
1029 add_bb_to_loop (ret, loop);
1031 /* If we split the latch edge of loop adjust the latch block. */
1032 if (loop->latch == pred
1033 && loop->header == succ)
1034 loop->latch = ret;
1038 return ret;
1041 /* Returns true if we can duplicate basic block BB. */
1043 bool
1044 can_duplicate_block_p (const_basic_block bb)
1046 if (!cfg_hooks->can_duplicate_block_p)
1047 internal_error ("%s does not support can_duplicate_block_p",
1048 cfg_hooks->name);
1050 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun) || bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1051 return false;
1053 return cfg_hooks->can_duplicate_block_p (bb);
1056 /* Duplicates basic block BB and redirects edge E to it. Returns the
1057 new basic block. The new basic block is placed after the basic block
1058 AFTER. */
1060 basic_block
1061 duplicate_block (basic_block bb, edge e, basic_block after)
1063 edge s, n;
1064 basic_block new_bb;
1065 profile_count new_count = e ? e->count (): profile_count::uninitialized ();
1066 edge_iterator ei;
1068 if (!cfg_hooks->duplicate_block)
1069 internal_error ("%s does not support duplicate_block",
1070 cfg_hooks->name);
1072 if (bb->count < new_count)
1073 new_count = bb->count;
1075 gcc_checking_assert (can_duplicate_block_p (bb));
1077 new_bb = cfg_hooks->duplicate_block (bb);
1078 if (after)
1079 move_block_after (new_bb, after);
1081 new_bb->flags = (bb->flags & ~BB_DUPLICATED);
1082 FOR_EACH_EDGE (s, ei, bb->succs)
1084 /* Since we are creating edges from a new block to successors
1085 of another block (which therefore are known to be disjoint), there
1086 is no need to actually check for duplicated edges. */
1087 n = unchecked_make_edge (new_bb, s->dest, s->flags);
1088 n->probability = s->probability;
1089 n->aux = s->aux;
1092 if (e)
1094 new_bb->count = new_count;
1095 bb->count -= new_count;
1097 redirect_edge_and_branch_force (e, new_bb);
1099 else
1100 new_bb->count = bb->count;
1102 set_bb_original (new_bb, bb);
1103 set_bb_copy (bb, new_bb);
1105 /* Add the new block to the copy of the loop of BB, or directly to the loop
1106 of BB if the loop is not being copied. */
1107 if (current_loops != NULL)
1109 struct loop *cloop = bb->loop_father;
1110 struct loop *copy = get_loop_copy (cloop);
1111 /* If we copied the loop header block but not the loop
1112 we have created a loop with multiple entries. Ditch the loop,
1113 add the new block to the outer loop and arrange for a fixup. */
1114 if (!copy
1115 && cloop->header == bb)
1117 add_bb_to_loop (new_bb, loop_outer (cloop));
1118 mark_loop_for_removal (cloop);
1120 else
1122 add_bb_to_loop (new_bb, copy ? copy : cloop);
1123 /* If we copied the loop latch block but not the loop, adjust
1124 loop state. */
1125 if (!copy
1126 && cloop->latch == bb)
1128 cloop->latch = NULL;
1129 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1134 return new_bb;
1137 /* Return 1 if BB ends with a call, possibly followed by some
1138 instructions that must stay with the call, 0 otherwise. */
1140 bool
1141 block_ends_with_call_p (basic_block bb)
1143 if (!cfg_hooks->block_ends_with_call_p)
1144 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1146 return (cfg_hooks->block_ends_with_call_p) (bb);
1149 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1151 bool
1152 block_ends_with_condjump_p (const_basic_block bb)
1154 if (!cfg_hooks->block_ends_with_condjump_p)
1155 internal_error ("%s does not support block_ends_with_condjump_p",
1156 cfg_hooks->name);
1158 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1161 /* Add fake edges to the function exit for any non constant and non noreturn
1162 calls, volatile inline assembly in the bitmap of blocks specified by
1163 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
1164 that were split.
1166 The goal is to expose cases in which entering a basic block does not imply
1167 that all subsequent instructions must be executed. */
1170 flow_call_edges_add (sbitmap blocks)
1172 if (!cfg_hooks->flow_call_edges_add)
1173 internal_error ("%s does not support flow_call_edges_add",
1174 cfg_hooks->name);
1176 return (cfg_hooks->flow_call_edges_add) (blocks);
1179 /* This function is called immediately after edge E is added to the
1180 edge vector E->dest->preds. */
1182 void
1183 execute_on_growing_pred (edge e)
1185 if (! (e->dest->flags & BB_DUPLICATED)
1186 && cfg_hooks->execute_on_growing_pred)
1187 cfg_hooks->execute_on_growing_pred (e);
1190 /* This function is called immediately before edge E is removed from
1191 the edge vector E->dest->preds. */
1193 void
1194 execute_on_shrinking_pred (edge e)
1196 if (! (e->dest->flags & BB_DUPLICATED)
1197 && cfg_hooks->execute_on_shrinking_pred)
1198 cfg_hooks->execute_on_shrinking_pred (e);
1201 /* This is used inside loop versioning when we want to insert
1202 stmts/insns on the edges, which have a different behavior
1203 in tree's and in RTL, so we made a CFG hook. */
1204 void
1205 lv_flush_pending_stmts (edge e)
1207 if (cfg_hooks->flush_pending_stmts)
1208 cfg_hooks->flush_pending_stmts (e);
1211 /* Loop versioning uses the duplicate_loop_to_header_edge to create
1212 a new version of the loop basic-blocks, the parameters here are
1213 exactly the same as in duplicate_loop_to_header_edge or
1214 tree_duplicate_loop_to_header_edge; while in tree-ssa there is
1215 additional work to maintain ssa information that's why there is
1216 a need to call the tree_duplicate_loop_to_header_edge rather
1217 than duplicate_loop_to_header_edge when we are in tree mode. */
1218 bool
1219 cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge e,
1220 unsigned int ndupl,
1221 sbitmap wont_exit, edge orig,
1222 vec<edge> *to_remove,
1223 int flags)
1225 gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge);
1226 return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e,
1227 ndupl, wont_exit,
1228 orig, to_remove,
1229 flags);
1232 /* Conditional jumps are represented differently in trees and RTL,
1233 this hook takes a basic block that is known to have a cond jump
1234 at its end and extracts the taken and not taken edges out of it
1235 and store it in E1 and E2 respectively. */
1236 void
1237 extract_cond_bb_edges (basic_block b, edge *e1, edge *e2)
1239 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1240 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1243 /* Responsible for updating the ssa info (PHI nodes) on the
1244 new condition basic block that guards the versioned loop. */
1245 void
1246 lv_adjust_loop_header_phi (basic_block first, basic_block second,
1247 basic_block new_block, edge e)
1249 if (cfg_hooks->lv_adjust_loop_header_phi)
1250 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
1253 /* Conditions in trees and RTL are different so we need
1254 a different handling when we add the condition to the
1255 versioning code. */
1256 void
1257 lv_add_condition_to_bb (basic_block first, basic_block second,
1258 basic_block new_block, void *cond)
1260 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
1261 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
1264 /* Checks whether all N blocks in BBS array can be copied. */
1265 bool
1266 can_copy_bbs_p (basic_block *bbs, unsigned n)
1268 unsigned i;
1269 edge e;
1270 int ret = true;
1272 for (i = 0; i < n; i++)
1273 bbs[i]->flags |= BB_DUPLICATED;
1275 for (i = 0; i < n; i++)
1277 /* In case we should redirect abnormal edge during duplication, fail. */
1278 edge_iterator ei;
1279 FOR_EACH_EDGE (e, ei, bbs[i]->succs)
1280 if ((e->flags & EDGE_ABNORMAL)
1281 && (e->dest->flags & BB_DUPLICATED))
1283 ret = false;
1284 goto end;
1287 if (!can_duplicate_block_p (bbs[i]))
1289 ret = false;
1290 break;
1294 end:
1295 for (i = 0; i < n; i++)
1296 bbs[i]->flags &= ~BB_DUPLICATED;
1298 return ret;
1301 /* Duplicates N basic blocks stored in array BBS. Newly created basic blocks
1302 are placed into array NEW_BBS in the same order. Edges from basic blocks
1303 in BBS are also duplicated and copies of those that lead into BBS are
1304 redirected to appropriate newly created block. The function assigns bbs
1305 into loops (copy of basic block bb is assigned to bb->loop_father->copy
1306 loop, so this must be set up correctly in advance)
1308 If UPDATE_DOMINANCE is true then this function updates dominators locally
1309 (LOOPS structure that contains the information about dominators is passed
1310 to enable this), otherwise it does not update the dominator information
1311 and it assumed that the caller will do this, perhaps by destroying and
1312 recreating it instead of trying to do an incremental update like this
1313 function does when update_dominance is true.
1315 BASE is the superloop to that basic block belongs; if its header or latch
1316 is copied, we do not set the new blocks as header or latch.
1318 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1319 also in the same order.
1321 Newly created basic blocks are put after the basic block AFTER in the
1322 instruction stream, and the order of the blocks in BBS array is preserved. */
1324 void
1325 copy_bbs (basic_block *bbs, unsigned n, basic_block *new_bbs,
1326 edge *edges, unsigned num_edges, edge *new_edges,
1327 struct loop *base, basic_block after, bool update_dominance)
1329 unsigned i, j;
1330 basic_block bb, new_bb, dom_bb;
1331 edge e;
1333 /* Mark the blocks to be copied. This is used by edge creation hooks
1334 to decide whether to reallocate PHI nodes capacity to avoid reallocating
1335 PHIs in the set of source BBs. */
1336 for (i = 0; i < n; i++)
1337 bbs[i]->flags |= BB_DUPLICATED;
1339 /* Duplicate bbs, update dominators, assign bbs to loops. */
1340 for (i = 0; i < n; i++)
1342 /* Duplicate. */
1343 bb = bbs[i];
1344 new_bb = new_bbs[i] = duplicate_block (bb, NULL, after);
1345 after = new_bb;
1346 if (bb->loop_father)
1348 /* Possibly set loop header. */
1349 if (bb->loop_father->header == bb && bb->loop_father != base)
1350 new_bb->loop_father->header = new_bb;
1351 /* Or latch. */
1352 if (bb->loop_father->latch == bb && bb->loop_father != base)
1353 new_bb->loop_father->latch = new_bb;
1357 /* Set dominators. */
1358 if (update_dominance)
1360 for (i = 0; i < n; i++)
1362 bb = bbs[i];
1363 new_bb = new_bbs[i];
1365 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1366 if (dom_bb->flags & BB_DUPLICATED)
1368 dom_bb = get_bb_copy (dom_bb);
1369 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1374 /* Redirect edges. */
1375 for (j = 0; j < num_edges; j++)
1376 new_edges[j] = NULL;
1377 for (i = 0; i < n; i++)
1379 edge_iterator ei;
1380 new_bb = new_bbs[i];
1381 bb = bbs[i];
1383 FOR_EACH_EDGE (e, ei, new_bb->succs)
1385 for (j = 0; j < num_edges; j++)
1386 if (edges[j] && edges[j]->src == bb && edges[j]->dest == e->dest)
1387 new_edges[j] = e;
1389 if (!(e->dest->flags & BB_DUPLICATED))
1390 continue;
1391 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1395 /* Clear information about duplicates. */
1396 for (i = 0; i < n; i++)
1397 bbs[i]->flags &= ~BB_DUPLICATED;
1400 /* Return true if BB contains only labels or non-executable
1401 instructions */
1402 bool
1403 empty_block_p (basic_block bb)
1405 gcc_assert (cfg_hooks->empty_block_p);
1406 return cfg_hooks->empty_block_p (bb);
1409 /* Split a basic block if it ends with a conditional branch and if
1410 the other part of the block is not empty. */
1411 basic_block
1412 split_block_before_cond_jump (basic_block bb)
1414 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1415 return cfg_hooks->split_block_before_cond_jump (bb);
1418 /* Work-horse for passes.c:check_profile_consistency.
1419 Do book-keeping of the CFG for the profile consistency checker.
1420 If AFTER_PASS is 0, do pre-pass accounting, or if AFTER_PASS is 1
1421 then do post-pass accounting. Store the counting in RECORD. */
1423 void
1424 account_profile_record (struct profile_record *record, int after_pass)
1426 basic_block bb;
1427 edge_iterator ei;
1428 edge e;
1430 FOR_ALL_BB_FN (bb, cfun)
1432 if (bb != EXIT_BLOCK_PTR_FOR_FN (cfun)
1433 && profile_status_for_fn (cfun) != PROFILE_ABSENT)
1435 profile_probability sum = profile_probability::never ();
1436 FOR_EACH_EDGE (e, ei, bb->succs)
1437 sum += e->probability;
1438 if (EDGE_COUNT (bb->succs)
1439 && sum.differs_from_p (profile_probability::always ()))
1440 record->num_mismatched_freq_out[after_pass]++;
1441 profile_count lsum = profile_count::zero ();
1442 FOR_EACH_EDGE (e, ei, bb->succs)
1443 lsum += e->count ();
1444 if (EDGE_COUNT (bb->succs) && (lsum.differs_from_p (bb->count)))
1445 record->num_mismatched_count_out[after_pass]++;
1447 if (bb != ENTRY_BLOCK_PTR_FOR_FN (cfun)
1448 && profile_status_for_fn (cfun) != PROFILE_ABSENT)
1450 profile_count lsum = profile_count::zero ();
1451 FOR_EACH_EDGE (e, ei, bb->preds)
1452 lsum += e->count ();
1453 if (lsum.differs_from_p (bb->count))
1454 record->num_mismatched_count_in[after_pass]++;
1456 if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun)
1457 || bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
1458 continue;
1459 gcc_assert (cfg_hooks->account_profile_record);
1460 cfg_hooks->account_profile_record (bb, after_pass, record);