1 /* Calculate branch probabilities, and basic block execution counts.
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
5 based on some ideas from Dain Samples of UC Berkeley.
6 Further mangling by Bob Manson, Cygnus Support.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 2, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING. If not, write to the Free
22 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 /* Generate basic block profile instrumentation and auxiliary files.
26 Profile generation is optimized, so that not all arcs in the basic
27 block graph need instrumenting. First, the BB graph is closed with
28 one entry (function start), and one exit (function exit). Any
29 ABNORMAL_EDGE cannot be instrumented (because there is no control
30 path to place the code). We close the graph by inserting fake
31 EDGE_FAKE edges to the EXIT_BLOCK, from the sources of abnormal
32 edges that do not go to the exit_block. We ignore such abnormal
33 edges. Naturally these fake edges are never directly traversed,
34 and so *cannot* be directly instrumented. Some other graph
35 massaging is done. To optimize the instrumentation we generate the
36 BB minimal span tree, only edges that are not on the span tree
37 (plus the entry point) need instrumenting. From that information
38 all other edge counts can be deduced. By construction all fake
39 edges must be on the spanning tree. We also attempt to place
40 EDGE_CRITICAL edges on the spanning tree.
42 The auxiliary file generated is <dumpbase>.bbg. The format is
43 described in full in gcov-io.h. */
45 /* ??? Register allocation should use basic block execution counts to
46 give preference to the most commonly executed blocks. */
48 /* ??? Should calculate branch probabilities before instrumenting code, since
49 then we can use arc counts to help decide which arcs to instrument. */
53 #include "coretypes.h"
64 /* Additional information about the edges we need. */
66 unsigned int count_valid
: 1;
68 /* Is on the spanning tree. */
69 unsigned int on_tree
: 1;
71 /* Pretend this edge does not exist (it is abnormal and we've
72 inserted a fake to compensate). */
73 unsigned int ignore
: 1;
77 unsigned int count_valid
: 1;
79 /* Number of successor and predecessor edges. */
84 #define EDGE_INFO(e) ((struct edge_info *) (e)->aux)
85 #define BB_INFO(b) ((struct bb_info *) (b)->aux)
87 /* Keep all basic block indexes nonnegative in the gcov output. Index 0
88 is used for entry block, last block exit block. */
89 #define BB_TO_GCOV_INDEX(bb) ((bb) == ENTRY_BLOCK_PTR ? 0 \
90 : ((bb) == EXIT_BLOCK_PTR \
91 ? last_basic_block + 1 : (bb)->index + 1))
93 /* Counter summary from the last set of coverage counts read. */
95 const struct gcov_ctr_summary
*profile_info
;
97 /* Collect statistics on the performance of this pass for the entire source
100 static int total_num_blocks
;
101 static int total_num_edges
;
102 static int total_num_edges_ignored
;
103 static int total_num_edges_instrumented
;
104 static int total_num_blocks_created
;
105 static int total_num_passes
;
106 static int total_num_times_called
;
107 static int total_hist_br_prob
[20];
108 static int total_num_never_executed
;
109 static int total_num_branches
;
111 /* Forward declarations. */
112 static void find_spanning_tree
PARAMS ((struct edge_list
*));
113 static rtx gen_edge_profiler
PARAMS ((int));
114 static void instrument_edges
PARAMS ((struct edge_list
*));
115 static void compute_branch_probabilities
PARAMS ((void));
116 static gcov_type
* get_exec_counts
PARAMS ((void));
117 static basic_block find_group
PARAMS ((basic_block
));
118 static void union_groups
PARAMS ((basic_block
, basic_block
));
121 /* Add edge instrumentation code to the entire insn chain.
123 F is the first insn of the chain.
124 NUM_BLOCKS is the number of basic blocks found in F. */
127 instrument_edges (el
)
128 struct edge_list
*el
;
130 int num_instr_edges
= 0;
131 int num_edges
= NUM_EDGES (el
);
133 remove_fake_edges ();
135 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
140 struct edge_info
*inf
= EDGE_INFO (e
);
141 if (!inf
->ignore
&& !inf
->on_tree
)
143 if (e
->flags
& EDGE_ABNORMAL
)
146 fprintf (rtl_dump_file
, "Edge %d to %d instrumented%s\n",
147 e
->src
->index
, e
->dest
->index
,
148 EDGE_CRITICAL_P (e
) ? " (and split)" : "");
149 insert_insn_on_edge (
150 gen_edge_profiler (num_instr_edges
++), e
);
151 rebuild_jump_labels (e
->insns
);
157 total_num_blocks_created
+= num_edges
;
159 fprintf (rtl_dump_file
, "%d edges instrumented\n", num_instr_edges
);
163 /* Computes hybrid profile for all matching entries in da_file.
164 Sets max_counter_in_program as a side effect. */
169 unsigned num_edges
= 0;
173 /* Count the edges to be (possibly) instrumented. */
174 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
177 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
178 if (!EDGE_INFO (e
)->ignore
&& !EDGE_INFO (e
)->on_tree
)
182 counts
= get_coverage_counts (GCOV_COUNTER_ARCS
, num_edges
, &profile_info
);
186 if (rtl_dump_file
&& profile_info
)
187 fprintf(rtl_dump_file
, "Merged %u profiles with maximal count %u.\n",
188 profile_info
->runs
, (unsigned) profile_info
->sum_max
);
194 /* Compute the branch probabilities for the various branches.
195 Annotate them accordingly. */
198 compute_branch_probabilities ()
205 int hist_br_prob
[20];
206 int num_never_executed
;
208 gcov_type
*exec_counts
= get_exec_counts ();
209 int exec_counts_pos
= 0;
211 /* Attach extra info block to each bb. */
213 alloc_aux_for_blocks (sizeof (struct bb_info
));
214 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
218 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
219 if (!EDGE_INFO (e
)->ignore
)
220 BB_INFO (bb
)->succ_count
++;
221 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
222 if (!EDGE_INFO (e
)->ignore
)
223 BB_INFO (bb
)->pred_count
++;
226 /* Avoid predicting entry on exit nodes. */
227 BB_INFO (EXIT_BLOCK_PTR
)->succ_count
= 2;
228 BB_INFO (ENTRY_BLOCK_PTR
)->pred_count
= 2;
230 /* For each edge not on the spanning tree, set its execution count from
233 /* The first count in the .da file is the number of times that the function
234 was entered. This is the exec_count for block zero. */
236 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
239 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
240 if (!EDGE_INFO (e
)->ignore
&& !EDGE_INFO (e
)->on_tree
)
245 e
->count
= exec_counts
[exec_counts_pos
++];
250 EDGE_INFO (e
)->count_valid
= 1;
251 BB_INFO (bb
)->succ_count
--;
252 BB_INFO (e
->dest
)->pred_count
--;
255 fprintf (rtl_dump_file
, "\nRead edge from %i to %i, count:",
256 bb
->index
, e
->dest
->index
);
257 fprintf (rtl_dump_file
, HOST_WIDEST_INT_PRINT_DEC
,
258 (HOST_WIDEST_INT
) e
->count
);
264 fprintf (rtl_dump_file
, "\n%d edge counts read\n", num_edges
);
266 /* For every block in the file,
267 - if every exit/entrance edge has a known count, then set the block count
268 - if the block count is known, and every exit/entrance edge but one has
269 a known execution count, then set the count of the remaining edge
271 As edge counts are set, decrement the succ/pred count, but don't delete
272 the edge, that way we can easily tell when all edges are known, or only
273 one edge is unknown. */
275 /* The order that the basic blocks are iterated through is important.
276 Since the code that finds spanning trees starts with block 0, low numbered
277 edges are put on the spanning tree in preference to high numbered edges.
278 Hence, most instrumented edges are at the end. Graph solving works much
279 faster if we propagate numbers from the end to the start.
281 This takes an average of slightly more than 3 passes. */
289 FOR_BB_BETWEEN (bb
, EXIT_BLOCK_PTR
, NULL
, prev_bb
)
291 struct bb_info
*bi
= BB_INFO (bb
);
292 if (! bi
->count_valid
)
294 if (bi
->succ_count
== 0)
299 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
305 else if (bi
->pred_count
== 0)
310 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
319 if (bi
->succ_count
== 1)
324 /* One of the counts will be invalid, but it is zero,
325 so adding it in also doesn't hurt. */
326 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
329 /* Seedgeh for the invalid edge, and set its count. */
330 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
331 if (! EDGE_INFO (e
)->count_valid
&& ! EDGE_INFO (e
)->ignore
)
334 /* Calculate count for remaining edge by conservation. */
335 total
= bb
->count
- total
;
339 EDGE_INFO (e
)->count_valid
= 1;
343 BB_INFO (e
->dest
)->pred_count
--;
346 if (bi
->pred_count
== 1)
351 /* One of the counts will be invalid, but it is zero,
352 so adding it in also doesn't hurt. */
353 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
356 /* Seedgeh for the invalid edge, and set its count. */
357 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
358 if (! EDGE_INFO (e
)->count_valid
&& ! EDGE_INFO (e
)->ignore
)
361 /* Calculate count for remaining edge by conservation. */
362 total
= bb
->count
- total
+ e
->count
;
366 EDGE_INFO (e
)->count_valid
= 1;
370 BB_INFO (e
->src
)->succ_count
--;
377 dump_flow_info (rtl_dump_file
);
379 total_num_passes
+= passes
;
381 fprintf (rtl_dump_file
, "Graph solving took %d passes.\n\n", passes
);
383 /* If the graph has been correctly solved, every block will have a
384 succ and pred count of zero. */
387 if (BB_INFO (bb
)->succ_count
|| BB_INFO (bb
)->pred_count
)
391 /* For every edge, calculate its branch probability and add a reg_note
392 to the branch insn to indicate this. */
394 for (i
= 0; i
< 20; i
++)
396 num_never_executed
= 0;
399 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
406 error ("corrupted profile info: number of iterations for basic block %d thought to be %i",
407 bb
->index
, (int)bb
->count
);
410 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
412 /* Function may return twice in the cased the called fucntion is
413 setjmp or calls fork, but we can't represent this by extra
414 edge from the entry, since extra edge from the exit is
415 already present. We get negative frequency from the entry
418 && e
->dest
== EXIT_BLOCK_PTR
)
419 || (e
->count
> bb
->count
420 && e
->dest
!= EXIT_BLOCK_PTR
))
424 while (GET_CODE (insn
) != CALL_INSN
426 && keep_with_call_p (insn
))
427 insn
= PREV_INSN (insn
);
428 if (GET_CODE (insn
) == CALL_INSN
)
429 e
->count
= e
->count
< 0 ? 0 : bb
->count
;
431 if (e
->count
< 0 || e
->count
> bb
->count
)
433 error ("corrupted profile info: number of executions for edge %d-%d thought to be %i",
434 e
->src
->index
, e
->dest
->index
,
436 e
->count
= bb
->count
/ 2;
441 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
442 e
->probability
= (e
->count
* REG_BR_PROB_BASE
+ bb
->count
/ 2) / bb
->count
;
444 && any_condjump_p (bb
->end
)
445 && bb
->succ
->succ_next
)
451 /* Find the branch edge. It is possible that we do have fake
453 for (e
= bb
->succ
; e
->flags
& (EDGE_FAKE
| EDGE_FALLTHRU
);
455 continue; /* Loop body has been intentionally left blank. */
457 prob
= e
->probability
;
458 index
= prob
* 20 / REG_BR_PROB_BASE
;
462 hist_br_prob
[index
]++;
464 note
= find_reg_note (bb
->end
, REG_BR_PROB
, 0);
465 /* There may be already note put by some other pass, such
466 as builtin_expect expander. */
468 XEXP (note
, 0) = GEN_INT (prob
);
471 = gen_rtx_EXPR_LIST (REG_BR_PROB
, GEN_INT (prob
),
472 REG_NOTES (bb
->end
));
476 /* Otherwise distribute the probabilities evenly so we get sane
477 sum. Use simple heuristics that if there are normal edges,
478 give all abnormals frequency of 0, otherwise distribute the
479 frequency over abnormals (this is the case of noreturn
485 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
486 if (!(e
->flags
& (EDGE_COMPLEX
| EDGE_FAKE
)))
490 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
491 if (!(e
->flags
& (EDGE_COMPLEX
| EDGE_FAKE
)))
492 e
->probability
= REG_BR_PROB_BASE
/ total
;
498 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
500 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
501 e
->probability
= REG_BR_PROB_BASE
/ total
;
504 && any_condjump_p (bb
->end
)
505 && bb
->succ
->succ_next
)
506 num_branches
++, num_never_executed
;
512 fprintf (rtl_dump_file
, "%d branches\n", num_branches
);
513 fprintf (rtl_dump_file
, "%d branches never executed\n",
516 for (i
= 0; i
< 10; i
++)
517 fprintf (rtl_dump_file
, "%d%% branches in range %d-%d%%\n",
518 (hist_br_prob
[i
] + hist_br_prob
[19-i
]) * 100 / num_branches
,
521 total_num_branches
+= num_branches
;
522 total_num_never_executed
+= num_never_executed
;
523 for (i
= 0; i
< 20; i
++)
524 total_hist_br_prob
[i
] += hist_br_prob
[i
];
526 fputc ('\n', rtl_dump_file
);
527 fputc ('\n', rtl_dump_file
);
530 free_aux_for_blocks ();
533 /* Instrument and/or analyze program behavior based on program flow graph.
534 In either case, this function builds a flow graph for the function being
535 compiled. The flow graph is stored in BB_GRAPH.
537 When FLAG_PROFILE_ARCS is nonzero, this function instruments the edges in
538 the flow graph that are needed to reconstruct the dynamic behavior of the
541 When FLAG_BRANCH_PROBABILITIES is nonzero, this function reads auxiliary
542 information from a data file containing edge count information from previous
543 executions of the function being compiled. In this case, the flow graph is
544 annotated with actual execution counts, which are later propagated into the
545 rtl for optimization purposes.
547 Main entry point of this file. */
554 unsigned num_edges
, ignored_edges
;
555 struct edge_list
*el
;
557 total_num_times_called
++;
559 flow_call_edges_add (NULL
);
560 add_noreturn_fake_exit_edges ();
562 /* We can't handle cyclic regions constructed using abnormal edges.
563 To avoid these we replace every source of abnormal edge by a fake
564 edge from entry node and every destination by fake edge to exit.
565 This keeps graph acyclic and our calculation exact for all normal
566 edges except for exit and entrance ones.
568 We also add fake exit edges for each call and asm statement in the
569 basic, since it may not return. */
573 int need_exit_edge
= 0, need_entry_edge
= 0;
574 int have_exit_edge
= 0, have_entry_edge
= 0;
577 /* Functions returning multiple times are not handled by extra edges.
578 Instead we simply allow negative counts on edges from exit to the
579 block past call and corresponding probabilities. We can't go
580 with the extra edges because that would result in flowgraph that
581 needs to have fake edges outside the spanning tree. */
583 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
585 if ((e
->flags
& (EDGE_ABNORMAL
| EDGE_ABNORMAL_CALL
))
586 && e
->dest
!= EXIT_BLOCK_PTR
)
588 if (e
->dest
== EXIT_BLOCK_PTR
)
591 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
593 if ((e
->flags
& (EDGE_ABNORMAL
| EDGE_ABNORMAL_CALL
))
594 && e
->src
!= ENTRY_BLOCK_PTR
)
596 if (e
->src
== ENTRY_BLOCK_PTR
)
600 if (need_exit_edge
&& !have_exit_edge
)
603 fprintf (rtl_dump_file
, "Adding fake exit edge to bb %i\n",
605 make_edge (bb
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
607 if (need_entry_edge
&& !have_entry_edge
)
610 fprintf (rtl_dump_file
, "Adding fake entry edge to bb %i\n",
612 make_edge (ENTRY_BLOCK_PTR
, bb
, EDGE_FAKE
);
616 el
= create_edge_list ();
617 num_edges
= NUM_EDGES (el
);
618 alloc_aux_for_edges (sizeof (struct edge_info
));
620 /* The basic blocks are expected to be numbered sequentially. */
624 for (i
= 0 ; i
< num_edges
; i
++)
626 edge e
= INDEX_EDGE (el
, i
);
629 /* Mark edges we've replaced by fake edges above as ignored. */
630 if ((e
->flags
& (EDGE_ABNORMAL
| EDGE_ABNORMAL_CALL
))
631 && e
->src
!= ENTRY_BLOCK_PTR
&& e
->dest
!= EXIT_BLOCK_PTR
)
633 EDGE_INFO (e
)->ignore
= 1;
638 #ifdef ENABLE_CHECKING
642 /* Create spanning tree from basic block graph, mark each edge that is
643 on the spanning tree. We insert as many abnormal and critical edges
644 as possible to minimize number of edge splits necessary. */
646 find_spanning_tree (el
);
648 /* Fake edges that are not on the tree will not be instrumented, so
649 mark them ignored. */
650 for (i
= 0; i
< num_edges
; i
++)
652 edge e
= INDEX_EDGE (el
, i
);
653 struct edge_info
*inf
= EDGE_INFO (e
);
654 if ((e
->flags
& EDGE_FAKE
) && !inf
->ignore
&& !inf
->on_tree
)
661 total_num_blocks
+= n_basic_blocks
+ 2;
663 fprintf (rtl_dump_file
, "%d basic blocks\n", n_basic_blocks
);
665 total_num_edges
+= num_edges
;
667 fprintf (rtl_dump_file
, "%d edges\n", num_edges
);
669 total_num_edges_ignored
+= ignored_edges
;
671 fprintf (rtl_dump_file
, "%d ignored edges\n", ignored_edges
);
673 /* Write the .bbg data from which gcov can reconstruct the basic block
674 graph. First output the number of basic blocks, and then for every
675 edge output the source and target basic block numbers.
676 NOTE: The format of this file must be compatible with gcov. */
678 if (coverage_begin_output ())
682 /* Basic block flags */
683 offset
= gcov_write_tag (GCOV_TAG_BLOCKS
);
684 for (i
= 0; i
!= (unsigned) (n_basic_blocks
+ 2); i
++)
685 gcov_write_unsigned (0);
686 gcov_write_length (offset
);
689 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
693 offset
= gcov_write_tag (GCOV_TAG_ARCS
);
694 gcov_write_unsigned (BB_TO_GCOV_INDEX (bb
));
696 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
698 struct edge_info
*i
= EDGE_INFO (e
);
701 unsigned flag_bits
= 0;
704 flag_bits
|= GCOV_ARC_ON_TREE
;
705 if (e
->flags
& EDGE_FAKE
)
706 flag_bits
|= GCOV_ARC_FAKE
;
707 if (e
->flags
& EDGE_FALLTHRU
)
708 flag_bits
|= GCOV_ARC_FALLTHROUGH
;
710 gcov_write_unsigned (BB_TO_GCOV_INDEX (e
->dest
));
711 gcov_write_unsigned (flag_bits
);
715 gcov_write_length (offset
);
719 /* Output line number information about each basic block for GCOV
721 if (coverage_begin_output ())
723 char const *prev_file_name
= NULL
;
729 int ignore_next_note
= 0;
733 /* We are looking for line number notes. Search backward
734 before basic block to find correct ones. */
735 insn
= prev_nonnote_insn (insn
);
739 insn
= NEXT_INSN (insn
);
741 while (insn
!= bb
->end
)
743 if (GET_CODE (insn
) == NOTE
)
745 /* Must ignore the line number notes that
746 immediately follow the end of an inline function
747 to avoid counting it twice. There is a note
748 before the call, and one after the call. */
749 if (NOTE_LINE_NUMBER (insn
)
750 == NOTE_INSN_REPEATED_LINE_NUMBER
)
751 ignore_next_note
= 1;
752 else if (NOTE_LINE_NUMBER (insn
) <= 0)
754 else if (ignore_next_note
)
755 ignore_next_note
= 0;
760 offset
= gcov_write_tag (GCOV_TAG_LINES
);
761 gcov_write_unsigned (BB_TO_GCOV_INDEX (bb
));
764 /* If this is a new source file, then output the
765 file's name to the .bb file. */
767 || strcmp (NOTE_SOURCE_FILE (insn
),
770 prev_file_name
= NOTE_SOURCE_FILE (insn
);
771 gcov_write_unsigned (0);
772 gcov_write_string (prev_file_name
);
774 gcov_write_unsigned (NOTE_LINE_NUMBER (insn
));
777 insn
= NEXT_INSN (insn
);
782 /* A file of NULL indicates the end of run. */
783 gcov_write_unsigned (0);
784 gcov_write_string (NULL
);
785 gcov_write_length (offset
);
790 if (flag_branch_probabilities
)
791 compute_branch_probabilities ();
793 /* For each edge not on the spanning tree, add counting code as rtl. */
795 if (cfun
->arc_profile
&& profile_arc_flag
)
797 instrument_edges (el
);
799 /* Commit changes done by instrumentation. */
800 commit_edge_insertions_watch_calls ();
801 allocate_reg_info (max_reg_num (), FALSE
, FALSE
);
804 remove_fake_edges ();
805 free_aux_for_edges ();
806 /* Re-merge split basic blocks and the mess introduced by
807 insert_insn_on_edge. */
808 cleanup_cfg (profile_arc_flag
? CLEANUP_EXPENSIVE
: 0);
810 dump_flow_info (rtl_dump_file
);
815 /* Union find algorithm implementation for the basic blocks using
822 basic_block group
= bb
, bb1
;
824 while ((basic_block
) group
->aux
!= group
)
825 group
= (basic_block
) group
->aux
;
828 while ((basic_block
) bb
->aux
!= group
)
830 bb1
= (basic_block
) bb
->aux
;
831 bb
->aux
= (void *) group
;
838 union_groups (bb1
, bb2
)
839 basic_block bb1
, bb2
;
841 basic_block bb1g
= find_group (bb1
);
842 basic_block bb2g
= find_group (bb2
);
844 /* ??? I don't have a place for the rank field. OK. Lets go w/o it,
845 this code is unlikely going to be performance problem anyway. */
852 /* This function searches all of the edges in the program flow graph, and puts
853 as many bad edges as possible onto the spanning tree. Bad edges include
854 abnormals edges, which can't be instrumented at the moment. Since it is
855 possible for fake edges to form a cycle, we will have to develop some
856 better way in the future. Also put critical edges to the tree, since they
857 are more expensive to instrument. */
860 find_spanning_tree (el
)
861 struct edge_list
*el
;
864 int num_edges
= NUM_EDGES (el
);
867 /* We use aux field for standard union-find algorithm. */
868 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
871 /* Add fake edge exit to entry we can't instrument. */
872 union_groups (EXIT_BLOCK_PTR
, ENTRY_BLOCK_PTR
);
874 /* First add all abnormal edges to the tree unless they form a cycle. Also
875 add all edges to EXIT_BLOCK_PTR to avoid inserting profiling code behind
876 setting return value from function. */
877 for (i
= 0; i
< num_edges
; i
++)
879 edge e
= INDEX_EDGE (el
, i
);
880 if (((e
->flags
& (EDGE_ABNORMAL
| EDGE_ABNORMAL_CALL
| EDGE_FAKE
))
881 || e
->dest
== EXIT_BLOCK_PTR
883 && !EDGE_INFO (e
)->ignore
884 && (find_group (e
->src
) != find_group (e
->dest
)))
887 fprintf (rtl_dump_file
, "Abnormal edge %d to %d put to tree\n",
888 e
->src
->index
, e
->dest
->index
);
889 EDGE_INFO (e
)->on_tree
= 1;
890 union_groups (e
->src
, e
->dest
);
894 /* Now insert all critical edges to the tree unless they form a cycle. */
895 for (i
= 0; i
< num_edges
; i
++)
897 edge e
= INDEX_EDGE (el
, i
);
898 if ((EDGE_CRITICAL_P (e
))
899 && !EDGE_INFO (e
)->ignore
900 && (find_group (e
->src
) != find_group (e
->dest
)))
903 fprintf (rtl_dump_file
, "Critical edge %d to %d put to tree\n",
904 e
->src
->index
, e
->dest
->index
);
905 EDGE_INFO (e
)->on_tree
= 1;
906 union_groups (e
->src
, e
->dest
);
910 /* And now the rest. */
911 for (i
= 0; i
< num_edges
; i
++)
913 edge e
= INDEX_EDGE (el
, i
);
914 if (find_group (e
->src
) != find_group (e
->dest
)
915 && !EDGE_INFO (e
)->ignore
)
918 fprintf (rtl_dump_file
, "Normal edge %d to %d put to tree\n",
919 e
->src
->index
, e
->dest
->index
);
920 EDGE_INFO (e
)->on_tree
= 1;
921 union_groups (e
->src
, e
->dest
);
925 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, NULL
, next_bb
)
929 /* Perform file-level initialization for branch-prob processing. */
936 total_num_blocks
= 0;
938 total_num_edges_ignored
= 0;
939 total_num_edges_instrumented
= 0;
940 total_num_blocks_created
= 0;
941 total_num_passes
= 0;
942 total_num_times_called
= 0;
943 total_num_branches
= 0;
944 total_num_never_executed
= 0;
945 for (i
= 0; i
< 20; i
++)
946 total_hist_br_prob
[i
] = 0;
949 /* Performs file-level cleanup after branch-prob processing
957 fprintf (rtl_dump_file
, "\n");
958 fprintf (rtl_dump_file
, "Total number of blocks: %d\n",
960 fprintf (rtl_dump_file
, "Total number of edges: %d\n", total_num_edges
);
961 fprintf (rtl_dump_file
, "Total number of ignored edges: %d\n",
962 total_num_edges_ignored
);
963 fprintf (rtl_dump_file
, "Total number of instrumented edges: %d\n",
964 total_num_edges_instrumented
);
965 fprintf (rtl_dump_file
, "Total number of blocks created: %d\n",
966 total_num_blocks_created
);
967 fprintf (rtl_dump_file
, "Total number of graph solution passes: %d\n",
969 if (total_num_times_called
!= 0)
970 fprintf (rtl_dump_file
, "Average number of graph solution passes: %d\n",
971 (total_num_passes
+ (total_num_times_called
>> 1))
972 / total_num_times_called
);
973 fprintf (rtl_dump_file
, "Total number of branches: %d\n",
975 fprintf (rtl_dump_file
, "Total number of branches never executed: %d\n",
976 total_num_never_executed
);
977 if (total_num_branches
)
981 for (i
= 0; i
< 10; i
++)
982 fprintf (rtl_dump_file
, "%d%% branches in range %d-%d%%\n",
983 (total_hist_br_prob
[i
] + total_hist_br_prob
[19-i
]) * 100
984 / total_num_branches
, 5*i
, 5*i
+5);
990 /* Output instructions as RTL to increment the edge execution count. */
993 gen_edge_profiler (edgeno
)
996 rtx ref
= coverage_counter_ref (GCOV_COUNTER_ARCS
, edgeno
);
998 enum machine_mode mode
= GET_MODE (ref
);
1002 ref
= validize_mem (ref
);
1004 tmp
= expand_simple_binop (mode
, PLUS
, ref
, const1_rtx
,
1005 ref
, 0, OPTAB_WIDEN
);
1008 emit_move_insn (copy_rtx (ref
), tmp
);
1010 sequence
= get_insns ();