2011-11-06 François Dumont <fdumont@gcc.gnu.org>
[official-gcc.git] / gcc / profile.c
blob41108394e98a68eefc2605edf8af5299146d2410
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, 2004, 2005, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
5 Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
6 based on some ideas from Dain Samples of UC Berkeley.
7 Further mangling by Bob Manson, Cygnus Support.
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
14 version.
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 for more details.
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
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 files generated are <dumpbase>.gcno (at compile time)
43 and <dumpbase>.gcda (at run time). The format is
44 described in full in gcov-io.h. */
46 /* ??? Register allocation should use basic block execution counts to
47 give preference to the most commonly executed blocks. */
49 /* ??? Should calculate branch probabilities before instrumenting code, since
50 then we can use arc counts to help decide which arcs to instrument. */
52 #include "config.h"
53 #include "system.h"
54 #include "coretypes.h"
55 #include "tm.h"
56 #include "rtl.h"
57 #include "flags.h"
58 #include "output.h"
59 #include "regs.h"
60 #include "expr.h"
61 #include "function.h"
62 #include "basic-block.h"
63 #include "diagnostic-core.h"
64 #include "coverage.h"
65 #include "value-prof.h"
66 #include "tree.h"
67 #include "cfghooks.h"
68 #include "tree-flow.h"
69 #include "timevar.h"
70 #include "cfgloop.h"
71 #include "tree-pass.h"
73 #include "profile.h"
75 struct bb_info {
76 unsigned int count_valid : 1;
78 /* Number of successor and predecessor edges. */
79 gcov_type succ_count;
80 gcov_type pred_count;
83 #define BB_INFO(b) ((struct bb_info *) (b)->aux)
86 /* Counter summary from the last set of coverage counts read. */
88 const struct gcov_ctr_summary *profile_info;
90 /* Collect statistics on the performance of this pass for the entire source
91 file. */
93 static int total_num_blocks;
94 static int total_num_edges;
95 static int total_num_edges_ignored;
96 static int total_num_edges_instrumented;
97 static int total_num_blocks_created;
98 static int total_num_passes;
99 static int total_num_times_called;
100 static int total_hist_br_prob[20];
101 static int total_num_branches;
103 /* Forward declarations. */
104 static void find_spanning_tree (struct edge_list *);
106 /* Add edge instrumentation code to the entire insn chain.
108 F is the first insn of the chain.
109 NUM_BLOCKS is the number of basic blocks found in F. */
111 static unsigned
112 instrument_edges (struct edge_list *el)
114 unsigned num_instr_edges = 0;
115 int num_edges = NUM_EDGES (el);
116 basic_block bb;
118 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
120 edge e;
121 edge_iterator ei;
123 FOR_EACH_EDGE (e, ei, bb->succs)
125 struct edge_info *inf = EDGE_INFO (e);
127 if (!inf->ignore && !inf->on_tree)
129 gcc_assert (!(e->flags & EDGE_ABNORMAL));
130 if (dump_file)
131 fprintf (dump_file, "Edge %d to %d instrumented%s\n",
132 e->src->index, e->dest->index,
133 EDGE_CRITICAL_P (e) ? " (and split)" : "");
134 gimple_gen_edge_profiler (num_instr_edges++, e);
139 total_num_blocks_created += num_edges;
140 if (dump_file)
141 fprintf (dump_file, "%d edges instrumented\n", num_instr_edges);
142 return num_instr_edges;
145 /* Add code to measure histograms for values in list VALUES. */
146 static void
147 instrument_values (histogram_values values)
149 unsigned i, t;
151 /* Emit code to generate the histograms before the insns. */
153 for (i = 0; i < VEC_length (histogram_value, values); i++)
155 histogram_value hist = VEC_index (histogram_value, values, i);
156 switch (hist->type)
158 case HIST_TYPE_INTERVAL:
159 t = GCOV_COUNTER_V_INTERVAL;
160 break;
162 case HIST_TYPE_POW2:
163 t = GCOV_COUNTER_V_POW2;
164 break;
166 case HIST_TYPE_SINGLE_VALUE:
167 t = GCOV_COUNTER_V_SINGLE;
168 break;
170 case HIST_TYPE_CONST_DELTA:
171 t = GCOV_COUNTER_V_DELTA;
172 break;
174 case HIST_TYPE_INDIR_CALL:
175 t = GCOV_COUNTER_V_INDIR;
176 break;
178 case HIST_TYPE_AVERAGE:
179 t = GCOV_COUNTER_AVERAGE;
180 break;
182 case HIST_TYPE_IOR:
183 t = GCOV_COUNTER_IOR;
184 break;
186 default:
187 gcc_unreachable ();
189 if (!coverage_counter_alloc (t, hist->n_counters))
190 continue;
192 switch (hist->type)
194 case HIST_TYPE_INTERVAL:
195 gimple_gen_interval_profiler (hist, t, 0);
196 break;
198 case HIST_TYPE_POW2:
199 gimple_gen_pow2_profiler (hist, t, 0);
200 break;
202 case HIST_TYPE_SINGLE_VALUE:
203 gimple_gen_one_value_profiler (hist, t, 0);
204 break;
206 case HIST_TYPE_CONST_DELTA:
207 gimple_gen_const_delta_profiler (hist, t, 0);
208 break;
210 case HIST_TYPE_INDIR_CALL:
211 gimple_gen_ic_profiler (hist, t, 0);
212 break;
214 case HIST_TYPE_AVERAGE:
215 gimple_gen_average_profiler (hist, t, 0);
216 break;
218 case HIST_TYPE_IOR:
219 gimple_gen_ior_profiler (hist, t, 0);
220 break;
222 default:
223 gcc_unreachable ();
229 /* Computes hybrid profile for all matching entries in da_file.
231 CFG_CHECKSUM is the precomputed checksum for the CFG. */
233 static gcov_type *
234 get_exec_counts (unsigned cfg_checksum, unsigned lineno_checksum)
236 unsigned num_edges = 0;
237 basic_block bb;
238 gcov_type *counts;
240 /* Count the edges to be (possibly) instrumented. */
241 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
243 edge e;
244 edge_iterator ei;
246 FOR_EACH_EDGE (e, ei, bb->succs)
247 if (!EDGE_INFO (e)->ignore && !EDGE_INFO (e)->on_tree)
248 num_edges++;
251 counts = get_coverage_counts (GCOV_COUNTER_ARCS, num_edges, cfg_checksum,
252 lineno_checksum, &profile_info);
253 if (!counts)
254 return NULL;
256 if (dump_file && profile_info)
257 fprintf(dump_file, "Merged %u profiles with maximal count %u.\n",
258 profile_info->runs, (unsigned) profile_info->sum_max);
260 return counts;
264 static bool
265 is_edge_inconsistent (VEC(edge,gc) *edges)
267 edge e;
268 edge_iterator ei;
269 FOR_EACH_EDGE (e, ei, edges)
271 if (!EDGE_INFO (e)->ignore)
273 if (e->count < 0
274 && (!(e->flags & EDGE_FAKE)
275 || !block_ends_with_call_p (e->src)))
277 if (dump_file)
279 fprintf (dump_file,
280 "Edge %i->%i is inconsistent, count"HOST_WIDEST_INT_PRINT_DEC,
281 e->src->index, e->dest->index, e->count);
282 dump_bb (e->src, dump_file, 0);
283 dump_bb (e->dest, dump_file, 0);
285 return true;
289 return false;
292 static void
293 correct_negative_edge_counts (void)
295 basic_block bb;
296 edge e;
297 edge_iterator ei;
299 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
301 FOR_EACH_EDGE (e, ei, bb->succs)
303 if (e->count < 0)
304 e->count = 0;
309 /* Check consistency.
310 Return true if inconsistency is found. */
311 static bool
312 is_inconsistent (void)
314 basic_block bb;
315 bool inconsistent = false;
316 FOR_EACH_BB (bb)
318 inconsistent |= is_edge_inconsistent (bb->preds);
319 if (!dump_file && inconsistent)
320 return true;
321 inconsistent |= is_edge_inconsistent (bb->succs);
322 if (!dump_file && inconsistent)
323 return true;
324 if (bb->count < 0)
326 if (dump_file)
328 fprintf (dump_file, "BB %i count is negative "
329 HOST_WIDEST_INT_PRINT_DEC,
330 bb->index,
331 bb->count);
332 dump_bb (bb, dump_file, 0);
334 inconsistent = true;
336 if (bb->count != sum_edge_counts (bb->preds))
338 if (dump_file)
340 fprintf (dump_file, "BB %i count does not match sum of incoming edges "
341 HOST_WIDEST_INT_PRINT_DEC" should be " HOST_WIDEST_INT_PRINT_DEC,
342 bb->index,
343 bb->count,
344 sum_edge_counts (bb->preds));
345 dump_bb (bb, dump_file, 0);
347 inconsistent = true;
349 if (bb->count != sum_edge_counts (bb->succs) &&
350 ! (find_edge (bb, EXIT_BLOCK_PTR) != NULL && block_ends_with_call_p (bb)))
352 if (dump_file)
354 fprintf (dump_file, "BB %i count does not match sum of outgoing edges "
355 HOST_WIDEST_INT_PRINT_DEC" should be " HOST_WIDEST_INT_PRINT_DEC,
356 bb->index,
357 bb->count,
358 sum_edge_counts (bb->succs));
359 dump_bb (bb, dump_file, 0);
361 inconsistent = true;
363 if (!dump_file && inconsistent)
364 return true;
367 return inconsistent;
370 /* Set each basic block count to the sum of its outgoing edge counts */
371 static void
372 set_bb_counts (void)
374 basic_block bb;
375 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
377 bb->count = sum_edge_counts (bb->succs);
378 gcc_assert (bb->count >= 0);
382 /* Reads profile data and returns total number of edge counts read */
383 static int
384 read_profile_edge_counts (gcov_type *exec_counts)
386 basic_block bb;
387 int num_edges = 0;
388 int exec_counts_pos = 0;
389 /* For each edge not on the spanning tree, set its execution count from
390 the .da file. */
391 /* The first count in the .da file is the number of times that the function
392 was entered. This is the exec_count for block zero. */
394 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
396 edge e;
397 edge_iterator ei;
399 FOR_EACH_EDGE (e, ei, bb->succs)
400 if (!EDGE_INFO (e)->ignore && !EDGE_INFO (e)->on_tree)
402 num_edges++;
403 if (exec_counts)
405 e->count = exec_counts[exec_counts_pos++];
406 if (e->count > profile_info->sum_max)
408 if (flag_profile_correction)
410 static bool informed = 0;
411 if (!informed)
412 inform (input_location,
413 "corrupted profile info: edge count exceeds maximal count");
414 informed = 1;
416 else
417 error ("corrupted profile info: edge from %i to %i exceeds maximal count",
418 bb->index, e->dest->index);
421 else
422 e->count = 0;
424 EDGE_INFO (e)->count_valid = 1;
425 BB_INFO (bb)->succ_count--;
426 BB_INFO (e->dest)->pred_count--;
427 if (dump_file)
429 fprintf (dump_file, "\nRead edge from %i to %i, count:",
430 bb->index, e->dest->index);
431 fprintf (dump_file, HOST_WIDEST_INT_PRINT_DEC,
432 (HOST_WIDEST_INT) e->count);
437 return num_edges;
440 #define OVERLAP_BASE 10000
442 /* Compare the static estimated profile to the actual profile, and
443 return the "degree of overlap" measure between them.
445 Degree of overlap is a number between 0 and OVERLAP_BASE. It is
446 the sum of each basic block's minimum relative weights between
447 two profiles. And overlap of OVERLAP_BASE means two profiles are
448 identical. */
450 static int
451 compute_frequency_overlap (void)
453 gcov_type count_total = 0, freq_total = 0;
454 int overlap = 0;
455 basic_block bb;
457 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
459 count_total += bb->count;
460 freq_total += bb->frequency;
463 if (count_total == 0 || freq_total == 0)
464 return 0;
466 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
467 overlap += MIN (bb->count * OVERLAP_BASE / count_total,
468 bb->frequency * OVERLAP_BASE / freq_total);
470 return overlap;
473 /* Compute the branch probabilities for the various branches.
474 Annotate them accordingly.
476 CFG_CHECKSUM is the precomputed checksum for the CFG. */
478 static void
479 compute_branch_probabilities (unsigned cfg_checksum, unsigned lineno_checksum)
481 basic_block bb;
482 int i;
483 int num_edges = 0;
484 int changes;
485 int passes;
486 int hist_br_prob[20];
487 int num_branches;
488 gcov_type *exec_counts = get_exec_counts (cfg_checksum, lineno_checksum);
489 int inconsistent = 0;
491 /* Very simple sanity checks so we catch bugs in our profiling code. */
492 if (!profile_info)
493 return;
494 if (profile_info->run_max * profile_info->runs < profile_info->sum_max)
496 error ("corrupted profile info: run_max * runs < sum_max");
497 exec_counts = NULL;
500 if (profile_info->sum_all < profile_info->sum_max)
502 error ("corrupted profile info: sum_all is smaller than sum_max");
503 exec_counts = NULL;
506 /* Attach extra info block to each bb. */
507 alloc_aux_for_blocks (sizeof (struct bb_info));
508 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
510 edge e;
511 edge_iterator ei;
513 FOR_EACH_EDGE (e, ei, bb->succs)
514 if (!EDGE_INFO (e)->ignore)
515 BB_INFO (bb)->succ_count++;
516 FOR_EACH_EDGE (e, ei, bb->preds)
517 if (!EDGE_INFO (e)->ignore)
518 BB_INFO (bb)->pred_count++;
521 /* Avoid predicting entry on exit nodes. */
522 BB_INFO (EXIT_BLOCK_PTR)->succ_count = 2;
523 BB_INFO (ENTRY_BLOCK_PTR)->pred_count = 2;
525 num_edges = read_profile_edge_counts (exec_counts);
527 if (dump_file)
528 fprintf (dump_file, "\n%d edge counts read\n", num_edges);
530 /* For every block in the file,
531 - if every exit/entrance edge has a known count, then set the block count
532 - if the block count is known, and every exit/entrance edge but one has
533 a known execution count, then set the count of the remaining edge
535 As edge counts are set, decrement the succ/pred count, but don't delete
536 the edge, that way we can easily tell when all edges are known, or only
537 one edge is unknown. */
539 /* The order that the basic blocks are iterated through is important.
540 Since the code that finds spanning trees starts with block 0, low numbered
541 edges are put on the spanning tree in preference to high numbered edges.
542 Hence, most instrumented edges are at the end. Graph solving works much
543 faster if we propagate numbers from the end to the start.
545 This takes an average of slightly more than 3 passes. */
547 changes = 1;
548 passes = 0;
549 while (changes)
551 passes++;
552 changes = 0;
553 FOR_BB_BETWEEN (bb, EXIT_BLOCK_PTR, NULL, prev_bb)
555 struct bb_info *bi = BB_INFO (bb);
556 if (! bi->count_valid)
558 if (bi->succ_count == 0)
560 edge e;
561 edge_iterator ei;
562 gcov_type total = 0;
564 FOR_EACH_EDGE (e, ei, bb->succs)
565 total += e->count;
566 bb->count = total;
567 bi->count_valid = 1;
568 changes = 1;
570 else if (bi->pred_count == 0)
572 edge e;
573 edge_iterator ei;
574 gcov_type total = 0;
576 FOR_EACH_EDGE (e, ei, bb->preds)
577 total += e->count;
578 bb->count = total;
579 bi->count_valid = 1;
580 changes = 1;
583 if (bi->count_valid)
585 if (bi->succ_count == 1)
587 edge e;
588 edge_iterator ei;
589 gcov_type total = 0;
591 /* One of the counts will be invalid, but it is zero,
592 so adding it in also doesn't hurt. */
593 FOR_EACH_EDGE (e, ei, bb->succs)
594 total += e->count;
596 /* Search for the invalid edge, and set its count. */
597 FOR_EACH_EDGE (e, ei, bb->succs)
598 if (! EDGE_INFO (e)->count_valid && ! EDGE_INFO (e)->ignore)
599 break;
601 /* Calculate count for remaining edge by conservation. */
602 total = bb->count - total;
604 gcc_assert (e);
605 EDGE_INFO (e)->count_valid = 1;
606 e->count = total;
607 bi->succ_count--;
609 BB_INFO (e->dest)->pred_count--;
610 changes = 1;
612 if (bi->pred_count == 1)
614 edge e;
615 edge_iterator ei;
616 gcov_type total = 0;
618 /* One of the counts will be invalid, but it is zero,
619 so adding it in also doesn't hurt. */
620 FOR_EACH_EDGE (e, ei, bb->preds)
621 total += e->count;
623 /* Search for the invalid edge, and set its count. */
624 FOR_EACH_EDGE (e, ei, bb->preds)
625 if (!EDGE_INFO (e)->count_valid && !EDGE_INFO (e)->ignore)
626 break;
628 /* Calculate count for remaining edge by conservation. */
629 total = bb->count - total + e->count;
631 gcc_assert (e);
632 EDGE_INFO (e)->count_valid = 1;
633 e->count = total;
634 bi->pred_count--;
636 BB_INFO (e->src)->succ_count--;
637 changes = 1;
642 if (dump_file)
644 int overlap = compute_frequency_overlap ();
645 dump_flow_info (dump_file, dump_flags);
646 fprintf (dump_file, "Static profile overlap: %d.%d%%\n",
647 overlap / (OVERLAP_BASE / 100),
648 overlap % (OVERLAP_BASE / 100));
651 total_num_passes += passes;
652 if (dump_file)
653 fprintf (dump_file, "Graph solving took %d passes.\n\n", passes);
655 /* If the graph has been correctly solved, every block will have a
656 succ and pred count of zero. */
657 FOR_EACH_BB (bb)
659 gcc_assert (!BB_INFO (bb)->succ_count && !BB_INFO (bb)->pred_count);
662 /* Check for inconsistent basic block counts */
663 inconsistent = is_inconsistent ();
665 if (inconsistent)
667 if (flag_profile_correction)
669 /* Inconsistency detected. Make it flow-consistent. */
670 static int informed = 0;
671 if (informed == 0)
673 informed = 1;
674 inform (input_location, "correcting inconsistent profile data");
676 correct_negative_edge_counts ();
677 /* Set bb counts to the sum of the outgoing edge counts */
678 set_bb_counts ();
679 if (dump_file)
680 fprintf (dump_file, "\nCalling mcf_smooth_cfg\n");
681 mcf_smooth_cfg ();
683 else
684 error ("corrupted profile info: profile data is not flow-consistent");
687 /* For every edge, calculate its branch probability and add a reg_note
688 to the branch insn to indicate this. */
690 for (i = 0; i < 20; i++)
691 hist_br_prob[i] = 0;
692 num_branches = 0;
694 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
696 edge e;
697 edge_iterator ei;
699 if (bb->count < 0)
701 error ("corrupted profile info: number of iterations for basic block %d thought to be %i",
702 bb->index, (int)bb->count);
703 bb->count = 0;
705 FOR_EACH_EDGE (e, ei, bb->succs)
707 /* Function may return twice in the cased the called function is
708 setjmp or calls fork, but we can't represent this by extra
709 edge from the entry, since extra edge from the exit is
710 already present. We get negative frequency from the entry
711 point. */
712 if ((e->count < 0
713 && e->dest == EXIT_BLOCK_PTR)
714 || (e->count > bb->count
715 && e->dest != EXIT_BLOCK_PTR))
717 if (block_ends_with_call_p (bb))
718 e->count = e->count < 0 ? 0 : bb->count;
720 if (e->count < 0 || e->count > bb->count)
722 error ("corrupted profile info: number of executions for edge %d-%d thought to be %i",
723 e->src->index, e->dest->index,
724 (int)e->count);
725 e->count = bb->count / 2;
728 if (bb->count)
730 FOR_EACH_EDGE (e, ei, bb->succs)
731 e->probability = (e->count * REG_BR_PROB_BASE + bb->count / 2) / bb->count;
732 if (bb->index >= NUM_FIXED_BLOCKS
733 && block_ends_with_condjump_p (bb)
734 && EDGE_COUNT (bb->succs) >= 2)
736 int prob;
737 edge e;
738 int index;
740 /* Find the branch edge. It is possible that we do have fake
741 edges here. */
742 FOR_EACH_EDGE (e, ei, bb->succs)
743 if (!(e->flags & (EDGE_FAKE | EDGE_FALLTHRU)))
744 break;
746 prob = e->probability;
747 index = prob * 20 / REG_BR_PROB_BASE;
749 if (index == 20)
750 index = 19;
751 hist_br_prob[index]++;
753 num_branches++;
756 /* As a last resort, distribute the probabilities evenly.
757 Use simple heuristics that if there are normal edges,
758 give all abnormals frequency of 0, otherwise distribute the
759 frequency over abnormals (this is the case of noreturn
760 calls). */
761 else if (profile_status == PROFILE_ABSENT)
763 int total = 0;
765 FOR_EACH_EDGE (e, ei, bb->succs)
766 if (!(e->flags & (EDGE_COMPLEX | EDGE_FAKE)))
767 total ++;
768 if (total)
770 FOR_EACH_EDGE (e, ei, bb->succs)
771 if (!(e->flags & (EDGE_COMPLEX | EDGE_FAKE)))
772 e->probability = REG_BR_PROB_BASE / total;
773 else
774 e->probability = 0;
776 else
778 total += EDGE_COUNT (bb->succs);
779 FOR_EACH_EDGE (e, ei, bb->succs)
780 e->probability = REG_BR_PROB_BASE / total;
782 if (bb->index >= NUM_FIXED_BLOCKS
783 && block_ends_with_condjump_p (bb)
784 && EDGE_COUNT (bb->succs) >= 2)
785 num_branches++;
788 counts_to_freqs ();
789 profile_status = PROFILE_READ;
790 compute_function_frequency ();
792 if (dump_file)
794 fprintf (dump_file, "%d branches\n", num_branches);
795 if (num_branches)
796 for (i = 0; i < 10; i++)
797 fprintf (dump_file, "%d%% branches in range %d-%d%%\n",
798 (hist_br_prob[i] + hist_br_prob[19-i]) * 100 / num_branches,
799 5 * i, 5 * i + 5);
801 total_num_branches += num_branches;
802 for (i = 0; i < 20; i++)
803 total_hist_br_prob[i] += hist_br_prob[i];
805 fputc ('\n', dump_file);
806 fputc ('\n', dump_file);
809 free_aux_for_blocks ();
812 /* Load value histograms values whose description is stored in VALUES array
813 from .gcda file.
815 CFG_CHECKSUM is the precomputed checksum for the CFG. */
817 static void
818 compute_value_histograms (histogram_values values, unsigned cfg_checksum,
819 unsigned lineno_checksum)
821 unsigned i, j, t, any;
822 unsigned n_histogram_counters[GCOV_N_VALUE_COUNTERS];
823 gcov_type *histogram_counts[GCOV_N_VALUE_COUNTERS];
824 gcov_type *act_count[GCOV_N_VALUE_COUNTERS];
825 gcov_type *aact_count;
827 for (t = 0; t < GCOV_N_VALUE_COUNTERS; t++)
828 n_histogram_counters[t] = 0;
830 for (i = 0; i < VEC_length (histogram_value, values); i++)
832 histogram_value hist = VEC_index (histogram_value, values, i);
833 n_histogram_counters[(int) hist->type] += hist->n_counters;
836 any = 0;
837 for (t = 0; t < GCOV_N_VALUE_COUNTERS; t++)
839 if (!n_histogram_counters[t])
841 histogram_counts[t] = NULL;
842 continue;
845 histogram_counts[t] =
846 get_coverage_counts (COUNTER_FOR_HIST_TYPE (t),
847 n_histogram_counters[t], cfg_checksum,
848 lineno_checksum, NULL);
849 if (histogram_counts[t])
850 any = 1;
851 act_count[t] = histogram_counts[t];
853 if (!any)
854 return;
856 for (i = 0; i < VEC_length (histogram_value, values); i++)
858 histogram_value hist = VEC_index (histogram_value, values, i);
859 gimple stmt = hist->hvalue.stmt;
861 t = (int) hist->type;
863 aact_count = act_count[t];
864 act_count[t] += hist->n_counters;
866 gimple_add_histogram_value (cfun, stmt, hist);
867 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters);
868 for (j = 0; j < hist->n_counters; j++)
869 hist->hvalue.counters[j] = aact_count[j];
872 for (t = 0; t < GCOV_N_VALUE_COUNTERS; t++)
873 free (histogram_counts[t]);
876 /* The entry basic block will be moved around so that it has index=1,
877 there is nothing at index 0 and the exit is at n_basic_block. */
878 #define BB_TO_GCOV_INDEX(bb) ((bb)->index - 1)
879 /* When passed NULL as file_name, initialize.
880 When passed something else, output the necessary commands to change
881 line to LINE and offset to FILE_NAME. */
882 static void
883 output_location (char const *file_name, int line,
884 gcov_position_t *offset, basic_block bb)
886 static char const *prev_file_name;
887 static int prev_line;
888 bool name_differs, line_differs;
890 if (!file_name)
892 prev_file_name = NULL;
893 prev_line = -1;
894 return;
897 name_differs = !prev_file_name || filename_cmp (file_name, prev_file_name);
898 line_differs = prev_line != line;
900 if (name_differs || line_differs)
902 if (!*offset)
904 *offset = gcov_write_tag (GCOV_TAG_LINES);
905 gcov_write_unsigned (BB_TO_GCOV_INDEX (bb));
906 name_differs = line_differs=true;
909 /* If this is a new source file, then output the
910 file's name to the .bb file. */
911 if (name_differs)
913 prev_file_name = file_name;
914 gcov_write_unsigned (0);
915 gcov_write_string (prev_file_name);
917 if (line_differs)
919 gcov_write_unsigned (line);
920 prev_line = line;
925 /* Instrument and/or analyze program behavior based on program flow graph.
926 In either case, this function builds a flow graph for the function being
927 compiled. The flow graph is stored in BB_GRAPH.
929 When FLAG_PROFILE_ARCS is nonzero, this function instruments the edges in
930 the flow graph that are needed to reconstruct the dynamic behavior of the
931 flow graph.
933 When FLAG_BRANCH_PROBABILITIES is nonzero, this function reads auxiliary
934 information from a data file containing edge count information from previous
935 executions of the function being compiled. In this case, the flow graph is
936 annotated with actual execution counts, which are later propagated into the
937 rtl for optimization purposes.
939 Main entry point of this file. */
941 void
942 branch_prob (void)
944 basic_block bb;
945 unsigned i;
946 unsigned num_edges, ignored_edges;
947 unsigned num_instrumented;
948 struct edge_list *el;
949 histogram_values values = NULL;
950 unsigned cfg_checksum, lineno_checksum;
952 total_num_times_called++;
954 flow_call_edges_add (NULL);
955 add_noreturn_fake_exit_edges ();
957 /* We can't handle cyclic regions constructed using abnormal edges.
958 To avoid these we replace every source of abnormal edge by a fake
959 edge from entry node and every destination by fake edge to exit.
960 This keeps graph acyclic and our calculation exact for all normal
961 edges except for exit and entrance ones.
963 We also add fake exit edges for each call and asm statement in the
964 basic, since it may not return. */
966 FOR_EACH_BB (bb)
968 int need_exit_edge = 0, need_entry_edge = 0;
969 int have_exit_edge = 0, have_entry_edge = 0;
970 edge e;
971 edge_iterator ei;
973 /* Functions returning multiple times are not handled by extra edges.
974 Instead we simply allow negative counts on edges from exit to the
975 block past call and corresponding probabilities. We can't go
976 with the extra edges because that would result in flowgraph that
977 needs to have fake edges outside the spanning tree. */
979 FOR_EACH_EDGE (e, ei, bb->succs)
981 gimple_stmt_iterator gsi;
982 gimple last = NULL;
984 /* It may happen that there are compiler generated statements
985 without a locus at all. Go through the basic block from the
986 last to the first statement looking for a locus. */
987 for (gsi = gsi_last_nondebug_bb (bb);
988 !gsi_end_p (gsi);
989 gsi_prev_nondebug (&gsi))
991 last = gsi_stmt (gsi);
992 if (gimple_has_location (last))
993 break;
996 /* Edge with goto locus might get wrong coverage info unless
997 it is the only edge out of BB.
998 Don't do that when the locuses match, so
999 if (blah) goto something;
1000 is not computed twice. */
1001 if (last
1002 && gimple_has_location (last)
1003 && e->goto_locus != UNKNOWN_LOCATION
1004 && !single_succ_p (bb)
1005 && (LOCATION_FILE (e->goto_locus)
1006 != LOCATION_FILE (gimple_location (last))
1007 || (LOCATION_LINE (e->goto_locus)
1008 != LOCATION_LINE (gimple_location (last)))))
1010 basic_block new_bb = split_edge (e);
1011 edge ne = single_succ_edge (new_bb);
1012 ne->goto_locus = e->goto_locus;
1013 ne->goto_block = e->goto_block;
1015 if ((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL))
1016 && e->dest != EXIT_BLOCK_PTR)
1017 need_exit_edge = 1;
1018 if (e->dest == EXIT_BLOCK_PTR)
1019 have_exit_edge = 1;
1021 FOR_EACH_EDGE (e, ei, bb->preds)
1023 if ((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL))
1024 && e->src != ENTRY_BLOCK_PTR)
1025 need_entry_edge = 1;
1026 if (e->src == ENTRY_BLOCK_PTR)
1027 have_entry_edge = 1;
1030 if (need_exit_edge && !have_exit_edge)
1032 if (dump_file)
1033 fprintf (dump_file, "Adding fake exit edge to bb %i\n",
1034 bb->index);
1035 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
1037 if (need_entry_edge && !have_entry_edge)
1039 if (dump_file)
1040 fprintf (dump_file, "Adding fake entry edge to bb %i\n",
1041 bb->index);
1042 make_edge (ENTRY_BLOCK_PTR, bb, EDGE_FAKE);
1046 el = create_edge_list ();
1047 num_edges = NUM_EDGES (el);
1048 alloc_aux_for_edges (sizeof (struct edge_info));
1050 /* The basic blocks are expected to be numbered sequentially. */
1051 compact_blocks ();
1053 ignored_edges = 0;
1054 for (i = 0 ; i < num_edges ; i++)
1056 edge e = INDEX_EDGE (el, i);
1057 e->count = 0;
1059 /* Mark edges we've replaced by fake edges above as ignored. */
1060 if ((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL))
1061 && e->src != ENTRY_BLOCK_PTR && e->dest != EXIT_BLOCK_PTR)
1063 EDGE_INFO (e)->ignore = 1;
1064 ignored_edges++;
1068 /* Create spanning tree from basic block graph, mark each edge that is
1069 on the spanning tree. We insert as many abnormal and critical edges
1070 as possible to minimize number of edge splits necessary. */
1072 find_spanning_tree (el);
1074 /* Fake edges that are not on the tree will not be instrumented, so
1075 mark them ignored. */
1076 for (num_instrumented = i = 0; i < num_edges; i++)
1078 edge e = INDEX_EDGE (el, i);
1079 struct edge_info *inf = EDGE_INFO (e);
1081 if (inf->ignore || inf->on_tree)
1082 /*NOP*/;
1083 else if (e->flags & EDGE_FAKE)
1085 inf->ignore = 1;
1086 ignored_edges++;
1088 else
1089 num_instrumented++;
1092 total_num_blocks += n_basic_blocks;
1093 if (dump_file)
1094 fprintf (dump_file, "%d basic blocks\n", n_basic_blocks);
1096 total_num_edges += num_edges;
1097 if (dump_file)
1098 fprintf (dump_file, "%d edges\n", num_edges);
1100 total_num_edges_ignored += ignored_edges;
1101 if (dump_file)
1102 fprintf (dump_file, "%d ignored edges\n", ignored_edges);
1105 /* Compute two different checksums. Note that we want to compute
1106 the checksum in only once place, since it depends on the shape
1107 of the control flow which can change during
1108 various transformations. */
1109 cfg_checksum = coverage_compute_cfg_checksum ();
1110 lineno_checksum = coverage_compute_lineno_checksum ();
1112 /* Write the data from which gcov can reconstruct the basic block
1113 graph. */
1115 /* Basic block flags */
1116 if (coverage_begin_output (lineno_checksum, cfg_checksum))
1118 gcov_position_t offset;
1120 offset = gcov_write_tag (GCOV_TAG_BLOCKS);
1121 for (i = 0; i != (unsigned) (n_basic_blocks); i++)
1122 gcov_write_unsigned (0);
1123 gcov_write_length (offset);
1126 /* Keep all basic block indexes nonnegative in the gcov output.
1127 Index 0 is used for entry block, last index is for exit block.
1129 ENTRY_BLOCK_PTR->index = 1;
1130 EXIT_BLOCK_PTR->index = last_basic_block;
1132 /* Arcs */
1133 if (coverage_begin_output (lineno_checksum, cfg_checksum))
1135 gcov_position_t offset;
1137 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1139 edge e;
1140 edge_iterator ei;
1142 offset = gcov_write_tag (GCOV_TAG_ARCS);
1143 gcov_write_unsigned (BB_TO_GCOV_INDEX (bb));
1145 FOR_EACH_EDGE (e, ei, bb->succs)
1147 struct edge_info *i = EDGE_INFO (e);
1148 if (!i->ignore)
1150 unsigned flag_bits = 0;
1152 if (i->on_tree)
1153 flag_bits |= GCOV_ARC_ON_TREE;
1154 if (e->flags & EDGE_FAKE)
1155 flag_bits |= GCOV_ARC_FAKE;
1156 if (e->flags & EDGE_FALLTHRU)
1157 flag_bits |= GCOV_ARC_FALLTHROUGH;
1158 /* On trees we don't have fallthru flags, but we can
1159 recompute them from CFG shape. */
1160 if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)
1161 && e->src->next_bb == e->dest)
1162 flag_bits |= GCOV_ARC_FALLTHROUGH;
1164 gcov_write_unsigned (BB_TO_GCOV_INDEX (e->dest));
1165 gcov_write_unsigned (flag_bits);
1169 gcov_write_length (offset);
1173 /* Line numbers. */
1174 if (coverage_begin_output (lineno_checksum, cfg_checksum))
1176 /* Initialize the output. */
1177 output_location (NULL, 0, NULL, NULL);
1179 FOR_EACH_BB (bb)
1181 gimple_stmt_iterator gsi;
1182 gcov_position_t offset = 0;
1184 if (bb == ENTRY_BLOCK_PTR->next_bb)
1186 expanded_location curr_location =
1187 expand_location (DECL_SOURCE_LOCATION (current_function_decl));
1188 output_location (curr_location.file, curr_location.line,
1189 &offset, bb);
1192 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1194 gimple stmt = gsi_stmt (gsi);
1195 if (gimple_has_location (stmt))
1196 output_location (gimple_filename (stmt), gimple_lineno (stmt),
1197 &offset, bb);
1200 /* Notice GOTO expressions eliminated while constructing the CFG. */
1201 if (single_succ_p (bb)
1202 && single_succ_edge (bb)->goto_locus != UNKNOWN_LOCATION)
1204 expanded_location curr_location
1205 = expand_location (single_succ_edge (bb)->goto_locus);
1206 output_location (curr_location.file, curr_location.line,
1207 &offset, bb);
1210 if (offset)
1212 /* A file of NULL indicates the end of run. */
1213 gcov_write_unsigned (0);
1214 gcov_write_string (NULL);
1215 gcov_write_length (offset);
1220 ENTRY_BLOCK_PTR->index = ENTRY_BLOCK;
1221 EXIT_BLOCK_PTR->index = EXIT_BLOCK;
1222 #undef BB_TO_GCOV_INDEX
1224 if (flag_profile_values)
1225 gimple_find_values_to_profile (&values);
1227 if (flag_branch_probabilities)
1229 compute_branch_probabilities (cfg_checksum, lineno_checksum);
1230 if (flag_profile_values)
1231 compute_value_histograms (values, cfg_checksum, lineno_checksum);
1234 remove_fake_edges ();
1236 /* For each edge not on the spanning tree, add counting code. */
1237 if (profile_arc_flag
1238 && coverage_counter_alloc (GCOV_COUNTER_ARCS, num_instrumented))
1240 unsigned n_instrumented;
1242 gimple_init_edge_profiler ();
1244 n_instrumented = instrument_edges (el);
1246 gcc_assert (n_instrumented == num_instrumented);
1248 if (flag_profile_values)
1249 instrument_values (values);
1251 /* Commit changes done by instrumentation. */
1252 gsi_commit_edge_inserts ();
1255 free_aux_for_edges ();
1257 VEC_free (histogram_value, heap, values);
1258 free_edge_list (el);
1259 coverage_end_function (lineno_checksum, cfg_checksum);
1262 /* Union find algorithm implementation for the basic blocks using
1263 aux fields. */
1265 static basic_block
1266 find_group (basic_block bb)
1268 basic_block group = bb, bb1;
1270 while ((basic_block) group->aux != group)
1271 group = (basic_block) group->aux;
1273 /* Compress path. */
1274 while ((basic_block) bb->aux != group)
1276 bb1 = (basic_block) bb->aux;
1277 bb->aux = (void *) group;
1278 bb = bb1;
1280 return group;
1283 static void
1284 union_groups (basic_block bb1, basic_block bb2)
1286 basic_block bb1g = find_group (bb1);
1287 basic_block bb2g = find_group (bb2);
1289 /* ??? I don't have a place for the rank field. OK. Lets go w/o it,
1290 this code is unlikely going to be performance problem anyway. */
1291 gcc_assert (bb1g != bb2g);
1293 bb1g->aux = bb2g;
1296 /* This function searches all of the edges in the program flow graph, and puts
1297 as many bad edges as possible onto the spanning tree. Bad edges include
1298 abnormals edges, which can't be instrumented at the moment. Since it is
1299 possible for fake edges to form a cycle, we will have to develop some
1300 better way in the future. Also put critical edges to the tree, since they
1301 are more expensive to instrument. */
1303 static void
1304 find_spanning_tree (struct edge_list *el)
1306 int i;
1307 int num_edges = NUM_EDGES (el);
1308 basic_block bb;
1310 /* We use aux field for standard union-find algorithm. */
1311 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
1312 bb->aux = bb;
1314 /* Add fake edge exit to entry we can't instrument. */
1315 union_groups (EXIT_BLOCK_PTR, ENTRY_BLOCK_PTR);
1317 /* First add all abnormal edges to the tree unless they form a cycle. Also
1318 add all edges to EXIT_BLOCK_PTR to avoid inserting profiling code behind
1319 setting return value from function. */
1320 for (i = 0; i < num_edges; i++)
1322 edge e = INDEX_EDGE (el, i);
1323 if (((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL | EDGE_FAKE))
1324 || e->dest == EXIT_BLOCK_PTR)
1325 && !EDGE_INFO (e)->ignore
1326 && (find_group (e->src) != find_group (e->dest)))
1328 if (dump_file)
1329 fprintf (dump_file, "Abnormal edge %d to %d put to tree\n",
1330 e->src->index, e->dest->index);
1331 EDGE_INFO (e)->on_tree = 1;
1332 union_groups (e->src, e->dest);
1336 /* Now insert all critical edges to the tree unless they form a cycle. */
1337 for (i = 0; i < num_edges; i++)
1339 edge e = INDEX_EDGE (el, i);
1340 if (EDGE_CRITICAL_P (e) && !EDGE_INFO (e)->ignore
1341 && find_group (e->src) != find_group (e->dest))
1343 if (dump_file)
1344 fprintf (dump_file, "Critical edge %d to %d put to tree\n",
1345 e->src->index, e->dest->index);
1346 EDGE_INFO (e)->on_tree = 1;
1347 union_groups (e->src, e->dest);
1351 /* And now the rest. */
1352 for (i = 0; i < num_edges; i++)
1354 edge e = INDEX_EDGE (el, i);
1355 if (!EDGE_INFO (e)->ignore
1356 && find_group (e->src) != find_group (e->dest))
1358 if (dump_file)
1359 fprintf (dump_file, "Normal edge %d to %d put to tree\n",
1360 e->src->index, e->dest->index);
1361 EDGE_INFO (e)->on_tree = 1;
1362 union_groups (e->src, e->dest);
1366 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
1367 bb->aux = NULL;
1370 /* Perform file-level initialization for branch-prob processing. */
1372 void
1373 init_branch_prob (void)
1375 int i;
1377 total_num_blocks = 0;
1378 total_num_edges = 0;
1379 total_num_edges_ignored = 0;
1380 total_num_edges_instrumented = 0;
1381 total_num_blocks_created = 0;
1382 total_num_passes = 0;
1383 total_num_times_called = 0;
1384 total_num_branches = 0;
1385 for (i = 0; i < 20; i++)
1386 total_hist_br_prob[i] = 0;
1389 /* Performs file-level cleanup after branch-prob processing
1390 is completed. */
1392 void
1393 end_branch_prob (void)
1395 if (dump_file)
1397 fprintf (dump_file, "\n");
1398 fprintf (dump_file, "Total number of blocks: %d\n",
1399 total_num_blocks);
1400 fprintf (dump_file, "Total number of edges: %d\n", total_num_edges);
1401 fprintf (dump_file, "Total number of ignored edges: %d\n",
1402 total_num_edges_ignored);
1403 fprintf (dump_file, "Total number of instrumented edges: %d\n",
1404 total_num_edges_instrumented);
1405 fprintf (dump_file, "Total number of blocks created: %d\n",
1406 total_num_blocks_created);
1407 fprintf (dump_file, "Total number of graph solution passes: %d\n",
1408 total_num_passes);
1409 if (total_num_times_called != 0)
1410 fprintf (dump_file, "Average number of graph solution passes: %d\n",
1411 (total_num_passes + (total_num_times_called >> 1))
1412 / total_num_times_called);
1413 fprintf (dump_file, "Total number of branches: %d\n",
1414 total_num_branches);
1415 if (total_num_branches)
1417 int i;
1419 for (i = 0; i < 10; i++)
1420 fprintf (dump_file, "%d%% branches in range %d-%d%%\n",
1421 (total_hist_br_prob[i] + total_hist_br_prob[19-i]) * 100
1422 / total_num_branches, 5*i, 5*i+5);