* config/pa/pa.md (integer_indexed_store splitters): Use
[official-gcc.git] / gcc / cfghooks.c
blob02fc1ae649f04d932ab8165211ab5c494cf3f9ab
1 /* Hooks for cfg representation specific functions.
2 Copyright (C) 2003-2015 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 "dumpfile.h"
25 #include "tm.h"
26 #include "hash-set.h"
27 #include "machmode.h"
28 #include "vec.h"
29 #include "double-int.h"
30 #include "input.h"
31 #include "alias.h"
32 #include "symtab.h"
33 #include "wide-int.h"
34 #include "inchash.h"
35 #include "tree.h"
36 #include "rtl.h"
37 #include "predict.h"
38 #include "vec.h"
39 #include "hashtab.h"
40 #include "hash-set.h"
41 #include "machmode.h"
42 #include "hard-reg-set.h"
43 #include "input.h"
44 #include "function.h"
45 #include "dominance.h"
46 #include "cfg.h"
47 #include "cfganal.h"
48 #include "basic-block.h"
49 #include "tree-ssa.h"
50 #include "timevar.h"
51 #include "diagnostic-core.h"
52 #include "cfgloop.h"
53 #include "pretty-print.h"
55 /* A pointer to one of the hooks containers. */
56 static struct cfg_hooks *cfg_hooks;
58 /* Initialization of functions specific to the rtl IR. */
59 void
60 rtl_register_cfg_hooks (void)
62 cfg_hooks = &rtl_cfg_hooks;
65 /* Initialization of functions specific to the rtl IR. */
66 void
67 cfg_layout_rtl_register_cfg_hooks (void)
69 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
72 /* Initialization of functions specific to the tree IR. */
74 void
75 gimple_register_cfg_hooks (void)
77 cfg_hooks = &gimple_cfg_hooks;
80 struct cfg_hooks
81 get_cfg_hooks (void)
83 return *cfg_hooks;
86 void
87 set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
89 *cfg_hooks = new_cfg_hooks;
92 /* Returns current ir type. */
94 enum ir_type
95 current_ir_type (void)
97 if (cfg_hooks == &gimple_cfg_hooks)
98 return IR_GIMPLE;
99 else if (cfg_hooks == &rtl_cfg_hooks)
100 return IR_RTL_CFGRTL;
101 else if (cfg_hooks == &cfg_layout_rtl_cfg_hooks)
102 return IR_RTL_CFGLAYOUT;
103 else
104 gcc_unreachable ();
107 /* Verify the CFG consistency.
109 Currently it does following: checks edge and basic block list correctness
110 and calls into IL dependent checking then. */
112 DEBUG_FUNCTION void
113 verify_flow_info (void)
115 size_t *edge_checksum;
116 int err = 0;
117 basic_block bb, last_bb_seen;
118 basic_block *last_visited;
120 timevar_push (TV_CFG_VERIFY);
121 last_visited = XCNEWVEC (basic_block, last_basic_block_for_fn (cfun));
122 edge_checksum = XCNEWVEC (size_t, last_basic_block_for_fn (cfun));
124 /* Check bb chain & numbers. */
125 last_bb_seen = ENTRY_BLOCK_PTR_FOR_FN (cfun);
126 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb, NULL, next_bb)
128 if (bb != EXIT_BLOCK_PTR_FOR_FN (cfun)
129 && bb != BASIC_BLOCK_FOR_FN (cfun, bb->index))
131 error ("bb %d on wrong place", bb->index);
132 err = 1;
135 if (bb->prev_bb != last_bb_seen)
137 error ("prev_bb of %d should be %d, not %d",
138 bb->index, last_bb_seen->index, bb->prev_bb->index);
139 err = 1;
142 last_bb_seen = bb;
145 /* Now check the basic blocks (boundaries etc.) */
146 FOR_EACH_BB_REVERSE_FN (bb, cfun)
148 int n_fallthru = 0;
149 edge e;
150 edge_iterator ei;
152 if (bb->loop_father != NULL && current_loops == NULL)
154 error ("verify_flow_info: Block %i has loop_father, but there are no loops",
155 bb->index);
156 err = 1;
158 if (bb->loop_father == NULL && current_loops != NULL)
160 error ("verify_flow_info: Block %i lacks loop_father", bb->index);
161 err = 1;
164 if (bb->count < 0)
166 error ("verify_flow_info: Wrong count of block %i %i",
167 bb->index, (int)bb->count);
168 err = 1;
170 if (bb->frequency < 0)
172 error ("verify_flow_info: Wrong frequency of block %i %i",
173 bb->index, bb->frequency);
174 err = 1;
176 FOR_EACH_EDGE (e, ei, bb->succs)
178 if (last_visited [e->dest->index] == bb)
180 error ("verify_flow_info: Duplicate edge %i->%i",
181 e->src->index, e->dest->index);
182 err = 1;
184 if (e->probability < 0 || e->probability > REG_BR_PROB_BASE)
186 error ("verify_flow_info: Wrong probability of edge %i->%i %i",
187 e->src->index, e->dest->index, e->probability);
188 err = 1;
190 if (e->count < 0)
192 error ("verify_flow_info: Wrong count of edge %i->%i %i",
193 e->src->index, e->dest->index, (int)e->count);
194 err = 1;
197 last_visited [e->dest->index] = bb;
199 if (e->flags & EDGE_FALLTHRU)
200 n_fallthru++;
202 if (e->src != bb)
204 error ("verify_flow_info: Basic block %d succ edge is corrupted",
205 bb->index);
206 fprintf (stderr, "Predecessor: ");
207 dump_edge_info (stderr, e, TDF_DETAILS, 0);
208 fprintf (stderr, "\nSuccessor: ");
209 dump_edge_info (stderr, e, TDF_DETAILS, 1);
210 fprintf (stderr, "\n");
211 err = 1;
214 edge_checksum[e->dest->index] += (size_t) e;
216 if (n_fallthru > 1)
218 error ("wrong amount of branch edges after unconditional jump %i", bb->index);
219 err = 1;
222 FOR_EACH_EDGE (e, ei, bb->preds)
224 if (e->dest != bb)
226 error ("basic block %d pred edge is corrupted", bb->index);
227 fputs ("Predecessor: ", stderr);
228 dump_edge_info (stderr, e, TDF_DETAILS, 0);
229 fputs ("\nSuccessor: ", stderr);
230 dump_edge_info (stderr, e, TDF_DETAILS, 1);
231 fputc ('\n', stderr);
232 err = 1;
235 if (ei.index != e->dest_idx)
237 error ("basic block %d pred edge is corrupted", bb->index);
238 error ("its dest_idx should be %d, not %d",
239 ei.index, e->dest_idx);
240 fputs ("Predecessor: ", stderr);
241 dump_edge_info (stderr, e, TDF_DETAILS, 0);
242 fputs ("\nSuccessor: ", stderr);
243 dump_edge_info (stderr, e, TDF_DETAILS, 1);
244 fputc ('\n', stderr);
245 err = 1;
248 edge_checksum[e->dest->index] -= (size_t) e;
252 /* Complete edge checksumming for ENTRY and EXIT. */
254 edge e;
255 edge_iterator ei;
257 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs)
258 edge_checksum[e->dest->index] += (size_t) e;
260 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
261 edge_checksum[e->dest->index] -= (size_t) e;
264 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun), NULL, next_bb)
265 if (edge_checksum[bb->index])
267 error ("basic block %i edge lists are corrupted", bb->index);
268 err = 1;
271 last_bb_seen = ENTRY_BLOCK_PTR_FOR_FN (cfun);
273 /* Clean up. */
274 free (last_visited);
275 free (edge_checksum);
277 if (cfg_hooks->verify_flow_info)
278 err |= cfg_hooks->verify_flow_info ();
279 if (err)
280 internal_error ("verify_flow_info failed");
281 timevar_pop (TV_CFG_VERIFY);
284 /* Print out one basic block BB to file OUTF. INDENT is printed at the
285 start of each new line. FLAGS are the TDF_* flags in dumpfile.h.
287 This function takes care of the purely graph related information.
288 The cfg hook for the active representation should dump
289 representation-specific information. */
291 void
292 dump_bb (FILE *outf, basic_block bb, int indent, int flags)
294 if (flags & TDF_BLOCKS)
295 dump_bb_info (outf, bb, indent, flags, true, false);
296 if (cfg_hooks->dump_bb)
297 cfg_hooks->dump_bb (outf, bb, indent, flags);
298 if (flags & TDF_BLOCKS)
299 dump_bb_info (outf, bb, indent, flags, false, true);
300 fputc ('\n', outf);
303 DEBUG_FUNCTION void
304 debug (basic_block_def &ref)
306 dump_bb (stderr, &ref, 0, 0);
309 DEBUG_FUNCTION void
310 debug (basic_block_def *ptr)
312 if (ptr)
313 debug (*ptr);
314 else
315 fprintf (stderr, "<nil>\n");
319 /* Dumps basic block BB to pretty-printer PP, for use as a label of
320 a DOT graph record-node. The implementation of this hook is
321 expected to write the label to the stream that is attached to PP.
322 Field separators between instructions are pipe characters printed
323 verbatim. Instructions should be written with some characters
324 escaped, using pp_write_text_as_dot_label_to_stream(). */
326 void
327 dump_bb_for_graph (pretty_printer *pp, basic_block bb)
329 if (!cfg_hooks->dump_bb_for_graph)
330 internal_error ("%s does not support dump_bb_for_graph",
331 cfg_hooks->name);
332 if (bb->count)
333 pp_printf (pp, "COUNT:" "%" PRId64, bb->count);
334 pp_printf (pp, " FREQ:%i |", bb->frequency);
335 pp_write_text_to_stream (pp);
336 if (!(dump_flags & TDF_SLIM))
337 cfg_hooks->dump_bb_for_graph (pp, bb);
340 /* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
341 void
342 dump_flow_info (FILE *file, int flags)
344 basic_block bb;
346 fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks_for_fn (cfun),
347 n_edges_for_fn (cfun));
348 FOR_ALL_BB_FN (bb, cfun)
349 dump_bb (file, bb, 0, flags);
351 putc ('\n', file);
354 /* Like above, but dump to stderr. To be called from debuggers. */
355 void debug_flow_info (void);
356 DEBUG_FUNCTION void
357 debug_flow_info (void)
359 dump_flow_info (stderr, TDF_DETAILS);
362 /* Redirect edge E to the given basic block DEST and update underlying program
363 representation. Returns edge representing redirected branch (that may not
364 be equivalent to E in the case of duplicate edges being removed) or NULL
365 if edge is not easily redirectable for whatever reason. */
367 edge
368 redirect_edge_and_branch (edge e, basic_block dest)
370 edge ret;
372 if (!cfg_hooks->redirect_edge_and_branch)
373 internal_error ("%s does not support redirect_edge_and_branch",
374 cfg_hooks->name);
376 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
378 /* If RET != E, then either the redirection failed, or the edge E
379 was removed since RET already lead to the same destination. */
380 if (current_loops != NULL && ret == e)
381 rescan_loop_exit (e, false, false);
383 return ret;
386 /* Returns true if it is possible to remove the edge E by redirecting it
387 to the destination of the other edge going from its source. */
389 bool
390 can_remove_branch_p (const_edge e)
392 if (!cfg_hooks->can_remove_branch_p)
393 internal_error ("%s does not support can_remove_branch_p",
394 cfg_hooks->name);
396 if (EDGE_COUNT (e->src->succs) != 2)
397 return false;
399 return cfg_hooks->can_remove_branch_p (e);
402 /* Removes E, by redirecting it to the destination of the other edge going
403 from its source. Can_remove_branch_p must be true for E, hence this
404 operation cannot fail. */
406 void
407 remove_branch (edge e)
409 edge other;
410 basic_block src = e->src;
411 int irr;
413 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
415 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
416 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
418 e = redirect_edge_and_branch (e, other->dest);
419 gcc_assert (e != NULL);
421 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
422 e->flags |= irr;
425 /* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
427 void
428 remove_edge (edge e)
430 if (current_loops != NULL)
431 rescan_loop_exit (e, false, true);
433 /* This is probably not needed, but it doesn't hurt. */
434 /* FIXME: This should be called via a remove_edge hook. */
435 if (current_ir_type () == IR_GIMPLE)
436 redirect_edge_var_map_clear (e);
438 remove_edge_raw (e);
441 /* Like redirect_edge_succ but avoid possible duplicate edge. */
443 edge
444 redirect_edge_succ_nodup (edge e, basic_block new_succ)
446 edge s;
448 s = find_edge (e->src, new_succ);
449 if (s && s != e)
451 s->flags |= e->flags;
452 s->probability += e->probability;
453 if (s->probability > REG_BR_PROB_BASE)
454 s->probability = REG_BR_PROB_BASE;
455 s->count += e->count;
456 /* FIXME: This should be called via a hook and only for IR_GIMPLE. */
457 redirect_edge_var_map_dup (s, e);
458 remove_edge (e);
459 e = s;
461 else
462 redirect_edge_succ (e, new_succ);
464 return e;
467 /* Redirect the edge E to basic block DEST even if it requires creating
468 of a new basic block; then it returns the newly created basic block.
469 Aborts when redirection is impossible. */
471 basic_block
472 redirect_edge_and_branch_force (edge e, basic_block dest)
474 basic_block ret, src = e->src;
476 if (!cfg_hooks->redirect_edge_and_branch_force)
477 internal_error ("%s does not support redirect_edge_and_branch_force",
478 cfg_hooks->name);
480 if (current_loops != NULL)
481 rescan_loop_exit (e, false, true);
483 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
485 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
486 set_immediate_dominator (CDI_DOMINATORS, ret, src);
488 if (current_loops != NULL)
490 if (ret != NULL)
492 struct loop *loop
493 = find_common_loop (single_pred (ret)->loop_father,
494 single_succ (ret)->loop_father);
495 add_bb_to_loop (ret, loop);
497 else if (find_edge (src, dest) == e)
498 rescan_loop_exit (e, true, false);
501 return ret;
504 /* Splits basic block BB after the specified instruction I (but at least after
505 the labels). If I is NULL, splits just after labels. The newly created edge
506 is returned. The new basic block is created just after the old one. */
508 static edge
509 split_block_1 (basic_block bb, void *i)
511 basic_block new_bb;
512 edge res;
514 if (!cfg_hooks->split_block)
515 internal_error ("%s does not support split_block", cfg_hooks->name);
517 new_bb = cfg_hooks->split_block (bb, i);
518 if (!new_bb)
519 return NULL;
521 new_bb->count = bb->count;
522 new_bb->frequency = bb->frequency;
523 new_bb->discriminator = bb->discriminator;
525 if (dom_info_available_p (CDI_DOMINATORS))
527 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
528 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
531 if (current_loops != NULL)
533 edge_iterator ei;
534 edge e;
535 add_bb_to_loop (new_bb, bb->loop_father);
536 /* Identify all loops bb may have been the latch of and adjust them. */
537 FOR_EACH_EDGE (e, ei, new_bb->succs)
538 if (e->dest->loop_father->latch == bb)
539 e->dest->loop_father->latch = new_bb;
542 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
544 if (bb->flags & BB_IRREDUCIBLE_LOOP)
546 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
547 res->flags |= EDGE_IRREDUCIBLE_LOOP;
550 return res;
553 edge
554 split_block (basic_block bb, gimple i)
556 return split_block_1 (bb, i);
559 edge
560 split_block (basic_block bb, rtx i)
562 return split_block_1 (bb, i);
565 /* Splits block BB just after labels. The newly created edge is returned. */
567 edge
568 split_block_after_labels (basic_block bb)
570 return split_block_1 (bb, NULL);
573 /* Moves block BB immediately after block AFTER. Returns false if the
574 movement was impossible. */
576 bool
577 move_block_after (basic_block bb, basic_block after)
579 bool ret;
581 if (!cfg_hooks->move_block_after)
582 internal_error ("%s does not support move_block_after", cfg_hooks->name);
584 ret = cfg_hooks->move_block_after (bb, after);
586 return ret;
589 /* Deletes the basic block BB. */
591 void
592 delete_basic_block (basic_block bb)
594 if (!cfg_hooks->delete_basic_block)
595 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
597 cfg_hooks->delete_basic_block (bb);
599 if (current_loops != NULL)
601 struct loop *loop = bb->loop_father;
603 /* If we remove the header or the latch of a loop, mark the loop for
604 removal. */
605 if (loop->latch == bb
606 || loop->header == bb)
607 mark_loop_for_removal (loop);
609 remove_bb_from_loops (bb);
612 /* Remove the edges into and out of this block. Note that there may
613 indeed be edges in, if we are removing an unreachable loop. */
614 while (EDGE_COUNT (bb->preds) != 0)
615 remove_edge (EDGE_PRED (bb, 0));
616 while (EDGE_COUNT (bb->succs) != 0)
617 remove_edge (EDGE_SUCC (bb, 0));
619 if (dom_info_available_p (CDI_DOMINATORS))
620 delete_from_dominance_info (CDI_DOMINATORS, bb);
621 if (dom_info_available_p (CDI_POST_DOMINATORS))
622 delete_from_dominance_info (CDI_POST_DOMINATORS, bb);
624 /* Remove the basic block from the array. */
625 expunge_block (bb);
628 /* Splits edge E and returns the newly created basic block. */
630 basic_block
631 split_edge (edge e)
633 basic_block ret;
634 gcov_type count = e->count;
635 int freq = EDGE_FREQUENCY (e);
636 edge f;
637 bool irr = (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
638 struct loop *loop;
639 basic_block src = e->src, dest = e->dest;
641 if (!cfg_hooks->split_edge)
642 internal_error ("%s does not support split_edge", cfg_hooks->name);
644 if (current_loops != NULL)
645 rescan_loop_exit (e, false, true);
647 ret = cfg_hooks->split_edge (e);
648 ret->count = count;
649 ret->frequency = freq;
650 single_succ_edge (ret)->probability = REG_BR_PROB_BASE;
651 single_succ_edge (ret)->count = count;
653 if (irr)
655 ret->flags |= BB_IRREDUCIBLE_LOOP;
656 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
657 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
660 if (dom_info_available_p (CDI_DOMINATORS))
661 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
663 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
665 /* There are two cases:
667 If the immediate dominator of e->dest is not e->src, it
668 remains unchanged.
670 If immediate dominator of e->dest is e->src, it may become
671 ret, provided that all other predecessors of e->dest are
672 dominated by e->dest. */
674 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
675 == single_pred (ret))
677 edge_iterator ei;
678 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
680 if (f == single_succ_edge (ret))
681 continue;
683 if (!dominated_by_p (CDI_DOMINATORS, f->src,
684 single_succ (ret)))
685 break;
688 if (!f)
689 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
693 if (current_loops != NULL)
695 loop = find_common_loop (src->loop_father, dest->loop_father);
696 add_bb_to_loop (ret, loop);
698 /* If we split the latch edge of loop adjust the latch block. */
699 if (loop->latch == src
700 && loop->header == dest)
701 loop->latch = ret;
704 return ret;
707 /* Creates a new basic block just after the basic block AFTER.
708 HEAD and END are the first and the last statement belonging
709 to the block. If both are NULL, an empty block is created. */
711 static basic_block
712 create_basic_block_1 (void *head, void *end, basic_block after)
714 basic_block ret;
716 if (!cfg_hooks->create_basic_block)
717 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
719 ret = cfg_hooks->create_basic_block (head, end, after);
721 if (dom_info_available_p (CDI_DOMINATORS))
722 add_to_dominance_info (CDI_DOMINATORS, ret);
723 if (dom_info_available_p (CDI_POST_DOMINATORS))
724 add_to_dominance_info (CDI_POST_DOMINATORS, ret);
726 return ret;
729 basic_block
730 create_basic_block (gimple_seq seq, basic_block after)
732 return create_basic_block_1 (seq, NULL, after);
735 basic_block
736 create_basic_block (rtx head, rtx end, basic_block after)
738 return create_basic_block_1 (head, end, after);
742 /* Creates an empty basic block just after basic block AFTER. */
744 basic_block
745 create_empty_bb (basic_block after)
747 return create_basic_block_1 (NULL, NULL, after);
750 /* Checks whether we may merge blocks BB1 and BB2. */
752 bool
753 can_merge_blocks_p (basic_block bb1, basic_block bb2)
755 bool ret;
757 if (!cfg_hooks->can_merge_blocks_p)
758 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
760 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
762 return ret;
765 void
766 predict_edge (edge e, enum br_predictor predictor, int probability)
768 if (!cfg_hooks->predict_edge)
769 internal_error ("%s does not support predict_edge", cfg_hooks->name);
771 cfg_hooks->predict_edge (e, predictor, probability);
774 bool
775 predicted_by_p (const_basic_block bb, enum br_predictor predictor)
777 if (!cfg_hooks->predict_edge)
778 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
780 return cfg_hooks->predicted_by_p (bb, predictor);
783 /* Merges basic block B into basic block A. */
785 void
786 merge_blocks (basic_block a, basic_block b)
788 edge e;
789 edge_iterator ei;
791 if (!cfg_hooks->merge_blocks)
792 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
794 cfg_hooks->merge_blocks (a, b);
796 if (current_loops != NULL)
798 /* If the block we merge into is a loop header do nothing unless ... */
799 if (a->loop_father->header == a)
801 /* ... we merge two loop headers, in which case we kill
802 the inner loop. */
803 if (b->loop_father->header == b)
804 mark_loop_for_removal (b->loop_father);
806 /* If we merge a loop header into its predecessor, update the loop
807 structure. */
808 else if (b->loop_father->header == b)
810 remove_bb_from_loops (a);
811 add_bb_to_loop (a, b->loop_father);
812 a->loop_father->header = a;
814 /* If we merge a loop latch into its predecessor, update the loop
815 structure. */
816 if (b->loop_father->latch
817 && b->loop_father->latch == b)
818 b->loop_father->latch = a;
819 remove_bb_from_loops (b);
822 /* Normally there should only be one successor of A and that is B, but
823 partway though the merge of blocks for conditional_execution we'll
824 be merging a TEST block with THEN and ELSE successors. Free the
825 whole lot of them and hope the caller knows what they're doing. */
827 while (EDGE_COUNT (a->succs) != 0)
828 remove_edge (EDGE_SUCC (a, 0));
830 /* Adjust the edges out of B for the new owner. */
831 FOR_EACH_EDGE (e, ei, b->succs)
833 e->src = a;
834 if (current_loops != NULL)
836 /* If b was a latch, a now is. */
837 if (e->dest->loop_father->latch == b)
838 e->dest->loop_father->latch = a;
839 rescan_loop_exit (e, true, false);
842 a->succs = b->succs;
843 a->flags |= b->flags;
845 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
846 b->preds = b->succs = NULL;
848 if (dom_info_available_p (CDI_DOMINATORS))
849 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
851 if (dom_info_available_p (CDI_DOMINATORS))
852 delete_from_dominance_info (CDI_DOMINATORS, b);
853 if (dom_info_available_p (CDI_POST_DOMINATORS))
854 delete_from_dominance_info (CDI_POST_DOMINATORS, b);
856 expunge_block (b);
859 /* Split BB into entry part and the rest (the rest is the newly created block).
860 Redirect those edges for that REDIRECT_EDGE_P returns true to the entry
861 part. Returns the edge connecting the entry part to the rest. */
863 edge
864 make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
865 void (*new_bb_cbk) (basic_block))
867 edge e, fallthru;
868 edge_iterator ei;
869 basic_block dummy, jump;
870 struct loop *loop, *ploop, *cloop;
872 if (!cfg_hooks->make_forwarder_block)
873 internal_error ("%s does not support make_forwarder_block",
874 cfg_hooks->name);
876 fallthru = split_block_after_labels (bb);
877 dummy = fallthru->src;
878 dummy->count = 0;
879 dummy->frequency = 0;
880 fallthru->count = 0;
881 bb = fallthru->dest;
883 /* Redirect back edges we want to keep. */
884 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
886 basic_block e_src;
888 if (redirect_edge_p (e))
890 dummy->frequency += EDGE_FREQUENCY (e);
891 if (dummy->frequency > BB_FREQ_MAX)
892 dummy->frequency = BB_FREQ_MAX;
894 dummy->count += e->count;
895 fallthru->count += e->count;
896 ei_next (&ei);
897 continue;
900 e_src = e->src;
901 jump = redirect_edge_and_branch_force (e, bb);
902 if (jump != NULL)
904 /* If we redirected the loop latch edge, the JUMP block now acts like
905 the new latch of the loop. */
906 if (current_loops != NULL
907 && dummy->loop_father != NULL
908 && dummy->loop_father->header == dummy
909 && dummy->loop_father->latch == e_src)
910 dummy->loop_father->latch = jump;
912 if (new_bb_cbk != NULL)
913 new_bb_cbk (jump);
917 if (dom_info_available_p (CDI_DOMINATORS))
919 vec<basic_block> doms_to_fix;
920 doms_to_fix.create (2);
921 doms_to_fix.quick_push (dummy);
922 doms_to_fix.quick_push (bb);
923 iterate_fix_dominators (CDI_DOMINATORS, doms_to_fix, false);
924 doms_to_fix.release ();
927 if (current_loops != NULL)
929 /* If we do not split a loop header, then both blocks belong to the
930 same loop. In case we split loop header and do not redirect the
931 latch edge to DUMMY, then DUMMY belongs to the outer loop, and
932 BB becomes the new header. If latch is not recorded for the loop,
933 we leave this updating on the caller (this may only happen during
934 loop analysis). */
935 loop = dummy->loop_father;
936 if (loop->header == dummy
937 && loop->latch != NULL
938 && find_edge (loop->latch, dummy) == NULL)
940 remove_bb_from_loops (dummy);
941 loop->header = bb;
943 cloop = loop;
944 FOR_EACH_EDGE (e, ei, dummy->preds)
946 cloop = find_common_loop (cloop, e->src->loop_father);
948 add_bb_to_loop (dummy, cloop);
951 /* In case we split loop latch, update it. */
952 for (ploop = loop; ploop; ploop = loop_outer (ploop))
953 if (ploop->latch == dummy)
954 ploop->latch = bb;
957 cfg_hooks->make_forwarder_block (fallthru);
959 return fallthru;
962 /* Try to make the edge fallthru. */
964 void
965 tidy_fallthru_edge (edge e)
967 if (cfg_hooks->tidy_fallthru_edge)
968 cfg_hooks->tidy_fallthru_edge (e);
971 /* Fix up edges that now fall through, or rather should now fall through
972 but previously required a jump around now deleted blocks. Simplify
973 the search by only examining blocks numerically adjacent, since this
974 is how they were created.
976 ??? This routine is currently RTL specific. */
978 void
979 tidy_fallthru_edges (void)
981 basic_block b, c;
983 if (!cfg_hooks->tidy_fallthru_edge)
984 return;
986 if (ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
987 return;
989 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb,
990 EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb, next_bb)
992 edge s;
994 c = b->next_bb;
996 /* We care about simple conditional or unconditional jumps with
997 a single successor.
999 If we had a conditional branch to the next instruction when
1000 CFG was built, then there will only be one out edge for the
1001 block which ended with the conditional branch (since we do
1002 not create duplicate edges).
1004 Furthermore, the edge will be marked as a fallthru because we
1005 merge the flags for the duplicate edges. So we do not want to
1006 check that the edge is not a FALLTHRU edge. */
1008 if (single_succ_p (b))
1010 s = single_succ_edge (b);
1011 if (! (s->flags & EDGE_COMPLEX)
1012 && s->dest == c
1013 && !(JUMP_P (BB_END (b)) && CROSSING_JUMP_P (BB_END (b))))
1014 tidy_fallthru_edge (s);
1019 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
1020 (and possibly create new basic block) to make edge non-fallthru.
1021 Return newly created BB or NULL if none. */
1023 basic_block
1024 force_nonfallthru (edge e)
1026 basic_block ret, src = e->src;
1028 if (!cfg_hooks->force_nonfallthru)
1029 internal_error ("%s does not support force_nonfallthru",
1030 cfg_hooks->name);
1032 ret = cfg_hooks->force_nonfallthru (e);
1033 if (ret != NULL)
1035 if (dom_info_available_p (CDI_DOMINATORS))
1036 set_immediate_dominator (CDI_DOMINATORS, ret, src);
1038 if (current_loops != NULL)
1040 struct loop *loop
1041 = find_common_loop (single_pred (ret)->loop_father,
1042 single_succ (ret)->loop_father);
1043 rescan_loop_exit (e, false, true);
1044 add_bb_to_loop (ret, loop);
1048 return ret;
1051 /* Returns true if we can duplicate basic block BB. */
1053 bool
1054 can_duplicate_block_p (const_basic_block bb)
1056 if (!cfg_hooks->can_duplicate_block_p)
1057 internal_error ("%s does not support can_duplicate_block_p",
1058 cfg_hooks->name);
1060 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun) || bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1061 return false;
1063 return cfg_hooks->can_duplicate_block_p (bb);
1066 /* Duplicates basic block BB and redirects edge E to it. Returns the
1067 new basic block. The new basic block is placed after the basic block
1068 AFTER. */
1070 basic_block
1071 duplicate_block (basic_block bb, edge e, basic_block after)
1073 edge s, n;
1074 basic_block new_bb;
1075 gcov_type new_count = e ? e->count : 0;
1076 edge_iterator ei;
1078 if (!cfg_hooks->duplicate_block)
1079 internal_error ("%s does not support duplicate_block",
1080 cfg_hooks->name);
1082 if (bb->count < new_count)
1083 new_count = bb->count;
1085 gcc_checking_assert (can_duplicate_block_p (bb));
1087 new_bb = cfg_hooks->duplicate_block (bb);
1088 if (after)
1089 move_block_after (new_bb, after);
1091 new_bb->flags = bb->flags;
1092 FOR_EACH_EDGE (s, ei, bb->succs)
1094 /* Since we are creating edges from a new block to successors
1095 of another block (which therefore are known to be disjoint), there
1096 is no need to actually check for duplicated edges. */
1097 n = unchecked_make_edge (new_bb, s->dest, s->flags);
1098 n->probability = s->probability;
1099 if (e && bb->count)
1101 /* Take care for overflows! */
1102 n->count = s->count * (new_count * 10000 / bb->count) / 10000;
1103 s->count -= n->count;
1105 else
1106 n->count = s->count;
1107 n->aux = s->aux;
1110 if (e)
1112 new_bb->count = new_count;
1113 bb->count -= new_count;
1115 new_bb->frequency = EDGE_FREQUENCY (e);
1116 bb->frequency -= EDGE_FREQUENCY (e);
1118 redirect_edge_and_branch_force (e, new_bb);
1120 if (bb->count < 0)
1121 bb->count = 0;
1122 if (bb->frequency < 0)
1123 bb->frequency = 0;
1125 else
1127 new_bb->count = bb->count;
1128 new_bb->frequency = bb->frequency;
1131 set_bb_original (new_bb, bb);
1132 set_bb_copy (bb, new_bb);
1134 /* Add the new block to the copy of the loop of BB, or directly to the loop
1135 of BB if the loop is not being copied. */
1136 if (current_loops != NULL)
1138 struct loop *cloop = bb->loop_father;
1139 struct loop *copy = get_loop_copy (cloop);
1140 /* If we copied the loop header block but not the loop
1141 we have created a loop with multiple entries. Ditch the loop,
1142 add the new block to the outer loop and arrange for a fixup. */
1143 if (!copy
1144 && cloop->header == bb)
1146 add_bb_to_loop (new_bb, loop_outer (cloop));
1147 mark_loop_for_removal (cloop);
1149 else
1151 add_bb_to_loop (new_bb, copy ? copy : cloop);
1152 /* If we copied the loop latch block but not the loop, adjust
1153 loop state. */
1154 if (!copy
1155 && cloop->latch == bb)
1157 cloop->latch = NULL;
1158 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1163 return new_bb;
1166 /* Return 1 if BB ends with a call, possibly followed by some
1167 instructions that must stay with the call, 0 otherwise. */
1169 bool
1170 block_ends_with_call_p (basic_block bb)
1172 if (!cfg_hooks->block_ends_with_call_p)
1173 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1175 return (cfg_hooks->block_ends_with_call_p) (bb);
1178 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1180 bool
1181 block_ends_with_condjump_p (const_basic_block bb)
1183 if (!cfg_hooks->block_ends_with_condjump_p)
1184 internal_error ("%s does not support block_ends_with_condjump_p",
1185 cfg_hooks->name);
1187 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1190 /* Add fake edges to the function exit for any non constant and non noreturn
1191 calls, volatile inline assembly in the bitmap of blocks specified by
1192 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
1193 that were split.
1195 The goal is to expose cases in which entering a basic block does not imply
1196 that all subsequent instructions must be executed. */
1199 flow_call_edges_add (sbitmap blocks)
1201 if (!cfg_hooks->flow_call_edges_add)
1202 internal_error ("%s does not support flow_call_edges_add",
1203 cfg_hooks->name);
1205 return (cfg_hooks->flow_call_edges_add) (blocks);
1208 /* This function is called immediately after edge E is added to the
1209 edge vector E->dest->preds. */
1211 void
1212 execute_on_growing_pred (edge e)
1214 if (cfg_hooks->execute_on_growing_pred)
1215 cfg_hooks->execute_on_growing_pred (e);
1218 /* This function is called immediately before edge E is removed from
1219 the edge vector E->dest->preds. */
1221 void
1222 execute_on_shrinking_pred (edge e)
1224 if (cfg_hooks->execute_on_shrinking_pred)
1225 cfg_hooks->execute_on_shrinking_pred (e);
1228 /* This is used inside loop versioning when we want to insert
1229 stmts/insns on the edges, which have a different behavior
1230 in tree's and in RTL, so we made a CFG hook. */
1231 void
1232 lv_flush_pending_stmts (edge e)
1234 if (cfg_hooks->flush_pending_stmts)
1235 cfg_hooks->flush_pending_stmts (e);
1238 /* Loop versioning uses the duplicate_loop_to_header_edge to create
1239 a new version of the loop basic-blocks, the parameters here are
1240 exactly the same as in duplicate_loop_to_header_edge or
1241 tree_duplicate_loop_to_header_edge; while in tree-ssa there is
1242 additional work to maintain ssa information that's why there is
1243 a need to call the tree_duplicate_loop_to_header_edge rather
1244 than duplicate_loop_to_header_edge when we are in tree mode. */
1245 bool
1246 cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge e,
1247 unsigned int ndupl,
1248 sbitmap wont_exit, edge orig,
1249 vec<edge> *to_remove,
1250 int flags)
1252 gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge);
1253 return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e,
1254 ndupl, wont_exit,
1255 orig, to_remove,
1256 flags);
1259 /* Conditional jumps are represented differently in trees and RTL,
1260 this hook takes a basic block that is known to have a cond jump
1261 at its end and extracts the taken and not taken edges out of it
1262 and store it in E1 and E2 respectively. */
1263 void
1264 extract_cond_bb_edges (basic_block b, edge *e1, edge *e2)
1266 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1267 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1270 /* Responsible for updating the ssa info (PHI nodes) on the
1271 new condition basic block that guards the versioned loop. */
1272 void
1273 lv_adjust_loop_header_phi (basic_block first, basic_block second,
1274 basic_block new_block, edge e)
1276 if (cfg_hooks->lv_adjust_loop_header_phi)
1277 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
1280 /* Conditions in trees and RTL are different so we need
1281 a different handling when we add the condition to the
1282 versioning code. */
1283 void
1284 lv_add_condition_to_bb (basic_block first, basic_block second,
1285 basic_block new_block, void *cond)
1287 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
1288 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
1291 /* Checks whether all N blocks in BBS array can be copied. */
1292 bool
1293 can_copy_bbs_p (basic_block *bbs, unsigned n)
1295 unsigned i;
1296 edge e;
1297 int ret = true;
1299 for (i = 0; i < n; i++)
1300 bbs[i]->flags |= BB_DUPLICATED;
1302 for (i = 0; i < n; i++)
1304 /* In case we should redirect abnormal edge during duplication, fail. */
1305 edge_iterator ei;
1306 FOR_EACH_EDGE (e, ei, bbs[i]->succs)
1307 if ((e->flags & EDGE_ABNORMAL)
1308 && (e->dest->flags & BB_DUPLICATED))
1310 ret = false;
1311 goto end;
1314 if (!can_duplicate_block_p (bbs[i]))
1316 ret = false;
1317 break;
1321 end:
1322 for (i = 0; i < n; i++)
1323 bbs[i]->flags &= ~BB_DUPLICATED;
1325 return ret;
1328 /* Duplicates N basic blocks stored in array BBS. Newly created basic blocks
1329 are placed into array NEW_BBS in the same order. Edges from basic blocks
1330 in BBS are also duplicated and copies of those that lead into BBS are
1331 redirected to appropriate newly created block. The function assigns bbs
1332 into loops (copy of basic block bb is assigned to bb->loop_father->copy
1333 loop, so this must be set up correctly in advance)
1335 If UPDATE_DOMINANCE is true then this function updates dominators locally
1336 (LOOPS structure that contains the information about dominators is passed
1337 to enable this), otherwise it does not update the dominator information
1338 and it assumed that the caller will do this, perhaps by destroying and
1339 recreating it instead of trying to do an incremental update like this
1340 function does when update_dominance is true.
1342 BASE is the superloop to that basic block belongs; if its header or latch
1343 is copied, we do not set the new blocks as header or latch.
1345 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1346 also in the same order.
1348 Newly created basic blocks are put after the basic block AFTER in the
1349 instruction stream, and the order of the blocks in BBS array is preserved. */
1351 void
1352 copy_bbs (basic_block *bbs, unsigned n, basic_block *new_bbs,
1353 edge *edges, unsigned num_edges, edge *new_edges,
1354 struct loop *base, basic_block after, bool update_dominance)
1356 unsigned i, j;
1357 basic_block bb, new_bb, dom_bb;
1358 edge e;
1360 /* Duplicate bbs, update dominators, assign bbs to loops. */
1361 for (i = 0; i < n; i++)
1363 /* Duplicate. */
1364 bb = bbs[i];
1365 new_bb = new_bbs[i] = duplicate_block (bb, NULL, after);
1366 after = new_bb;
1367 bb->flags |= BB_DUPLICATED;
1368 if (bb->loop_father)
1370 /* Possibly set loop header. */
1371 if (bb->loop_father->header == bb && bb->loop_father != base)
1372 new_bb->loop_father->header = new_bb;
1373 /* Or latch. */
1374 if (bb->loop_father->latch == bb && bb->loop_father != base)
1375 new_bb->loop_father->latch = new_bb;
1379 /* Set dominators. */
1380 if (update_dominance)
1382 for (i = 0; i < n; i++)
1384 bb = bbs[i];
1385 new_bb = new_bbs[i];
1387 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1388 if (dom_bb->flags & BB_DUPLICATED)
1390 dom_bb = get_bb_copy (dom_bb);
1391 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1396 /* Redirect edges. */
1397 for (j = 0; j < num_edges; j++)
1398 new_edges[j] = NULL;
1399 for (i = 0; i < n; i++)
1401 edge_iterator ei;
1402 new_bb = new_bbs[i];
1403 bb = bbs[i];
1405 FOR_EACH_EDGE (e, ei, new_bb->succs)
1407 for (j = 0; j < num_edges; j++)
1408 if (edges[j] && edges[j]->src == bb && edges[j]->dest == e->dest)
1409 new_edges[j] = e;
1411 if (!(e->dest->flags & BB_DUPLICATED))
1412 continue;
1413 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1417 /* Clear information about duplicates. */
1418 for (i = 0; i < n; i++)
1419 bbs[i]->flags &= ~BB_DUPLICATED;
1422 /* Return true if BB contains only labels or non-executable
1423 instructions */
1424 bool
1425 empty_block_p (basic_block bb)
1427 gcc_assert (cfg_hooks->empty_block_p);
1428 return cfg_hooks->empty_block_p (bb);
1431 /* Split a basic block if it ends with a conditional branch and if
1432 the other part of the block is not empty. */
1433 basic_block
1434 split_block_before_cond_jump (basic_block bb)
1436 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1437 return cfg_hooks->split_block_before_cond_jump (bb);
1440 /* Work-horse for passes.c:check_profile_consistency.
1441 Do book-keeping of the CFG for the profile consistency checker.
1442 If AFTER_PASS is 0, do pre-pass accounting, or if AFTER_PASS is 1
1443 then do post-pass accounting. Store the counting in RECORD. */
1445 void
1446 account_profile_record (struct profile_record *record, int after_pass)
1448 basic_block bb;
1449 edge_iterator ei;
1450 edge e;
1451 int sum;
1452 gcov_type lsum;
1454 FOR_ALL_BB_FN (bb, cfun)
1456 if (bb != EXIT_BLOCK_PTR_FOR_FN (cfun)
1457 && profile_status_for_fn (cfun) != PROFILE_ABSENT)
1459 sum = 0;
1460 FOR_EACH_EDGE (e, ei, bb->succs)
1461 sum += e->probability;
1462 if (EDGE_COUNT (bb->succs) && abs (sum - REG_BR_PROB_BASE) > 100)
1463 record->num_mismatched_freq_out[after_pass]++;
1464 lsum = 0;
1465 FOR_EACH_EDGE (e, ei, bb->succs)
1466 lsum += e->count;
1467 if (EDGE_COUNT (bb->succs)
1468 && (lsum - bb->count > 100 || lsum - bb->count < -100))
1469 record->num_mismatched_count_out[after_pass]++;
1471 if (bb != ENTRY_BLOCK_PTR_FOR_FN (cfun)
1472 && profile_status_for_fn (cfun) != PROFILE_ABSENT)
1474 sum = 0;
1475 FOR_EACH_EDGE (e, ei, bb->preds)
1476 sum += EDGE_FREQUENCY (e);
1477 if (abs (sum - bb->frequency) > 100
1478 || (MAX (sum, bb->frequency) > 10
1479 && abs ((sum - bb->frequency) * 100 / (MAX (sum, bb->frequency) + 1)) > 10))
1480 record->num_mismatched_freq_in[after_pass]++;
1481 lsum = 0;
1482 FOR_EACH_EDGE (e, ei, bb->preds)
1483 lsum += e->count;
1484 if (lsum - bb->count > 100 || lsum - bb->count < -100)
1485 record->num_mismatched_count_in[after_pass]++;
1487 if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun)
1488 || bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
1489 continue;
1490 gcc_assert (cfg_hooks->account_profile_record);
1491 cfg_hooks->account_profile_record (bb, after_pass, record);