2013-02-13 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / cfghooks.c
blob54f805f5ff97130f263f0ba7dc9f3be969e60330
1 /* Hooks for cfg representation specific functions.
2 Copyright (C) 2003-2013 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 "tree.h"
27 #include "rtl.h"
28 #include "basic-block.h"
29 #include "tree-flow.h"
30 #include "timevar.h"
31 #include "diagnostic-core.h"
32 #include "cfgloop.h"
34 /* A pointer to one of the hooks containers. */
35 static struct cfg_hooks *cfg_hooks;
37 /* Initialization of functions specific to the rtl IR. */
38 void
39 rtl_register_cfg_hooks (void)
41 cfg_hooks = &rtl_cfg_hooks;
44 /* Initialization of functions specific to the rtl IR. */
45 void
46 cfg_layout_rtl_register_cfg_hooks (void)
48 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
51 /* Initialization of functions specific to the tree IR. */
53 void
54 gimple_register_cfg_hooks (void)
56 cfg_hooks = &gimple_cfg_hooks;
59 struct cfg_hooks
60 get_cfg_hooks (void)
62 return *cfg_hooks;
65 void
66 set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
68 *cfg_hooks = new_cfg_hooks;
71 /* Returns current ir type. */
73 enum ir_type
74 current_ir_type (void)
76 if (cfg_hooks == &gimple_cfg_hooks)
77 return IR_GIMPLE;
78 else if (cfg_hooks == &rtl_cfg_hooks)
79 return IR_RTL_CFGRTL;
80 else if (cfg_hooks == &cfg_layout_rtl_cfg_hooks)
81 return IR_RTL_CFGLAYOUT;
82 else
83 gcc_unreachable ();
86 /* Verify the CFG consistency.
88 Currently it does following: checks edge and basic block list correctness
89 and calls into IL dependent checking then. */
91 DEBUG_FUNCTION void
92 verify_flow_info (void)
94 size_t *edge_checksum;
95 int err = 0;
96 basic_block bb, last_bb_seen;
97 basic_block *last_visited;
99 timevar_push (TV_CFG_VERIFY);
100 last_visited = XCNEWVEC (basic_block, last_basic_block);
101 edge_checksum = XCNEWVEC (size_t, last_basic_block);
103 /* Check bb chain & numbers. */
104 last_bb_seen = ENTRY_BLOCK_PTR;
105 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR->next_bb, NULL, next_bb)
107 if (bb != EXIT_BLOCK_PTR
108 && bb != BASIC_BLOCK (bb->index))
110 error ("bb %d on wrong place", bb->index);
111 err = 1;
114 if (bb->prev_bb != last_bb_seen)
116 error ("prev_bb of %d should be %d, not %d",
117 bb->index, last_bb_seen->index, bb->prev_bb->index);
118 err = 1;
121 last_bb_seen = bb;
124 /* Now check the basic blocks (boundaries etc.) */
125 FOR_EACH_BB_REVERSE (bb)
127 int n_fallthru = 0;
128 edge e;
129 edge_iterator ei;
131 if (bb->loop_father != NULL && current_loops == NULL)
133 error ("verify_flow_info: Block %i has loop_father, but there are no loops",
134 bb->index);
135 err = 1;
137 if (bb->loop_father == NULL && current_loops != NULL)
139 error ("verify_flow_info: Block %i lacks loop_father", bb->index);
140 err = 1;
143 if (bb->count < 0)
145 error ("verify_flow_info: Wrong count of block %i %i",
146 bb->index, (int)bb->count);
147 err = 1;
149 if (bb->frequency < 0)
151 error ("verify_flow_info: Wrong frequency of block %i %i",
152 bb->index, bb->frequency);
153 err = 1;
155 FOR_EACH_EDGE (e, ei, bb->succs)
157 if (last_visited [e->dest->index] == bb)
159 error ("verify_flow_info: Duplicate edge %i->%i",
160 e->src->index, e->dest->index);
161 err = 1;
163 if (e->probability < 0 || e->probability > REG_BR_PROB_BASE)
165 error ("verify_flow_info: Wrong probability of edge %i->%i %i",
166 e->src->index, e->dest->index, e->probability);
167 err = 1;
169 if (e->count < 0)
171 error ("verify_flow_info: Wrong count of edge %i->%i %i",
172 e->src->index, e->dest->index, (int)e->count);
173 err = 1;
176 last_visited [e->dest->index] = bb;
178 if (e->flags & EDGE_FALLTHRU)
179 n_fallthru++;
181 if (e->src != bb)
183 error ("verify_flow_info: Basic block %d succ edge is corrupted",
184 bb->index);
185 fprintf (stderr, "Predecessor: ");
186 dump_edge_info (stderr, e, TDF_DETAILS, 0);
187 fprintf (stderr, "\nSuccessor: ");
188 dump_edge_info (stderr, e, TDF_DETAILS, 1);
189 fprintf (stderr, "\n");
190 err = 1;
193 edge_checksum[e->dest->index] += (size_t) e;
195 if (n_fallthru > 1)
197 error ("wrong amount of branch edges after unconditional jump %i", bb->index);
198 err = 1;
201 FOR_EACH_EDGE (e, ei, bb->preds)
203 if (e->dest != bb)
205 error ("basic block %d pred edge is corrupted", bb->index);
206 fputs ("Predecessor: ", stderr);
207 dump_edge_info (stderr, e, TDF_DETAILS, 0);
208 fputs ("\nSuccessor: ", stderr);
209 dump_edge_info (stderr, e, TDF_DETAILS, 1);
210 fputc ('\n', stderr);
211 err = 1;
214 if (ei.index != e->dest_idx)
216 error ("basic block %d pred edge is corrupted", bb->index);
217 error ("its dest_idx should be %d, not %d",
218 ei.index, e->dest_idx);
219 fputs ("Predecessor: ", stderr);
220 dump_edge_info (stderr, e, TDF_DETAILS, 0);
221 fputs ("\nSuccessor: ", stderr);
222 dump_edge_info (stderr, e, TDF_DETAILS, 1);
223 fputc ('\n', stderr);
224 err = 1;
227 edge_checksum[e->dest->index] -= (size_t) e;
231 /* Complete edge checksumming for ENTRY and EXIT. */
233 edge e;
234 edge_iterator ei;
236 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
237 edge_checksum[e->dest->index] += (size_t) e;
239 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
240 edge_checksum[e->dest->index] -= (size_t) e;
243 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
244 if (edge_checksum[bb->index])
246 error ("basic block %i edge lists are corrupted", bb->index);
247 err = 1;
250 last_bb_seen = ENTRY_BLOCK_PTR;
252 /* Clean up. */
253 free (last_visited);
254 free (edge_checksum);
256 if (cfg_hooks->verify_flow_info)
257 err |= cfg_hooks->verify_flow_info ();
258 if (err)
259 internal_error ("verify_flow_info failed");
260 timevar_pop (TV_CFG_VERIFY);
263 /* Print out one basic block BB to file OUTF. INDENT is printed at the
264 start of each new line. FLAGS are the TDF_* flags in dumpfile.h.
266 This function takes care of the purely graph related information.
267 The cfg hook for the active representation should dump
268 representation-specific information. */
270 void
271 dump_bb (FILE *outf, basic_block bb, int indent, int flags)
273 if (flags & TDF_BLOCKS)
274 dump_bb_info (outf, bb, indent, flags, true, false);
275 if (cfg_hooks->dump_bb)
276 cfg_hooks->dump_bb (outf, bb, indent, flags);
277 if (flags & TDF_BLOCKS)
278 dump_bb_info (outf, bb, indent, flags, false, true);
279 fputc ('\n', outf);
282 /* Dumps basic block BB to pretty-printer PP, for use as a label of
283 a DOT graph record-node. The implementation of this hook is
284 expected to write the label to the stream that is attached to PP.
285 Field separators between instructions are pipe characters printed
286 verbatim. Instructions should be written with some characters
287 escaped, using pp_write_text_as_dot_label_to_stream(). */
289 void
290 dump_bb_for_graph (pretty_printer *pp, basic_block bb)
292 if (!cfg_hooks->dump_bb_for_graph)
293 internal_error ("%s does not support dump_bb_for_graph",
294 cfg_hooks->name);
295 cfg_hooks->dump_bb_for_graph (pp, bb);
298 /* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
299 void
300 dump_flow_info (FILE *file, int flags)
302 basic_block bb;
304 fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks, n_edges);
305 FOR_ALL_BB (bb)
306 dump_bb (file, bb, 0, flags);
308 putc ('\n', file);
311 /* Like above, but dump to stderr. To be called from debuggers. */
312 void debug_flow_info (void);
313 DEBUG_FUNCTION void
314 debug_flow_info (void)
316 dump_flow_info (stderr, TDF_DETAILS);
319 /* Redirect edge E to the given basic block DEST and update underlying program
320 representation. Returns edge representing redirected branch (that may not
321 be equivalent to E in the case of duplicate edges being removed) or NULL
322 if edge is not easily redirectable for whatever reason. */
324 edge
325 redirect_edge_and_branch (edge e, basic_block dest)
327 edge ret;
329 if (!cfg_hooks->redirect_edge_and_branch)
330 internal_error ("%s does not support redirect_edge_and_branch",
331 cfg_hooks->name);
333 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
335 /* If RET != E, then either the redirection failed, or the edge E
336 was removed since RET already lead to the same destination. */
337 if (current_loops != NULL && ret == e)
338 rescan_loop_exit (e, false, false);
340 return ret;
343 /* Returns true if it is possible to remove the edge E by redirecting it
344 to the destination of the other edge going from its source. */
346 bool
347 can_remove_branch_p (const_edge e)
349 if (!cfg_hooks->can_remove_branch_p)
350 internal_error ("%s does not support can_remove_branch_p",
351 cfg_hooks->name);
353 if (EDGE_COUNT (e->src->succs) != 2)
354 return false;
356 return cfg_hooks->can_remove_branch_p (e);
359 /* Removes E, by redirecting it to the destination of the other edge going
360 from its source. Can_remove_branch_p must be true for E, hence this
361 operation cannot fail. */
363 void
364 remove_branch (edge e)
366 edge other;
367 basic_block src = e->src;
368 int irr;
370 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
372 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
373 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
375 e = redirect_edge_and_branch (e, other->dest);
376 gcc_assert (e != NULL);
378 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
379 e->flags |= irr;
382 /* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
384 void
385 remove_edge (edge e)
387 if (current_loops != NULL)
388 rescan_loop_exit (e, false, true);
390 /* This is probably not needed, but it doesn't hurt. */
391 /* FIXME: This should be called via a remove_edge hook. */
392 if (current_ir_type () == IR_GIMPLE)
393 redirect_edge_var_map_clear (e);
395 remove_edge_raw (e);
398 /* Like redirect_edge_succ but avoid possible duplicate edge. */
400 edge
401 redirect_edge_succ_nodup (edge e, basic_block new_succ)
403 edge s;
405 s = find_edge (e->src, new_succ);
406 if (s && s != e)
408 s->flags |= e->flags;
409 s->probability += e->probability;
410 if (s->probability > REG_BR_PROB_BASE)
411 s->probability = REG_BR_PROB_BASE;
412 s->count += e->count;
413 /* FIXME: This should be called via a hook and only for IR_GIMPLE. */
414 redirect_edge_var_map_dup (s, e);
415 remove_edge (e);
416 e = s;
418 else
419 redirect_edge_succ (e, new_succ);
421 return e;
424 /* Redirect the edge E to basic block DEST even if it requires creating
425 of a new basic block; then it returns the newly created basic block.
426 Aborts when redirection is impossible. */
428 basic_block
429 redirect_edge_and_branch_force (edge e, basic_block dest)
431 basic_block ret, src = e->src;
433 if (!cfg_hooks->redirect_edge_and_branch_force)
434 internal_error ("%s does not support redirect_edge_and_branch_force",
435 cfg_hooks->name);
437 if (current_loops != NULL)
438 rescan_loop_exit (e, false, true);
440 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
442 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
443 set_immediate_dominator (CDI_DOMINATORS, ret, src);
445 if (current_loops != NULL)
447 if (ret != NULL)
449 struct loop *loop
450 = find_common_loop (single_pred (ret)->loop_father,
451 single_succ (ret)->loop_father);
452 add_bb_to_loop (ret, loop);
454 else if (find_edge (src, dest) == e)
455 rescan_loop_exit (e, true, false);
458 return ret;
461 /* Splits basic block BB after the specified instruction I (but at least after
462 the labels). If I is NULL, splits just after labels. The newly created edge
463 is returned. The new basic block is created just after the old one. */
465 edge
466 split_block (basic_block bb, void *i)
468 basic_block new_bb;
469 edge res;
471 if (!cfg_hooks->split_block)
472 internal_error ("%s does not support split_block", cfg_hooks->name);
474 new_bb = cfg_hooks->split_block (bb, i);
475 if (!new_bb)
476 return NULL;
478 new_bb->count = bb->count;
479 new_bb->frequency = bb->frequency;
480 new_bb->discriminator = bb->discriminator;
482 if (dom_info_available_p (CDI_DOMINATORS))
484 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
485 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
488 if (current_loops != NULL)
490 add_bb_to_loop (new_bb, bb->loop_father);
491 if (bb->loop_father->latch == bb)
492 bb->loop_father->latch = new_bb;
495 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
497 if (bb->flags & BB_IRREDUCIBLE_LOOP)
499 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
500 res->flags |= EDGE_IRREDUCIBLE_LOOP;
503 return res;
506 /* Splits block BB just after labels. The newly created edge is returned. */
508 edge
509 split_block_after_labels (basic_block bb)
511 return split_block (bb, NULL);
514 /* Moves block BB immediately after block AFTER. Returns false if the
515 movement was impossible. */
517 bool
518 move_block_after (basic_block bb, basic_block after)
520 bool ret;
522 if (!cfg_hooks->move_block_after)
523 internal_error ("%s does not support move_block_after", cfg_hooks->name);
525 ret = cfg_hooks->move_block_after (bb, after);
527 return ret;
530 /* Deletes the basic block BB. */
532 void
533 delete_basic_block (basic_block bb)
535 if (!cfg_hooks->delete_basic_block)
536 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
538 cfg_hooks->delete_basic_block (bb);
540 if (current_loops != NULL)
542 struct loop *loop = bb->loop_father;
544 /* If we remove the header or the latch of a loop, mark the loop for
545 removal by setting its header and latch to NULL. */
546 if (loop->latch == bb
547 || loop->header == bb)
549 loop->header = NULL;
550 loop->latch = NULL;
551 loops_state_set (LOOPS_NEED_FIXUP);
554 remove_bb_from_loops (bb);
557 /* Remove the edges into and out of this block. Note that there may
558 indeed be edges in, if we are removing an unreachable loop. */
559 while (EDGE_COUNT (bb->preds) != 0)
560 remove_edge (EDGE_PRED (bb, 0));
561 while (EDGE_COUNT (bb->succs) != 0)
562 remove_edge (EDGE_SUCC (bb, 0));
564 if (dom_info_available_p (CDI_DOMINATORS))
565 delete_from_dominance_info (CDI_DOMINATORS, bb);
566 if (dom_info_available_p (CDI_POST_DOMINATORS))
567 delete_from_dominance_info (CDI_POST_DOMINATORS, bb);
569 /* Remove the basic block from the array. */
570 expunge_block (bb);
573 /* Splits edge E and returns the newly created basic block. */
575 basic_block
576 split_edge (edge e)
578 basic_block ret;
579 gcov_type count = e->count;
580 int freq = EDGE_FREQUENCY (e);
581 edge f;
582 bool irr = (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
583 struct loop *loop;
584 basic_block src = e->src, dest = e->dest;
586 if (!cfg_hooks->split_edge)
587 internal_error ("%s does not support split_edge", cfg_hooks->name);
589 if (current_loops != NULL)
590 rescan_loop_exit (e, false, true);
592 ret = cfg_hooks->split_edge (e);
593 ret->count = count;
594 ret->frequency = freq;
595 single_succ_edge (ret)->probability = REG_BR_PROB_BASE;
596 single_succ_edge (ret)->count = count;
598 if (irr)
600 ret->flags |= BB_IRREDUCIBLE_LOOP;
601 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
602 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
605 if (dom_info_available_p (CDI_DOMINATORS))
606 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
608 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
610 /* There are two cases:
612 If the immediate dominator of e->dest is not e->src, it
613 remains unchanged.
615 If immediate dominator of e->dest is e->src, it may become
616 ret, provided that all other predecessors of e->dest are
617 dominated by e->dest. */
619 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
620 == single_pred (ret))
622 edge_iterator ei;
623 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
625 if (f == single_succ_edge (ret))
626 continue;
628 if (!dominated_by_p (CDI_DOMINATORS, f->src,
629 single_succ (ret)))
630 break;
633 if (!f)
634 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
638 if (current_loops != NULL)
640 loop = find_common_loop (src->loop_father, dest->loop_father);
641 add_bb_to_loop (ret, loop);
643 if (loop->latch == src)
644 loop->latch = ret;
647 return ret;
650 /* Creates a new basic block just after the basic block AFTER.
651 HEAD and END are the first and the last statement belonging
652 to the block. If both are NULL, an empty block is created. */
654 basic_block
655 create_basic_block (void *head, void *end, basic_block after)
657 basic_block ret;
659 if (!cfg_hooks->create_basic_block)
660 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
662 ret = cfg_hooks->create_basic_block (head, end, after);
664 if (dom_info_available_p (CDI_DOMINATORS))
665 add_to_dominance_info (CDI_DOMINATORS, ret);
666 if (dom_info_available_p (CDI_POST_DOMINATORS))
667 add_to_dominance_info (CDI_POST_DOMINATORS, ret);
669 return ret;
672 /* Creates an empty basic block just after basic block AFTER. */
674 basic_block
675 create_empty_bb (basic_block after)
677 return create_basic_block (NULL, NULL, after);
680 /* Checks whether we may merge blocks BB1 and BB2. */
682 bool
683 can_merge_blocks_p (basic_block bb1, basic_block bb2)
685 bool ret;
687 if (!cfg_hooks->can_merge_blocks_p)
688 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
690 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
692 return ret;
695 void
696 predict_edge (edge e, enum br_predictor predictor, int probability)
698 if (!cfg_hooks->predict_edge)
699 internal_error ("%s does not support predict_edge", cfg_hooks->name);
701 cfg_hooks->predict_edge (e, predictor, probability);
704 bool
705 predicted_by_p (const_basic_block bb, enum br_predictor predictor)
707 if (!cfg_hooks->predict_edge)
708 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
710 return cfg_hooks->predicted_by_p (bb, predictor);
713 /* Merges basic block B into basic block A. */
715 void
716 merge_blocks (basic_block a, basic_block b)
718 edge e;
719 edge_iterator ei;
721 if (!cfg_hooks->merge_blocks)
722 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
724 cfg_hooks->merge_blocks (a, b);
726 if (current_loops != NULL)
728 /* If the block we merge into is a loop header do nothing unless ... */
729 if (a->loop_father->header == a)
731 /* ... we merge two loop headers, in which case we kill
732 the inner loop. */
733 if (b->loop_father->header == b)
735 b->loop_father->header = NULL;
736 b->loop_father->latch = NULL;
737 loops_state_set (LOOPS_NEED_FIXUP);
740 /* If we merge a loop header into its predecessor, update the loop
741 structure. */
742 else if (b->loop_father->header == b)
744 remove_bb_from_loops (a);
745 add_bb_to_loop (a, b->loop_father);
746 a->loop_father->header = a;
748 remove_bb_from_loops (b);
751 /* Normally there should only be one successor of A and that is B, but
752 partway though the merge of blocks for conditional_execution we'll
753 be merging a TEST block with THEN and ELSE successors. Free the
754 whole lot of them and hope the caller knows what they're doing. */
756 while (EDGE_COUNT (a->succs) != 0)
757 remove_edge (EDGE_SUCC (a, 0));
759 /* Adjust the edges out of B for the new owner. */
760 FOR_EACH_EDGE (e, ei, b->succs)
762 e->src = a;
763 if (current_loops != NULL)
764 rescan_loop_exit (e, true, false);
766 a->succs = b->succs;
767 a->flags |= b->flags;
769 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
770 b->preds = b->succs = NULL;
772 if (dom_info_available_p (CDI_DOMINATORS))
773 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
775 if (dom_info_available_p (CDI_DOMINATORS))
776 delete_from_dominance_info (CDI_DOMINATORS, b);
777 if (dom_info_available_p (CDI_POST_DOMINATORS))
778 delete_from_dominance_info (CDI_POST_DOMINATORS, b);
780 expunge_block (b);
783 /* Split BB into entry part and the rest (the rest is the newly created block).
784 Redirect those edges for that REDIRECT_EDGE_P returns true to the entry
785 part. Returns the edge connecting the entry part to the rest. */
787 edge
788 make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
789 void (*new_bb_cbk) (basic_block))
791 edge e, fallthru;
792 edge_iterator ei;
793 basic_block dummy, jump;
794 struct loop *loop, *ploop, *cloop;
796 if (!cfg_hooks->make_forwarder_block)
797 internal_error ("%s does not support make_forwarder_block",
798 cfg_hooks->name);
800 fallthru = split_block_after_labels (bb);
801 dummy = fallthru->src;
802 bb = fallthru->dest;
804 /* Redirect back edges we want to keep. */
805 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
807 basic_block e_src;
809 if (redirect_edge_p (e))
811 ei_next (&ei);
812 continue;
815 dummy->frequency -= EDGE_FREQUENCY (e);
816 dummy->count -= e->count;
817 if (dummy->frequency < 0)
818 dummy->frequency = 0;
819 if (dummy->count < 0)
820 dummy->count = 0;
821 fallthru->count -= e->count;
822 if (fallthru->count < 0)
823 fallthru->count = 0;
825 e_src = e->src;
826 jump = redirect_edge_and_branch_force (e, bb);
827 if (jump != NULL)
829 /* If we redirected the loop latch edge, the JUMP block now acts like
830 the new latch of the loop. */
831 if (current_loops != NULL
832 && dummy->loop_father != NULL
833 && dummy->loop_father->header == dummy
834 && dummy->loop_father->latch == e_src)
835 dummy->loop_father->latch = jump;
837 if (new_bb_cbk != NULL)
838 new_bb_cbk (jump);
842 if (dom_info_available_p (CDI_DOMINATORS))
844 vec<basic_block> doms_to_fix;
845 doms_to_fix.create (2);
846 doms_to_fix.quick_push (dummy);
847 doms_to_fix.quick_push (bb);
848 iterate_fix_dominators (CDI_DOMINATORS, doms_to_fix, false);
849 doms_to_fix.release ();
852 if (current_loops != NULL)
854 /* If we do not split a loop header, then both blocks belong to the
855 same loop. In case we split loop header and do not redirect the
856 latch edge to DUMMY, then DUMMY belongs to the outer loop, and
857 BB becomes the new header. If latch is not recorded for the loop,
858 we leave this updating on the caller (this may only happen during
859 loop analysis). */
860 loop = dummy->loop_father;
861 if (loop->header == dummy
862 && loop->latch != NULL
863 && find_edge (loop->latch, dummy) == NULL)
865 remove_bb_from_loops (dummy);
866 loop->header = bb;
868 cloop = loop;
869 FOR_EACH_EDGE (e, ei, dummy->preds)
871 cloop = find_common_loop (cloop, e->src->loop_father);
873 add_bb_to_loop (dummy, cloop);
876 /* In case we split loop latch, update it. */
877 for (ploop = loop; ploop; ploop = loop_outer (ploop))
878 if (ploop->latch == dummy)
879 ploop->latch = bb;
882 cfg_hooks->make_forwarder_block (fallthru);
884 return fallthru;
887 /* Try to make the edge fallthru. */
889 void
890 tidy_fallthru_edge (edge e)
892 if (cfg_hooks->tidy_fallthru_edge)
893 cfg_hooks->tidy_fallthru_edge (e);
896 /* Fix up edges that now fall through, or rather should now fall through
897 but previously required a jump around now deleted blocks. Simplify
898 the search by only examining blocks numerically adjacent, since this
899 is how they were created.
901 ??? This routine is currently RTL specific. */
903 void
904 tidy_fallthru_edges (void)
906 basic_block b, c;
908 if (!cfg_hooks->tidy_fallthru_edge)
909 return;
911 if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
912 return;
914 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR->prev_bb, next_bb)
916 edge s;
918 c = b->next_bb;
920 /* We care about simple conditional or unconditional jumps with
921 a single successor.
923 If we had a conditional branch to the next instruction when
924 CFG was built, then there will only be one out edge for the
925 block which ended with the conditional branch (since we do
926 not create duplicate edges).
928 Furthermore, the edge will be marked as a fallthru because we
929 merge the flags for the duplicate edges. So we do not want to
930 check that the edge is not a FALLTHRU edge. */
932 if (single_succ_p (b))
934 s = single_succ_edge (b);
935 if (! (s->flags & EDGE_COMPLEX)
936 && s->dest == c
937 && !find_reg_note (BB_END (b), REG_CROSSING_JUMP, NULL_RTX))
938 tidy_fallthru_edge (s);
943 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
944 (and possibly create new basic block) to make edge non-fallthru.
945 Return newly created BB or NULL if none. */
947 basic_block
948 force_nonfallthru (edge e)
950 basic_block ret, src = e->src;
952 if (!cfg_hooks->force_nonfallthru)
953 internal_error ("%s does not support force_nonfallthru",
954 cfg_hooks->name);
956 ret = cfg_hooks->force_nonfallthru (e);
957 if (ret != NULL)
959 if (dom_info_available_p (CDI_DOMINATORS))
960 set_immediate_dominator (CDI_DOMINATORS, ret, src);
962 if (current_loops != NULL)
964 struct loop *loop
965 = find_common_loop (single_pred (ret)->loop_father,
966 single_succ (ret)->loop_father);
967 rescan_loop_exit (e, false, true);
968 add_bb_to_loop (ret, loop);
972 return ret;
975 /* Returns true if we can duplicate basic block BB. */
977 bool
978 can_duplicate_block_p (const_basic_block bb)
980 if (!cfg_hooks->can_duplicate_block_p)
981 internal_error ("%s does not support can_duplicate_block_p",
982 cfg_hooks->name);
984 if (bb == EXIT_BLOCK_PTR || bb == ENTRY_BLOCK_PTR)
985 return false;
987 return cfg_hooks->can_duplicate_block_p (bb);
990 /* Duplicates basic block BB and redirects edge E to it. Returns the
991 new basic block. The new basic block is placed after the basic block
992 AFTER. */
994 basic_block
995 duplicate_block (basic_block bb, edge e, basic_block after)
997 edge s, n;
998 basic_block new_bb;
999 gcov_type new_count = e ? e->count : 0;
1000 edge_iterator ei;
1002 if (!cfg_hooks->duplicate_block)
1003 internal_error ("%s does not support duplicate_block",
1004 cfg_hooks->name);
1006 if (bb->count < new_count)
1007 new_count = bb->count;
1009 gcc_checking_assert (can_duplicate_block_p (bb));
1011 new_bb = cfg_hooks->duplicate_block (bb);
1012 if (after)
1013 move_block_after (new_bb, after);
1015 new_bb->flags = bb->flags;
1016 FOR_EACH_EDGE (s, ei, bb->succs)
1018 /* Since we are creating edges from a new block to successors
1019 of another block (which therefore are known to be disjoint), there
1020 is no need to actually check for duplicated edges. */
1021 n = unchecked_make_edge (new_bb, s->dest, s->flags);
1022 n->probability = s->probability;
1023 if (e && bb->count)
1025 /* Take care for overflows! */
1026 n->count = s->count * (new_count * 10000 / bb->count) / 10000;
1027 s->count -= n->count;
1029 else
1030 n->count = s->count;
1031 n->aux = s->aux;
1034 if (e)
1036 new_bb->count = new_count;
1037 bb->count -= new_count;
1039 new_bb->frequency = EDGE_FREQUENCY (e);
1040 bb->frequency -= EDGE_FREQUENCY (e);
1042 redirect_edge_and_branch_force (e, new_bb);
1044 if (bb->count < 0)
1045 bb->count = 0;
1046 if (bb->frequency < 0)
1047 bb->frequency = 0;
1049 else
1051 new_bb->count = bb->count;
1052 new_bb->frequency = bb->frequency;
1055 set_bb_original (new_bb, bb);
1056 set_bb_copy (bb, new_bb);
1058 /* Add the new block to the copy of the loop of BB, or directly to the loop
1059 of BB if the loop is not being copied. */
1060 if (current_loops != NULL)
1062 struct loop *cloop = bb->loop_father;
1063 struct loop *copy = get_loop_copy (cloop);
1064 /* If we copied the loop header block but not the loop
1065 we have created a loop with multiple entries. Ditch the loop,
1066 add the new block to the outer loop and arrange for a fixup. */
1067 if (!copy
1068 && cloop->header == bb)
1070 add_bb_to_loop (new_bb, loop_outer (cloop));
1071 cloop->header = NULL;
1072 cloop->latch = NULL;
1073 loops_state_set (LOOPS_NEED_FIXUP);
1075 else
1077 add_bb_to_loop (new_bb, copy ? copy : cloop);
1078 /* If we copied the loop latch block but not the loop, adjust
1079 loop state. */
1080 if (!copy
1081 && cloop->latch == bb)
1083 cloop->latch = NULL;
1084 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1089 return new_bb;
1092 /* Return 1 if BB ends with a call, possibly followed by some
1093 instructions that must stay with the call, 0 otherwise. */
1095 bool
1096 block_ends_with_call_p (basic_block bb)
1098 if (!cfg_hooks->block_ends_with_call_p)
1099 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1101 return (cfg_hooks->block_ends_with_call_p) (bb);
1104 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1106 bool
1107 block_ends_with_condjump_p (const_basic_block bb)
1109 if (!cfg_hooks->block_ends_with_condjump_p)
1110 internal_error ("%s does not support block_ends_with_condjump_p",
1111 cfg_hooks->name);
1113 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1116 /* Add fake edges to the function exit for any non constant and non noreturn
1117 calls, volatile inline assembly in the bitmap of blocks specified by
1118 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
1119 that were split.
1121 The goal is to expose cases in which entering a basic block does not imply
1122 that all subsequent instructions must be executed. */
1125 flow_call_edges_add (sbitmap blocks)
1127 if (!cfg_hooks->flow_call_edges_add)
1128 internal_error ("%s does not support flow_call_edges_add",
1129 cfg_hooks->name);
1131 return (cfg_hooks->flow_call_edges_add) (blocks);
1134 /* This function is called immediately after edge E is added to the
1135 edge vector E->dest->preds. */
1137 void
1138 execute_on_growing_pred (edge e)
1140 if (cfg_hooks->execute_on_growing_pred)
1141 cfg_hooks->execute_on_growing_pred (e);
1144 /* This function is called immediately before edge E is removed from
1145 the edge vector E->dest->preds. */
1147 void
1148 execute_on_shrinking_pred (edge e)
1150 if (cfg_hooks->execute_on_shrinking_pred)
1151 cfg_hooks->execute_on_shrinking_pred (e);
1154 /* This is used inside loop versioning when we want to insert
1155 stmts/insns on the edges, which have a different behavior
1156 in tree's and in RTL, so we made a CFG hook. */
1157 void
1158 lv_flush_pending_stmts (edge e)
1160 if (cfg_hooks->flush_pending_stmts)
1161 cfg_hooks->flush_pending_stmts (e);
1164 /* Loop versioning uses the duplicate_loop_to_header_edge to create
1165 a new version of the loop basic-blocks, the parameters here are
1166 exactly the same as in duplicate_loop_to_header_edge or
1167 tree_duplicate_loop_to_header_edge; while in tree-ssa there is
1168 additional work to maintain ssa information that's why there is
1169 a need to call the tree_duplicate_loop_to_header_edge rather
1170 than duplicate_loop_to_header_edge when we are in tree mode. */
1171 bool
1172 cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge e,
1173 unsigned int ndupl,
1174 sbitmap wont_exit, edge orig,
1175 vec<edge> *to_remove,
1176 int flags)
1178 gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge);
1179 return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e,
1180 ndupl, wont_exit,
1181 orig, to_remove,
1182 flags);
1185 /* Conditional jumps are represented differently in trees and RTL,
1186 this hook takes a basic block that is known to have a cond jump
1187 at its end and extracts the taken and not taken edges out of it
1188 and store it in E1 and E2 respectively. */
1189 void
1190 extract_cond_bb_edges (basic_block b, edge *e1, edge *e2)
1192 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1193 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1196 /* Responsible for updating the ssa info (PHI nodes) on the
1197 new condition basic block that guards the versioned loop. */
1198 void
1199 lv_adjust_loop_header_phi (basic_block first, basic_block second,
1200 basic_block new_block, edge e)
1202 if (cfg_hooks->lv_adjust_loop_header_phi)
1203 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
1206 /* Conditions in trees and RTL are different so we need
1207 a different handling when we add the condition to the
1208 versioning code. */
1209 void
1210 lv_add_condition_to_bb (basic_block first, basic_block second,
1211 basic_block new_block, void *cond)
1213 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
1214 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
1217 /* Checks whether all N blocks in BBS array can be copied. */
1218 bool
1219 can_copy_bbs_p (basic_block *bbs, unsigned n)
1221 unsigned i;
1222 edge e;
1223 int ret = true;
1225 for (i = 0; i < n; i++)
1226 bbs[i]->flags |= BB_DUPLICATED;
1228 for (i = 0; i < n; i++)
1230 /* In case we should redirect abnormal edge during duplication, fail. */
1231 edge_iterator ei;
1232 FOR_EACH_EDGE (e, ei, bbs[i]->succs)
1233 if ((e->flags & EDGE_ABNORMAL)
1234 && (e->dest->flags & BB_DUPLICATED))
1236 ret = false;
1237 goto end;
1240 if (!can_duplicate_block_p (bbs[i]))
1242 ret = false;
1243 break;
1247 end:
1248 for (i = 0; i < n; i++)
1249 bbs[i]->flags &= ~BB_DUPLICATED;
1251 return ret;
1254 /* Duplicates N basic blocks stored in array BBS. Newly created basic blocks
1255 are placed into array NEW_BBS in the same order. Edges from basic blocks
1256 in BBS are also duplicated and copies of those of them
1257 that lead into BBS are redirected to appropriate newly created block. The
1258 function assigns bbs into loops (copy of basic block bb is assigned to
1259 bb->loop_father->copy loop, so this must be set up correctly in advance)
1260 and updates dominators locally (LOOPS structure that contains the information
1261 about dominators is passed to enable this).
1263 BASE is the superloop to that basic block belongs; if its header or latch
1264 is copied, we do not set the new blocks as header or latch.
1266 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1267 also in the same order.
1269 Newly created basic blocks are put after the basic block AFTER in the
1270 instruction stream, and the order of the blocks in BBS array is preserved. */
1272 void
1273 copy_bbs (basic_block *bbs, unsigned n, basic_block *new_bbs,
1274 edge *edges, unsigned num_edges, edge *new_edges,
1275 struct loop *base, basic_block after)
1277 unsigned i, j;
1278 basic_block bb, new_bb, dom_bb;
1279 edge e;
1281 /* Duplicate bbs, update dominators, assign bbs to loops. */
1282 for (i = 0; i < n; i++)
1284 /* Duplicate. */
1285 bb = bbs[i];
1286 new_bb = new_bbs[i] = duplicate_block (bb, NULL, after);
1287 after = new_bb;
1288 bb->flags |= BB_DUPLICATED;
1289 if (bb->loop_father)
1291 /* Possibly set loop header. */
1292 if (bb->loop_father->header == bb && bb->loop_father != base)
1293 new_bb->loop_father->header = new_bb;
1294 /* Or latch. */
1295 if (bb->loop_father->latch == bb && bb->loop_father != base)
1296 new_bb->loop_father->latch = new_bb;
1300 /* Set dominators. */
1301 for (i = 0; i < n; i++)
1303 bb = bbs[i];
1304 new_bb = new_bbs[i];
1306 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1307 if (dom_bb->flags & BB_DUPLICATED)
1309 dom_bb = get_bb_copy (dom_bb);
1310 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1314 /* Redirect edges. */
1315 for (j = 0; j < num_edges; j++)
1316 new_edges[j] = NULL;
1317 for (i = 0; i < n; i++)
1319 edge_iterator ei;
1320 new_bb = new_bbs[i];
1321 bb = bbs[i];
1323 FOR_EACH_EDGE (e, ei, new_bb->succs)
1325 for (j = 0; j < num_edges; j++)
1326 if (edges[j] && edges[j]->src == bb && edges[j]->dest == e->dest)
1327 new_edges[j] = e;
1329 if (!(e->dest->flags & BB_DUPLICATED))
1330 continue;
1331 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1335 /* Clear information about duplicates. */
1336 for (i = 0; i < n; i++)
1337 bbs[i]->flags &= ~BB_DUPLICATED;
1340 /* Return true if BB contains only labels or non-executable
1341 instructions */
1342 bool
1343 empty_block_p (basic_block bb)
1345 gcc_assert (cfg_hooks->empty_block_p);
1346 return cfg_hooks->empty_block_p (bb);
1349 /* Split a basic block if it ends with a conditional branch and if
1350 the other part of the block is not empty. */
1351 basic_block
1352 split_block_before_cond_jump (basic_block bb)
1354 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1355 return cfg_hooks->split_block_before_cond_jump (bb);
1358 /* Work-horse for passes.c:check_profile_consistency.
1359 Do book-keeping of the CFG for the profile consistency checker.
1360 If AFTER_PASS is 0, do pre-pass accounting, or if AFTER_PASS is 1
1361 then do post-pass accounting. Store the counting in RECORD. */
1363 void
1364 account_profile_record (struct profile_record *record, int after_pass)
1366 basic_block bb;
1367 edge_iterator ei;
1368 edge e;
1369 int sum;
1370 gcov_type lsum;
1372 FOR_ALL_BB (bb)
1374 if (bb != EXIT_BLOCK_PTR_FOR_FUNCTION (cfun)
1375 && profile_status != PROFILE_ABSENT)
1377 sum = 0;
1378 FOR_EACH_EDGE (e, ei, bb->succs)
1379 sum += e->probability;
1380 if (EDGE_COUNT (bb->succs) && abs (sum - REG_BR_PROB_BASE) > 100)
1381 record->num_mismatched_freq_out[after_pass]++;
1382 lsum = 0;
1383 FOR_EACH_EDGE (e, ei, bb->succs)
1384 lsum += e->count;
1385 if (EDGE_COUNT (bb->succs)
1386 && (lsum - bb->count > 100 || lsum - bb->count < -100))
1387 record->num_mismatched_count_out[after_pass]++;
1389 if (bb != ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun)
1390 && profile_status != PROFILE_ABSENT)
1392 sum = 0;
1393 FOR_EACH_EDGE (e, ei, bb->preds)
1394 sum += EDGE_FREQUENCY (e);
1395 if (abs (sum - bb->frequency) > 100
1396 || (MAX (sum, bb->frequency) > 10
1397 && abs ((sum - bb->frequency) * 100 / (MAX (sum, bb->frequency) + 1)) > 10))
1398 record->num_mismatched_freq_in[after_pass]++;
1399 lsum = 0;
1400 FOR_EACH_EDGE (e, ei, bb->preds)
1401 lsum += e->count;
1402 if (lsum - bb->count > 100 || lsum - bb->count < -100)
1403 record->num_mismatched_count_in[after_pass]++;
1405 if (bb == ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun)
1406 || bb == EXIT_BLOCK_PTR_FOR_FUNCTION (cfun))
1407 continue;
1408 gcc_assert (cfg_hooks->account_profile_record);
1409 cfg_hooks->account_profile_record(bb, after_pass, record);