lto-cgraph.c (output_profile_summary, [...]): Use gcov streaming; stream hot bb thres...
[gcc.git] / gcc / cfghooks.c
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>
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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"
33
34 /* A pointer to one of the hooks containers. */
35 static struct cfg_hooks *cfg_hooks;
36
37 /* Initialization of functions specific to the rtl IR. */
38 void
39 rtl_register_cfg_hooks (void)
40 {
41 cfg_hooks = &rtl_cfg_hooks;
42 }
43
44 /* Initialization of functions specific to the rtl IR. */
45 void
46 cfg_layout_rtl_register_cfg_hooks (void)
47 {
48 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
49 }
50
51 /* Initialization of functions specific to the tree IR. */
52
53 void
54 gimple_register_cfg_hooks (void)
55 {
56 cfg_hooks = &gimple_cfg_hooks;
57 }
58
59 struct cfg_hooks
60 get_cfg_hooks (void)
61 {
62 return *cfg_hooks;
63 }
64
65 void
66 set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
67 {
68 *cfg_hooks = new_cfg_hooks;
69 }
70
71 /* Returns current ir type. */
72
73 enum ir_type
74 current_ir_type (void)
75 {
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 ();
84 }
85
86 /* Verify the CFG consistency.
87
88 Currently it does following: checks edge and basic block list correctness
89 and calls into IL dependent checking then. */
90
91 DEBUG_FUNCTION void
92 verify_flow_info (void)
93 {
94 size_t *edge_checksum;
95 int err = 0;
96 basic_block bb, last_bb_seen;
97 basic_block *last_visited;
98
99 timevar_push (TV_CFG_VERIFY);
100 last_visited = XCNEWVEC (basic_block, last_basic_block);
101 edge_checksum = XCNEWVEC (size_t, last_basic_block);
102
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)
106 {
107 if (bb != EXIT_BLOCK_PTR
108 && bb != BASIC_BLOCK (bb->index))
109 {
110 error ("bb %d on wrong place", bb->index);
111 err = 1;
112 }
113
114 if (bb->prev_bb != last_bb_seen)
115 {
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;
119 }
120
121 last_bb_seen = bb;
122 }
123
124 /* Now check the basic blocks (boundaries etc.) */
125 FOR_EACH_BB_REVERSE (bb)
126 {
127 int n_fallthru = 0;
128 edge e;
129 edge_iterator ei;
130
131 if (bb->loop_father != NULL && current_loops == NULL)
132 {
133 error ("verify_flow_info: Block %i has loop_father, but there are no loops",
134 bb->index);
135 err = 1;
136 }
137 if (bb->loop_father == NULL && current_loops != NULL)
138 {
139 error ("verify_flow_info: Block %i lacks loop_father", bb->index);
140 err = 1;
141 }
142
143 if (bb->count < 0)
144 {
145 error ("verify_flow_info: Wrong count of block %i %i",
146 bb->index, (int)bb->count);
147 err = 1;
148 }
149 if (bb->frequency < 0)
150 {
151 error ("verify_flow_info: Wrong frequency of block %i %i",
152 bb->index, bb->frequency);
153 err = 1;
154 }
155 FOR_EACH_EDGE (e, ei, bb->succs)
156 {
157 if (last_visited [e->dest->index] == bb)
158 {
159 error ("verify_flow_info: Duplicate edge %i->%i",
160 e->src->index, e->dest->index);
161 err = 1;
162 }
163 if (e->probability < 0 || e->probability > REG_BR_PROB_BASE)
164 {
165 error ("verify_flow_info: Wrong probability of edge %i->%i %i",
166 e->src->index, e->dest->index, e->probability);
167 err = 1;
168 }
169 if (e->count < 0)
170 {
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;
174 }
175
176 last_visited [e->dest->index] = bb;
177
178 if (e->flags & EDGE_FALLTHRU)
179 n_fallthru++;
180
181 if (e->src != bb)
182 {
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;
191 }
192
193 edge_checksum[e->dest->index] += (size_t) e;
194 }
195 if (n_fallthru > 1)
196 {
197 error ("wrong amount of branch edges after unconditional jump %i", bb->index);
198 err = 1;
199 }
200
201 FOR_EACH_EDGE (e, ei, bb->preds)
202 {
203 if (e->dest != bb)
204 {
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;
212 }
213
214 if (ei.index != e->dest_idx)
215 {
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;
225 }
226
227 edge_checksum[e->dest->index] -= (size_t) e;
228 }
229 }
230
231 /* Complete edge checksumming for ENTRY and EXIT. */
232 {
233 edge e;
234 edge_iterator ei;
235
236 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
237 edge_checksum[e->dest->index] += (size_t) e;
238
239 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
240 edge_checksum[e->dest->index] -= (size_t) e;
241 }
242
243 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
244 if (edge_checksum[bb->index])
245 {
246 error ("basic block %i edge lists are corrupted", bb->index);
247 err = 1;
248 }
249
250 last_bb_seen = ENTRY_BLOCK_PTR;
251
252 /* Clean up. */
253 free (last_visited);
254 free (edge_checksum);
255
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);
261 }
262
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.
265
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. */
269
270 void
271 dump_bb (FILE *outf, basic_block bb, int indent, int flags)
272 {
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);
280 }
281
282 DEBUG_FUNCTION void
283 debug (basic_block_def &ref)
284 {
285 dump_bb (stderr, &ref, 0, 0);
286 }
287
288 DEBUG_FUNCTION void
289 debug (basic_block_def *ptr)
290 {
291 if (ptr)
292 debug (*ptr);
293 else
294 fprintf (stderr, "<nil>\n");
295 }
296
297
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(). */
304
305 void
306 dump_bb_for_graph (pretty_printer *pp, basic_block bb)
307 {
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);
312 }
313
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)
317 {
318 basic_block bb;
319
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);
323
324 putc ('\n', file);
325 }
326
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)
331 {
332 dump_flow_info (stderr, TDF_DETAILS);
333 }
334
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. */
339
340 edge
341 redirect_edge_and_branch (edge e, basic_block dest)
342 {
343 edge ret;
344
345 if (!cfg_hooks->redirect_edge_and_branch)
346 internal_error ("%s does not support redirect_edge_and_branch",
347 cfg_hooks->name);
348
349 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
350
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);
355
356 return ret;
357 }
358
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. */
361
362 bool
363 can_remove_branch_p (const_edge e)
364 {
365 if (!cfg_hooks->can_remove_branch_p)
366 internal_error ("%s does not support can_remove_branch_p",
367 cfg_hooks->name);
368
369 if (EDGE_COUNT (e->src->succs) != 2)
370 return false;
371
372 return cfg_hooks->can_remove_branch_p (e);
373 }
374
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. */
378
379 void
380 remove_branch (edge e)
381 {
382 edge other;
383 basic_block src = e->src;
384 int irr;
385
386 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
387
388 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
389 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
390
391 e = redirect_edge_and_branch (e, other->dest);
392 gcc_assert (e != NULL);
393
394 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
395 e->flags |= irr;
396 }
397
398 /* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
399
400 void
401 remove_edge (edge e)
402 {
403 if (current_loops != NULL)
404 rescan_loop_exit (e, false, true);
405
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);
410
411 remove_edge_raw (e);
412 }
413
414 /* Like redirect_edge_succ but avoid possible duplicate edge. */
415
416 edge
417 redirect_edge_succ_nodup (edge e, basic_block new_succ)
418 {
419 edge s;
420
421 s = find_edge (e->src, new_succ);
422 if (s && s != e)
423 {
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;
433 }
434 else
435 redirect_edge_succ (e, new_succ);
436
437 return e;
438 }
439
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. */
443
444 basic_block
445 redirect_edge_and_branch_force (edge e, basic_block dest)
446 {
447 basic_block ret, src = e->src;
448
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);
452
453 if (current_loops != NULL)
454 rescan_loop_exit (e, false, true);
455
456 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
457
458 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
459 set_immediate_dominator (CDI_DOMINATORS, ret, src);
460
461 if (current_loops != NULL)
462 {
463 if (ret != NULL)
464 {
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);
469 }
470 else if (find_edge (src, dest) == e)
471 rescan_loop_exit (e, true, false);
472 }
473
474 return ret;
475 }
476
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. */
480
481 edge
482 split_block (basic_block bb, void *i)
483 {
484 basic_block new_bb;
485 edge res;
486
487 if (!cfg_hooks->split_block)
488 internal_error ("%s does not support split_block", cfg_hooks->name);
489
490 new_bb = cfg_hooks->split_block (bb, i);
491 if (!new_bb)
492 return NULL;
493
494 new_bb->count = bb->count;
495 new_bb->frequency = bb->frequency;
496 new_bb->discriminator = bb->discriminator;
497
498 if (dom_info_available_p (CDI_DOMINATORS))
499 {
500 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
501 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
502 }
503
504 if (current_loops != NULL)
505 {
506 add_bb_to_loop (new_bb, bb->loop_father);
507 if (bb->loop_father->latch == bb)
508 bb->loop_father->latch = new_bb;
509 }
510
511 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
512
513 if (bb->flags & BB_IRREDUCIBLE_LOOP)
514 {
515 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
516 res->flags |= EDGE_IRREDUCIBLE_LOOP;
517 }
518
519 return res;
520 }
521
522 /* Splits block BB just after labels. The newly created edge is returned. */
523
524 edge
525 split_block_after_labels (basic_block bb)
526 {
527 return split_block (bb, NULL);
528 }
529
530 /* Moves block BB immediately after block AFTER. Returns false if the
531 movement was impossible. */
532
533 bool
534 move_block_after (basic_block bb, basic_block after)
535 {
536 bool ret;
537
538 if (!cfg_hooks->move_block_after)
539 internal_error ("%s does not support move_block_after", cfg_hooks->name);
540
541 ret = cfg_hooks->move_block_after (bb, after);
542
543 return ret;
544 }
545
546 /* Deletes the basic block BB. */
547
548 void
549 delete_basic_block (basic_block bb)
550 {
551 if (!cfg_hooks->delete_basic_block)
552 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
553
554 cfg_hooks->delete_basic_block (bb);
555
556 if (current_loops != NULL)
557 {
558 struct loop *loop = bb->loop_father;
559
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)
564 {
565 loop->header = NULL;
566 loop->latch = NULL;
567 loops_state_set (LOOPS_NEED_FIXUP);
568 }
569
570 remove_bb_from_loops (bb);
571 }
572
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));
579
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);
584
585 /* Remove the basic block from the array. */
586 expunge_block (bb);
587 }
588
589 /* Splits edge E and returns the newly created basic block. */
590
591 basic_block
592 split_edge (edge e)
593 {
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;
601
602 if (!cfg_hooks->split_edge)
603 internal_error ("%s does not support split_edge", cfg_hooks->name);
604
605 if (current_loops != NULL)
606 rescan_loop_exit (e, false, true);
607
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;
613
614 if (irr)
615 {
616 ret->flags |= BB_IRREDUCIBLE_LOOP;
617 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
618 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
619 }
620
621 if (dom_info_available_p (CDI_DOMINATORS))
622 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
623
624 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
625 {
626 /* There are two cases:
627
628 If the immediate dominator of e->dest is not e->src, it
629 remains unchanged.
630
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. */
634
635 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
636 == single_pred (ret))
637 {
638 edge_iterator ei;
639 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
640 {
641 if (f == single_succ_edge (ret))
642 continue;
643
644 if (!dominated_by_p (CDI_DOMINATORS, f->src,
645 single_succ (ret)))
646 break;
647 }
648
649 if (!f)
650 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
651 }
652 }
653
654 if (current_loops != NULL)
655 {
656 loop = find_common_loop (src->loop_father, dest->loop_father);
657 add_bb_to_loop (ret, loop);
658
659 if (loop->latch == src)
660 loop->latch = ret;
661 }
662
663 return ret;
664 }
665
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. */
669
670 basic_block
671 create_basic_block (void *head, void *end, basic_block after)
672 {
673 basic_block ret;
674
675 if (!cfg_hooks->create_basic_block)
676 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
677
678 ret = cfg_hooks->create_basic_block (head, end, after);
679
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);
684
685 return ret;
686 }
687
688 /* Creates an empty basic block just after basic block AFTER. */
689
690 basic_block
691 create_empty_bb (basic_block after)
692 {
693 return create_basic_block (NULL, NULL, after);
694 }
695
696 /* Checks whether we may merge blocks BB1 and BB2. */
697
698 bool
699 can_merge_blocks_p (basic_block bb1, basic_block bb2)
700 {
701 bool ret;
702
703 if (!cfg_hooks->can_merge_blocks_p)
704 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
705
706 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
707
708 return ret;
709 }
710
711 void
712 predict_edge (edge e, enum br_predictor predictor, int probability)
713 {
714 if (!cfg_hooks->predict_edge)
715 internal_error ("%s does not support predict_edge", cfg_hooks->name);
716
717 cfg_hooks->predict_edge (e, predictor, probability);
718 }
719
720 bool
721 predicted_by_p (const_basic_block bb, enum br_predictor predictor)
722 {
723 if (!cfg_hooks->predict_edge)
724 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
725
726 return cfg_hooks->predicted_by_p (bb, predictor);
727 }
728
729 /* Merges basic block B into basic block A. */
730
731 void
732 merge_blocks (basic_block a, basic_block b)
733 {
734 edge e;
735 edge_iterator ei;
736
737 if (!cfg_hooks->merge_blocks)
738 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
739
740 cfg_hooks->merge_blocks (a, b);
741
742 if (current_loops != NULL)
743 {
744 /* If the block we merge into is a loop header do nothing unless ... */
745 if (a->loop_father->header == a)
746 {
747 /* ... we merge two loop headers, in which case we kill
748 the inner loop. */
749 if (b->loop_father->header == b)
750 {
751 b->loop_father->header = NULL;
752 b->loop_father->latch = NULL;
753 loops_state_set (LOOPS_NEED_FIXUP);
754 }
755 }
756 /* If we merge a loop header into its predecessor, update the loop
757 structure. */
758 else if (b->loop_father->header == b)
759 {
760 remove_bb_from_loops (a);
761 add_bb_to_loop (a, b->loop_father);
762 a->loop_father->header = a;
763 }
764 remove_bb_from_loops (b);
765 }
766
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. */
771
772 while (EDGE_COUNT (a->succs) != 0)
773 remove_edge (EDGE_SUCC (a, 0));
774
775 /* Adjust the edges out of B for the new owner. */
776 FOR_EACH_EDGE (e, ei, b->succs)
777 {
778 e->src = a;
779 if (current_loops != NULL)
780 {
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);
785 }
786 }
787 a->succs = b->succs;
788 a->flags |= b->flags;
789
790 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
791 b->preds = b->succs = NULL;
792
793 if (dom_info_available_p (CDI_DOMINATORS))
794 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
795
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);
800
801 expunge_block (b);
802 }
803
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. */
807
808 edge
809 make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
810 void (*new_bb_cbk) (basic_block))
811 {
812 edge e, fallthru;
813 edge_iterator ei;
814 basic_block dummy, jump;
815 struct loop *loop, *ploop, *cloop;
816
817 if (!cfg_hooks->make_forwarder_block)
818 internal_error ("%s does not support make_forwarder_block",
819 cfg_hooks->name);
820
821 fallthru = split_block_after_labels (bb);
822 dummy = fallthru->src;
823 bb = fallthru->dest;
824
825 /* Redirect back edges we want to keep. */
826 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
827 {
828 basic_block e_src;
829
830 if (redirect_edge_p (e))
831 {
832 ei_next (&ei);
833 continue;
834 }
835
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;
845
846 e_src = e->src;
847 jump = redirect_edge_and_branch_force (e, bb);
848 if (jump != NULL)
849 {
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;
857
858 if (new_bb_cbk != NULL)
859 new_bb_cbk (jump);
860 }
861 }
862
863 if (dom_info_available_p (CDI_DOMINATORS))
864 {
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 ();
871 }
872
873 if (current_loops != NULL)
874 {
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)
885 {
886 remove_bb_from_loops (dummy);
887 loop->header = bb;
888
889 cloop = loop;
890 FOR_EACH_EDGE (e, ei, dummy->preds)
891 {
892 cloop = find_common_loop (cloop, e->src->loop_father);
893 }
894 add_bb_to_loop (dummy, cloop);
895 }
896
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;
901 }
902
903 cfg_hooks->make_forwarder_block (fallthru);
904
905 return fallthru;
906 }
907
908 /* Try to make the edge fallthru. */
909
910 void
911 tidy_fallthru_edge (edge e)
912 {
913 if (cfg_hooks->tidy_fallthru_edge)
914 cfg_hooks->tidy_fallthru_edge (e);
915 }
916
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.
921
922 ??? This routine is currently RTL specific. */
923
924 void
925 tidy_fallthru_edges (void)
926 {
927 basic_block b, c;
928
929 if (!cfg_hooks->tidy_fallthru_edge)
930 return;
931
932 if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
933 return;
934
935 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR->prev_bb, next_bb)
936 {
937 edge s;
938
939 c = b->next_bb;
940
941 /* We care about simple conditional or unconditional jumps with
942 a single successor.
943
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).
948
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. */
952
953 if (single_succ_p (b))
954 {
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);
960 }
961 }
962 }
963
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. */
967
968 basic_block
969 force_nonfallthru (edge e)
970 {
971 basic_block ret, src = e->src;
972
973 if (!cfg_hooks->force_nonfallthru)
974 internal_error ("%s does not support force_nonfallthru",
975 cfg_hooks->name);
976
977 ret = cfg_hooks->force_nonfallthru (e);
978 if (ret != NULL)
979 {
980 if (dom_info_available_p (CDI_DOMINATORS))
981 set_immediate_dominator (CDI_DOMINATORS, ret, src);
982
983 if (current_loops != NULL)
984 {
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);
990 }
991 }
992
993 return ret;
994 }
995
996 /* Returns true if we can duplicate basic block BB. */
997
998 bool
999 can_duplicate_block_p (const_basic_block bb)
1000 {
1001 if (!cfg_hooks->can_duplicate_block_p)
1002 internal_error ("%s does not support can_duplicate_block_p",
1003 cfg_hooks->name);
1004
1005 if (bb == EXIT_BLOCK_PTR || bb == ENTRY_BLOCK_PTR)
1006 return false;
1007
1008 return cfg_hooks->can_duplicate_block_p (bb);
1009 }
1010
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. */
1014
1015 basic_block
1016 duplicate_block (basic_block bb, edge e, basic_block after)
1017 {
1018 edge s, n;
1019 basic_block new_bb;
1020 gcov_type new_count = e ? e->count : 0;
1021 edge_iterator ei;
1022
1023 if (!cfg_hooks->duplicate_block)
1024 internal_error ("%s does not support duplicate_block",
1025 cfg_hooks->name);
1026
1027 if (bb->count < new_count)
1028 new_count = bb->count;
1029
1030 gcc_checking_assert (can_duplicate_block_p (bb));
1031
1032 new_bb = cfg_hooks->duplicate_block (bb);
1033 if (after)
1034 move_block_after (new_bb, after);
1035
1036 new_bb->flags = bb->flags;
1037 FOR_EACH_EDGE (s, ei, bb->succs)
1038 {
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)
1045 {
1046 /* Take care for overflows! */
1047 n->count = s->count * (new_count * 10000 / bb->count) / 10000;
1048 s->count -= n->count;
1049 }
1050 else
1051 n->count = s->count;
1052 n->aux = s->aux;
1053 }
1054
1055 if (e)
1056 {
1057 new_bb->count = new_count;
1058 bb->count -= new_count;
1059
1060 new_bb->frequency = EDGE_FREQUENCY (e);
1061 bb->frequency -= EDGE_FREQUENCY (e);
1062
1063 redirect_edge_and_branch_force (e, new_bb);
1064
1065 if (bb->count < 0)
1066 bb->count = 0;
1067 if (bb->frequency < 0)
1068 bb->frequency = 0;
1069 }
1070 else
1071 {
1072 new_bb->count = bb->count;
1073 new_bb->frequency = bb->frequency;
1074 }
1075
1076 set_bb_original (new_bb, bb);
1077 set_bb_copy (bb, new_bb);
1078
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)
1082 {
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)
1090 {
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);
1095 }
1096 else
1097 {
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)
1103 {
1104 cloop->latch = NULL;
1105 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1106 }
1107 }
1108 }
1109
1110 return new_bb;
1111 }
1112
1113 /* Return 1 if BB ends with a call, possibly followed by some
1114 instructions that must stay with the call, 0 otherwise. */
1115
1116 bool
1117 block_ends_with_call_p (basic_block bb)
1118 {
1119 if (!cfg_hooks->block_ends_with_call_p)
1120 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1121
1122 return (cfg_hooks->block_ends_with_call_p) (bb);
1123 }
1124
1125 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1126
1127 bool
1128 block_ends_with_condjump_p (const_basic_block bb)
1129 {
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);
1133
1134 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1135 }
1136
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.
1141
1142 The goal is to expose cases in which entering a basic block does not imply
1143 that all subsequent instructions must be executed. */
1144
1145 int
1146 flow_call_edges_add (sbitmap blocks)
1147 {
1148 if (!cfg_hooks->flow_call_edges_add)
1149 internal_error ("%s does not support flow_call_edges_add",
1150 cfg_hooks->name);
1151
1152 return (cfg_hooks->flow_call_edges_add) (blocks);
1153 }
1154
1155 /* This function is called immediately after edge E is added to the
1156 edge vector E->dest->preds. */
1157
1158 void
1159 execute_on_growing_pred (edge e)
1160 {
1161 if (cfg_hooks->execute_on_growing_pred)
1162 cfg_hooks->execute_on_growing_pred (e);
1163 }
1164
1165 /* This function is called immediately before edge E is removed from
1166 the edge vector E->dest->preds. */
1167
1168 void
1169 execute_on_shrinking_pred (edge e)
1170 {
1171 if (cfg_hooks->execute_on_shrinking_pred)
1172 cfg_hooks->execute_on_shrinking_pred (e);
1173 }
1174
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)
1180 {
1181 if (cfg_hooks->flush_pending_stmts)
1182 cfg_hooks->flush_pending_stmts (e);
1183 }
1184
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)
1198 {
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);
1204 }
1205
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)
1212 {
1213 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1214 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1215 }
1216
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)
1222 {
1223 if (cfg_hooks->lv_adjust_loop_header_phi)
1224 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
1225 }
1226
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)
1233 {
1234 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
1235 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
1236 }
1237
1238 /* Checks whether all N blocks in BBS array can be copied. */
1239 bool
1240 can_copy_bbs_p (basic_block *bbs, unsigned n)
1241 {
1242 unsigned i;
1243 edge e;
1244 int ret = true;
1245
1246 for (i = 0; i < n; i++)
1247 bbs[i]->flags |= BB_DUPLICATED;
1248
1249 for (i = 0; i < n; i++)
1250 {
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))
1256 {
1257 ret = false;
1258 goto end;
1259 }
1260
1261 if (!can_duplicate_block_p (bbs[i]))
1262 {
1263 ret = false;
1264 break;
1265 }
1266 }
1267
1268 end:
1269 for (i = 0; i < n; i++)
1270 bbs[i]->flags &= ~BB_DUPLICATED;
1271
1272 return ret;
1273 }
1274
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).
1283
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.
1286
1287 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1288 also in the same order.
1289
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. */
1292
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)
1297 {
1298 unsigned i, j;
1299 basic_block bb, new_bb, dom_bb;
1300 edge e;
1301
1302 /* Duplicate bbs, update dominators, assign bbs to loops. */
1303 for (i = 0; i < n; i++)
1304 {
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)
1311 {
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;
1318 }
1319 }
1320
1321 /* Set dominators. */
1322 for (i = 0; i < n; i++)
1323 {
1324 bb = bbs[i];
1325 new_bb = new_bbs[i];
1326
1327 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1328 if (dom_bb->flags & BB_DUPLICATED)
1329 {
1330 dom_bb = get_bb_copy (dom_bb);
1331 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1332 }
1333 }
1334
1335 /* Redirect edges. */
1336 for (j = 0; j < num_edges; j++)
1337 new_edges[j] = NULL;
1338 for (i = 0; i < n; i++)
1339 {
1340 edge_iterator ei;
1341 new_bb = new_bbs[i];
1342 bb = bbs[i];
1343
1344 FOR_EACH_EDGE (e, ei, new_bb->succs)
1345 {
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;
1349
1350 if (!(e->dest->flags & BB_DUPLICATED))
1351 continue;
1352 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1353 }
1354 }
1355
1356 /* Clear information about duplicates. */
1357 for (i = 0; i < n; i++)
1358 bbs[i]->flags &= ~BB_DUPLICATED;
1359 }
1360
1361 /* Return true if BB contains only labels or non-executable
1362 instructions */
1363 bool
1364 empty_block_p (basic_block bb)
1365 {
1366 gcc_assert (cfg_hooks->empty_block_p);
1367 return cfg_hooks->empty_block_p (bb);
1368 }
1369
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)
1374 {
1375 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1376 return cfg_hooks->split_block_before_cond_jump (bb);
1377 }
1378
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. */
1383
1384 void
1385 account_profile_record (struct profile_record *record, int after_pass)
1386 {
1387 basic_block bb;
1388 edge_iterator ei;
1389 edge e;
1390 int sum;
1391 gcov_type lsum;
1392
1393 FOR_ALL_BB (bb)
1394 {
1395 if (bb != EXIT_BLOCK_PTR_FOR_FUNCTION (cfun)
1396 && profile_status != PROFILE_ABSENT)
1397 {
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]++;
1409 }
1410 if (bb != ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun)
1411 && profile_status != PROFILE_ABSENT)
1412 {
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]++;
1425 }
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);
1431 }
1432 }