]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cfg.c
re PR tree-optimization/84737 (20% degradation in CPU2000 172.mgrid starting with...
[thirdparty/gcc.git] / gcc / cfg.c
CommitLineData
402209ff 1/* Control flow graph manipulation code for GNU compiler.
85ec4feb 2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
402209ff
JH
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
402209ff
JH
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
402209ff 19
9d083c8c 20/* This file contains low level functions to manipulate the CFG and
4d6922ee 21 analyze it. All other modules should not transform the data structure
9d083c8c
RS
22 directly and use abstraction instead. The file is supposed to be
23 ordered bottom-up and should not contain any code dependent on a
24 particular intermediate language (RTL or trees).
402209ff
JH
25
26 Available functionality:
27 - Initialization/deallocation
28 init_flow, clear_edges
ca6c03ca
JH
29 - Low level basic block manipulation
30 alloc_block, expunge_block
402209ff 31 - Edge manipulation
7ded4467 32 make_edge, make_single_succ_edge, cached_make_edge, remove_edge
402209ff
JH
33 - Low level edge redirection (without updating instruction chain)
34 redirect_edge_succ, redirect_edge_succ_nodup, redirect_edge_pred
eaec9b3d 35 - Dumping and debugging
ca6c03ca
JH
36 dump_flow_info, debug_flow_info, dump_edge_info
37 - Allocation of AUX fields for basic blocks
38 alloc_aux_for_blocks, free_aux_for_blocks, alloc_aux_for_block
38c1593d 39 - clear_bb_flags
10e9fecc
JH
40 - Consistency checking
41 verify_flow_info
42 - Dumping and debugging
43 print_rtl_with_bb, dump_bb, debug_bb, debug_bb_n
532aafad
SB
44
45 TODO: Document these "Available functionality" functions in the files
46 that implement them.
402209ff
JH
47 */
48\f
49#include "config.h"
50#include "system.h"
4977bab6 51#include "coretypes.h"
5d85afe9 52#include "backend.h"
60393bbc 53#include "hard-reg-set.h"
957060b5
AM
54#include "tree.h"
55#include "cfghooks.h"
6fb5fa3c 56#include "df.h"
c7131fb2 57#include "cfganal.h"
532aafad 58#include "cfgloop.h" /* FIXME: For struct loop. */
7ee2468b 59#include "dumpfile.h"
402209ff 60
402209ff 61\f
33156717 62
eaec9b3d 63/* Called once at initialization time. */
402209ff
JH
64
65void
9defb1fe 66init_flow (struct function *the_fun)
402209ff 67{
9defb1fe 68 if (!the_fun->cfg)
766090c2 69 the_fun->cfg = ggc_cleared_alloc<control_flow_graph> ();
dc936fb2 70 n_edges_for_fn (the_fun) = 0;
e7a74006 71 the_fun->cfg->count_max = profile_count::uninitialized ();
fefa31b5 72 ENTRY_BLOCK_PTR_FOR_FN (the_fun)
3995f3a2 73 = alloc_block ();
fefa31b5
DM
74 ENTRY_BLOCK_PTR_FOR_FN (the_fun)->index = ENTRY_BLOCK;
75 EXIT_BLOCK_PTR_FOR_FN (the_fun)
3995f3a2 76 = alloc_block ();
fefa31b5
DM
77 EXIT_BLOCK_PTR_FOR_FN (the_fun)->index = EXIT_BLOCK;
78 ENTRY_BLOCK_PTR_FOR_FN (the_fun)->next_bb
79 = EXIT_BLOCK_PTR_FOR_FN (the_fun);
80 EXIT_BLOCK_PTR_FOR_FN (the_fun)->prev_bb
81 = ENTRY_BLOCK_PTR_FOR_FN (the_fun);
402209ff
JH
82}
83\f
d39ac0fd 84/* Helper function for remove_edge and clear_edges. Frees edge structure
532aafad 85 without actually removing it from the pred/succ arrays. */
d39ac0fd
JH
86
87static void
61183076 88free_edge (function *fn, edge e)
d39ac0fd 89{
61183076 90 n_edges_for_fn (fn)--;
80d8221e 91 ggc_free (e);
d39ac0fd
JH
92}
93
402209ff
JH
94/* Free the memory associated with the edge structures. */
95
96void
61183076 97clear_edges (struct function *fn)
402209ff 98{
e0082a72 99 basic_block bb;
d39ac0fd 100 edge e;
628f6a4e 101 edge_iterator ei;
402209ff 102
61183076 103 FOR_EACH_BB_FN (bb, fn)
402209ff 104 {
628f6a4e 105 FOR_EACH_EDGE (e, ei, bb->succs)
61183076 106 free_edge (fn, e);
9771b263
DN
107 vec_safe_truncate (bb->succs, 0);
108 vec_safe_truncate (bb->preds, 0);
d39ac0fd 109 }
4891442b 110
61183076
RB
111 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (fn)->succs)
112 free_edge (fn, e);
113 vec_safe_truncate (EXIT_BLOCK_PTR_FOR_FN (fn)->preds, 0);
114 vec_safe_truncate (ENTRY_BLOCK_PTR_FOR_FN (fn)->succs, 0);
402209ff 115
61183076 116 gcc_assert (!n_edges_for_fn (fn));
402209ff
JH
117}
118\f
ca6c03ca 119/* Allocate memory for basic_block. */
402209ff 120
4262e623 121basic_block
d329e058 122alloc_block (void)
402209ff
JH
123{
124 basic_block bb;
766090c2 125 bb = ggc_cleared_alloc<basic_block_def> ();
3995f3a2 126 bb->count = profile_count::uninitialized ();
4262e623 127 return bb;
402209ff
JH
128}
129
918ed612
ZD
130/* Link block B to chain after AFTER. */
131void
d329e058 132link_block (basic_block b, basic_block after)
918ed612
ZD
133{
134 b->next_bb = after->next_bb;
135 b->prev_bb = after;
136 after->next_bb = b;
137 b->next_bb->prev_bb = b;
138}
f87c27b4 139
918ed612
ZD
140/* Unlink block B from chain. */
141void
d329e058 142unlink_block (basic_block b)
918ed612
ZD
143{
144 b->next_bb->prev_bb = b->prev_bb;
145 b->prev_bb->next_bb = b->next_bb;
6de9cd9a
DN
146 b->prev_bb = NULL;
147 b->next_bb = NULL;
918ed612 148}
f87c27b4 149
bf77398c
ZD
150/* Sequentially order blocks and compact the arrays. */
151void
d329e058 152compact_blocks (void)
bf77398c
ZD
153{
154 int i;
d329e058 155
557c4b49
DM
156 SET_BASIC_BLOCK_FOR_FN (cfun, ENTRY_BLOCK, ENTRY_BLOCK_PTR_FOR_FN (cfun));
157 SET_BASIC_BLOCK_FOR_FN (cfun, EXIT_BLOCK, EXIT_BLOCK_PTR_FOR_FN (cfun));
b8698a0f 158
6fb5fa3c
DB
159 if (df)
160 df_compact_blocks ();
b8698a0f 161 else
bf77398c 162 {
6fb5fa3c 163 basic_block bb;
b8698a0f 164
6fb5fa3c 165 i = NUM_FIXED_BLOCKS;
11cd3bed 166 FOR_EACH_BB_FN (bb, cfun)
6fb5fa3c 167 {
557c4b49 168 SET_BASIC_BLOCK_FOR_FN (cfun, i, bb);
6fb5fa3c
DB
169 bb->index = i;
170 i++;
171 }
0cae8d31 172 gcc_assert (i == n_basic_blocks_for_fn (cfun));
6de9cd9a 173
8b1c6fd7 174 for (; i < last_basic_block_for_fn (cfun); i++)
557c4b49 175 SET_BASIC_BLOCK_FOR_FN (cfun, i, NULL);
6fb5fa3c 176 }
8b1c6fd7 177 last_basic_block_for_fn (cfun) = n_basic_blocks_for_fn (cfun);
bf77398c
ZD
178}
179
bf77398c 180/* Remove block B from the basic block array. */
402209ff 181
6a58eee9 182void
d329e058 183expunge_block (basic_block b)
6a58eee9 184{
918ed612 185 unlink_block (b);
557c4b49 186 SET_BASIC_BLOCK_FOR_FN (cfun, b->index, NULL);
0cae8d31 187 n_basic_blocks_for_fn (cfun)--;
ab3b6795
JH
188 /* We should be able to ggc_free here, but we are not.
189 The dead SSA_NAMES are left pointing to dead statements that are pointing
190 to dead basic blocks making garbage collector to die.
191 We should be able to release all dead SSA_NAMES and at the same time we should
192 clear out BB pointer of dead statements consistently. */
6a58eee9 193}
402209ff 194\f
adf4a335
KH
195/* Connect E to E->src. */
196
197static inline void
198connect_src (edge e)
199{
9771b263 200 vec_safe_push (e->src->succs, e);
6fb5fa3c 201 df_mark_solutions_dirty ();
adf4a335
KH
202}
203
204/* Connect E to E->dest. */
205
206static inline void
207connect_dest (edge e)
208{
209 basic_block dest = e->dest;
9771b263 210 vec_safe_push (dest->preds, e);
adf4a335 211 e->dest_idx = EDGE_COUNT (dest->preds) - 1;
6fb5fa3c 212 df_mark_solutions_dirty ();
adf4a335
KH
213}
214
215/* Disconnect edge E from E->src. */
216
217static inline void
218disconnect_src (edge e)
219{
220 basic_block src = e->src;
221 edge_iterator ei;
222 edge tmp;
223
224 for (ei = ei_start (src->succs); (tmp = ei_safe_edge (ei)); )
225 {
226 if (tmp == e)
227 {
9771b263 228 src->succs->unordered_remove (ei.index);
c813039d 229 df_mark_solutions_dirty ();
adf4a335
KH
230 return;
231 }
232 else
233 ei_next (&ei);
234 }
235
236 gcc_unreachable ();
237}
238
239/* Disconnect edge E from E->dest. */
240
241static inline void
242disconnect_dest (edge e)
243{
244 basic_block dest = e->dest;
245 unsigned int dest_idx = e->dest_idx;
246
9771b263 247 dest->preds->unordered_remove (dest_idx);
adf4a335
KH
248
249 /* If we removed an edge in the middle of the edge vector, we need
250 to update dest_idx of the edge that moved into the "hole". */
251 if (dest_idx < EDGE_COUNT (dest->preds))
252 EDGE_PRED (dest, dest_idx)->dest_idx = dest_idx;
6fb5fa3c 253 df_mark_solutions_dirty ();
adf4a335
KH
254}
255
e0fd3e7a
MM
256/* Create an edge connecting SRC and DEST with flags FLAGS. Return newly
257 created edge. Use this only if you are sure that this edge can't
258 possibly already exist. */
259
260edge
d329e058 261unchecked_make_edge (basic_block src, basic_block dst, int flags)
e0fd3e7a
MM
262{
263 edge e;
766090c2 264 e = ggc_cleared_alloc<edge_def> ();
dc936fb2 265 n_edges_for_fn (cfun)++;
e0fd3e7a 266
357067f2 267 e->probability = profile_probability::uninitialized ();
e0fd3e7a
MM
268 e->src = src;
269 e->dest = dst;
270 e->flags = flags;
adf4a335
KH
271
272 connect_src (e);
273 connect_dest (e);
e0fd3e7a 274
d9d4706f 275 execute_on_growing_pred (e);
e0fd3e7a
MM
276 return e;
277}
278
7ded4467 279/* Create an edge connecting SRC and DST with FLAGS optionally using
2ba84f36 280 edge cache CACHE. Return the new edge, NULL if already exist. */
4262e623 281
7ded4467 282edge
a6ee1a15 283cached_make_edge (sbitmap edge_cache, basic_block src, basic_block dst, int flags)
402209ff 284{
e2c879a1 285 if (edge_cache == NULL
fefa31b5
DM
286 || src == ENTRY_BLOCK_PTR_FOR_FN (cfun)
287 || dst == EXIT_BLOCK_PTR_FOR_FN (cfun))
e2c879a1 288 return make_edge (src, dst, flags);
402209ff 289
e2c879a1 290 /* Does the requested edge already exist? */
d7c028c0 291 if (! bitmap_bit_p (edge_cache, dst->index))
402209ff 292 {
e2c879a1
KH
293 /* The edge does not exist. Create one and update the
294 cache. */
d7c028c0 295 bitmap_set_bit (edge_cache, dst->index);
e2c879a1 296 return unchecked_make_edge (src, dst, flags);
402209ff 297 }
d329e058 298
e2c879a1
KH
299 /* At this point, we know that the requested edge exists. Adjust
300 flags if necessary. */
301 if (flags)
302 {
303 edge e = find_edge (src, dst);
304 e->flags |= flags;
305 }
7ded4467 306
e2c879a1 307 return NULL;
7ded4467
JH
308}
309
310/* Create an edge connecting SRC and DEST with flags FLAGS. Return newly
311 created edge or NULL if already exist. */
312
313edge
d329e058 314make_edge (basic_block src, basic_block dest, int flags)
7ded4467 315{
e2c879a1
KH
316 edge e = find_edge (src, dest);
317
318 /* Make sure we don't add duplicate edges. */
319 if (e)
320 {
321 e->flags |= flags;
322 return NULL;
323 }
324
325 return unchecked_make_edge (src, dest, flags);
7ded4467
JH
326}
327
eaec9b3d 328/* Create an edge connecting SRC to DEST and set probability by knowing
7ded4467
JH
329 that it is the single edge leaving SRC. */
330
331edge
d329e058 332make_single_succ_edge (basic_block src, basic_block dest, int flags)
7ded4467
JH
333{
334 edge e = make_edge (src, dest, flags);
335
357067f2 336 e->probability = profile_probability::always ();
7ded4467 337 return e;
402209ff
JH
338}
339
340/* This function will remove an edge from the flow graph. */
341
342void
452ba14d 343remove_edge_raw (edge e)
402209ff 344{
3809e990 345 remove_predictions_associated_with_edge (e);
d9d4706f
KH
346 execute_on_shrinking_pred (e);
347
adf4a335
KH
348 disconnect_src (e);
349 disconnect_dest (e);
402209ff 350
61183076 351 free_edge (cfun, e);
402209ff
JH
352}
353
354/* Redirect an edge's successor from one block to another. */
355
356void
d329e058 357redirect_edge_succ (edge e, basic_block new_succ)
402209ff 358{
d9d4706f
KH
359 execute_on_shrinking_pred (e);
360
adf4a335 361 disconnect_dest (e);
628f6a4e 362
adf4a335 363 e->dest = new_succ;
402209ff
JH
364
365 /* Reconnect the edge to the new successor block. */
adf4a335
KH
366 connect_dest (e);
367
d9d4706f 368 execute_on_growing_pred (e);
402209ff
JH
369}
370
402209ff
JH
371/* Redirect an edge's predecessor from one block to another. */
372
373void
d329e058 374redirect_edge_pred (edge e, basic_block new_pred)
402209ff 375{
adf4a335 376 disconnect_src (e);
402209ff 377
adf4a335 378 e->src = new_pred;
402209ff
JH
379
380 /* Reconnect the edge to the new predecessor block. */
adf4a335 381 connect_src (e);
402209ff 382}
38c1593d 383
c4669594 384/* Clear all basic block flags that do not have to be preserved. */
38c1593d 385void
d329e058 386clear_bb_flags (void)
38c1593d 387{
e0082a72
ZD
388 basic_block bb;
389
2300c332 390 FOR_ALL_BB_FN (bb, cfun)
c4669594 391 bb->flags &= BB_FLAGS_TO_PRESERVE;
38c1593d 392}
402209ff 393\f
878f99d2
JH
394/* Check the consistency of profile information. We can't do that
395 in verify_flow_info, as the counts may get invalid for incompletely
396 solved graphs, later eliminating of conditionals or roundoff errors.
397 It is still practical to have them reported for debugging of simple
398 testcases. */
c4669594 399static void
9d9573d5 400check_bb_profile (basic_block bb, FILE * file, int indent)
878f99d2
JH
401{
402 edge e;
628f6a4e 403 edge_iterator ei;
2eb712b4 404 struct function *fun = DECL_STRUCT_FUNCTION (current_function_decl);
c4669594
SB
405 char *s_indent = (char *) alloca ((size_t) indent + 1);
406 memset ((void *) s_indent, ' ', (size_t) indent);
407 s_indent[indent] = '\0';
878f99d2 408
ea19eb9f 409 if (profile_status_for_fn (fun) == PROFILE_ABSENT)
878f99d2
JH
410 return;
411
fefa31b5 412 if (bb != EXIT_BLOCK_PTR_FOR_FN (fun))
878f99d2 413 {
46f1f3c1 414 bool found = false;
357067f2
JH
415 profile_probability sum = profile_probability::never ();
416 int isum = 0;
417
628f6a4e 418 FOR_EACH_EDGE (e, ei, bb->succs)
46f1f3c1 419 {
357067f2 420 if (!(e->flags & (EDGE_EH | EDGE_FAKE)))
46f1f3c1
JH
421 found = true;
422 sum += e->probability;
357067f2
JH
423 if (e->probability.initialized_p ())
424 isum += e->probability.to_reg_br_prob_base ();
46f1f3c1
JH
425 }
426 /* Only report mismatches for non-EH control flow. If there are only EH
427 edges it means that the BB ends by noreturn call. Here the control
428 flow may just terminate. */
429 if (found)
430 {
357067f2
JH
431 if (sum.differs_from_p (profile_probability::always ()))
432 {
433 fprintf (file,
434 ";; %sInvalid sum of outgoing probabilities ",
435 s_indent);
436 sum.dump (file);
437 fprintf (file, "\n");
438 }
439 /* Probabilities caps to 100% and thus the previous test will never
440 fire if the sum of probabilities is too large. */
441 else if (isum > REG_BR_PROB_BASE + 100)
442 {
443 fprintf (file,
444 ";; %sInvalid sum of outgoing probabilities %.1f%%\n",
445 s_indent, isum * 100.0 / REG_BR_PROB_BASE);
446 }
46f1f3c1 447 }
878f99d2 448 }
357067f2 449 if (bb != ENTRY_BLOCK_PTR_FOR_FN (fun))
878f99d2 450 {
e7a74006 451 profile_count sum = profile_count::zero ();
628f6a4e 452 FOR_EACH_EDGE (e, ei, bb->preds)
e7a74006
JH
453 sum += e->count ();
454 if (sum.differs_from_p (bb->count))
455 {
456 fprintf (file, ";; %sInvalid sum of incoming counts ",
457 s_indent);
458 sum.dump (file);
459 fprintf (file, ", should be ");
460 bb->count.dump (file);
461 fprintf (file, "\n");
462 }
878f99d2 463 }
600b5b1d
TJ
464 if (BB_PARTITION (bb) == BB_COLD_PARTITION)
465 {
466 /* Warn about inconsistencies in the partitioning that are
467 currently caused by profile insanities created via optimization. */
468 if (!probably_never_executed_bb_p (fun, bb))
9d9573d5
ML
469 fprintf (file, ";; %sBlock in cold partition with hot count\n",
470 s_indent);
600b5b1d
TJ
471 FOR_EACH_EDGE (e, ei, bb->preds)
472 {
473 if (!probably_never_executed_edge_p (fun, e))
474 fprintf (file,
9d9573d5
ML
475 ";; %sBlock in cold partition with incoming hot edge\n",
476 s_indent);
600b5b1d
TJ
477 }
478 }
878f99d2
JH
479}
480\f
402209ff 481void
1a817418 482dump_edge_info (FILE *file, edge e, dump_flags_t flags, int do_succ)
402209ff 483{
ca6c03ca 484 basic_block side = (do_succ ? e->dest : e->src);
a315c44c
SB
485 bool do_details = false;
486
487 if ((flags & TDF_DETAILS) != 0
488 && (flags & TDF_SLIM) == 0)
489 do_details = true;
490
532aafad 491 if (side->index == ENTRY_BLOCK)
ca6c03ca 492 fputs (" ENTRY", file);
532aafad 493 else if (side->index == EXIT_BLOCK)
ca6c03ca
JH
494 fputs (" EXIT", file);
495 else
0b17ab2f 496 fprintf (file, " %d", side->index);
ca6c03ca 497
357067f2
JH
498 if (e->probability.initialized_p () && do_details)
499 {
500 fprintf (file, " [");
501 e->probability.dump (file);
502 fprintf (file, "] ");
503 }
402209ff 504
ef30ab83 505 if (e->count ().initialized_p () && do_details)
402209ff 506 {
edb30094 507 fputs (" count:", file);
ef30ab83 508 e->count ().dump (file);
402209ff
JH
509 }
510
a315c44c 511 if (e->flags && do_details)
402209ff 512 {
a315c44c
SB
513 static const char * const bitnames[] =
514 {
515#define DEF_EDGE_FLAG(NAME,IDX) #NAME ,
516#include "cfg-flags.def"
517 NULL
518#undef DEF_EDGE_FLAG
519 };
520 bool comma = false;
ca6c03ca 521 int i, flags = e->flags;
402209ff 522
a315c44c 523 gcc_assert (e->flags <= EDGE_ALL_FLAGS);
4891442b 524 fputs (" (", file);
402209ff
JH
525 for (i = 0; flags; i++)
526 if (flags & (1 << i))
527 {
528 flags &= ~(1 << i);
529
530 if (comma)
531 fputc (',', file);
a315c44c
SB
532 fputs (bitnames[i], file);
533 comma = true;
402209ff 534 }
4891442b 535
402209ff
JH
536 fputc (')', file);
537 }
538}
7b3b6ae4
LC
539
540DEBUG_FUNCTION void
541debug (edge_def &ref)
542{
543 /* FIXME (crowl): Is this desireable? */
544 dump_edge_info (stderr, &ref, 0, false);
545 dump_edge_info (stderr, &ref, 0, true);
546}
547
548DEBUG_FUNCTION void
549debug (edge_def *ptr)
550{
551 if (ptr)
552 debug (*ptr);
553 else
554 fprintf (stderr, "<nil>\n");
555}
19a30b71
AH
556
557static void
558debug_slim (edge e)
559{
560 fprintf (stderr, "<edge 0x%p (%d -> %d)>", (void *) e,
561 e->src->index, e->dest->index);
562}
563
564DEFINE_DEBUG_VEC (edge)
565DEFINE_DEBUG_HASH_SET (edge)
402209ff 566\f
ff7cc307 567/* Simple routines to easily allocate AUX fields of basic blocks. */
4891442b 568
ca6c03ca
JH
569static struct obstack block_aux_obstack;
570static void *first_block_aux_obj = 0;
571static struct obstack edge_aux_obstack;
572static void *first_edge_aux_obj = 0;
402209ff 573
09da1532 574/* Allocate a memory block of SIZE as BB->aux. The obstack must
ca6c03ca 575 be first initialized by alloc_aux_for_blocks. */
402209ff 576
a398224a 577static void
d329e058 578alloc_aux_for_block (basic_block bb, int size)
402209ff 579{
ca6c03ca 580 /* Verify that aux field is clear. */
341c100f 581 gcc_assert (!bb->aux && first_block_aux_obj);
ca6c03ca
JH
582 bb->aux = obstack_alloc (&block_aux_obstack, size);
583 memset (bb->aux, 0, size);
402209ff
JH
584}
585
ca6c03ca
JH
586/* Initialize the block_aux_obstack and if SIZE is nonzero, call
587 alloc_aux_for_block for each basic block. */
402209ff
JH
588
589void
d329e058 590alloc_aux_for_blocks (int size)
402209ff 591{
ca6c03ca 592 static int initialized;
402209ff 593
ca6c03ca 594 if (!initialized)
402209ff 595 {
ca6c03ca
JH
596 gcc_obstack_init (&block_aux_obstack);
597 initialized = 1;
402209ff 598 }
341c100f
NS
599 else
600 /* Check whether AUX data are still allocated. */
601 gcc_assert (!first_block_aux_obj);
c22cacf3 602
703ad42b 603 first_block_aux_obj = obstack_alloc (&block_aux_obstack, 0);
ca6c03ca 604 if (size)
402209ff 605 {
e0082a72 606 basic_block bb;
4891442b 607
04a90bec 608 FOR_ALL_BB_FN (bb, cfun)
e0082a72 609 alloc_aux_for_block (bb, size);
402209ff
JH
610 }
611}
ca6c03ca 612
108c1afc 613/* Clear AUX pointers of all blocks. */
402209ff
JH
614
615void
d329e058 616clear_aux_for_blocks (void)
402209ff 617{
e0082a72 618 basic_block bb;
4891442b 619
04a90bec 620 FOR_ALL_BB_FN (bb, cfun)
e0082a72 621 bb->aux = NULL;
108c1afc
RH
622}
623
624/* Free data allocated in block_aux_obstack and clear AUX pointers
625 of all blocks. */
626
627void
d329e058 628free_aux_for_blocks (void)
108c1afc 629{
341c100f 630 gcc_assert (first_block_aux_obj);
108c1afc 631 obstack_free (&block_aux_obstack, first_block_aux_obj);
ca6c03ca 632 first_block_aux_obj = NULL;
108c1afc
RH
633
634 clear_aux_for_blocks ();
ca6c03ca 635}
402209ff 636
039496da 637/* Allocate a memory edge of SIZE as E->aux. The obstack must
ca6c03ca 638 be first initialized by alloc_aux_for_edges. */
402209ff 639
039496da 640void
d329e058 641alloc_aux_for_edge (edge e, int size)
ca6c03ca
JH
642{
643 /* Verify that aux field is clear. */
341c100f 644 gcc_assert (!e->aux && first_edge_aux_obj);
ca6c03ca
JH
645 e->aux = obstack_alloc (&edge_aux_obstack, size);
646 memset (e->aux, 0, size);
647}
402209ff 648
ca6c03ca
JH
649/* Initialize the edge_aux_obstack and if SIZE is nonzero, call
650 alloc_aux_for_edge for each basic edge. */
402209ff 651
ca6c03ca 652void
d329e058 653alloc_aux_for_edges (int size)
ca6c03ca
JH
654{
655 static int initialized;
402209ff 656
ca6c03ca
JH
657 if (!initialized)
658 {
659 gcc_obstack_init (&edge_aux_obstack);
660 initialized = 1;
402209ff 661 }
341c100f
NS
662 else
663 /* Check whether AUX data are still allocated. */
664 gcc_assert (!first_edge_aux_obj);
4891442b 665
703ad42b 666 first_edge_aux_obj = obstack_alloc (&edge_aux_obstack, 0);
ca6c03ca 667 if (size)
402209ff 668 {
e0082a72
ZD
669 basic_block bb;
670
fefa31b5
DM
671 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun),
672 EXIT_BLOCK_PTR_FOR_FN (cfun), next_bb)
402209ff 673 {
ca6c03ca 674 edge e;
628f6a4e 675 edge_iterator ei;
ca6c03ca 676
628f6a4e 677 FOR_EACH_EDGE (e, ei, bb->succs)
ca6c03ca 678 alloc_aux_for_edge (e, size);
402209ff 679 }
402209ff 680 }
402209ff 681}
402209ff 682
108c1afc 683/* Clear AUX pointers of all edges. */
ca6c03ca
JH
684
685void
d329e058 686clear_aux_for_edges (void)
402209ff 687{
e0082a72
ZD
688 basic_block bb;
689 edge e;
402209ff 690
fefa31b5
DM
691 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (cfun),
692 EXIT_BLOCK_PTR_FOR_FN (cfun), next_bb)
402209ff 693 {
628f6a4e
BE
694 edge_iterator ei;
695 FOR_EACH_EDGE (e, ei, bb->succs)
ca6c03ca 696 e->aux = NULL;
402209ff 697 }
108c1afc
RH
698}
699
700/* Free data allocated in edge_aux_obstack and clear AUX pointers
701 of all edges. */
702
703void
d329e058 704free_aux_for_edges (void)
108c1afc 705{
341c100f 706 gcc_assert (first_edge_aux_obj);
108c1afc 707 obstack_free (&edge_aux_obstack, first_edge_aux_obj);
ca6c03ca 708 first_edge_aux_obj = NULL;
108c1afc
RH
709
710 clear_aux_for_edges ();
402209ff 711}
9ee634e3 712
24e47c76 713DEBUG_FUNCTION void
d329e058 714debug_bb (basic_block bb)
10e9fecc 715{
f8923f7e 716 dump_bb (stderr, bb, 0, dump_flags);
10e9fecc
JH
717}
718
24e47c76 719DEBUG_FUNCTION basic_block
d329e058 720debug_bb_n (int n)
10e9fecc 721{
06e28de2 722 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, n);
a315c44c 723 debug_bb (bb);
10e9fecc 724 return bb;
9ee634e3 725}
6de9cd9a 726
a315c44c
SB
727/* Dumps cfg related information about basic block BB to OUTF.
728 If HEADER is true, dump things that appear before the instructions
729 contained in BB. If FOOTER is true, dump things that appear after.
730 Flags are the TDF_* masks as documented in dumpfile.h.
731 NB: With TDF_DETAILS, it is assumed that cfun is available, so
732 that maybe_hot_bb_p and probably_never_executed_bb_p don't ICE. */
6de9cd9a 733
a315c44c 734void
1a817418 735dump_bb_info (FILE *outf, basic_block bb, int indent, dump_flags_t flags,
a315c44c 736 bool do_header, bool do_footer)
6de9cd9a 737{
628f6a4e 738 edge_iterator ei;
a315c44c 739 edge e;
6de9cd9a
DN
740 static const char * const bb_bitnames[] =
741 {
a315c44c
SB
742#define DEF_BASIC_BLOCK_FLAG(NAME,IDX) #NAME ,
743#include "cfg-flags.def"
744 NULL
745#undef DEF_BASIC_BLOCK_FLAG
6de9cd9a
DN
746 };
747 const unsigned n_bitnames = sizeof (bb_bitnames) / sizeof (char *);
c4669594 748 bool first;
a315c44c
SB
749 char *s_indent = (char *) alloca ((size_t) indent + 1);
750 memset ((void *) s_indent, ' ', (size_t) indent);
751 s_indent[indent] = '\0';
6de9cd9a 752
a315c44c
SB
753 gcc_assert (bb->flags <= BB_ALL_FLAGS);
754
755 if (do_header)
756 {
757 unsigned i;
758
9d9573d5 759 fputs (";; ", outf);
c4669594 760 fprintf (outf, "%sbasic block %d, loop depth %d",
391886c8 761 s_indent, bb->index, bb_loop_depth (bb));
a315c44c
SB
762 if (flags & TDF_DETAILS)
763 {
2eb712b4 764 struct function *fun = DECL_STRUCT_FUNCTION (current_function_decl);
3995f3a2
JH
765 if (bb->count.initialized_p ())
766 {
767 fputs (", count ", outf);
768 bb->count.dump (outf);
769 }
2eb712b4 770 if (maybe_hot_bb_p (fun, bb))
a315c44c 771 fputs (", maybe hot", outf);
2eb712b4 772 if (probably_never_executed_bb_p (fun, bb))
a315c44c
SB
773 fputs (", probably never executed", outf);
774 }
775 fputc ('\n', outf);
776
777 if (flags & TDF_DETAILS)
778 {
9d9573d5
ML
779 check_bb_profile (bb, outf, indent);
780 fputs (";; ", outf);
a315c44c
SB
781 fprintf (outf, "%s prev block ", s_indent);
782 if (bb->prev_bb)
783 fprintf (outf, "%d", bb->prev_bb->index);
784 else
785 fprintf (outf, "(nil)");
786 fprintf (outf, ", next block ");
787 if (bb->next_bb)
788 fprintf (outf, "%d", bb->next_bb->index);
789 else
790 fprintf (outf, "(nil)");
791
792 fputs (", flags:", outf);
c4669594 793 first = true;
a315c44c
SB
794 for (i = 0; i < n_bitnames; i++)
795 if (bb->flags & (1 << i))
796 {
797 if (first)
798 fputs (" (", outf);
799 else
800 fputs (", ", outf);
801 first = false;
802 fputs (bb_bitnames[i], outf);
803 }
804 if (!first)
805 fputc (')', outf);
c4669594 806 fputc ('\n', outf);
a315c44c 807 }
a315c44c 808
9d9573d5 809 fputs (";; ", outf);
a315c44c 810 fprintf (outf, "%s pred: ", s_indent);
c4669594 811 first = true;
a315c44c 812 FOR_EACH_EDGE (e, ei, bb->preds)
c4669594
SB
813 {
814 if (! first)
815 {
9d9573d5 816 fputs (";; ", outf);
c4669594
SB
817 fprintf (outf, "%s ", s_indent);
818 }
819 first = false;
820 dump_edge_info (outf, e, flags, 0);
821 fputc ('\n', outf);
822 }
1dd5907e
SB
823 if (first)
824 fputc ('\n', outf);
a315c44c
SB
825 }
826
827 if (do_footer)
828 {
9d9573d5 829 fputs (";; ", outf);
a315c44c 830 fprintf (outf, "%s succ: ", s_indent);
c4669594 831 first = true;
a315c44c 832 FOR_EACH_EDGE (e, ei, bb->succs)
c4669594
SB
833 {
834 if (! first)
835 {
9d9573d5 836 fputs (";; ", outf);
c4669594
SB
837 fprintf (outf, "%s ", s_indent);
838 }
839 first = false;
840 dump_edge_info (outf, e, flags, 1);
841 fputc ('\n', outf);
842 }
1dd5907e
SB
843 if (first)
844 fputc ('\n', outf);
a315c44c 845 }
6de9cd9a
DN
846}
847
848/* Dumps a brief description of cfg to FILE. */
849
850void
1a817418 851brief_dump_cfg (FILE *file, dump_flags_t flags)
6de9cd9a
DN
852{
853 basic_block bb;
854
11cd3bed 855 FOR_EACH_BB_FN (bb, cfun)
6de9cd9a 856 {
9d9573d5 857 dump_bb_info (file, bb, 0, flags & TDF_DETAILS, true, true);
6de9cd9a
DN
858 }
859}
15db5571 860
e7a74006 861/* An edge originally destinating BB of COUNT has been proved to
15db5571 862 leave the block by TAKEN_EDGE. Update profile of BB such that edge E can be
c22cacf3 863 redirected to destination of TAKEN_EDGE.
15db5571
JH
864
865 This function may leave the profile inconsistent in the case TAKEN_EDGE
e7a74006 866 frequency or count is believed to be lower than COUNT
d4a9b3a3 867 respectively. */
15db5571 868void
e7a74006 869update_bb_profile_for_threading (basic_block bb,
3995f3a2 870 profile_count count, edge taken_edge)
15db5571
JH
871{
872 edge c;
357067f2 873 profile_probability prob;
628f6a4e 874 edge_iterator ei;
15db5571 875
3995f3a2 876 if (bb->count < count)
2b151cb2
JH
877 {
878 if (dump_file)
879 fprintf (dump_file, "bb %i count became negative after threading",
880 bb->index);
2b151cb2 881 }
3995f3a2 882 bb->count -= count;
15db5571
JH
883
884 /* Compute the probability of TAKEN_EDGE being reached via threaded edge.
885 Watch for overflows. */
e7a74006
JH
886 if (bb->count.nonzero_p ())
887 prob = count.probability_in (bb->count);
15db5571 888 else
357067f2 889 prob = profile_probability::never ();
15db5571
JH
890 if (prob > taken_edge->probability)
891 {
892 if (dump_file)
357067f2
JH
893 {
894 fprintf (dump_file, "Jump threading proved probability of edge "
895 "%i->%i too small (it is ",
896 taken_edge->src->index, taken_edge->dest->index);
897 taken_edge->probability.dump (dump_file);
898 fprintf (dump_file, " should be ");
899 prob.dump (dump_file);
900 fprintf (dump_file, ")\n");
901 }
902 prob = taken_edge->probability.apply_scale (6, 8);
15db5571
JH
903 }
904
905 /* Now rescale the probabilities. */
906 taken_edge->probability -= prob;
357067f2
JH
907 prob = prob.invert ();
908 if (prob == profile_probability::never ())
15db5571
JH
909 {
910 if (dump_file)
e7a74006
JH
911 fprintf (dump_file, "Edge probabilities of bb %i has been reset, "
912 "count of block should end up being 0, it is non-zero\n",
913 bb->index);
357067f2 914 EDGE_SUCC (bb, 0)->probability = profile_probability::guessed_always ();
628f6a4e
BE
915 ei = ei_start (bb->succs);
916 ei_next (&ei);
917 for (; (c = ei_safe_edge (ei)); ei_next (&ei))
357067f2 918 c->probability = profile_probability::guessed_never ();
15db5571 919 }
357067f2 920 else if (!(prob == profile_probability::always ()))
763ea904 921 {
763ea904 922 FOR_EACH_EDGE (c, ei, bb->succs)
357067f2 923 c->probability /= prob;
763ea904 924 }
15db5571 925
41806d92 926 gcc_assert (bb == taken_edge->src);
15db5571 927}
33156717 928
3995f3a2
JH
929/* Multiply all frequencies of basic blocks in array BBS of length NBBS
930 by NUM/DEN, in profile_count arithmetic. More accurate than previous
931 function but considerably slower. */
932void
933scale_bbs_frequencies_profile_count (basic_block *bbs, int nbbs,
934 profile_count num, profile_count den)
935{
936 int i;
e7a74006
JH
937 if (num == profile_count::zero () || den.nonzero_p ())
938 for (i = 0; i < nbbs; i++)
3995f3a2 939 bbs[i]->count = bbs[i]->count.apply_scale (num, den);
3995f3a2
JH
940}
941
af2bbc51
JH
942/* Multiply all frequencies of basic blocks in array BBS of length NBBS
943 by NUM/DEN, in profile_count arithmetic. More accurate than previous
944 function but considerably slower. */
945void
946scale_bbs_frequencies (basic_block *bbs, int nbbs,
947 profile_probability p)
948{
949 int i;
af2bbc51
JH
950
951 for (i = 0; i < nbbs; i++)
e7a74006 952 bbs[i]->count = bbs[i]->count.apply_probability (p);
af2bbc51
JH
953}
954
703c8606 955/* Helper types for hash tables. */
6580ee77
JH
956
957struct htab_bb_copy_original_entry
958{
959 /* Block we are attaching info to. */
960 int index1;
961 /* Index of original or copy (depending on the hashtable) */
962 int index2;
963};
964
8d67ee55 965struct bb_copy_hasher : nofree_ptr_hash <htab_bb_copy_original_entry>
6580ee77 966{
67f58944
TS
967 static inline hashval_t hash (const htab_bb_copy_original_entry *);
968 static inline bool equal (const htab_bb_copy_original_entry *existing,
969 const htab_bb_copy_original_entry * candidate);
703c8606 970};
6580ee77 971
703c8606 972inline hashval_t
67f58944 973bb_copy_hasher::hash (const htab_bb_copy_original_entry *data)
703c8606 974{
6580ee77
JH
975 return data->index1;
976}
6580ee77 977
703c8606 978inline bool
67f58944
TS
979bb_copy_hasher::equal (const htab_bb_copy_original_entry *data,
980 const htab_bb_copy_original_entry *data2)
703c8606 981{
6580ee77
JH
982 return data->index1 == data2->index1;
983}
984
703c8606
LC
985/* Data structures used to maintain mapping between basic blocks and
986 copies. */
c203e8a7
TS
987static hash_table<bb_copy_hasher> *bb_original;
988static hash_table<bb_copy_hasher> *bb_copy;
703c8606
LC
989
990/* And between loops and copies. */
c203e8a7 991static hash_table<bb_copy_hasher> *loop_copy;
fb0b2914 992static object_allocator<htab_bb_copy_original_entry> *original_copy_bb_pool;
703c8606 993
f341de7b
KH
994/* Initialize the data structures to maintain mapping between blocks
995 and its copies. */
6580ee77
JH
996void
997initialize_original_copy_tables (void)
998{
fb0b2914 999 original_copy_bb_pool = new object_allocator<htab_bb_copy_original_entry>
fcb87c50 1000 ("original_copy");
c203e8a7
TS
1001 bb_original = new hash_table<bb_copy_hasher> (10);
1002 bb_copy = new hash_table<bb_copy_hasher> (10);
1003 loop_copy = new hash_table<bb_copy_hasher> (10);
6580ee77
JH
1004}
1005
d96004b8
BC
1006/* Reset the data structures to maintain mapping between blocks and
1007 its copies. */
1008
1009void
1010reset_original_copy_tables (void)
1011{
1012 gcc_assert (original_copy_bb_pool);
1013 bb_original->empty ();
1014 bb_copy->empty ();
1015 loop_copy->empty ();
1016}
1017
f341de7b
KH
1018/* Free the data structures to maintain mapping between blocks and
1019 its copies. */
6580ee77
JH
1020void
1021free_original_copy_tables (void)
1022{
1023 gcc_assert (original_copy_bb_pool);
c203e8a7
TS
1024 delete bb_copy;
1025 bb_copy = NULL;
1026 delete bb_original;
af711c23 1027 bb_original = NULL;
c203e8a7
TS
1028 delete loop_copy;
1029 loop_copy = NULL;
ac0539d7 1030 delete original_copy_bb_pool;
6580ee77
JH
1031 original_copy_bb_pool = NULL;
1032}
1033
c2e84327
DM
1034/* Return true iff we have had a call to initialize_original_copy_tables
1035 without a corresponding call to free_original_copy_tables. */
1036
1037bool
1038original_copy_tables_initialized_p (void)
1039{
1040 return original_copy_bb_pool != NULL;
1041}
1042
561e8a90
ZD
1043/* Removes the value associated with OBJ from table TAB. */
1044
1045static void
c203e8a7 1046copy_original_table_clear (hash_table<bb_copy_hasher> *tab, unsigned obj)
561e8a90 1047{
703c8606 1048 htab_bb_copy_original_entry **slot;
561e8a90
ZD
1049 struct htab_bb_copy_original_entry key, *elt;
1050
1051 if (!original_copy_bb_pool)
1052 return;
1053
1054 key.index1 = obj;
c203e8a7 1055 slot = tab->find_slot (&key, NO_INSERT);
561e8a90
ZD
1056 if (!slot)
1057 return;
1058
703c8606 1059 elt = *slot;
c203e8a7 1060 tab->clear_slot (slot);
ac0539d7 1061 original_copy_bb_pool->remove (elt);
561e8a90
ZD
1062}
1063
1064/* Sets the value associated with OBJ in table TAB to VAL.
1065 Do nothing when data structures are not initialized. */
1066
1067static void
c203e8a7 1068copy_original_table_set (hash_table<bb_copy_hasher> *tab,
703c8606 1069 unsigned obj, unsigned val)
561e8a90
ZD
1070{
1071 struct htab_bb_copy_original_entry **slot;
1072 struct htab_bb_copy_original_entry key;
1073
1074 if (!original_copy_bb_pool)
1075 return;
1076
1077 key.index1 = obj;
c203e8a7 1078 slot = tab->find_slot (&key, INSERT);
561e8a90
ZD
1079 if (!*slot)
1080 {
ac0539d7 1081 *slot = original_copy_bb_pool->allocate ();
561e8a90
ZD
1082 (*slot)->index1 = obj;
1083 }
1084 (*slot)->index2 = val;
1085}
1086
f341de7b
KH
1087/* Set original for basic block. Do nothing when data structures are not
1088 initialized so passes not needing this don't need to care. */
6580ee77
JH
1089void
1090set_bb_original (basic_block bb, basic_block original)
1091{
561e8a90 1092 copy_original_table_set (bb_original, bb->index, original->index);
6580ee77
JH
1093}
1094
1095/* Get the original basic block. */
1096basic_block
1097get_bb_original (basic_block bb)
1098{
1099 struct htab_bb_copy_original_entry *entry;
1100 struct htab_bb_copy_original_entry key;
1101
1102 gcc_assert (original_copy_bb_pool);
1103
1104 key.index1 = bb->index;
c203e8a7 1105 entry = bb_original->find (&key);
6580ee77 1106 if (entry)
06e28de2 1107 return BASIC_BLOCK_FOR_FN (cfun, entry->index2);
6580ee77
JH
1108 else
1109 return NULL;
1110}
1111
f341de7b
KH
1112/* Set copy for basic block. Do nothing when data structures are not
1113 initialized so passes not needing this don't need to care. */
6580ee77
JH
1114void
1115set_bb_copy (basic_block bb, basic_block copy)
1116{
561e8a90 1117 copy_original_table_set (bb_copy, bb->index, copy->index);
6580ee77
JH
1118}
1119
1120/* Get the copy of basic block. */
1121basic_block
1122get_bb_copy (basic_block bb)
1123{
1124 struct htab_bb_copy_original_entry *entry;
1125 struct htab_bb_copy_original_entry key;
1126
1127 gcc_assert (original_copy_bb_pool);
1128
1129 key.index1 = bb->index;
c203e8a7 1130 entry = bb_copy->find (&key);
6580ee77 1131 if (entry)
06e28de2 1132 return BASIC_BLOCK_FOR_FN (cfun, entry->index2);
6580ee77
JH
1133 else
1134 return NULL;
1135}
561e8a90
ZD
1136
1137/* Set copy for LOOP to COPY. Do nothing when data structures are not
1138 initialized so passes not needing this don't need to care. */
1139
1140void
1141set_loop_copy (struct loop *loop, struct loop *copy)
1142{
1143 if (!copy)
1144 copy_original_table_clear (loop_copy, loop->num);
1145 else
1146 copy_original_table_set (loop_copy, loop->num, copy->num);
1147}
1148
1149/* Get the copy of LOOP. */
1150
1151struct loop *
1152get_loop_copy (struct loop *loop)
1153{
1154 struct htab_bb_copy_original_entry *entry;
1155 struct htab_bb_copy_original_entry key;
1156
1157 gcc_assert (original_copy_bb_pool);
1158
1159 key.index1 = loop->num;
c203e8a7 1160 entry = loop_copy->find (&key);
561e8a90 1161 if (entry)
0fc822d0 1162 return get_loop (cfun, entry->index2);
561e8a90
ZD
1163 else
1164 return NULL;
1165}