1 /* Control flow graph manipulation code for GNU compiler.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains low level functions to manipulate the CFG and
21 analyze it. All other modules should not transform the data structure
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).
26 Available functionality:
27 - Initialization/deallocation
28 init_flow, clear_edges
29 - Low level basic block manipulation
30 alloc_block, expunge_block
32 make_edge, make_single_succ_edge, cached_make_edge, remove_edge
33 - Low level edge redirection (without updating instruction chain)
34 redirect_edge_succ, redirect_edge_succ_nodup, redirect_edge_pred
35 - Dumping and debugging
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
40 - Consistency checking
42 - Dumping and debugging
43 print_rtl_with_bb, dump_bb, debug_bb, debug_bb_n
45 TODO: Document these "Available functionality" functions in the files
51 #include "coretypes.h"
53 #include "hard-reg-set.h"
58 #include "cfgloop.h" /* FIXME: For struct loop. */
63 /* Called once at initialization time. */
66 init_flow (struct function
*the_fun
)
69 the_fun
->cfg
= ggc_cleared_alloc
<control_flow_graph
> ();
70 n_edges_for_fn (the_fun
) = 0;
71 the_fun
->cfg
->count_max
= profile_count::uninitialized ();
72 ENTRY_BLOCK_PTR_FOR_FN (the_fun
)
74 ENTRY_BLOCK_PTR_FOR_FN (the_fun
)->index
= ENTRY_BLOCK
;
75 EXIT_BLOCK_PTR_FOR_FN (the_fun
)
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
);
84 /* Helper function for remove_edge and clear_edges. Frees edge structure
85 without actually removing it from the pred/succ arrays. */
88 free_edge (function
*fn
, edge e
)
90 n_edges_for_fn (fn
)--;
94 /* Free the memory associated with the edge structures. */
97 clear_edges (struct function
*fn
)
103 FOR_EACH_BB_FN (bb
, fn
)
105 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
107 vec_safe_truncate (bb
->succs
, 0);
108 vec_safe_truncate (bb
->preds
, 0);
111 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR_FOR_FN (fn
)->succs
)
113 vec_safe_truncate (EXIT_BLOCK_PTR_FOR_FN (fn
)->preds
, 0);
114 vec_safe_truncate (ENTRY_BLOCK_PTR_FOR_FN (fn
)->succs
, 0);
116 gcc_assert (!n_edges_for_fn (fn
));
119 /* Allocate memory for basic_block. */
125 bb
= ggc_cleared_alloc
<basic_block_def
> ();
126 bb
->count
= profile_count::uninitialized ();
130 /* Link block B to chain after AFTER. */
132 link_block (basic_block b
, basic_block after
)
134 b
->next_bb
= after
->next_bb
;
137 b
->next_bb
->prev_bb
= b
;
140 /* Unlink block B from chain. */
142 unlink_block (basic_block b
)
144 b
->next_bb
->prev_bb
= b
->prev_bb
;
145 b
->prev_bb
->next_bb
= b
->next_bb
;
150 /* Sequentially order blocks and compact the arrays. */
152 compact_blocks (void)
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
));
160 df_compact_blocks ();
165 i
= NUM_FIXED_BLOCKS
;
166 FOR_EACH_BB_FN (bb
, cfun
)
168 SET_BASIC_BLOCK_FOR_FN (cfun
, i
, bb
);
172 gcc_assert (i
== n_basic_blocks_for_fn (cfun
));
174 for (; i
< last_basic_block_for_fn (cfun
); i
++)
175 SET_BASIC_BLOCK_FOR_FN (cfun
, i
, NULL
);
177 last_basic_block_for_fn (cfun
) = n_basic_blocks_for_fn (cfun
);
180 /* Remove block B from the basic block array. */
183 expunge_block (basic_block b
)
186 SET_BASIC_BLOCK_FOR_FN (cfun
, b
->index
, NULL
);
187 n_basic_blocks_for_fn (cfun
)--;
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. */
195 /* Connect E to E->src. */
200 vec_safe_push (e
->src
->succs
, e
);
201 df_mark_solutions_dirty ();
204 /* Connect E to E->dest. */
207 connect_dest (edge e
)
209 basic_block dest
= e
->dest
;
210 vec_safe_push (dest
->preds
, e
);
211 e
->dest_idx
= EDGE_COUNT (dest
->preds
) - 1;
212 df_mark_solutions_dirty ();
215 /* Disconnect edge E from E->src. */
218 disconnect_src (edge e
)
220 basic_block src
= e
->src
;
224 for (ei
= ei_start (src
->succs
); (tmp
= ei_safe_edge (ei
)); )
228 src
->succs
->unordered_remove (ei
.index
);
229 df_mark_solutions_dirty ();
239 /* Disconnect edge E from E->dest. */
242 disconnect_dest (edge e
)
244 basic_block dest
= e
->dest
;
245 unsigned int dest_idx
= e
->dest_idx
;
247 dest
->preds
->unordered_remove (dest_idx
);
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
;
253 df_mark_solutions_dirty ();
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. */
261 unchecked_make_edge (basic_block src
, basic_block dst
, int flags
)
264 e
= ggc_cleared_alloc
<edge_def
> ();
265 n_edges_for_fn (cfun
)++;
267 e
->probability
= profile_probability::uninitialized ();
275 execute_on_growing_pred (e
);
279 /* Create an edge connecting SRC and DST with FLAGS optionally using
280 edge cache CACHE. Return the new edge, NULL if already exist. */
283 cached_make_edge (sbitmap edge_cache
, basic_block src
, basic_block dst
, int flags
)
285 if (edge_cache
== NULL
286 || src
== ENTRY_BLOCK_PTR_FOR_FN (cfun
)
287 || dst
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
288 return make_edge (src
, dst
, flags
);
290 /* Does the requested edge already exist? */
291 if (! bitmap_bit_p (edge_cache
, dst
->index
))
293 /* The edge does not exist. Create one and update the
295 bitmap_set_bit (edge_cache
, dst
->index
);
296 return unchecked_make_edge (src
, dst
, flags
);
299 /* At this point, we know that the requested edge exists. Adjust
300 flags if necessary. */
303 edge e
= find_edge (src
, dst
);
310 /* Create an edge connecting SRC and DEST with flags FLAGS. Return newly
311 created edge or NULL if already exist. */
314 make_edge (basic_block src
, basic_block dest
, int flags
)
316 edge e
= find_edge (src
, dest
);
318 /* Make sure we don't add duplicate edges. */
325 return unchecked_make_edge (src
, dest
, flags
);
328 /* Create an edge connecting SRC to DEST and set probability by knowing
329 that it is the single edge leaving SRC. */
332 make_single_succ_edge (basic_block src
, basic_block dest
, int flags
)
334 edge e
= make_edge (src
, dest
, flags
);
336 e
->probability
= profile_probability::always ();
340 /* This function will remove an edge from the flow graph. */
343 remove_edge_raw (edge e
)
345 remove_predictions_associated_with_edge (e
);
346 execute_on_shrinking_pred (e
);
354 /* Redirect an edge's successor from one block to another. */
357 redirect_edge_succ (edge e
, basic_block new_succ
)
359 execute_on_shrinking_pred (e
);
365 /* Reconnect the edge to the new successor block. */
368 execute_on_growing_pred (e
);
371 /* Redirect an edge's predecessor from one block to another. */
374 redirect_edge_pred (edge e
, basic_block new_pred
)
380 /* Reconnect the edge to the new predecessor block. */
384 /* Clear all basic block flags that do not have to be preserved. */
386 clear_bb_flags (void)
390 FOR_ALL_BB_FN (bb
, cfun
)
391 bb
->flags
&= BB_FLAGS_TO_PRESERVE
;
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
400 check_bb_profile (basic_block bb
, FILE * file
, int indent
)
404 struct function
*fun
= DECL_STRUCT_FUNCTION (current_function_decl
);
405 char *s_indent
= (char *) alloca ((size_t) indent
+ 1);
406 memset ((void *) s_indent
, ' ', (size_t) indent
);
407 s_indent
[indent
] = '\0';
409 if (profile_status_for_fn (fun
) == PROFILE_ABSENT
)
412 if (bb
!= EXIT_BLOCK_PTR_FOR_FN (fun
))
415 profile_probability sum
= profile_probability::never ();
418 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
420 if (!(e
->flags
& (EDGE_EH
| EDGE_FAKE
)))
422 sum
+= e
->probability
;
423 if (e
->probability
.initialized_p ())
424 isum
+= e
->probability
.to_reg_br_prob_base ();
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. */
431 if (sum
.differs_from_p (profile_probability::always ()))
434 ";; %sInvalid sum of outgoing probabilities ",
437 fprintf (file
, "\n");
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)
444 ";; %sInvalid sum of outgoing probabilities %.1f%%\n",
445 s_indent
, isum
* 100.0 / REG_BR_PROB_BASE
);
449 if (bb
!= ENTRY_BLOCK_PTR_FOR_FN (fun
))
451 profile_count sum
= profile_count::zero ();
452 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
454 if (sum
.differs_from_p (bb
->count
))
456 fprintf (file
, ";; %sInvalid sum of incoming counts ",
459 fprintf (file
, ", should be ");
460 bb
->count
.dump (file
);
461 fprintf (file
, "\n");
464 if (BB_PARTITION (bb
) == BB_COLD_PARTITION
)
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
))
469 fprintf (file
, ";; %sBlock in cold partition with hot count\n",
471 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
473 if (!probably_never_executed_edge_p (fun
, e
))
475 ";; %sBlock in cold partition with incoming hot edge\n",
482 dump_edge_info (FILE *file
, edge e
, dump_flags_t flags
, int do_succ
)
484 basic_block side
= (do_succ
? e
->dest
: e
->src
);
485 bool do_details
= false;
487 if ((flags
& TDF_DETAILS
) != 0
488 && (flags
& TDF_SLIM
) == 0)
491 if (side
->index
== ENTRY_BLOCK
)
492 fputs (" ENTRY", file
);
493 else if (side
->index
== EXIT_BLOCK
)
494 fputs (" EXIT", file
);
496 fprintf (file
, " %d", side
->index
);
498 if (e
->probability
.initialized_p () && do_details
)
500 fprintf (file
, " [");
501 e
->probability
.dump (file
);
502 fprintf (file
, "] ");
505 if (e
->count ().initialized_p () && do_details
)
507 fputs (" count:", file
);
508 e
->count ().dump (file
);
511 if (e
->flags
&& do_details
)
513 static const char * const bitnames
[] =
515 #define DEF_EDGE_FLAG(NAME,IDX) #NAME ,
516 #include "cfg-flags.def"
521 int i
, flags
= e
->flags
;
523 gcc_assert (e
->flags
<= EDGE_ALL_FLAGS
);
525 for (i
= 0; flags
; i
++)
526 if (flags
& (1 << i
))
532 fputs (bitnames
[i
], file
);
541 debug (edge_def
&ref
)
543 /* FIXME (crowl): Is this desireable? */
544 dump_edge_info (stderr
, &ref
, 0, false);
545 dump_edge_info (stderr
, &ref
, 0, true);
549 debug (edge_def
*ptr
)
554 fprintf (stderr
, "<nil>\n");
560 fprintf (stderr
, "<edge 0x%p (%d -> %d)>", (void *) e
,
561 e
->src
->index
, e
->dest
->index
);
564 DEFINE_DEBUG_VEC (edge
)
565 DEFINE_DEBUG_HASH_SET (edge
)
567 /* Simple routines to easily allocate AUX fields of basic blocks. */
569 static struct obstack block_aux_obstack
;
570 static void *first_block_aux_obj
= 0;
571 static struct obstack edge_aux_obstack
;
572 static void *first_edge_aux_obj
= 0;
574 /* Allocate a memory block of SIZE as BB->aux. The obstack must
575 be first initialized by alloc_aux_for_blocks. */
578 alloc_aux_for_block (basic_block bb
, int size
)
580 /* Verify that aux field is clear. */
581 gcc_assert (!bb
->aux
&& first_block_aux_obj
);
582 bb
->aux
= obstack_alloc (&block_aux_obstack
, size
);
583 memset (bb
->aux
, 0, size
);
586 /* Initialize the block_aux_obstack and if SIZE is nonzero, call
587 alloc_aux_for_block for each basic block. */
590 alloc_aux_for_blocks (int size
)
592 static int initialized
;
596 gcc_obstack_init (&block_aux_obstack
);
600 /* Check whether AUX data are still allocated. */
601 gcc_assert (!first_block_aux_obj
);
603 first_block_aux_obj
= obstack_alloc (&block_aux_obstack
, 0);
608 FOR_ALL_BB_FN (bb
, cfun
)
609 alloc_aux_for_block (bb
, size
);
613 /* Clear AUX pointers of all blocks. */
616 clear_aux_for_blocks (void)
620 FOR_ALL_BB_FN (bb
, cfun
)
624 /* Free data allocated in block_aux_obstack and clear AUX pointers
628 free_aux_for_blocks (void)
630 gcc_assert (first_block_aux_obj
);
631 obstack_free (&block_aux_obstack
, first_block_aux_obj
);
632 first_block_aux_obj
= NULL
;
634 clear_aux_for_blocks ();
637 /* Allocate a memory edge of SIZE as E->aux. The obstack must
638 be first initialized by alloc_aux_for_edges. */
641 alloc_aux_for_edge (edge e
, int size
)
643 /* Verify that aux field is clear. */
644 gcc_assert (!e
->aux
&& first_edge_aux_obj
);
645 e
->aux
= obstack_alloc (&edge_aux_obstack
, size
);
646 memset (e
->aux
, 0, size
);
649 /* Initialize the edge_aux_obstack and if SIZE is nonzero, call
650 alloc_aux_for_edge for each basic edge. */
653 alloc_aux_for_edges (int size
)
655 static int initialized
;
659 gcc_obstack_init (&edge_aux_obstack
);
663 /* Check whether AUX data are still allocated. */
664 gcc_assert (!first_edge_aux_obj
);
666 first_edge_aux_obj
= obstack_alloc (&edge_aux_obstack
, 0);
671 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
672 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
677 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
678 alloc_aux_for_edge (e
, size
);
683 /* Clear AUX pointers of all edges. */
686 clear_aux_for_edges (void)
691 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
692 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
695 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
700 /* Free data allocated in edge_aux_obstack and clear AUX pointers
704 free_aux_for_edges (void)
706 gcc_assert (first_edge_aux_obj
);
707 obstack_free (&edge_aux_obstack
, first_edge_aux_obj
);
708 first_edge_aux_obj
= NULL
;
710 clear_aux_for_edges ();
714 debug_bb (basic_block bb
)
716 dump_bb (stderr
, bb
, 0, dump_flags
);
719 DEBUG_FUNCTION basic_block
722 basic_block bb
= BASIC_BLOCK_FOR_FN (cfun
, n
);
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. */
735 dump_bb_info (FILE *outf
, basic_block bb
, int indent
, dump_flags_t flags
,
736 bool do_header
, bool do_footer
)
740 static const char * const bb_bitnames
[] =
742 #define DEF_BASIC_BLOCK_FLAG(NAME,IDX) #NAME ,
743 #include "cfg-flags.def"
745 #undef DEF_BASIC_BLOCK_FLAG
747 const unsigned n_bitnames
= sizeof (bb_bitnames
) / sizeof (char *);
749 char *s_indent
= (char *) alloca ((size_t) indent
+ 1);
750 memset ((void *) s_indent
, ' ', (size_t) indent
);
751 s_indent
[indent
] = '\0';
753 gcc_assert (bb
->flags
<= BB_ALL_FLAGS
);
760 fprintf (outf
, "%sbasic block %d, loop depth %d",
761 s_indent
, bb
->index
, bb_loop_depth (bb
));
762 if (flags
& TDF_DETAILS
)
764 struct function
*fun
= DECL_STRUCT_FUNCTION (current_function_decl
);
765 if (bb
->count
.initialized_p ())
767 fputs (", count ", outf
);
768 bb
->count
.dump (outf
);
770 if (maybe_hot_bb_p (fun
, bb
))
771 fputs (", maybe hot", outf
);
772 if (probably_never_executed_bb_p (fun
, bb
))
773 fputs (", probably never executed", outf
);
777 if (flags
& TDF_DETAILS
)
779 check_bb_profile (bb
, outf
, indent
);
781 fprintf (outf
, "%s prev block ", s_indent
);
783 fprintf (outf
, "%d", bb
->prev_bb
->index
);
785 fprintf (outf
, "(nil)");
786 fprintf (outf
, ", next block ");
788 fprintf (outf
, "%d", bb
->next_bb
->index
);
790 fprintf (outf
, "(nil)");
792 fputs (", flags:", outf
);
794 for (i
= 0; i
< n_bitnames
; i
++)
795 if (bb
->flags
& (1 << i
))
802 fputs (bb_bitnames
[i
], outf
);
810 fprintf (outf
, "%s pred: ", s_indent
);
812 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
817 fprintf (outf
, "%s ", s_indent
);
820 dump_edge_info (outf
, e
, flags
, 0);
830 fprintf (outf
, "%s succ: ", s_indent
);
832 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
837 fprintf (outf
, "%s ", s_indent
);
840 dump_edge_info (outf
, e
, flags
, 1);
848 /* Dumps a brief description of cfg to FILE. */
851 brief_dump_cfg (FILE *file
, dump_flags_t flags
)
855 FOR_EACH_BB_FN (bb
, cfun
)
857 dump_bb_info (file
, bb
, 0, flags
& TDF_DETAILS
, true, true);
861 /* An edge originally destinating BB of COUNT has been proved to
862 leave the block by TAKEN_EDGE. Update profile of BB such that edge E can be
863 redirected to destination of TAKEN_EDGE.
865 This function may leave the profile inconsistent in the case TAKEN_EDGE
866 frequency or count is believed to be lower than COUNT
869 update_bb_profile_for_threading (basic_block bb
,
870 profile_count count
, edge taken_edge
)
873 profile_probability prob
;
876 if (bb
->count
< count
)
879 fprintf (dump_file
, "bb %i count became negative after threading",
884 /* Compute the probability of TAKEN_EDGE being reached via threaded edge.
885 Watch for overflows. */
886 if (bb
->count
.nonzero_p ())
887 prob
= count
.probability_in (bb
->count
);
889 prob
= profile_probability::never ();
890 if (prob
> taken_edge
->probability
)
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");
902 prob
= taken_edge
->probability
.apply_scale (6, 8);
905 /* Now rescale the probabilities. */
906 taken_edge
->probability
-= prob
;
907 prob
= prob
.invert ();
908 if (prob
== profile_probability::never ())
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",
914 EDGE_SUCC (bb
, 0)->probability
= profile_probability::guessed_always ();
915 ei
= ei_start (bb
->succs
);
917 for (; (c
= ei_safe_edge (ei
)); ei_next (&ei
))
918 c
->probability
= profile_probability::guessed_never ();
920 else if (!(prob
== profile_probability::always ()))
922 FOR_EACH_EDGE (c
, ei
, bb
->succs
)
923 c
->probability
/= prob
;
926 gcc_assert (bb
== taken_edge
->src
);
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. */
933 scale_bbs_frequencies_profile_count (basic_block
*bbs
, int nbbs
,
934 profile_count num
, profile_count den
)
937 if (num
== profile_count::zero () || den
.nonzero_p ())
938 for (i
= 0; i
< nbbs
; i
++)
939 bbs
[i
]->count
= bbs
[i
]->count
.apply_scale (num
, den
);
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. */
946 scale_bbs_frequencies (basic_block
*bbs
, int nbbs
,
947 profile_probability p
)
951 for (i
= 0; i
< nbbs
; i
++)
952 bbs
[i
]->count
= bbs
[i
]->count
.apply_probability (p
);
955 /* Helper types for hash tables. */
957 struct htab_bb_copy_original_entry
959 /* Block we are attaching info to. */
961 /* Index of original or copy (depending on the hashtable) */
965 struct bb_copy_hasher
: nofree_ptr_hash
<htab_bb_copy_original_entry
>
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
);
973 bb_copy_hasher::hash (const htab_bb_copy_original_entry
*data
)
979 bb_copy_hasher::equal (const htab_bb_copy_original_entry
*data
,
980 const htab_bb_copy_original_entry
*data2
)
982 return data
->index1
== data2
->index1
;
985 /* Data structures used to maintain mapping between basic blocks and
987 static hash_table
<bb_copy_hasher
> *bb_original
;
988 static hash_table
<bb_copy_hasher
> *bb_copy
;
990 /* And between loops and copies. */
991 static hash_table
<bb_copy_hasher
> *loop_copy
;
992 static object_allocator
<htab_bb_copy_original_entry
> *original_copy_bb_pool
;
994 /* Initialize the data structures to maintain mapping between blocks
997 initialize_original_copy_tables (void)
999 original_copy_bb_pool
= new object_allocator
<htab_bb_copy_original_entry
>
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);
1006 /* Reset the data structures to maintain mapping between blocks and
1010 reset_original_copy_tables (void)
1012 gcc_assert (original_copy_bb_pool
);
1013 bb_original
->empty ();
1015 loop_copy
->empty ();
1018 /* Free the data structures to maintain mapping between blocks and
1021 free_original_copy_tables (void)
1023 gcc_assert (original_copy_bb_pool
);
1030 delete original_copy_bb_pool
;
1031 original_copy_bb_pool
= NULL
;
1034 /* Return true iff we have had a call to initialize_original_copy_tables
1035 without a corresponding call to free_original_copy_tables. */
1038 original_copy_tables_initialized_p (void)
1040 return original_copy_bb_pool
!= NULL
;
1043 /* Removes the value associated with OBJ from table TAB. */
1046 copy_original_table_clear (hash_table
<bb_copy_hasher
> *tab
, unsigned obj
)
1048 htab_bb_copy_original_entry
**slot
;
1049 struct htab_bb_copy_original_entry key
, *elt
;
1051 if (!original_copy_bb_pool
)
1055 slot
= tab
->find_slot (&key
, NO_INSERT
);
1060 tab
->clear_slot (slot
);
1061 original_copy_bb_pool
->remove (elt
);
1064 /* Sets the value associated with OBJ in table TAB to VAL.
1065 Do nothing when data structures are not initialized. */
1068 copy_original_table_set (hash_table
<bb_copy_hasher
> *tab
,
1069 unsigned obj
, unsigned val
)
1071 struct htab_bb_copy_original_entry
**slot
;
1072 struct htab_bb_copy_original_entry key
;
1074 if (!original_copy_bb_pool
)
1078 slot
= tab
->find_slot (&key
, INSERT
);
1081 *slot
= original_copy_bb_pool
->allocate ();
1082 (*slot
)->index1
= obj
;
1084 (*slot
)->index2
= val
;
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. */
1090 set_bb_original (basic_block bb
, basic_block original
)
1092 copy_original_table_set (bb_original
, bb
->index
, original
->index
);
1095 /* Get the original basic block. */
1097 get_bb_original (basic_block bb
)
1099 struct htab_bb_copy_original_entry
*entry
;
1100 struct htab_bb_copy_original_entry key
;
1102 gcc_assert (original_copy_bb_pool
);
1104 key
.index1
= bb
->index
;
1105 entry
= bb_original
->find (&key
);
1107 return BASIC_BLOCK_FOR_FN (cfun
, entry
->index2
);
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. */
1115 set_bb_copy (basic_block bb
, basic_block copy
)
1117 copy_original_table_set (bb_copy
, bb
->index
, copy
->index
);
1120 /* Get the copy of basic block. */
1122 get_bb_copy (basic_block bb
)
1124 struct htab_bb_copy_original_entry
*entry
;
1125 struct htab_bb_copy_original_entry key
;
1127 gcc_assert (original_copy_bb_pool
);
1129 key
.index1
= bb
->index
;
1130 entry
= bb_copy
->find (&key
);
1132 return BASIC_BLOCK_FOR_FN (cfun
, entry
->index2
);
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. */
1141 set_loop_copy (struct loop
*loop
, struct loop
*copy
)
1144 copy_original_table_clear (loop_copy
, loop
->num
);
1146 copy_original_table_set (loop_copy
, loop
->num
, copy
->num
);
1149 /* Get the copy of LOOP. */
1152 get_loop_copy (struct loop
*loop
)
1154 struct htab_bb_copy_original_entry
*entry
;
1155 struct htab_bb_copy_original_entry key
;
1157 gcc_assert (original_copy_bb_pool
);
1159 key
.index1
= loop
->num
;
1160 entry
= loop_copy
->find (&key
);
1162 return get_loop (cfun
, entry
->index2
);