]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cfghooks.c
Allow automatics in equivalences
[thirdparty/gcc.git] / gcc / cfghooks.c
CommitLineData
1026363d 1/* Hooks for cfg representation specific functions.
fbd26352 2 Copyright (C) 2003-2019 Free Software Foundation, Inc.
1026363d 3 Contributed by Sebastian Pop <s.pop@laposte.net>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
8c4c00c1 9the Free Software Foundation; either version 3, or (at your option)
1026363d 10any later version.
11
12GCC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
8c4c00c1 18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
1026363d 20
21#include "config.h"
22#include "system.h"
23#include "coretypes.h"
9ef16211 24#include "backend.h"
7c29e30e 25#include "rtl.h"
d040a5b0 26#include "cfghooks.h"
7c29e30e 27#include "timevar.h"
28#include "pretty-print.h"
29#include "diagnostic-core.h"
30#include "dumpfile.h"
94ea8568 31#include "cfganal.h"
69ee5dbb 32#include "tree-ssa.h"
88e6f696 33#include "cfgloop.h"
1026363d 34
62c34df8 35/* Disable warnings about missing quoting in GCC diagnostics. */
36#if __GNUC__ >= 10
37# pragma GCC diagnostic push
38# pragma GCC diagnostic ignored "-Wformat-diag"
39#endif
40
1026363d 41/* A pointer to one of the hooks containers. */
5f5d4cd1 42static struct cfg_hooks *cfg_hooks;
1026363d 43
44/* Initialization of functions specific to the rtl IR. */
4c9e08a4 45void
46rtl_register_cfg_hooks (void)
1026363d 47{
48 cfg_hooks = &rtl_cfg_hooks;
49}
50
51/* Initialization of functions specific to the rtl IR. */
4c9e08a4 52void
53cfg_layout_rtl_register_cfg_hooks (void)
1026363d 54{
55 cfg_hooks = &cfg_layout_rtl_cfg_hooks;
56}
5f5d4cd1 57
4ee9c684 58/* Initialization of functions specific to the tree IR. */
59
60void
75a70cf9 61gimple_register_cfg_hooks (void)
4ee9c684 62{
75a70cf9 63 cfg_hooks = &gimple_cfg_hooks;
4ee9c684 64}
65
e1ab7874 66struct cfg_hooks
67get_cfg_hooks (void)
68{
69 return *cfg_hooks;
70}
71
72void
73set_cfg_hooks (struct cfg_hooks new_cfg_hooks)
74{
75 *cfg_hooks = new_cfg_hooks;
76}
77
15b8fe07 78/* Returns current ir type. */
4ee9c684 79
15b8fe07 80enum ir_type
81current_ir_type (void)
4ee9c684 82{
75a70cf9 83 if (cfg_hooks == &gimple_cfg_hooks)
15b8fe07 84 return IR_GIMPLE;
85 else if (cfg_hooks == &rtl_cfg_hooks)
86 return IR_RTL_CFGRTL;
87 else if (cfg_hooks == &cfg_layout_rtl_cfg_hooks)
88 return IR_RTL_CFGLAYOUT;
89 else
90 gcc_unreachable ();
4ee9c684 91}
92
5f5d4cd1 93/* Verify the CFG consistency.
94
95 Currently it does following: checks edge and basic block list correctness
96 and calls into IL dependent checking then. */
97
4b987fac 98DEBUG_FUNCTION void
5f5d4cd1 99verify_flow_info (void)
100{
101 size_t *edge_checksum;
48db21c9 102 int err = 0;
5f5d4cd1 103 basic_block bb, last_bb_seen;
104 basic_block *last_visited;
105
106 timevar_push (TV_CFG_VERIFY);
fe672ac0 107 last_visited = XCNEWVEC (basic_block, last_basic_block_for_fn (cfun));
108 edge_checksum = XCNEWVEC (size_t, last_basic_block_for_fn (cfun));
5f5d4cd1 109
110 /* Check bb chain & numbers. */
34154e27 111 last_bb_seen = ENTRY_BLOCK_PTR_FOR_FN (cfun);
112 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb, NULL, next_bb)
5f5d4cd1 113 {
34154e27 114 if (bb != EXIT_BLOCK_PTR_FOR_FN (cfun)
f5a6b05f 115 && bb != BASIC_BLOCK_FOR_FN (cfun, bb->index))
5f5d4cd1 116 {
117 error ("bb %d on wrong place", bb->index);
118 err = 1;
119 }
120
121 if (bb->prev_bb != last_bb_seen)
122 {
123 error ("prev_bb of %d should be %d, not %d",
124 bb->index, last_bb_seen->index, bb->prev_bb->index);
125 err = 1;
126 }
127
128 last_bb_seen = bb;
129 }
130
131 /* Now check the basic blocks (boundaries etc.) */
7a46197b 132 FOR_EACH_BB_REVERSE_FN (bb, cfun)
5f5d4cd1 133 {
134 int n_fallthru = 0;
135 edge e;
cd665a06 136 edge_iterator ei;
5f5d4cd1 137
88e6f696 138 if (bb->loop_father != NULL && current_loops == NULL)
139 {
140 error ("verify_flow_info: Block %i has loop_father, but there are no loops",
141 bb->index);
142 err = 1;
143 }
144 if (bb->loop_father == NULL && current_loops != NULL)
145 {
146 error ("verify_flow_info: Block %i lacks loop_father", bb->index);
147 err = 1;
148 }
149
db9cef39 150 if (!bb->count.verify ())
5f5d4cd1 151 {
db9cef39 152 error ("verify_flow_info: Wrong count of block %i", bb->index);
5f5d4cd1 153 err = 1;
154 }
205ce1aa 155 /* FIXME: Graphite and SLJL and target code still tends to produce
156 edges with no probablity. */
157 if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
158 && !bb->count.initialized_p () && !flag_graphite && 0)
5f5d4cd1 159 {
205ce1aa 160 error ("verify_flow_info: Missing count of block %i", bb->index);
5f5d4cd1 161 err = 1;
162 }
9705c1f3 163
cd665a06 164 FOR_EACH_EDGE (e, ei, bb->succs)
5f5d4cd1 165 {
4d2e5d52 166 if (last_visited [e->dest->index] == bb)
5f5d4cd1 167 {
168 error ("verify_flow_info: Duplicate edge %i->%i",
169 e->src->index, e->dest->index);
170 err = 1;
171 }
e5f990e6 172 /* FIXME: Graphite and SLJL and target code still tends to produce
173 edges with no probablity. */
9705c1f3 174 if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
205ce1aa 175 && !e->probability.initialized_p () && !flag_graphite && 0)
9705c1f3 176 {
177 error ("Uninitialized probability of edge %i->%i", e->src->index,
178 e->dest->index);
179 err = 1;
180 }
720cfc43 181 if (!e->probability.verify ())
5f5d4cd1 182 {
720cfc43 183 error ("verify_flow_info: Wrong probability of edge %i->%i",
184 e->src->index, e->dest->index);
5f5d4cd1 185 err = 1;
186 }
5f5d4cd1 187
4d2e5d52 188 last_visited [e->dest->index] = bb;
5f5d4cd1 189
190 if (e->flags & EDGE_FALLTHRU)
191 n_fallthru++;
192
193 if (e->src != bb)
194 {
195 error ("verify_flow_info: Basic block %d succ edge is corrupted",
196 bb->index);
197 fprintf (stderr, "Predecessor: ");
5147ec07 198 dump_edge_info (stderr, e, TDF_DETAILS, 0);
5f5d4cd1 199 fprintf (stderr, "\nSuccessor: ");
5147ec07 200 dump_edge_info (stderr, e, TDF_DETAILS, 1);
5f5d4cd1 201 fprintf (stderr, "\n");
202 err = 1;
203 }
204
4d2e5d52 205 edge_checksum[e->dest->index] += (size_t) e;
5f5d4cd1 206 }
207 if (n_fallthru > 1)
208 {
0a81f5a0 209 error ("wrong amount of branch edges after unconditional jump %i", bb->index);
5f5d4cd1 210 err = 1;
211 }
212
cd665a06 213 FOR_EACH_EDGE (e, ei, bb->preds)
5f5d4cd1 214 {
215 if (e->dest != bb)
216 {
217 error ("basic block %d pred edge is corrupted", bb->index);
218 fputs ("Predecessor: ", stderr);
5147ec07 219 dump_edge_info (stderr, e, TDF_DETAILS, 0);
5f5d4cd1 220 fputs ("\nSuccessor: ", stderr);
5147ec07 221 dump_edge_info (stderr, e, TDF_DETAILS, 1);
5f5d4cd1 222 fputc ('\n', stderr);
223 err = 1;
224 }
532f6ac1 225
226 if (ei.index != e->dest_idx)
227 {
228 error ("basic block %d pred edge is corrupted", bb->index);
229 error ("its dest_idx should be %d, not %d",
230 ei.index, e->dest_idx);
231 fputs ("Predecessor: ", stderr);
5147ec07 232 dump_edge_info (stderr, e, TDF_DETAILS, 0);
532f6ac1 233 fputs ("\nSuccessor: ", stderr);
5147ec07 234 dump_edge_info (stderr, e, TDF_DETAILS, 1);
532f6ac1 235 fputc ('\n', stderr);
236 err = 1;
237 }
238
4d2e5d52 239 edge_checksum[e->dest->index] -= (size_t) e;
5f5d4cd1 240 }
241 }
242
243 /* Complete edge checksumming for ENTRY and EXIT. */
244 {
245 edge e;
cd665a06 246 edge_iterator ei;
5f5d4cd1 247
34154e27 248 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs)
4d2e5d52 249 edge_checksum[e->dest->index] += (size_t) e;
5f5d4cd1 250
34154e27 251 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
4d2e5d52 252 edge_checksum[e->dest->index] -= (size_t) e;
5f5d4cd1 253 }
254
34154e27 255 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun), NULL, next_bb)
4d2e5d52 256 if (edge_checksum[bb->index])
5f5d4cd1 257 {
258 error ("basic block %i edge lists are corrupted", bb->index);
259 err = 1;
260 }
261
5f5d4cd1 262 /* Clean up. */
263 free (last_visited);
264 free (edge_checksum);
265
266 if (cfg_hooks->verify_flow_info)
267 err |= cfg_hooks->verify_flow_info ();
268 if (err)
269 internal_error ("verify_flow_info failed");
270 timevar_pop (TV_CFG_VERIFY);
271}
272
5147ec07 273/* Print out one basic block BB to file OUTF. INDENT is printed at the
274 start of each new line. FLAGS are the TDF_* flags in dumpfile.h.
275
276 This function takes care of the purely graph related information.
277 The cfg hook for the active representation should dump
278 representation-specific information. */
5f5d4cd1 279
280void
3f6e5ced 281dump_bb (FILE *outf, basic_block bb, int indent, dump_flags_t flags)
5f5d4cd1 282{
5f7f600e 283 if (flags & TDF_BLOCKS)
284 dump_bb_info (outf, bb, indent, flags, true, false);
5147ec07 285 if (cfg_hooks->dump_bb)
286 cfg_hooks->dump_bb (outf, bb, indent, flags);
5f7f600e 287 if (flags & TDF_BLOCKS)
288 dump_bb_info (outf, bb, indent, flags, false, true);
bec2cf98 289 fputc ('\n', outf);
5147ec07 290}
291
c7d89805 292DEBUG_FUNCTION void
293debug (basic_block_def &ref)
294{
54e7de93 295 dump_bb (stderr, &ref, 0, TDF_NONE);
c7d89805 296}
297
298DEBUG_FUNCTION void
299debug (basic_block_def *ptr)
300{
301 if (ptr)
302 debug (*ptr);
303 else
304 fprintf (stderr, "<nil>\n");
305}
306
487fbf05 307static void
308debug_slim (basic_block ptr)
309{
310 fprintf (stderr, "<basic_block %p (%d)>", (void *) ptr, ptr->index);
311}
312
313DEFINE_DEBUG_VEC (basic_block_def *)
314DEFINE_DEBUG_HASH_SET (basic_block_def *)
c7d89805 315
e079344a 316/* Dumps basic block BB to pretty-printer PP, for use as a label of
317 a DOT graph record-node. The implementation of this hook is
318 expected to write the label to the stream that is attached to PP.
319 Field separators between instructions are pipe characters printed
320 verbatim. Instructions should be written with some characters
321 escaped, using pp_write_text_as_dot_label_to_stream(). */
322
323void
324dump_bb_for_graph (pretty_printer *pp, basic_block bb)
325{
326 if (!cfg_hooks->dump_bb_for_graph)
327 internal_error ("%s does not support dump_bb_for_graph",
328 cfg_hooks->name);
db9cef39 329 /* TODO: Add pretty printer for counter. */
330 if (bb->count.initialized_p ())
331 pp_printf (pp, "COUNT:" "%" PRId64, bb->count.to_gcov_type ());
5d24e2d1 332 pp_write_text_to_stream (pp);
6f2b83c8 333 if (!(dump_flags & TDF_SLIM))
334 cfg_hooks->dump_bb_for_graph (pp, bb);
e079344a 335}
336
5147ec07 337/* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
338void
3f6e5ced 339dump_flow_info (FILE *file, dump_flags_t flags)
5147ec07 340{
341 basic_block bb;
5f5d4cd1 342
a28770e1 343 fprintf (file, "\n%d basic blocks, %d edges.\n", n_basic_blocks_for_fn (cfun),
f1955b22 344 n_edges_for_fn (cfun));
ed7d889a 345 FOR_ALL_BB_FN (bb, cfun)
bec2cf98 346 dump_bb (file, bb, 0, flags);
5f5d4cd1 347
5147ec07 348 putc ('\n', file);
349}
5f5d4cd1 350
5147ec07 351/* Like above, but dump to stderr. To be called from debuggers. */
352void debug_flow_info (void);
353DEBUG_FUNCTION void
354debug_flow_info (void)
355{
356 dump_flow_info (stderr, TDF_DETAILS);
5f5d4cd1 357}
358
359/* Redirect edge E to the given basic block DEST and update underlying program
360 representation. Returns edge representing redirected branch (that may not
361 be equivalent to E in the case of duplicate edges being removed) or NULL
362 if edge is not easily redirectable for whatever reason. */
363
4ee9c684 364edge
5f5d4cd1 365redirect_edge_and_branch (edge e, basic_block dest)
366{
4ee9c684 367 edge ret;
5f5d4cd1 368
369 if (!cfg_hooks->redirect_edge_and_branch)
0a81f5a0 370 internal_error ("%s does not support redirect_edge_and_branch",
5f5d4cd1 371 cfg_hooks->name);
372
373 ret = cfg_hooks->redirect_edge_and_branch (e, dest);
374
c8e41bd9 375 /* If RET != E, then either the redirection failed, or the edge E
376 was removed since RET already lead to the same destination. */
377 if (current_loops != NULL && ret == e)
378 rescan_loop_exit (e, false, false);
dce58e66 379
5f5d4cd1 380 return ret;
381}
382
611d2ac1 383/* Returns true if it is possible to remove the edge E by redirecting it
384 to the destination of the other edge going from its source. */
385
386bool
5493cb9a 387can_remove_branch_p (const_edge e)
611d2ac1 388{
389 if (!cfg_hooks->can_remove_branch_p)
390 internal_error ("%s does not support can_remove_branch_p",
391 cfg_hooks->name);
392
393 if (EDGE_COUNT (e->src->succs) != 2)
394 return false;
395
396 return cfg_hooks->can_remove_branch_p (e);
397}
398
399/* Removes E, by redirecting it to the destination of the other edge going
400 from its source. Can_remove_branch_p must be true for E, hence this
401 operation cannot fail. */
402
403void
404remove_branch (edge e)
405{
406 edge other;
407 basic_block src = e->src;
408 int irr;
409
410 gcc_assert (EDGE_COUNT (e->src->succs) == 2);
411
412 other = EDGE_SUCC (src, EDGE_SUCC (src, 0) == e);
413 irr = other->flags & EDGE_IRREDUCIBLE_LOOP;
414
611d2ac1 415 e = redirect_edge_and_branch (e, other->dest);
416 gcc_assert (e != NULL);
417
418 e->flags &= ~EDGE_IRREDUCIBLE_LOOP;
419 e->flags |= irr;
420}
421
c8e41bd9 422/* Removes edge E from cfg. Unlike remove_branch, it does not update IL. */
423
424void
425remove_edge (edge e)
426{
427 if (current_loops != NULL)
4dfabd94 428 {
429 rescan_loop_exit (e, false, true);
430
431 /* Removal of an edge inside an irreducible region or which leads
432 to an irreducible region can turn the region into a natural loop.
433 In that case, ask for the loop structure fixups.
434
435 FIXME: Note that LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS is not always
436 set, so always ask for fixups when removing an edge in that case. */
437 if (!loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS)
438 || (e->flags & EDGE_IRREDUCIBLE_LOOP)
439 || (e->dest->flags & BB_IRREDUCIBLE_LOOP))
440 loops_state_set (LOOPS_NEED_FIXUP);
441 }
c8e41bd9 442
4a020a8c 443 /* This is probably not needed, but it doesn't hurt. */
444 /* FIXME: This should be called via a remove_edge hook. */
445 if (current_ir_type () == IR_GIMPLE)
446 redirect_edge_var_map_clear (e);
447
c8e41bd9 448 remove_edge_raw (e);
449}
450
4a020a8c 451/* Like redirect_edge_succ but avoid possible duplicate edge. */
452
453edge
454redirect_edge_succ_nodup (edge e, basic_block new_succ)
455{
456 edge s;
457
458 s = find_edge (e->src, new_succ);
459 if (s && s != e)
460 {
461 s->flags |= e->flags;
462 s->probability += e->probability;
4a020a8c 463 /* FIXME: This should be called via a hook and only for IR_GIMPLE. */
464 redirect_edge_var_map_dup (s, e);
465 remove_edge (e);
466 e = s;
467 }
468 else
469 redirect_edge_succ (e, new_succ);
470
471 return e;
472}
473
5f5d4cd1 474/* Redirect the edge E to basic block DEST even if it requires creating
475 of a new basic block; then it returns the newly created basic block.
476 Aborts when redirection is impossible. */
477
478basic_block
479redirect_edge_and_branch_force (edge e, basic_block dest)
480{
dce58e66 481 basic_block ret, src = e->src;
5f5d4cd1 482
483 if (!cfg_hooks->redirect_edge_and_branch_force)
0a81f5a0 484 internal_error ("%s does not support redirect_edge_and_branch_force",
5f5d4cd1 485 cfg_hooks->name);
486
dce58e66 487 if (current_loops != NULL)
488 rescan_loop_exit (e, false, true);
489
5f5d4cd1 490 ret = cfg_hooks->redirect_edge_and_branch_force (e, dest);
895fb8da 491
202bbc06 492 if (ret != NULL && dom_info_available_p (CDI_DOMINATORS))
4a6f9e19 493 set_immediate_dominator (CDI_DOMINATORS, ret, src);
494
dce58e66 495 if (current_loops != NULL)
88e6f696 496 {
dce58e66 497 if (ret != NULL)
498 {
2e966e2a 499 class loop *loop
895fb8da 500 = find_common_loop (single_pred (ret)->loop_father,
501 single_succ (ret)->loop_father);
dce58e66 502 add_bb_to_loop (ret, loop);
503 }
504 else if (find_edge (src, dest) == e)
505 rescan_loop_exit (e, true, false);
88e6f696 506 }
5f5d4cd1 507
508 return ret;
509}
510
511/* Splits basic block BB after the specified instruction I (but at least after
512 the labels). If I is NULL, splits just after labels. The newly created edge
513 is returned. The new basic block is created just after the old one. */
514
4302d619 515static edge
516split_block_1 (basic_block bb, void *i)
5f5d4cd1 517{
518 basic_block new_bb;
2c3933b8 519 edge res;
5f5d4cd1 520
521 if (!cfg_hooks->split_block)
0a81f5a0 522 internal_error ("%s does not support split_block", cfg_hooks->name);
5f5d4cd1 523
524 new_bb = cfg_hooks->split_block (bb, i);
525 if (!new_bb)
526 return NULL;
527
528 new_bb->count = bb->count;
04953c08 529 new_bb->discriminator = bb->discriminator;
5f5d4cd1 530
6b9d2769 531 if (dom_info_available_p (CDI_DOMINATORS))
5f5d4cd1 532 {
533 redirect_immediate_dominators (CDI_DOMINATORS, bb, new_bb);
534 set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
535 }
536
88e6f696 537 if (current_loops != NULL)
2197fd81 538 {
671fe650 539 edge_iterator ei;
540 edge e;
2197fd81 541 add_bb_to_loop (new_bb, bb->loop_father);
671fe650 542 /* Identify all loops bb may have been the latch of and adjust them. */
543 FOR_EACH_EDGE (e, ei, new_bb->succs)
544 if (e->dest->loop_father->latch == bb)
545 e->dest->loop_father->latch = new_bb;
2197fd81 546 }
88e6f696 547
2c3933b8 548 res = make_single_succ_edge (bb, new_bb, EDGE_FALLTHRU);
549
550 if (bb->flags & BB_IRREDUCIBLE_LOOP)
551 {
552 new_bb->flags |= BB_IRREDUCIBLE_LOOP;
553 res->flags |= EDGE_IRREDUCIBLE_LOOP;
554 }
555
556 return res;
5f5d4cd1 557}
558
4302d619 559edge
42acab1c 560split_block (basic_block bb, gimple *i)
4302d619 561{
562 return split_block_1 (bb, i);
563}
564
565edge
566split_block (basic_block bb, rtx i)
567{
568 return split_block_1 (bb, i);
569}
570
5f5d4cd1 571/* Splits block BB just after labels. The newly created edge is returned. */
572
573edge
574split_block_after_labels (basic_block bb)
575{
4302d619 576 return split_block_1 (bb, NULL);
5f5d4cd1 577}
578
8e43612b 579/* Moves block BB immediately after block AFTER. Returns false if the
5f5d4cd1 580 movement was impossible. */
581
582bool
583move_block_after (basic_block bb, basic_block after)
584{
585 bool ret;
586
587 if (!cfg_hooks->move_block_after)
0a81f5a0 588 internal_error ("%s does not support move_block_after", cfg_hooks->name);
5f5d4cd1 589
590 ret = cfg_hooks->move_block_after (bb, after);
591
592 return ret;
593}
594
595/* Deletes the basic block BB. */
596
597void
598delete_basic_block (basic_block bb)
599{
600 if (!cfg_hooks->delete_basic_block)
0a81f5a0 601 internal_error ("%s does not support delete_basic_block", cfg_hooks->name);
5f5d4cd1 602
603 cfg_hooks->delete_basic_block (bb);
604
88e6f696 605 if (current_loops != NULL)
606 {
2e966e2a 607 class loop *loop = bb->loop_father;
88e6f696 608
609 /* If we remove the header or the latch of a loop, mark the loop for
d25159cc 610 removal. */
88e6f696 611 if (loop->latch == bb
612 || loop->header == bb)
d25159cc 613 mark_loop_for_removal (loop);
88e6f696 614
615 remove_bb_from_loops (bb);
616 }
617
5f5d4cd1 618 /* Remove the edges into and out of this block. Note that there may
619 indeed be edges in, if we are removing an unreachable loop. */
cd665a06 620 while (EDGE_COUNT (bb->preds) != 0)
621 remove_edge (EDGE_PRED (bb, 0));
622 while (EDGE_COUNT (bb->succs) != 0)
623 remove_edge (EDGE_SUCC (bb, 0));
5f5d4cd1 624
50b08d37 625 if (dom_info_available_p (CDI_DOMINATORS))
5f5d4cd1 626 delete_from_dominance_info (CDI_DOMINATORS, bb);
50b08d37 627 if (dom_info_available_p (CDI_POST_DOMINATORS))
5f5d4cd1 628 delete_from_dominance_info (CDI_POST_DOMINATORS, bb);
629
630 /* Remove the basic block from the array. */
631 expunge_block (bb);
632}
633
634/* Splits edge E and returns the newly created basic block. */
635
636basic_block
637split_edge (edge e)
638{
639 basic_block ret;
ea5d3981 640 profile_count count = e->count ();
df7eb7ce 641 edge f;
0d9e7a5e 642 bool irr = (e->flags & EDGE_IRREDUCIBLE_LOOP) != 0;
2e966e2a 643 class loop *loop;
88e6f696 644 basic_block src = e->src, dest = e->dest;
5f5d4cd1 645
646 if (!cfg_hooks->split_edge)
0a81f5a0 647 internal_error ("%s does not support split_edge", cfg_hooks->name);
5f5d4cd1 648
dce58e66 649 if (current_loops != NULL)
650 rescan_loop_exit (e, false, true);
651
5f5d4cd1 652 ret = cfg_hooks->split_edge (e);
653 ret->count = count;
720cfc43 654 single_succ_edge (ret)->probability = profile_probability::always ();
5f5d4cd1 655
0d9e7a5e 656 if (irr)
657 {
658 ret->flags |= BB_IRREDUCIBLE_LOOP;
ea091dfd 659 single_pred_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
660 single_succ_edge (ret)->flags |= EDGE_IRREDUCIBLE_LOOP;
0d9e7a5e 661 }
662
50b08d37 663 if (dom_info_available_p (CDI_DOMINATORS))
ea091dfd 664 set_immediate_dominator (CDI_DOMINATORS, ret, single_pred (ret));
5f5d4cd1 665
50b08d37 666 if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
df7eb7ce 667 {
668 /* There are two cases:
669
670 If the immediate dominator of e->dest is not e->src, it
671 remains unchanged.
672
673 If immediate dominator of e->dest is e->src, it may become
674 ret, provided that all other predecessors of e->dest are
675 dominated by e->dest. */
676
ea091dfd 677 if (get_immediate_dominator (CDI_DOMINATORS, single_succ (ret))
678 == single_pred (ret))
df7eb7ce 679 {
cd665a06 680 edge_iterator ei;
ea091dfd 681 FOR_EACH_EDGE (f, ei, single_succ (ret)->preds)
df7eb7ce 682 {
ea091dfd 683 if (f == single_succ_edge (ret))
df7eb7ce 684 continue;
685
686 if (!dominated_by_p (CDI_DOMINATORS, f->src,
ea091dfd 687 single_succ (ret)))
df7eb7ce 688 break;
689 }
690
691 if (!f)
ea091dfd 692 set_immediate_dominator (CDI_DOMINATORS, single_succ (ret), ret);
df7eb7ce 693 }
88e6f696 694 }
695
696 if (current_loops != NULL)
697 {
698 loop = find_common_loop (src->loop_father, dest->loop_father);
699 add_bb_to_loop (ret, loop);
700
65a02176 701 /* If we split the latch edge of loop adjust the latch block. */
702 if (loop->latch == src
703 && loop->header == dest)
88e6f696 704 loop->latch = ret;
705 }
5f5d4cd1 706
707 return ret;
708}
709
710/* Creates a new basic block just after the basic block AFTER.
711 HEAD and END are the first and the last statement belonging
712 to the block. If both are NULL, an empty block is created. */
713
4302d619 714static basic_block
715create_basic_block_1 (void *head, void *end, basic_block after)
5f5d4cd1 716{
717 basic_block ret;
718
719 if (!cfg_hooks->create_basic_block)
0a81f5a0 720 internal_error ("%s does not support create_basic_block", cfg_hooks->name);
5f5d4cd1 721
722 ret = cfg_hooks->create_basic_block (head, end, after);
723
50b08d37 724 if (dom_info_available_p (CDI_DOMINATORS))
5f5d4cd1 725 add_to_dominance_info (CDI_DOMINATORS, ret);
50b08d37 726 if (dom_info_available_p (CDI_POST_DOMINATORS))
5f5d4cd1 727 add_to_dominance_info (CDI_POST_DOMINATORS, ret);
728
729 return ret;
730}
731
4302d619 732basic_block
733create_basic_block (gimple_seq seq, basic_block after)
734{
735 return create_basic_block_1 (seq, NULL, after);
736}
737
738basic_block
739create_basic_block (rtx head, rtx end, basic_block after)
740{
741 return create_basic_block_1 (head, end, after);
742}
743
744
5f5d4cd1 745/* Creates an empty basic block just after basic block AFTER. */
746
747basic_block
748create_empty_bb (basic_block after)
749{
4302d619 750 return create_basic_block_1 (NULL, NULL, after);
5f5d4cd1 751}
752
753/* Checks whether we may merge blocks BB1 and BB2. */
754
755bool
47aaf6e6 756can_merge_blocks_p (basic_block bb1, basic_block bb2)
5f5d4cd1 757{
758 bool ret;
759
760 if (!cfg_hooks->can_merge_blocks_p)
0a81f5a0 761 internal_error ("%s does not support can_merge_blocks_p", cfg_hooks->name);
5f5d4cd1 762
763 ret = cfg_hooks->can_merge_blocks_p (bb1, bb2);
764
765 return ret;
766}
767
4ee9c684 768void
769predict_edge (edge e, enum br_predictor predictor, int probability)
770{
771 if (!cfg_hooks->predict_edge)
0a81f5a0 772 internal_error ("%s does not support predict_edge", cfg_hooks->name);
4ee9c684 773
774 cfg_hooks->predict_edge (e, predictor, probability);
775}
776
777bool
5493cb9a 778predicted_by_p (const_basic_block bb, enum br_predictor predictor)
4ee9c684 779{
780 if (!cfg_hooks->predict_edge)
0a81f5a0 781 internal_error ("%s does not support predicted_by_p", cfg_hooks->name);
4ee9c684 782
783 return cfg_hooks->predicted_by_p (bb, predictor);
784}
785
5f5d4cd1 786/* Merges basic block B into basic block A. */
787
788void
789merge_blocks (basic_block a, basic_block b)
790{
791 edge e;
cd665a06 792 edge_iterator ei;
5f5d4cd1 793
794 if (!cfg_hooks->merge_blocks)
0a81f5a0 795 internal_error ("%s does not support merge_blocks", cfg_hooks->name);
5f5d4cd1 796
de39d8ad 797 cfg_hooks->merge_blocks (a, b);
798
88e6f696 799 if (current_loops != NULL)
79f958cb 800 {
91adfb46 801 /* If the block we merge into is a loop header do nothing unless ... */
802 if (a->loop_father->header == a)
803 {
804 /* ... we merge two loop headers, in which case we kill
805 the inner loop. */
806 if (b->loop_father->header == b)
d25159cc 807 mark_loop_for_removal (b->loop_father);
91adfb46 808 }
809 /* If we merge a loop header into its predecessor, update the loop
810 structure. */
811 else if (b->loop_father->header == b)
79f958cb 812 {
813 remove_bb_from_loops (a);
814 add_bb_to_loop (a, b->loop_father);
815 a->loop_father->header = a;
816 }
fc802109 817 /* If we merge a loop latch into its predecessor, update the loop
818 structure. */
819 if (b->loop_father->latch
820 && b->loop_father->latch == b)
821 b->loop_father->latch = a;
79f958cb 822 remove_bb_from_loops (b);
823 }
88e6f696 824
5f5d4cd1 825 /* Normally there should only be one successor of A and that is B, but
826 partway though the merge of blocks for conditional_execution we'll
827 be merging a TEST block with THEN and ELSE successors. Free the
828 whole lot of them and hope the caller knows what they're doing. */
cd665a06 829
830 while (EDGE_COUNT (a->succs) != 0)
c8e41bd9 831 remove_edge (EDGE_SUCC (a, 0));
5f5d4cd1 832
833 /* Adjust the edges out of B for the new owner. */
cd665a06 834 FOR_EACH_EDGE (e, ei, b->succs)
dce58e66 835 {
836 e->src = a;
837 if (current_loops != NULL)
b375c775 838 {
839 /* If b was a latch, a now is. */
840 if (e->dest->loop_father->latch == b)
841 e->dest->loop_father->latch = a;
842 rescan_loop_exit (e, true, false);
843 }
dce58e66 844 }
cd665a06 845 a->succs = b->succs;
5f5d4cd1 846 a->flags |= b->flags;
847
848 /* B hasn't quite yet ceased to exist. Attempt to prevent mishap. */
cd665a06 849 b->preds = b->succs = NULL;
5f5d4cd1 850
50b08d37 851 if (dom_info_available_p (CDI_DOMINATORS))
5f5d4cd1 852 redirect_immediate_dominators (CDI_DOMINATORS, b, a);
853
50b08d37 854 if (dom_info_available_p (CDI_DOMINATORS))
5f5d4cd1 855 delete_from_dominance_info (CDI_DOMINATORS, b);
50b08d37 856 if (dom_info_available_p (CDI_POST_DOMINATORS))
5f5d4cd1 857 delete_from_dominance_info (CDI_POST_DOMINATORS, b);
858
859 expunge_block (b);
860}
861
862/* Split BB into entry part and the rest (the rest is the newly created block).
863 Redirect those edges for that REDIRECT_EDGE_P returns true to the entry
864 part. Returns the edge connecting the entry part to the rest. */
865
866edge
867make_forwarder_block (basic_block bb, bool (*redirect_edge_p) (edge),
868 void (*new_bb_cbk) (basic_block))
869{
cd665a06 870 edge e, fallthru;
871 edge_iterator ei;
5f5d4cd1 872 basic_block dummy, jump;
2e966e2a 873 class loop *loop, *ploop, *cloop;
5f5d4cd1 874
875 if (!cfg_hooks->make_forwarder_block)
0a81f5a0 876 internal_error ("%s does not support make_forwarder_block",
5f5d4cd1 877 cfg_hooks->name);
878
879 fallthru = split_block_after_labels (bb);
880 dummy = fallthru->src;
db9cef39 881 dummy->count = profile_count::zero ();
5f5d4cd1 882 bb = fallthru->dest;
883
884 /* Redirect back edges we want to keep. */
cd665a06 885 for (ei = ei_start (dummy->preds); (e = ei_safe_edge (ei)); )
5f5d4cd1 886 {
e1ab7874 887 basic_block e_src;
888
5f5d4cd1 889 if (redirect_edge_p (e))
cd665a06 890 {
ea5d3981 891 dummy->count += e->count ();
cd665a06 892 ei_next (&ei);
893 continue;
894 }
5f5d4cd1 895
e1ab7874 896 e_src = e->src;
5f5d4cd1 897 jump = redirect_edge_and_branch_force (e, bb);
e1ab7874 898 if (jump != NULL)
899 {
900 /* If we redirected the loop latch edge, the JUMP block now acts like
901 the new latch of the loop. */
902 if (current_loops != NULL
903 && dummy->loop_father != NULL
904 && dummy->loop_father->header == dummy
905 && dummy->loop_father->latch == e_src)
906 dummy->loop_father->latch = jump;
48e1416a 907
e1ab7874 908 if (new_bb_cbk != NULL)
909 new_bb_cbk (jump);
910 }
5f5d4cd1 911 }
912
6b9d2769 913 if (dom_info_available_p (CDI_DOMINATORS))
5f5d4cd1 914 {
f1f41a6c 915 vec<basic_block> doms_to_fix;
916 doms_to_fix.create (2);
917 doms_to_fix.quick_push (dummy);
918 doms_to_fix.quick_push (bb);
3f9439d7 919 iterate_fix_dominators (CDI_DOMINATORS, doms_to_fix, false);
f1f41a6c 920 doms_to_fix.release ();
5f5d4cd1 921 }
922
88e6f696 923 if (current_loops != NULL)
924 {
925 /* If we do not split a loop header, then both blocks belong to the
926 same loop. In case we split loop header and do not redirect the
927 latch edge to DUMMY, then DUMMY belongs to the outer loop, and
4a6f9e19 928 BB becomes the new header. If latch is not recorded for the loop,
929 we leave this updating on the caller (this may only happen during
930 loop analysis). */
88e6f696 931 loop = dummy->loop_father;
932 if (loop->header == dummy
4a6f9e19 933 && loop->latch != NULL
88e6f696 934 && find_edge (loop->latch, dummy) == NULL)
935 {
936 remove_bb_from_loops (dummy);
937 loop->header = bb;
938
939 cloop = loop;
940 FOR_EACH_EDGE (e, ei, dummy->preds)
941 {
942 cloop = find_common_loop (cloop, e->src->loop_father);
943 }
944 add_bb_to_loop (dummy, cloop);
945 }
946
947 /* In case we split loop latch, update it. */
9e3536f4 948 for (ploop = loop; ploop; ploop = loop_outer (ploop))
88e6f696 949 if (ploop->latch == dummy)
950 ploop->latch = bb;
951 }
952
5f5d4cd1 953 cfg_hooks->make_forwarder_block (fallthru);
954
955 return fallthru;
956}
957
202bbc06 958/* Try to make the edge fallthru. */
959
5f5d4cd1 960void
961tidy_fallthru_edge (edge e)
962{
963 if (cfg_hooks->tidy_fallthru_edge)
964 cfg_hooks->tidy_fallthru_edge (e);
965}
966
967/* Fix up edges that now fall through, or rather should now fall through
968 but previously required a jump around now deleted blocks. Simplify
969 the search by only examining blocks numerically adjacent, since this
8ea8dad9 970 is how they were created.
971
972 ??? This routine is currently RTL specific. */
5f5d4cd1 973
974void
975tidy_fallthru_edges (void)
976{
977 basic_block b, c;
978
979 if (!cfg_hooks->tidy_fallthru_edge)
980 return;
981
34154e27 982 if (ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
5f5d4cd1 983 return;
984
34154e27 985 FOR_BB_BETWEEN (b, ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb,
986 EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb, next_bb)
5f5d4cd1 987 {
988 edge s;
989
990 c = b->next_bb;
991
992 /* We care about simple conditional or unconditional jumps with
993 a single successor.
994
995 If we had a conditional branch to the next instruction when
2ea77971 996 CFG was built, then there will only be one out edge for the
997 block which ended with the conditional branch (since we do
998 not create duplicate edges).
5f5d4cd1 999
1000 Furthermore, the edge will be marked as a fallthru because we
1001 merge the flags for the duplicate edges. So we do not want to
1002 check that the edge is not a FALLTHRU edge. */
1003
ea091dfd 1004 if (single_succ_p (b))
cd665a06 1005 {
ea091dfd 1006 s = single_succ_edge (b);
cd665a06 1007 if (! (s->flags & EDGE_COMPLEX)
1008 && s->dest == c
8f869004 1009 && !(JUMP_P (BB_END (b)) && CROSSING_JUMP_P (BB_END (b))))
cd665a06 1010 tidy_fallthru_edge (s);
1011 }
5f5d4cd1 1012 }
1013}
4ee9c684 1014
202bbc06 1015/* Edge E is assumed to be fallthru edge. Emit needed jump instruction
1016 (and possibly create new basic block) to make edge non-fallthru.
1017 Return newly created BB or NULL if none. */
1018
1019basic_block
1020force_nonfallthru (edge e)
1021{
895fb8da 1022 basic_block ret, src = e->src;
202bbc06 1023
1024 if (!cfg_hooks->force_nonfallthru)
1025 internal_error ("%s does not support force_nonfallthru",
1026 cfg_hooks->name);
1027
202bbc06 1028 ret = cfg_hooks->force_nonfallthru (e);
895fb8da 1029 if (ret != NULL)
202bbc06 1030 {
895fb8da 1031 if (dom_info_available_p (CDI_DOMINATORS))
1032 set_immediate_dominator (CDI_DOMINATORS, ret, src);
1033
1034 if (current_loops != NULL)
202bbc06 1035 {
d7407ea0 1036 basic_block pred = single_pred (ret);
1037 basic_block succ = single_succ (ret);
2e966e2a 1038 class loop *loop
d7407ea0 1039 = find_common_loop (pred->loop_father, succ->loop_father);
895fb8da 1040 rescan_loop_exit (e, false, true);
202bbc06 1041 add_bb_to_loop (ret, loop);
d7407ea0 1042
1043 /* If we split the latch edge of loop adjust the latch block. */
1044 if (loop->latch == pred
1045 && loop->header == succ)
1046 loop->latch = ret;
202bbc06 1047 }
202bbc06 1048 }
1049
1050 return ret;
1051}
1052
4ee9c684 1053/* Returns true if we can duplicate basic block BB. */
1054
1055bool
5493cb9a 1056can_duplicate_block_p (const_basic_block bb)
4ee9c684 1057{
4ee9c684 1058 if (!cfg_hooks->can_duplicate_block_p)
0a81f5a0 1059 internal_error ("%s does not support can_duplicate_block_p",
4ee9c684 1060 cfg_hooks->name);
1061
34154e27 1062 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun) || bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
4ee9c684 1063 return false;
1064
4ee9c684 1065 return cfg_hooks->can_duplicate_block_p (bb);
1066}
1067
1068/* Duplicates basic block BB and redirects edge E to it. Returns the
c4d867e0 1069 new basic block. The new basic block is placed after the basic block
1070 AFTER. */
4ee9c684 1071
1072basic_block
3350055c 1073duplicate_block (basic_block bb, edge e, basic_block after, copy_bb_data *id)
4ee9c684 1074{
1075 edge s, n;
1076 basic_block new_bb;
ea5d3981 1077 profile_count new_count = e ? e->count (): profile_count::uninitialized ();
cd665a06 1078 edge_iterator ei;
4ee9c684 1079
1080 if (!cfg_hooks->duplicate_block)
0a81f5a0 1081 internal_error ("%s does not support duplicate_block",
4ee9c684 1082 cfg_hooks->name);
1083
1084 if (bb->count < new_count)
1085 new_count = bb->count;
f582bb6c 1086
1b4345f7 1087 gcc_checking_assert (can_duplicate_block_p (bb));
4ee9c684 1088
3350055c 1089 new_bb = cfg_hooks->duplicate_block (bb, id);
c4d867e0 1090 if (after)
1091 move_block_after (new_bb, after);
4ee9c684 1092
e76fa056 1093 new_bb->flags = (bb->flags & ~BB_DUPLICATED);
cd665a06 1094 FOR_EACH_EDGE (s, ei, bb->succs)
4ee9c684 1095 {
1096 /* Since we are creating edges from a new block to successors
1097 of another block (which therefore are known to be disjoint), there
1098 is no need to actually check for duplicated edges. */
1099 n = unchecked_make_edge (new_bb, s->dest, s->flags);
1100 n->probability = s->probability;
4ee9c684 1101 n->aux = s->aux;
1102 }
1103
1104 if (e)
1105 {
1106 new_bb->count = new_count;
1107 bb->count -= new_count;
1108
4ee9c684 1109 redirect_edge_and_branch_force (e, new_bb);
4ee9c684 1110 }
1111 else
205ce1aa 1112 new_bb->count = bb->count;
4ee9c684 1113
01020a5f 1114 set_bb_original (new_bb, bb);
1115 set_bb_copy (bb, new_bb);
4ee9c684 1116
7e0311ae 1117 /* Add the new block to the copy of the loop of BB, or directly to the loop
1118 of BB if the loop is not being copied. */
88e6f696 1119 if (current_loops != NULL)
7e0311ae 1120 {
2e966e2a 1121 class loop *cloop = bb->loop_father;
1122 class loop *copy = get_loop_copy (cloop);
35c67c83 1123 /* If we copied the loop header block but not the loop
1124 we have created a loop with multiple entries. Ditch the loop,
1125 add the new block to the outer loop and arrange for a fixup. */
79f958cb 1126 if (!copy
35c67c83 1127 && cloop->header == bb)
79f958cb 1128 {
35c67c83 1129 add_bb_to_loop (new_bb, loop_outer (cloop));
d25159cc 1130 mark_loop_for_removal (cloop);
35c67c83 1131 }
1132 else
1133 {
1134 add_bb_to_loop (new_bb, copy ? copy : cloop);
1135 /* If we copied the loop latch block but not the loop, adjust
1136 loop state. */
1137 if (!copy
1138 && cloop->latch == bb)
1139 {
1140 cloop->latch = NULL;
1141 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
1142 }
79f958cb 1143 }
7e0311ae 1144 }
88e6f696 1145
4ee9c684 1146 return new_bb;
1147}
1148
1149/* Return 1 if BB ends with a call, possibly followed by some
1150 instructions that must stay with the call, 0 otherwise. */
1151
a0c938f0 1152bool
47aaf6e6 1153block_ends_with_call_p (basic_block bb)
4ee9c684 1154{
1155 if (!cfg_hooks->block_ends_with_call_p)
1156 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1157
1158 return (cfg_hooks->block_ends_with_call_p) (bb);
1159}
1160
1161/* Return 1 if BB ends with a conditional branch, 0 otherwise. */
1162
a0c938f0 1163bool
5493cb9a 1164block_ends_with_condjump_p (const_basic_block bb)
4ee9c684 1165{
1166 if (!cfg_hooks->block_ends_with_condjump_p)
1167 internal_error ("%s does not support block_ends_with_condjump_p",
1168 cfg_hooks->name);
1169
1170 return (cfg_hooks->block_ends_with_condjump_p) (bb);
1171}
1172
1173/* Add fake edges to the function exit for any non constant and non noreturn
1174 calls, volatile inline assembly in the bitmap of blocks specified by
1175 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
1176 that were split.
1177
1178 The goal is to expose cases in which entering a basic block does not imply
1179 that all subsequent instructions must be executed. */
1180
1181int
1182flow_call_edges_add (sbitmap blocks)
1183{
1184 if (!cfg_hooks->flow_call_edges_add)
a0c938f0 1185 internal_error ("%s does not support flow_call_edges_add",
4ee9c684 1186 cfg_hooks->name);
1187
1188 return (cfg_hooks->flow_call_edges_add) (blocks);
1189}
26b12c91 1190
1191/* This function is called immediately after edge E is added to the
1192 edge vector E->dest->preds. */
1193
1194void
1195execute_on_growing_pred (edge e)
1196{
e76fa056 1197 if (! (e->dest->flags & BB_DUPLICATED)
1198 && cfg_hooks->execute_on_growing_pred)
26b12c91 1199 cfg_hooks->execute_on_growing_pred (e);
1200}
1201
1202/* This function is called immediately before edge E is removed from
1203 the edge vector E->dest->preds. */
1204
1205void
1206execute_on_shrinking_pred (edge e)
1207{
e76fa056 1208 if (! (e->dest->flags & BB_DUPLICATED)
1209 && cfg_hooks->execute_on_shrinking_pred)
26b12c91 1210 cfg_hooks->execute_on_shrinking_pred (e);
1211}
c50ae675 1212
a0c938f0 1213/* This is used inside loop versioning when we want to insert
1214 stmts/insns on the edges, which have a different behavior
c50ae675 1215 in tree's and in RTL, so we made a CFG hook. */
1216void
1217lv_flush_pending_stmts (edge e)
1218{
1219 if (cfg_hooks->flush_pending_stmts)
1220 cfg_hooks->flush_pending_stmts (e);
1221}
1222
1223/* Loop versioning uses the duplicate_loop_to_header_edge to create
1224 a new version of the loop basic-blocks, the parameters here are
1225 exactly the same as in duplicate_loop_to_header_edge or
1226 tree_duplicate_loop_to_header_edge; while in tree-ssa there is
1227 additional work to maintain ssa information that's why there is
1228 a need to call the tree_duplicate_loop_to_header_edge rather
1229 than duplicate_loop_to_header_edge when we are in tree mode. */
1230bool
2e966e2a 1231cfg_hook_duplicate_loop_to_header_edge (class loop *loop, edge e,
7194de72 1232 unsigned int ndupl,
c50ae675 1233 sbitmap wont_exit, edge orig,
f1f41a6c 1234 vec<edge> *to_remove,
f3c40e6d 1235 int flags)
c50ae675 1236{
1237 gcc_assert (cfg_hooks->cfg_hook_duplicate_loop_to_header_edge);
7194de72 1238 return cfg_hooks->cfg_hook_duplicate_loop_to_header_edge (loop, e,
c50ae675 1239 ndupl, wont_exit,
1240 orig, to_remove,
f3c40e6d 1241 flags);
c50ae675 1242}
1243
1244/* Conditional jumps are represented differently in trees and RTL,
1245 this hook takes a basic block that is known to have a cond jump
f0b5f617 1246 at its end and extracts the taken and not taken edges out of it
c50ae675 1247 and store it in E1 and E2 respectively. */
1248void
1249extract_cond_bb_edges (basic_block b, edge *e1, edge *e2)
1250{
1251 gcc_assert (cfg_hooks->extract_cond_bb_edges);
1252 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
1253}
1254
1255/* Responsible for updating the ssa info (PHI nodes) on the
d90dbd3e 1256 new condition basic block that guards the versioned loop. */
c50ae675 1257void
1258lv_adjust_loop_header_phi (basic_block first, basic_block second,
f780cc25 1259 basic_block new_block, edge e)
c50ae675 1260{
1261 if (cfg_hooks->lv_adjust_loop_header_phi)
f780cc25 1262 cfg_hooks->lv_adjust_loop_header_phi (first, second, new_block, e);
c50ae675 1263}
1264
1265/* Conditions in trees and RTL are different so we need
1266 a different handling when we add the condition to the
1267 versioning code. */
1268void
1269lv_add_condition_to_bb (basic_block first, basic_block second,
f780cc25 1270 basic_block new_block, void *cond)
c50ae675 1271{
1272 gcc_assert (cfg_hooks->lv_add_condition_to_bb);
f780cc25 1273 cfg_hooks->lv_add_condition_to_bb (first, second, new_block, cond);
a0c938f0 1274}
23a070f3 1275
1276/* Checks whether all N blocks in BBS array can be copied. */
1277bool
1278can_copy_bbs_p (basic_block *bbs, unsigned n)
1279{
1280 unsigned i;
1281 edge e;
1282 int ret = true;
1283
1284 for (i = 0; i < n; i++)
1285 bbs[i]->flags |= BB_DUPLICATED;
1286
1287 for (i = 0; i < n; i++)
1288 {
1289 /* In case we should redirect abnormal edge during duplication, fail. */
1290 edge_iterator ei;
1291 FOR_EACH_EDGE (e, ei, bbs[i]->succs)
1292 if ((e->flags & EDGE_ABNORMAL)
1293 && (e->dest->flags & BB_DUPLICATED))
1294 {
1295 ret = false;
1296 goto end;
1297 }
1298
1299 if (!can_duplicate_block_p (bbs[i]))
1300 {
1301 ret = false;
1302 break;
1303 }
1304 }
1305
1306end:
1307 for (i = 0; i < n; i++)
1308 bbs[i]->flags &= ~BB_DUPLICATED;
1309
1310 return ret;
1311}
1312
1313/* Duplicates N basic blocks stored in array BBS. Newly created basic blocks
1314 are placed into array NEW_BBS in the same order. Edges from basic blocks
d99f53b2 1315 in BBS are also duplicated and copies of those that lead into BBS are
1316 redirected to appropriate newly created block. The function assigns bbs
1317 into loops (copy of basic block bb is assigned to bb->loop_father->copy
1318 loop, so this must be set up correctly in advance)
1319
1320 If UPDATE_DOMINANCE is true then this function updates dominators locally
1321 (LOOPS structure that contains the information about dominators is passed
1322 to enable this), otherwise it does not update the dominator information
1323 and it assumed that the caller will do this, perhaps by destroying and
1324 recreating it instead of trying to do an incremental update like this
1325 function does when update_dominance is true.
23a070f3 1326
1327 BASE is the superloop to that basic block belongs; if its header or latch
1328 is copied, we do not set the new blocks as header or latch.
1329
1330 Created copies of N_EDGES edges in array EDGES are stored in array NEW_EDGES,
1331 also in the same order.
1332
1333 Newly created basic blocks are put after the basic block AFTER in the
1334 instruction stream, and the order of the blocks in BBS array is preserved. */
1335
1336void
1337copy_bbs (basic_block *bbs, unsigned n, basic_block *new_bbs,
1338 edge *edges, unsigned num_edges, edge *new_edges,
2e966e2a 1339 class loop *base, basic_block after, bool update_dominance)
23a070f3 1340{
1341 unsigned i, j;
1342 basic_block bb, new_bb, dom_bb;
1343 edge e;
3350055c 1344 copy_bb_data id;
23a070f3 1345
e76fa056 1346 /* Mark the blocks to be copied. This is used by edge creation hooks
1347 to decide whether to reallocate PHI nodes capacity to avoid reallocating
1348 PHIs in the set of source BBs. */
1349 for (i = 0; i < n; i++)
1350 bbs[i]->flags |= BB_DUPLICATED;
1351
23a070f3 1352 /* Duplicate bbs, update dominators, assign bbs to loops. */
1353 for (i = 0; i < n; i++)
1354 {
1355 /* Duplicate. */
1356 bb = bbs[i];
3350055c 1357 new_bb = new_bbs[i] = duplicate_block (bb, NULL, after, &id);
23a070f3 1358 after = new_bb;
a829fbd0 1359 if (bb->loop_father)
1360 {
1361 /* Possibly set loop header. */
1362 if (bb->loop_father->header == bb && bb->loop_father != base)
1363 new_bb->loop_father->header = new_bb;
1364 /* Or latch. */
1365 if (bb->loop_father->latch == bb && bb->loop_father != base)
1366 new_bb->loop_father->latch = new_bb;
1367 }
23a070f3 1368 }
1369
1370 /* Set dominators. */
d99f53b2 1371 if (update_dominance)
23a070f3 1372 {
d99f53b2 1373 for (i = 0; i < n; i++)
23a070f3 1374 {
d99f53b2 1375 bb = bbs[i];
1376 new_bb = new_bbs[i];
1377
1378 dom_bb = get_immediate_dominator (CDI_DOMINATORS, bb);
1379 if (dom_bb->flags & BB_DUPLICATED)
1380 {
1381 dom_bb = get_bb_copy (dom_bb);
1382 set_immediate_dominator (CDI_DOMINATORS, new_bb, dom_bb);
1383 }
23a070f3 1384 }
1385 }
1386
1387 /* Redirect edges. */
1388 for (j = 0; j < num_edges; j++)
1389 new_edges[j] = NULL;
1390 for (i = 0; i < n; i++)
1391 {
1392 edge_iterator ei;
1393 new_bb = new_bbs[i];
1394 bb = bbs[i];
1395
1396 FOR_EACH_EDGE (e, ei, new_bb->succs)
1397 {
1398 for (j = 0; j < num_edges; j++)
1399 if (edges[j] && edges[j]->src == bb && edges[j]->dest == e->dest)
1400 new_edges[j] = e;
1401
1402 if (!(e->dest->flags & BB_DUPLICATED))
1403 continue;
1404 redirect_edge_and_branch_force (e, get_bb_copy (e->dest));
1405 }
1406 }
1407
1408 /* Clear information about duplicates. */
1409 for (i = 0; i < n; i++)
1410 bbs[i]->flags &= ~BB_DUPLICATED;
1411}
1412
9631926a 1413/* Return true if BB contains only labels or non-executable
1414 instructions */
1415bool
1416empty_block_p (basic_block bb)
1417{
1418 gcc_assert (cfg_hooks->empty_block_p);
1419 return cfg_hooks->empty_block_p (bb);
1420}
1421
1422/* Split a basic block if it ends with a conditional branch and if
1423 the other part of the block is not empty. */
1424basic_block
1425split_block_before_cond_jump (basic_block bb)
1426{
1427 gcc_assert (cfg_hooks->split_block_before_cond_jump);
1428 return cfg_hooks->split_block_before_cond_jump (bb);
1429}
1430
98193482 1431/* Work-horse for passes.c:check_profile_consistency.
1432 Do book-keeping of the CFG for the profile consistency checker.
ae1e77fa 1433 Store the counting in RECORD. */
98193482 1434
1435void
ae1e77fa 1436profile_record_check_consistency (profile_record *record)
98193482 1437{
1438 basic_block bb;
1439 edge_iterator ei;
1440 edge e;
98193482 1441
ed7d889a 1442 FOR_ALL_BB_FN (bb, cfun)
98193482 1443 {
34154e27 1444 if (bb != EXIT_BLOCK_PTR_FOR_FN (cfun)
f26d8580 1445 && profile_status_for_fn (cfun) != PROFILE_ABSENT)
98193482 1446 {
720cfc43 1447 profile_probability sum = profile_probability::never ();
98193482 1448 FOR_EACH_EDGE (e, ei, bb->succs)
1449 sum += e->probability;
720cfc43 1450 if (EDGE_COUNT (bb->succs)
1451 && sum.differs_from_p (profile_probability::always ()))
ae1e77fa 1452 record->num_mismatched_freq_out++;
db9cef39 1453 profile_count lsum = profile_count::zero ();
98193482 1454 FOR_EACH_EDGE (e, ei, bb->succs)
ea5d3981 1455 lsum += e->count ();
db9cef39 1456 if (EDGE_COUNT (bb->succs) && (lsum.differs_from_p (bb->count)))
ae1e77fa 1457 record->num_mismatched_count_out++;
98193482 1458 }
34154e27 1459 if (bb != ENTRY_BLOCK_PTR_FOR_FN (cfun)
f26d8580 1460 && profile_status_for_fn (cfun) != PROFILE_ABSENT)
98193482 1461 {
ae1e77fa 1462 profile_probability sum = profile_probability::never ();
db9cef39 1463 profile_count lsum = profile_count::zero ();
98193482 1464 FOR_EACH_EDGE (e, ei, bb->preds)
ae1e77fa 1465 {
1466 sum += e->probability;
1467 lsum += e->count ();
1468 }
1469 if (EDGE_COUNT (bb->preds)
1470 && sum.differs_from_p (profile_probability::always ()))
1471 record->num_mismatched_freq_in++;
db9cef39 1472 if (lsum.differs_from_p (bb->count))
ae1e77fa 1473 record->num_mismatched_count_in++;
98193482 1474 }
34154e27 1475 if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun)
1476 || bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
98193482 1477 continue;
1478 gcc_assert (cfg_hooks->account_profile_record);
ae1e77fa 1479 cfg_hooks->account_profile_record (bb, record);
1480 }
1481}
1482
1483/* Work-horse for passes.c:acount_profile.
1484 Do book-keeping of the CFG for the profile accounting.
1485 Store the counting in RECORD. */
1486
1487void
1488profile_record_account_profile (profile_record *record)
1489{
1490 basic_block bb;
1491
1492 FOR_ALL_BB_FN (bb, cfun)
1493 {
1494 gcc_assert (cfg_hooks->account_profile_record);
1495 cfg_hooks->account_profile_record (bb, record);
98193482 1496 }
1497}
62c34df8 1498
1499#if __GNUC__ >= 10
1500# pragma GCC diagnostic pop
1501#endif