]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cfghooks.c
Update copyright years in gcc/
[thirdparty/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 /* 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(). */
288
289 void
290 dump_bb_for_graph (pretty_printer *pp, basic_block bb)
291 {
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);
296 }
297
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)
301 {
302 basic_block bb;
303
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);
307
308 putc ('\n', file);
309 }
310
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)
315 {
316 dump_flow_info (stderr, TDF_DETAILS);
317 }
318
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. */
323
324 edge
325 redirect_edge_and_branch (edge e, basic_block dest)
326 {
327 edge ret;
328
329 if (!cfg_hooks->redirect_edge_and_branch)
330 internal_error ("%s does not support redirect_edge_and_branch",
331 cfg_hooks->name);
332
333 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
334
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);
339
340 return ret;
341 }
342
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. */
345
346 bool
347 can_remove_branch_p (const_edge e)
348 {
349 if (!cfg_hooks->can_remove_branch_p)
350 internal_error ("%s does not support can_remove_branch_p",
351 cfg_hooks->name);
352
353 if (EDGE_COUNT (e->src->succs) != 2)
354 return false;
355
356 return cfg_hooks->can_remove_branch_p (e);
357 }
358
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. */
362
363 void
364 remove_branch (edge e)
365 {
366 edge other;
367 basic_block src = e->src;
368 int irr;
369
370 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
371
372 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
373 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
374
375 e = redirect_edge_and_branch (e, other->dest);
376 gcc_assert (e != NULL);
377
378 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
379 e->flags |= irr;
380 }
381
382 /* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
383
384 void
385 remove_edge (edge e)
386 {
387 if (current_loops != NULL)
388 rescan_loop_exit (e, false, true);
389
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);
394
395 remove_edge_raw (e);
396 }
397
398 /* Like redirect_edge_succ but avoid possible duplicate edge. */
399
400 edge
401 redirect_edge_succ_nodup (edge e, basic_block new_succ)
402 {
403 edge s;
404
405 s = find_edge (e->src, new_succ);
406 if (s && s != e)
407 {
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;
417 }
418 else
419 redirect_edge_succ (e, new_succ);
420
421 return e;
422 }
423
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. */
427
428 basic_block
429 redirect_edge_and_branch_force (edge e, basic_block dest)
430 {
431 basic_block ret, src = e->src;
432
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);
436
437 if (current_loops != NULL)
438 rescan_loop_exit (e, false, true);
439
440 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
441
442 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
443 set_immediate_dominator (CDI_DOMINATORS, ret, src);
444
445 if (current_loops != NULL)
446 {
447 if (ret != NULL)
448 {
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);
453 }
454 else if (find_edge (src, dest) == e)
455 rescan_loop_exit (e, true, false);
456 }
457
458 return ret;
459 }
460
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. */
464
465 edge
466 split_block (basic_block bb, void *i)
467 {
468 basic_block new_bb;
469 edge res;
470
471 if (!cfg_hooks->split_block)
472 internal_error ("%s does not support split_block", cfg_hooks->name);
473
474 new_bb = cfg_hooks->split_block (bb, i);
475 if (!new_bb)
476 return NULL;
477
478 new_bb->count = bb->count;
479 new_bb->frequency = bb->frequency;
480 new_bb->discriminator = bb->discriminator;
481
482 if (dom_info_available_p (CDI_DOMINATORS))
483 {
484 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
485 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
486 }
487
488 if (current_loops != NULL)
489 {
490 add_bb_to_loop (new_bb, bb->loop_father);
491 if (bb->loop_father->latch == bb)
492 bb->loop_father->latch = new_bb;
493 }
494
495 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
496
497 if (bb->flags & BB_IRREDUCIBLE_LOOP)
498 {
499 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
500 res->flags |= EDGE_IRREDUCIBLE_LOOP;
501 }
502
503 return res;
504 }
505
506 /* Splits block BB just after labels. The newly created edge is returned. */
507
508 edge
509 split_block_after_labels (basic_block bb)
510 {
511 return split_block (bb, NULL);
512 }
513
514 /* Moves block BB immediately after block AFTER. Returns false if the
515 movement was impossible. */
516
517 bool
518 move_block_after (basic_block bb, basic_block after)
519 {
520 bool ret;
521
522 if (!cfg_hooks->move_block_after)
523 internal_error ("%s does not support move_block_after", cfg_hooks->name);
524
525 ret = cfg_hooks->move_block_after (bb, after);
526
527 return ret;
528 }
529
530 /* Deletes the basic block BB. */
531
532 void
533 delete_basic_block (basic_block bb)
534 {
535 if (!cfg_hooks->delete_basic_block)
536 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
537
538 cfg_hooks->delete_basic_block (bb);
539
540 if (current_loops != NULL)
541 {
542 struct loop *loop = bb->loop_father;
543
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)
548 {
549 loop->header = NULL;
550 loop->latch = NULL;
551 loops_state_set (LOOPS_NEED_FIXUP);
552 }
553
554 remove_bb_from_loops (bb);
555 }
556
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));
563
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);
568
569 /* Remove the basic block from the array. */
570 expunge_block (bb);
571 }
572
573 /* Splits edge E and returns the newly created basic block. */
574
575 basic_block
576 split_edge (edge e)
577 {
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;
585
586 if (!cfg_hooks->split_edge)
587 internal_error ("%s does not support split_edge", cfg_hooks->name);
588
589 if (current_loops != NULL)
590 rescan_loop_exit (e, false, true);
591
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;
597
598 if (irr)
599 {
600 ret->flags |= BB_IRREDUCIBLE_LOOP;
601 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
602 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
603 }
604
605 if (dom_info_available_p (CDI_DOMINATORS))
606 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
607
608 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
609 {
610 /* There are two cases:
611
612 If the immediate dominator of e->dest is not e->src, it
613 remains unchanged.
614
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. */
618
619 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
620 == single_pred (ret))
621 {
622 edge_iterator ei;
623 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
624 {
625 if (f == single_succ_edge (ret))
626 continue;
627
628 if (!dominated_by_p (CDI_DOMINATORS, f->src,
629 single_succ (ret)))
630 break;
631 }
632
633 if (!f)
634 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
635 }
636 }
637
638 if (current_loops != NULL)
639 {
640 loop = find_common_loop (src->loop_father, dest->loop_father);
641 add_bb_to_loop (ret, loop);
642
643 if (loop->latch == src)
644 loop->latch = ret;
645 }
646
647 return ret;
648 }
649
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. */
653
654 basic_block
655 create_basic_block (void *head, void *end, basic_block after)
656 {
657 basic_block ret;
658
659 if (!cfg_hooks->create_basic_block)
660 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
661
662 ret = cfg_hooks->create_basic_block (head, end, after);
663
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);
668
669 return ret;
670 }
671
672 /* Creates an empty basic block just after basic block AFTER. */
673
674 basic_block
675 create_empty_bb (basic_block after)
676 {
677 return create_basic_block (NULL, NULL, after);
678 }
679
680 /* Checks whether we may merge blocks BB1 and BB2. */
681
682 bool
683 can_merge_blocks_p (basic_block bb1, basic_block bb2)
684 {
685 bool ret;
686
687 if (!cfg_hooks->can_merge_blocks_p)
688 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
689
690 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
691
692 return ret;
693 }
694
695 void
696 predict_edge (edge e, enum br_predictor predictor, int probability)
697 {
698 if (!cfg_hooks->predict_edge)
699 internal_error ("%s does not support predict_edge", cfg_hooks->name);
700
701 cfg_hooks->predict_edge (e, predictor, probability);
702 }
703
704 bool
705 predicted_by_p (const_basic_block bb, enum br_predictor predictor)
706 {
707 if (!cfg_hooks->predict_edge)
708 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
709
710 return cfg_hooks->predicted_by_p (bb, predictor);
711 }
712
713 /* Merges basic block B into basic block A. */
714
715 void
716 merge_blocks (basic_block a, basic_block b)
717 {
718 edge e;
719 edge_iterator ei;
720
721 if (!cfg_hooks->merge_blocks)
722 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
723
724 cfg_hooks->merge_blocks (a, b);
725
726 if (current_loops != NULL)
727 {
728 /* If the block we merge into is a loop header do nothing unless ... */
729 if (a->loop_father->header == a)
730 {
731 /* ... we merge two loop headers, in which case we kill
732 the inner loop. */
733 if (b->loop_father->header == b)
734 {
735 b->loop_father->header = NULL;
736 b->loop_father->latch = NULL;
737 loops_state_set (LOOPS_NEED_FIXUP);
738 }
739 }
740 /* If we merge a loop header into its predecessor, update the loop
741 structure. */
742 else if (b->loop_father->header == b)
743 {
744 remove_bb_from_loops (a);
745 add_bb_to_loop (a, b->loop_father);
746 a->loop_father->header = a;
747 }
748 remove_bb_from_loops (b);
749 }
750
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. */
755
756 while (EDGE_COUNT (a->succs) != 0)
757 remove_edge (EDGE_SUCC (a, 0));
758
759 /* Adjust the edges out of B for the new owner. */
760 FOR_EACH_EDGE (e, ei, b->succs)
761 {
762 e->src = a;
763 if (current_loops != NULL)
764 rescan_loop_exit (e, true, false);
765 }
766 a->succs = b->succs;
767 a->flags |= b->flags;
768
769 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
770 b->preds = b->succs = NULL;
771
772 if (dom_info_available_p (CDI_DOMINATORS))
773 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
774
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);
779
780 expunge_block (b);
781 }
782
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. */
786
787 edge
788 make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
789 void (*new_bb_cbk) (basic_block))
790 {
791 edge e, fallthru;
792 edge_iterator ei;
793 basic_block dummy, jump;
794 struct loop *loop, *ploop, *cloop;
795
796 if (!cfg_hooks->make_forwarder_block)
797 internal_error ("%s does not support make_forwarder_block",
798 cfg_hooks->name);
799
800 fallthru = split_block_after_labels (bb);
801 dummy = fallthru->src;
802 bb = fallthru->dest;
803
804 /* Redirect back edges we want to keep. */
805 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
806 {
807 basic_block e_src;
808
809 if (redirect_edge_p (e))
810 {
811 ei_next (&ei);
812 continue;
813 }
814
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;
824
825 e_src = e->src;
826 jump = redirect_edge_and_branch_force (e, bb);
827 if (jump != NULL)
828 {
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;
836
837 if (new_bb_cbk != NULL)
838 new_bb_cbk (jump);
839 }
840 }
841
842 if (dom_info_available_p (CDI_DOMINATORS))
843 {
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 ();
850 }
851
852 if (current_loops != NULL)
853 {
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)
864 {
865 remove_bb_from_loops (dummy);
866 loop->header = bb;
867
868 cloop = loop;
869 FOR_EACH_EDGE (e, ei, dummy->preds)
870 {
871 cloop = find_common_loop (cloop, e->src->loop_father);
872 }
873 add_bb_to_loop (dummy, cloop);
874 }
875
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;
880 }
881
882 cfg_hooks->make_forwarder_block (fallthru);
883
884 return fallthru;
885 }
886
887 /* Try to make the edge fallthru. */
888
889 void
890 tidy_fallthru_edge (edge e)
891 {
892 if (cfg_hooks->tidy_fallthru_edge)
893 cfg_hooks->tidy_fallthru_edge (e);
894 }
895
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.
900
901 ??? This routine is currently RTL specific. */
902
903 void
904 tidy_fallthru_edges (void)
905 {
906 basic_block b, c;
907
908 if (!cfg_hooks->tidy_fallthru_edge)
909 return;
910
911 if (ENTRY_BLOCK_PTR->next_bb == EXIT_BLOCK_PTR)
912 return;
913
914 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR->prev_bb, next_bb)
915 {
916 edge s;
917
918 c = b->next_bb;
919
920 /* We care about simple conditional or unconditional jumps with
921 a single successor.
922
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).
927
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. */
931
932 if (single_succ_p (b))
933 {
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);
939 }
940 }
941 }
942
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. */
946
947 basic_block
948 force_nonfallthru (edge e)
949 {
950 basic_block ret, src = e->src;
951
952 if (!cfg_hooks->force_nonfallthru)
953 internal_error ("%s does not support force_nonfallthru",
954 cfg_hooks->name);
955
956 ret = cfg_hooks->force_nonfallthru (e);
957 if (ret != NULL)
958 {
959 if (dom_info_available_p (CDI_DOMINATORS))
960 set_immediate_dominator (CDI_DOMINATORS, ret, src);
961
962 if (current_loops != NULL)
963 {
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);
969 }
970 }
971
972 return ret;
973 }
974
975 /* Returns true if we can duplicate basic block BB. */
976
977 bool
978 can_duplicate_block_p (const_basic_block bb)
979 {
980 if (!cfg_hooks->can_duplicate_block_p)
981 internal_error ("%s does not support can_duplicate_block_p",
982 cfg_hooks->name);
983
984 if (bb == EXIT_BLOCK_PTR || bb == ENTRY_BLOCK_PTR)
985 return false;
986
987 return cfg_hooks->can_duplicate_block_p (bb);
988 }
989
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. */
993
994 basic_block
995 duplicate_block (basic_block bb, edge e, basic_block after)
996 {
997 edge s, n;
998 basic_block new_bb;
999 gcov_type new_count = e ? e->count : 0;
1000 edge_iterator ei;
1001
1002 if (!cfg_hooks->duplicate_block)
1003 internal_error ("%s does not support duplicate_block",
1004 cfg_hooks->name);
1005
1006 if (bb->count < new_count)
1007 new_count = bb->count;
1008
1009 gcc_checking_assert (can_duplicate_block_p (bb));
1010
1011 new_bb = cfg_hooks->duplicate_block (bb);
1012 if (after)
1013 move_block_after (new_bb, after);
1014
1015 new_bb->flags = bb->flags;
1016 FOR_EACH_EDGE (s, ei, bb->succs)
1017 {
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)
1024 {
1025 /* Take care for overflows! */
1026 n->count = s->count * (new_count * 10000 / bb->count) / 10000;
1027 s->count -= n->count;
1028 }
1029 else
1030 n->count = s->count;
1031 n->aux = s->aux;
1032 }
1033
1034 if (e)
1035 {
1036 new_bb->count = new_count;
1037 bb->count -= new_count;
1038
1039 new_bb->frequency = EDGE_FREQUENCY (e);
1040 bb->frequency -= EDGE_FREQUENCY (e);
1041
1042 redirect_edge_and_branch_force (e, new_bb);
1043
1044 if (bb->count < 0)
1045 bb->count = 0;
1046 if (bb->frequency < 0)
1047 bb->frequency = 0;
1048 }
1049 else
1050 {
1051 new_bb->count = bb->count;
1052 new_bb->frequency = bb->frequency;
1053 }
1054
1055 set_bb_original (new_bb, bb);
1056 set_bb_copy (bb, new_bb);
1057
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)
1061 {
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)
1069 {
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);
1074 }
1075 else
1076 {
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)
1082 {
1083 cloop->latch = NULL;
1084 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1085 }
1086 }
1087 }
1088
1089 return new_bb;
1090 }
1091
1092 /* Return 1 if BB ends with a call, possibly followed by some
1093 instructions that must stay with the call, 0 otherwise. */
1094
1095 bool
1096 block_ends_with_call_p (basic_block bb)
1097 {
1098 if (!cfg_hooks->block_ends_with_call_p)
1099 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1100
1101 return (cfg_hooks->block_ends_with_call_p) (bb);
1102 }
1103
1104 /* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1105
1106 bool
1107 block_ends_with_condjump_p (const_basic_block bb)
1108 {
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);
1112
1113 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1114 }
1115
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.
1120
1121 The goal is to expose cases in which entering a basic block does not imply
1122 that all subsequent instructions must be executed. */
1123
1124 int
1125 flow_call_edges_add (sbitmap blocks)
1126 {
1127 if (!cfg_hooks->flow_call_edges_add)
1128 internal_error ("%s does not support flow_call_edges_add",
1129 cfg_hooks->name);
1130
1131 return (cfg_hooks->flow_call_edges_add) (blocks);
1132 }
1133
1134 /* This function is called immediately after edge E is added to the
1135 edge vector E->dest->preds. */
1136
1137 void
1138 execute_on_growing_pred (edge e)
1139 {
1140 if (cfg_hooks->execute_on_growing_pred)
1141 cfg_hooks->execute_on_growing_pred (e);
1142 }
1143
1144 /* This function is called immediately before edge E is removed from
1145 the edge vector E->dest->preds. */
1146
1147 void
1148 execute_on_shrinking_pred (edge e)
1149 {
1150 if (cfg_hooks->execute_on_shrinking_pred)
1151 cfg_hooks->execute_on_shrinking_pred (e);
1152 }
1153
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)
1159 {
1160 if (cfg_hooks->flush_pending_stmts)
1161 cfg_hooks->flush_pending_stmts (e);
1162 }
1163
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)
1177 {
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);
1183 }
1184
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)
1191 {
1192 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1193 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1194 }
1195
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)
1201 {
1202 if (cfg_hooks->lv_adjust_loop_header_phi)
1203 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
1204 }
1205
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)
1212 {
1213 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
1214 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
1215 }
1216
1217 /* Checks whether all N blocks in BBS array can be copied. */
1218 bool
1219 can_copy_bbs_p (basic_block *bbs, unsigned n)
1220 {
1221 unsigned i;
1222 edge e;
1223 int ret = true;
1224
1225 for (i = 0; i < n; i++)
1226 bbs[i]->flags |= BB_DUPLICATED;
1227
1228 for (i = 0; i < n; i++)
1229 {
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))
1235 {
1236 ret = false;
1237 goto end;
1238 }
1239
1240 if (!can_duplicate_block_p (bbs[i]))
1241 {
1242 ret = false;
1243 break;
1244 }
1245 }
1246
1247 end:
1248 for (i = 0; i < n; i++)
1249 bbs[i]->flags &= ~BB_DUPLICATED;
1250
1251 return ret;
1252 }
1253
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).
1262
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.
1265
1266 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1267 also in the same order.
1268
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. */
1271
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)
1276 {
1277 unsigned i, j;
1278 basic_block bb, new_bb, dom_bb;
1279 edge e;
1280
1281 /* Duplicate bbs, update dominators, assign bbs to loops. */
1282 for (i = 0; i < n; i++)
1283 {
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)
1290 {
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;
1297 }
1298 }
1299
1300 /* Set dominators. */
1301 for (i = 0; i < n; i++)
1302 {
1303 bb = bbs[i];
1304 new_bb = new_bbs[i];
1305
1306 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1307 if (dom_bb->flags & BB_DUPLICATED)
1308 {
1309 dom_bb = get_bb_copy (dom_bb);
1310 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1311 }
1312 }
1313
1314 /* Redirect edges. */
1315 for (j = 0; j < num_edges; j++)
1316 new_edges[j] = NULL;
1317 for (i = 0; i < n; i++)
1318 {
1319 edge_iterator ei;
1320 new_bb = new_bbs[i];
1321 bb = bbs[i];
1322
1323 FOR_EACH_EDGE (e, ei, new_bb->succs)
1324 {
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;
1328
1329 if (!(e->dest->flags & BB_DUPLICATED))
1330 continue;
1331 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1332 }
1333 }
1334
1335 /* Clear information about duplicates. */
1336 for (i = 0; i < n; i++)
1337 bbs[i]->flags &= ~BB_DUPLICATED;
1338 }
1339
1340 /* Return true if BB contains only labels or non-executable
1341 instructions */
1342 bool
1343 empty_block_p (basic_block bb)
1344 {
1345 gcc_assert (cfg_hooks->empty_block_p);
1346 return cfg_hooks->empty_block_p (bb);
1347 }
1348
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)
1353 {
1354 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1355 return cfg_hooks->split_block_before_cond_jump (bb);
1356 }
1357
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. */
1362
1363 void
1364 account_profile_record (struct profile_record *record, int after_pass)
1365 {
1366 basic_block bb;
1367 edge_iterator ei;
1368 edge e;
1369 int sum;
1370 gcov_type lsum;
1371
1372 FOR_ALL_BB (bb)
1373 {
1374 if (bb != EXIT_BLOCK_PTR_FOR_FUNCTION (cfun)
1375 && profile_status != PROFILE_ABSENT)
1376 {
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]++;
1388 }
1389 if (bb != ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun)
1390 && profile_status != PROFILE_ABSENT)
1391 {
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]++;
1404 }
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);
1410 }
1411 }