[Mid-end] Add TARGET_GIMPLE_FOLD_BUILTIN target hook.
[official-gcc.git] / gcc / cfghooks.c
blob5354624d91c3727355529ce300000bf595350ba1
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 DEBUG_FUNCTION void
283 debug (basic_block_def &ref)
285 dump_bb (stderr, &ref, 0, 0);
288 DEBUG_FUNCTION void
289 debug (basic_block_def *ptr)
291 if (ptr)
292 debug (*ptr);
293 else
294 fprintf (stderr, "<nil>\n");
298 /* Dumps basic block BB to pretty-printer PP, for use as a label of
299 a DOT graph record-node. The implementation of this hook is
300 expected to write the label to the stream that is attached to PP.
301 Field separators between instructions are pipe characters printed
302 verbatim. Instructions should be written with some characters
303 escaped, using pp_write_text_as_dot_label_to_stream(). */
305 void
306 dump_bb_for_graph (pretty_printer *pp, basic_block bb)
308 if (!cfg_hooks->dump_bb_for_graph)
309 internal_error ("%s does not support dump_bb_for_graph",
310 cfg_hooks->name);
311 cfg_hooks->dump_bb_for_graph (pp, bb);
314 /* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
315 void
316 dump_flow_info (FILE *file, int flags)
318 basic_block bb;
320 fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks, n_edges);
321 FOR_ALL_BB (bb)
322 dump_bb (file, bb, 0, flags);
324 putc ('\n', file);
327 /* Like above, but dump to stderr. To be called from debuggers. */
328 void debug_flow_info (void);
329 DEBUG_FUNCTION void
330 debug_flow_info (void)
332 dump_flow_info (stderr, TDF_DETAILS);
335 /* Redirect edge E to the given basic block DEST and update underlying program
336 representation. Returns edge representing redirected branch (that may not
337 be equivalent to E in the case of duplicate edges being removed) or NULL
338 if edge is not easily redirectable for whatever reason. */
340 edge
341 redirect_edge_and_branch (edge e, basic_block dest)
343 edge ret;
345 if (!cfg_hooks->redirect_edge_and_branch)
346 internal_error ("%s does not support redirect_edge_and_branch",
347 cfg_hooks->name);
349 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
351 /* If RET != E, then either the redirection failed, or the edge E
352 was removed since RET already lead to the same destination. */
353 if (current_loops != NULL && ret == e)
354 rescan_loop_exit (e, false, false);
356 return ret;
359 /* Returns true if it is possible to remove the edge E by redirecting it
360 to the destination of the other edge going from its source. */
362 bool
363 can_remove_branch_p (const_edge e)
365 if (!cfg_hooks->can_remove_branch_p)
366 internal_error ("%s does not support can_remove_branch_p",
367 cfg_hooks->name);
369 if (EDGE_COUNT (e->src->succs) != 2)
370 return false;
372 return cfg_hooks->can_remove_branch_p (e);
375 /* Removes E, by redirecting it to the destination of the other edge going
376 from its source. Can_remove_branch_p must be true for E, hence this
377 operation cannot fail. */
379 void
380 remove_branch (edge e)
382 edge other;
383 basic_block src = e->src;
384 int irr;
386 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
388 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
389 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
391 e = redirect_edge_and_branch (e, other->dest);
392 gcc_assert (e != NULL);
394 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
395 e->flags |= irr;
398 /* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
400 void
401 remove_edge (edge e)
403 if (current_loops != NULL)
404 rescan_loop_exit (e, false, true);
406 /* This is probably not needed, but it doesn't hurt. */
407 /* FIXME: This should be called via a remove_edge hook. */
408 if (current_ir_type () == IR_GIMPLE)
409 redirect_edge_var_map_clear (e);
411 remove_edge_raw (e);
414 /* Like redirect_edge_succ but avoid possible duplicate edge. */
416 edge
417 redirect_edge_succ_nodup (edge e, basic_block new_succ)
419 edge s;
421 s = find_edge (e->src, new_succ);
422 if (s && s != e)
424 s->flags |= e->flags;
425 s->probability += e->probability;
426 if (s->probability > REG_BR_PROB_BASE)
427 s->probability = REG_BR_PROB_BASE;
428 s->count += e->count;
429 /* FIXME: This should be called via a hook and only for IR_GIMPLE. */
430 redirect_edge_var_map_dup (s, e);
431 remove_edge (e);
432 e = s;
434 else
435 redirect_edge_succ (e, new_succ);
437 return e;
440 /* Redirect the edge E to basic block DEST even if it requires creating
441 of a new basic block; then it returns the newly created basic block.
442 Aborts when redirection is impossible. */
444 basic_block
445 redirect_edge_and_branch_force (edge e, basic_block dest)
447 basic_block ret, src = e->src;
449 if (!cfg_hooks->redirect_edge_and_branch_force)
450 internal_error ("%s does not support redirect_edge_and_branch_force",
451 cfg_hooks->name);
453 if (current_loops != NULL)
454 rescan_loop_exit (e, false, true);
456 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
458 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
459 set_immediate_dominator (CDI_DOMINATORS, ret, src);
461 if (current_loops != NULL)
463 if (ret != NULL)
465 struct loop *loop
466 = find_common_loop (single_pred (ret)->loop_father,
467 single_succ (ret)->loop_father);
468 add_bb_to_loop (ret, loop);
470 else if (find_edge (src, dest) == e)
471 rescan_loop_exit (e, true, false);
474 return ret;
477 /* Splits basic block BB after the specified instruction I (but at least after
478 the labels). If I is NULL, splits just after labels. The newly created edge
479 is returned. The new basic block is created just after the old one. */
481 edge
482 split_block (basic_block bb, void *i)
484 basic_block new_bb;
485 edge res;
487 if (!cfg_hooks->split_block)
488 internal_error ("%s does not support split_block", cfg_hooks->name);
490 new_bb = cfg_hooks->split_block (bb, i);
491 if (!new_bb)
492 return NULL;
494 new_bb->count = bb->count;
495 new_bb->frequency = bb->frequency;
496 new_bb->discriminator = bb->discriminator;
498 if (dom_info_available_p (CDI_DOMINATORS))
500 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
501 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
504 if (current_loops != NULL)
506 add_bb_to_loop (new_bb, bb->loop_father);
507 if (bb->loop_father->latch == bb)
508 bb->loop_father->latch = new_bb;
511 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
513 if (bb->flags & BB_IRREDUCIBLE_LOOP)
515 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
516 res->flags |= EDGE_IRREDUCIBLE_LOOP;
519 return res;
522 /* Splits block BB just after labels. The newly created edge is returned. */
524 edge
525 split_block_after_labels (basic_block bb)
527 return split_block (bb, NULL);
530 /* Moves block BB immediately after block AFTER. Returns false if the
531 movement was impossible. */
533 bool
534 move_block_after (basic_block bb, basic_block after)
536 bool ret;
538 if (!cfg_hooks->move_block_after)
539 internal_error ("%s does not support move_block_after", cfg_hooks->name);
541 ret = cfg_hooks->move_block_after (bb, after);
543 return ret;
546 /* Deletes the basic block BB. */
548 void
549 delete_basic_block (basic_block bb)
551 if (!cfg_hooks->delete_basic_block)
552 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
554 cfg_hooks->delete_basic_block (bb);
556 if (current_loops != NULL)
558 struct loop *loop = bb->loop_father;
560 /* If we remove the header or the latch of a loop, mark the loop for
561 removal by setting its header and latch to NULL. */
562 if (loop->latch == bb
563 || loop->header == bb)
565 loop->header = NULL;
566 loop->latch = NULL;
567 loops_state_set (LOOPS_NEED_FIXUP);
570 remove_bb_from_loops (bb);
573 /* Remove the edges into and out of this block. Note that there may
574 indeed be edges in, if we are removing an unreachable loop. */
575 while (EDGE_COUNT (bb->preds) != 0)
576 remove_edge (EDGE_PRED (bb, 0));
577 while (EDGE_COUNT (bb->succs) != 0)
578 remove_edge (EDGE_SUCC (bb, 0));
580 if (dom_info_available_p (CDI_DOMINATORS))
581 delete_from_dominance_info (CDI_DOMINATORS, bb);
582 if (dom_info_available_p (CDI_POST_DOMINATORS))
583 delete_from_dominance_info (CDI_POST_DOMINATORS, bb);
585 /* Remove the basic block from the array. */
586 expunge_block (bb);
589 /* Splits edge E and returns the newly created basic block. */
591 basic_block
592 split_edge (edge e)
594 basic_block ret;
595 gcov_type count = e->count;
596 int freq = EDGE_FREQUENCY (e);
597 edge f;
598 bool irr = (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
599 struct loop *loop;
600 basic_block src = e->src, dest = e->dest;
602 if (!cfg_hooks->split_edge)
603 internal_error ("%s does not support split_edge", cfg_hooks->name);
605 if (current_loops != NULL)
606 rescan_loop_exit (e, false, true);
608 ret = cfg_hooks->split_edge (e);
609 ret->count = count;
610 ret->frequency = freq;
611 single_succ_edge (ret)->probability = REG_BR_PROB_BASE;
612 single_succ_edge (ret)->count = count;
614 if (irr)
616 ret->flags |= BB_IRREDUCIBLE_LOOP;
617 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
618 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
621 if (dom_info_available_p (CDI_DOMINATORS))
622 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
624 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
626 /* There are two cases:
628 If the immediate dominator of e->dest is not e->src, it
629 remains unchanged.
631 If immediate dominator of e->dest is e->src, it may become
632 ret, provided that all other predecessors of e->dest are
633 dominated by e->dest. */
635 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
636 == single_pred (ret))
638 edge_iterator ei;
639 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
641 if (f == single_succ_edge (ret))
642 continue;
644 if (!dominated_by_p (CDI_DOMINATORS, f->src,
645 single_succ (ret)))
646 break;
649 if (!f)
650 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
654 if (current_loops != NULL)
656 loop = find_common_loop (src->loop_father, dest->loop_father);
657 add_bb_to_loop (ret, loop);
659 if (loop->latch == src)
660 loop->latch = ret;
663 return ret;
666 /* Creates a new basic block just after the basic block AFTER.
667 HEAD and END are the first and the last statement belonging
668 to the block. If both are NULL, an empty block is created. */
670 basic_block
671 create_basic_block (void *head, void *end, basic_block after)
673 basic_block ret;
675 if (!cfg_hooks->create_basic_block)
676 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
678 ret = cfg_hooks->create_basic_block (head, end, after);
680 if (dom_info_available_p (CDI_DOMINATORS))
681 add_to_dominance_info (CDI_DOMINATORS, ret);
682 if (dom_info_available_p (CDI_POST_DOMINATORS))
683 add_to_dominance_info (CDI_POST_DOMINATORS, ret);
685 return ret;
688 /* Creates an empty basic block just after basic block AFTER. */
690 basic_block
691 create_empty_bb (basic_block after)
693 return create_basic_block (NULL, NULL, after);
696 /* Checks whether we may merge blocks BB1 and BB2. */
698 bool
699 can_merge_blocks_p (basic_block bb1, basic_block bb2)
701 bool ret;
703 if (!cfg_hooks->can_merge_blocks_p)
704 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
706 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
708 return ret;
711 void
712 predict_edge (edge e, enum br_predictor predictor, int probability)
714 if (!cfg_hooks->predict_edge)
715 internal_error ("%s does not support predict_edge", cfg_hooks->name);
717 cfg_hooks->predict_edge (e, predictor, probability);
720 bool
721 predicted_by_p (const_basic_block bb, enum br_predictor predictor)
723 if (!cfg_hooks->predict_edge)
724 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
726 return cfg_hooks->predicted_by_p (bb, predictor);
729 /* Merges basic block B into basic block A. */
731 void
732 merge_blocks (basic_block a, basic_block b)
734 edge e;
735 edge_iterator ei;
737 if (!cfg_hooks->merge_blocks)
738 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
740 cfg_hooks->merge_blocks (a, b);
742 if (current_loops != NULL)
744 /* If the block we merge into is a loop header do nothing unless ... */
745 if (a->loop_father->header == a)
747 /* ... we merge two loop headers, in which case we kill
748 the inner loop. */
749 if (b->loop_father->header == b)
751 b->loop_father->header = NULL;
752 b->loop_father->latch = NULL;
753 loops_state_set (LOOPS_NEED_FIXUP);
756 /* If we merge a loop header into its predecessor, update the loop
757 structure. */
758 else if (b->loop_father->header == b)
760 remove_bb_from_loops (a);
761 add_bb_to_loop (a, b->loop_father);
762 a->loop_father->header = a;
764 remove_bb_from_loops (b);
767 /* Normally there should only be one successor of A and that is B, but
768 partway though the merge of blocks for conditional_execution we'll
769 be merging a TEST block with THEN and ELSE successors. Free the
770 whole lot of them and hope the caller knows what they're doing. */
772 while (EDGE_COUNT (a->succs) != 0)
773 remove_edge (EDGE_SUCC (a, 0));
775 /* Adjust the edges out of B for the new owner. */
776 FOR_EACH_EDGE (e, ei, b->succs)
778 e->src = a;
779 if (current_loops != NULL)
781 /* If b was a latch, a now is. */
782 if (e->dest->loop_father->latch == b)
783 e->dest->loop_father->latch = a;
784 rescan_loop_exit (e, true, false);
787 a->succs = b->succs;
788 a->flags |= b->flags;
790 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
791 b->preds = b->succs = NULL;
793 if (dom_info_available_p (CDI_DOMINATORS))
794 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
796 if (dom_info_available_p (CDI_DOMINATORS))
797 delete_from_dominance_info (CDI_DOMINATORS, b);
798 if (dom_info_available_p (CDI_POST_DOMINATORS))
799 delete_from_dominance_info (CDI_POST_DOMINATORS, b);
801 expunge_block (b);
804 /* Split BB into entry part and the rest (the rest is the newly created block).
805 Redirect those edges for that REDIRECT_EDGE_P returns true to the entry
806 part. Returns the edge connecting the entry part to the rest. */
808 edge
809 make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
810 void (*new_bb_cbk) (basic_block))
812 edge e, fallthru;
813 edge_iterator ei;
814 basic_block dummy, jump;
815 struct loop *loop, *ploop, *cloop;
817 if (!cfg_hooks->make_forwarder_block)
818 internal_error ("%s does not support make_forwarder_block",
819 cfg_hooks->name);
821 fallthru = split_block_after_labels (bb);
822 dummy = fallthru->src;
823 bb = fallthru->dest;
825 /* Redirect back edges we want to keep. */
826 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
828 basic_block e_src;
830 if (redirect_edge_p (e))
832 ei_next (&ei);
833 continue;
836 dummy->frequency -= EDGE_FREQUENCY (e);
837 dummy->count -= e->count;
838 if (dummy->frequency < 0)
839 dummy->frequency = 0;
840 if (dummy->count < 0)
841 dummy->count = 0;
842 fallthru->count -= e->count;
843 if (fallthru->count < 0)
844 fallthru->count = 0;
846 e_src = e->src;
847 jump = redirect_edge_and_branch_force (e, bb);
848 if (jump != NULL)
850 /* If we redirected the loop latch edge, the JUMP block now acts like
851 the new latch of the loop. */
852 if (current_loops != NULL
853 && dummy->loop_father != NULL
854 && dummy->loop_father->header == dummy
855 && dummy->loop_father->latch == e_src)
856 dummy->loop_father->latch = jump;
858 if (new_bb_cbk != NULL)
859 new_bb_cbk (jump);
863 if (dom_info_available_p (CDI_DOMINATORS))
865 vec<basic_block> doms_to_fix;
866 doms_to_fix.create (2);
867 doms_to_fix.quick_push (dummy);
868 doms_to_fix.quick_push (bb);
869 iterate_fix_dominators (CDI_DOMINATORS, doms_to_fix, false);
870 doms_to_fix.release ();
873 if (current_loops != NULL)
875 /* If we do not split a loop header, then both blocks belong to the
876 same loop. In case we split loop header and do not redirect the
877 latch edge to DUMMY, then DUMMY belongs to the outer loop, and
878 BB becomes the new header. If latch is not recorded for the loop,
879 we leave this updating on the caller (this may only happen during
880 loop analysis). */
881 loop = dummy->loop_father;
882 if (loop->header == dummy
883 && loop->latch != NULL
884 && find_edge (loop->latch, dummy) == NULL)
886 remove_bb_from_loops (dummy);
887 loop->header = bb;
889 cloop = loop;
890 FOR_EACH_EDGE (e, ei, dummy->preds)
892 cloop = find_common_loop (cloop, e->src->loop_father);
894 add_bb_to_loop (dummy, cloop);
897 /* In case we split loop latch, update it. */
898 for (ploop = loop; ploop; ploop = loop_outer (ploop))
899 if (ploop->latch == dummy)
900 ploop->latch = bb;
903 cfg_hooks->make_forwarder_block (fallthru);
905 return fallthru;
908 /* Try to make the edge fallthru. */
910 void
911 tidy_fallthru_edge (edge e)
913 if (cfg_hooks->tidy_fallthru_edge)
914 cfg_hooks->tidy_fallthru_edge (e);
917 /* Fix up edges that now fall through, or rather should now fall through
918 but previously required a jump around now deleted blocks. Simplify
919 the search by only examining blocks numerically adjacent, since this
920 is how they were created.
922 ??? This routine is currently RTL specific. */
924 void
925 tidy_fallthru_edges (void)
927 basic_block b, c;
929 if (!cfg_hooks->tidy_fallthru_edge)
930 return;
932 if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
933 return;
935 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR->prev_bb, next_bb)
937 edge s;
939 c = b->next_bb;
941 /* We care about simple conditional or unconditional jumps with
942 a single successor.
944 If we had a conditional branch to the next instruction when
945 CFG was built, then there will only be one out edge for the
946 block which ended with the conditional branch (since we do
947 not create duplicate edges).
949 Furthermore, the edge will be marked as a fallthru because we
950 merge the flags for the duplicate edges. So we do not want to
951 check that the edge is not a FALLTHRU edge. */
953 if (single_succ_p (b))
955 s = single_succ_edge (b);
956 if (! (s->flags & EDGE_COMPLEX)
957 && s->dest == c
958 && !find_reg_note (BB_END (b), REG_CROSSING_JUMP, NULL_RTX))
959 tidy_fallthru_edge (s);
964 /* Edge E is assumed to be fallthru edge. Emit needed jump instruction
965 (and possibly create new basic block) to make edge non-fallthru.
966 Return newly created BB or NULL if none. */
968 basic_block
969 force_nonfallthru (edge e)
971 basic_block ret, src = e->src;
973 if (!cfg_hooks->force_nonfallthru)
974 internal_error ("%s does not support force_nonfallthru",
975 cfg_hooks->name);
977 ret = cfg_hooks->force_nonfallthru (e);
978 if (ret != NULL)
980 if (dom_info_available_p (CDI_DOMINATORS))
981 set_immediate_dominator (CDI_DOMINATORS, ret, src);
983 if (current_loops != NULL)
985 struct loop *loop
986 = find_common_loop (single_pred (ret)->loop_father,
987 single_succ (ret)->loop_father);
988 rescan_loop_exit (e, false, true);
989 add_bb_to_loop (ret, loop);
993 return ret;
996 /* Returns true if we can duplicate basic block BB. */
998 bool
999 can_duplicate_block_p (const_basic_block bb)
1001 if (!cfg_hooks->can_duplicate_block_p)
1002 internal_error ("%s does not support can_duplicate_block_p",
1003 cfg_hooks->name);
1005 if (bb == EXIT_BLOCK_PTR || bb == ENTRY_BLOCK_PTR)
1006 return false;
1008 return cfg_hooks->can_duplicate_block_p (bb);
1011 /* Duplicates basic block BB and redirects edge E to it. Returns the
1012 new basic block. The new basic block is placed after the basic block
1013 AFTER. */
1015 basic_block
1016 duplicate_block (basic_block bb, edge e, basic_block after)
1018 edge s, n;
1019 basic_block new_bb;
1020 gcov_type new_count = e ? e->count : 0;
1021 edge_iterator ei;
1023 if (!cfg_hooks->duplicate_block)
1024 internal_error ("%s does not support duplicate_block",
1025 cfg_hooks->name);
1027 if (bb->count < new_count)
1028 new_count = bb->count;
1030 gcc_checking_assert (can_duplicate_block_p (bb));
1032 new_bb = cfg_hooks->duplicate_block (bb);
1033 if (after)
1034 move_block_after (new_bb, after);
1036 new_bb->flags = bb->flags;
1037 FOR_EACH_EDGE (s, ei, bb->succs)
1039 /* Since we are creating edges from a new block to successors
1040 of another block (which therefore are known to be disjoint), there
1041 is no need to actually check for duplicated edges. */
1042 n = unchecked_make_edge (new_bb, s->dest, s->flags);
1043 n->probability = s->probability;
1044 if (e && bb->count)
1046 /* Take care for overflows! */
1047 n->count = s->count * (new_count * 10000 / bb->count) / 10000;
1048 s->count -= n->count;
1050 else
1051 n->count = s->count;
1052 n->aux = s->aux;
1055 if (e)
1057 new_bb->count = new_count;
1058 bb->count -= new_count;
1060 new_bb->frequency = EDGE_FREQUENCY (e);
1061 bb->frequency -= EDGE_FREQUENCY (e);
1063 redirect_edge_and_branch_force (e, new_bb);
1065 if (bb->count < 0)
1066 bb->count = 0;
1067 if (bb->frequency < 0)
1068 bb->frequency = 0;
1070 else
1072 new_bb->count = bb->count;
1073 new_bb->frequency = bb->frequency;
1076 set_bb_original (new_bb, bb);
1077 set_bb_copy (bb, new_bb);
1079 /* Add the new block to the copy of the loop of BB, or directly to the loop
1080 of BB if the loop is not being copied. */
1081 if (current_loops != NULL)
1083 struct loop *cloop = bb->loop_father;
1084 struct loop *copy = get_loop_copy (cloop);
1085 /* If we copied the loop header block but not the loop
1086 we have created a loop with multiple entries. Ditch the loop,
1087 add the new block to the outer loop and arrange for a fixup. */
1088 if (!copy
1089 && cloop->header == bb)
1091 add_bb_to_loop (new_bb, loop_outer (cloop));
1092 cloop->header = NULL;
1093 cloop->latch = NULL;
1094 loops_state_set (LOOPS_NEED_FIXUP);
1096 else
1098 add_bb_to_loop (new_bb, copy ? copy : cloop);
1099 /* If we copied the loop latch block but not the loop, adjust
1100 loop state. */
1101 if (!copy
1102 && cloop->latch == bb)
1104 cloop->latch = NULL;
1105 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1110 return new_bb;
1113 /* Return 1 if BB ends with a call, possibly followed by some
1114 instructions that must stay with the call, 0 otherwise. */
1116 bool
1117 block_ends_with_call_p (basic_block bb)
1119 if (!cfg_hooks->block_ends_with_call_p)
1120 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1122 return (cfg_hooks->block_ends_with_call_p) (bb);
1125 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1127 bool
1128 block_ends_with_condjump_p (const_basic_block bb)
1130 if (!cfg_hooks->block_ends_with_condjump_p)
1131 internal_error ("%s does not support block_ends_with_condjump_p",
1132 cfg_hooks->name);
1134 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1137 /* Add fake edges to the function exit for any non constant and non noreturn
1138 calls, volatile inline assembly in the bitmap of blocks specified by
1139 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
1140 that were split.
1142 The goal is to expose cases in which entering a basic block does not imply
1143 that all subsequent instructions must be executed. */
1146 flow_call_edges_add (sbitmap blocks)
1148 if (!cfg_hooks->flow_call_edges_add)
1149 internal_error ("%s does not support flow_call_edges_add",
1150 cfg_hooks->name);
1152 return (cfg_hooks->flow_call_edges_add) (blocks);
1155 /* This function is called immediately after edge E is added to the
1156 edge vector E->dest->preds. */
1158 void
1159 execute_on_growing_pred (edge e)
1161 if (cfg_hooks->execute_on_growing_pred)
1162 cfg_hooks->execute_on_growing_pred (e);
1165 /* This function is called immediately before edge E is removed from
1166 the edge vector E->dest->preds. */
1168 void
1169 execute_on_shrinking_pred (edge e)
1171 if (cfg_hooks->execute_on_shrinking_pred)
1172 cfg_hooks->execute_on_shrinking_pred (e);
1175 /* This is used inside loop versioning when we want to insert
1176 stmts/insns on the edges, which have a different behavior
1177 in tree's and in RTL, so we made a CFG hook. */
1178 void
1179 lv_flush_pending_stmts (edge e)
1181 if (cfg_hooks->flush_pending_stmts)
1182 cfg_hooks->flush_pending_stmts (e);
1185 /* Loop versioning uses the duplicate_loop_to_header_edge to create
1186 a new version of the loop basic-blocks, the parameters here are
1187 exactly the same as in duplicate_loop_to_header_edge or
1188 tree_duplicate_loop_to_header_edge; while in tree-ssa there is
1189 additional work to maintain ssa information that's why there is
1190 a need to call the tree_duplicate_loop_to_header_edge rather
1191 than duplicate_loop_to_header_edge when we are in tree mode. */
1192 bool
1193 cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge e,
1194 unsigned int ndupl,
1195 sbitmap wont_exit, edge orig,
1196 vec<edge> *to_remove,
1197 int flags)
1199 gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge);
1200 return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e,
1201 ndupl, wont_exit,
1202 orig, to_remove,
1203 flags);
1206 /* Conditional jumps are represented differently in trees and RTL,
1207 this hook takes a basic block that is known to have a cond jump
1208 at its end and extracts the taken and not taken edges out of it
1209 and store it in E1 and E2 respectively. */
1210 void
1211 extract_cond_bb_edges (basic_block b, edge *e1, edge *e2)
1213 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1214 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1217 /* Responsible for updating the ssa info (PHI nodes) on the
1218 new condition basic block that guards the versioned loop. */
1219 void
1220 lv_adjust_loop_header_phi (basic_block first, basic_block second,
1221 basic_block new_block, edge e)
1223 if (cfg_hooks->lv_adjust_loop_header_phi)
1224 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
1227 /* Conditions in trees and RTL are different so we need
1228 a different handling when we add the condition to the
1229 versioning code. */
1230 void
1231 lv_add_condition_to_bb (basic_block first, basic_block second,
1232 basic_block new_block, void *cond)
1234 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
1235 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
1238 /* Checks whether all N blocks in BBS array can be copied. */
1239 bool
1240 can_copy_bbs_p (basic_block *bbs, unsigned n)
1242 unsigned i;
1243 edge e;
1244 int ret = true;
1246 for (i = 0; i < n; i++)
1247 bbs[i]->flags |= BB_DUPLICATED;
1249 for (i = 0; i < n; i++)
1251 /* In case we should redirect abnormal edge during duplication, fail. */
1252 edge_iterator ei;
1253 FOR_EACH_EDGE (e, ei, bbs[i]->succs)
1254 if ((e->flags & EDGE_ABNORMAL)
1255 && (e->dest->flags & BB_DUPLICATED))
1257 ret = false;
1258 goto end;
1261 if (!can_duplicate_block_p (bbs[i]))
1263 ret = false;
1264 break;
1268 end:
1269 for (i = 0; i < n; i++)
1270 bbs[i]->flags &= ~BB_DUPLICATED;
1272 return ret;
1275 /* Duplicates N basic blocks stored in array BBS. Newly created basic blocks
1276 are placed into array NEW_BBS in the same order. Edges from basic blocks
1277 in BBS are also duplicated and copies of those of them
1278 that lead into BBS are redirected to appropriate newly created block. The
1279 function assigns bbs into loops (copy of basic block bb is assigned to
1280 bb->loop_father->copy loop, so this must be set up correctly in advance)
1281 and updates dominators locally (LOOPS structure that contains the information
1282 about dominators is passed to enable this).
1284 BASE is the superloop to that basic block belongs; if its header or latch
1285 is copied, we do not set the new blocks as header or latch.
1287 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1288 also in the same order.
1290 Newly created basic blocks are put after the basic block AFTER in the
1291 instruction stream, and the order of the blocks in BBS array is preserved. */
1293 void
1294 copy_bbs (basic_block *bbs, unsigned n, basic_block *new_bbs,
1295 edge *edges, unsigned num_edges, edge *new_edges,
1296 struct loop *base, basic_block after)
1298 unsigned i, j;
1299 basic_block bb, new_bb, dom_bb;
1300 edge e;
1302 /* Duplicate bbs, update dominators, assign bbs to loops. */
1303 for (i = 0; i < n; i++)
1305 /* Duplicate. */
1306 bb = bbs[i];
1307 new_bb = new_bbs[i] = duplicate_block (bb, NULL, after);
1308 after = new_bb;
1309 bb->flags |= BB_DUPLICATED;
1310 if (bb->loop_father)
1312 /* Possibly set loop header. */
1313 if (bb->loop_father->header == bb && bb->loop_father != base)
1314 new_bb->loop_father->header = new_bb;
1315 /* Or latch. */
1316 if (bb->loop_father->latch == bb && bb->loop_father != base)
1317 new_bb->loop_father->latch = new_bb;
1321 /* Set dominators. */
1322 for (i = 0; i < n; i++)
1324 bb = bbs[i];
1325 new_bb = new_bbs[i];
1327 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1328 if (dom_bb->flags & BB_DUPLICATED)
1330 dom_bb = get_bb_copy (dom_bb);
1331 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1335 /* Redirect edges. */
1336 for (j = 0; j < num_edges; j++)
1337 new_edges[j] = NULL;
1338 for (i = 0; i < n; i++)
1340 edge_iterator ei;
1341 new_bb = new_bbs[i];
1342 bb = bbs[i];
1344 FOR_EACH_EDGE (e, ei, new_bb->succs)
1346 for (j = 0; j < num_edges; j++)
1347 if (edges[j] && edges[j]->src == bb && edges[j]->dest == e->dest)
1348 new_edges[j] = e;
1350 if (!(e->dest->flags & BB_DUPLICATED))
1351 continue;
1352 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1356 /* Clear information about duplicates. */
1357 for (i = 0; i < n; i++)
1358 bbs[i]->flags &= ~BB_DUPLICATED;
1361 /* Return true if BB contains only labels or non-executable
1362 instructions */
1363 bool
1364 empty_block_p (basic_block bb)
1366 gcc_assert (cfg_hooks->empty_block_p);
1367 return cfg_hooks->empty_block_p (bb);
1370 /* Split a basic block if it ends with a conditional branch and if
1371 the other part of the block is not empty. */
1372 basic_block
1373 split_block_before_cond_jump (basic_block bb)
1375 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1376 return cfg_hooks->split_block_before_cond_jump (bb);
1379 /* Work-horse for passes.c:check_profile_consistency.
1380 Do book-keeping of the CFG for the profile consistency checker.
1381 If AFTER_PASS is 0, do pre-pass accounting, or if AFTER_PASS is 1
1382 then do post-pass accounting. Store the counting in RECORD. */
1384 void
1385 account_profile_record (struct profile_record *record, int after_pass)
1387 basic_block bb;
1388 edge_iterator ei;
1389 edge e;
1390 int sum;
1391 gcov_type lsum;
1393 FOR_ALL_BB (bb)
1395 if (bb != EXIT_BLOCK_PTR_FOR_FUNCTION (cfun)
1396 && profile_status != PROFILE_ABSENT)
1398 sum = 0;
1399 FOR_EACH_EDGE (e, ei, bb->succs)
1400 sum += e->probability;
1401 if (EDGE_COUNT (bb->succs) && abs (sum - REG_BR_PROB_BASE) > 100)
1402 record->num_mismatched_freq_out[after_pass]++;
1403 lsum = 0;
1404 FOR_EACH_EDGE (e, ei, bb->succs)
1405 lsum += e->count;
1406 if (EDGE_COUNT (bb->succs)
1407 && (lsum - bb->count > 100 || lsum - bb->count < -100))
1408 record->num_mismatched_count_out[after_pass]++;
1410 if (bb != ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun)
1411 && profile_status != PROFILE_ABSENT)
1413 sum = 0;
1414 FOR_EACH_EDGE (e, ei, bb->preds)
1415 sum += EDGE_FREQUENCY (e);
1416 if (abs (sum - bb->frequency) > 100
1417 || (MAX (sum, bb->frequency) > 10
1418 && abs ((sum - bb->frequency) * 100 / (MAX (sum, bb->frequency) + 1)) > 10))
1419 record->num_mismatched_freq_in[after_pass]++;
1420 lsum = 0;
1421 FOR_EACH_EDGE (e, ei, bb->preds)
1422 lsum += e->count;
1423 if (lsum - bb->count > 100 || lsum - bb->count < -100)
1424 record->num_mismatched_count_in[after_pass]++;
1426 if (bb == ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun)
1427 || bb == EXIT_BLOCK_PTR_FOR_FUNCTION (cfun))
1428 continue;
1429 gcc_assert (cfg_hooks->account_profile_record);
1430 cfg_hooks->account_profile_record(bb, after_pass, record);