In libobjc/: 2010-12-21 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / gcc / profile.c
blob606e3b2e86646d379a9f35feb01942b1d0ca4578
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 /* Hooks for profiling. */
76 static struct profile_hooks* profile_hooks;
78 struct bb_info {
79 unsigned int count_valid : 1;
81 /* Number of successor and predecessor edges. */
82 gcov_type succ_count;
83 gcov_type pred_count;
86 #define BB_INFO(b) ((struct bb_info *) (b)->aux)
89 /* Counter summary from the last set of coverage counts read. */
91 const struct gcov_ctr_summary *profile_info;
93 /* Collect statistics on the performance of this pass for the entire source
94 file. */
96 static int total_num_blocks;
97 static int total_num_edges;
98 static int total_num_edges_ignored;
99 static int total_num_edges_instrumented;
100 static int total_num_blocks_created;
101 static int total_num_passes;
102 static int total_num_times_called;
103 static int total_hist_br_prob[20];
104 static int total_num_branches;
106 /* Forward declarations. */
107 static void find_spanning_tree (struct edge_list *);
108 static unsigned instrument_edges (struct edge_list *);
109 static void instrument_values (histogram_values);
110 static void compute_branch_probabilities (void);
111 static void compute_value_histograms (histogram_values);
112 static gcov_type * get_exec_counts (void);
113 static basic_block find_group (basic_block);
114 static void union_groups (basic_block, basic_block);
116 /* Add edge instrumentation code to the entire insn chain.
118 F is the first insn of the chain.
119 NUM_BLOCKS is the number of basic blocks found in F. */
121 static unsigned
122 instrument_edges (struct edge_list *el)
124 unsigned num_instr_edges = 0;
125 int num_edges = NUM_EDGES (el);
126 basic_block bb;
128 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
130 edge e;
131 edge_iterator ei;
133 FOR_EACH_EDGE (e, ei, bb->succs)
135 struct edge_info *inf = EDGE_INFO (e);
137 if (!inf->ignore && !inf->on_tree)
139 gcc_assert (!(e->flags & EDGE_ABNORMAL));
140 if (dump_file)
141 fprintf (dump_file, "Edge %d to %d instrumented%s\n",
142 e->src->index, e->dest->index,
143 EDGE_CRITICAL_P (e) ? " (and split)" : "");
144 (profile_hooks->gen_edge_profiler) (num_instr_edges++, e);
149 total_num_blocks_created += num_edges;
150 if (dump_file)
151 fprintf (dump_file, "%d edges instrumented\n", num_instr_edges);
152 return num_instr_edges;
155 /* Add code to measure histograms for values in list VALUES. */
156 static void
157 instrument_values (histogram_values values)
159 unsigned i, t;
161 /* Emit code to generate the histograms before the insns. */
163 for (i = 0; i < VEC_length (histogram_value, values); i++)
165 histogram_value hist = VEC_index (histogram_value, values, i);
166 switch (hist->type)
168 case HIST_TYPE_INTERVAL:
169 t = GCOV_COUNTER_V_INTERVAL;
170 break;
172 case HIST_TYPE_POW2:
173 t = GCOV_COUNTER_V_POW2;
174 break;
176 case HIST_TYPE_SINGLE_VALUE:
177 t = GCOV_COUNTER_V_SINGLE;
178 break;
180 case HIST_TYPE_CONST_DELTA:
181 t = GCOV_COUNTER_V_DELTA;
182 break;
184 case HIST_TYPE_INDIR_CALL:
185 t = GCOV_COUNTER_V_INDIR;
186 break;
188 case HIST_TYPE_AVERAGE:
189 t = GCOV_COUNTER_AVERAGE;
190 break;
192 case HIST_TYPE_IOR:
193 t = GCOV_COUNTER_IOR;
194 break;
196 default:
197 gcc_unreachable ();
199 if (!coverage_counter_alloc (t, hist->n_counters))
200 continue;
202 switch (hist->type)
204 case HIST_TYPE_INTERVAL:
205 (profile_hooks->gen_interval_profiler) (hist, t, 0);
206 break;
208 case HIST_TYPE_POW2:
209 (profile_hooks->gen_pow2_profiler) (hist, t, 0);
210 break;
212 case HIST_TYPE_SINGLE_VALUE:
213 (profile_hooks->gen_one_value_profiler) (hist, t, 0);
214 break;
216 case HIST_TYPE_CONST_DELTA:
217 (profile_hooks->gen_const_delta_profiler) (hist, t, 0);
218 break;
220 case HIST_TYPE_INDIR_CALL:
221 (profile_hooks->gen_ic_profiler) (hist, t, 0);
222 break;
224 case HIST_TYPE_AVERAGE:
225 (profile_hooks->gen_average_profiler) (hist, t, 0);
226 break;
228 case HIST_TYPE_IOR:
229 (profile_hooks->gen_ior_profiler) (hist, t, 0);
230 break;
232 default:
233 gcc_unreachable ();
239 /* Computes hybrid profile for all matching entries in da_file. */
241 static gcov_type *
242 get_exec_counts (void)
244 unsigned num_edges = 0;
245 basic_block bb;
246 gcov_type *counts;
248 /* Count the edges to be (possibly) instrumented. */
249 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
251 edge e;
252 edge_iterator ei;
254 FOR_EACH_EDGE (e, ei, bb->succs)
255 if (!EDGE_INFO (e)->ignore && !EDGE_INFO (e)->on_tree)
256 num_edges++;
259 counts = get_coverage_counts (GCOV_COUNTER_ARCS, num_edges, &profile_info);
260 if (!counts)
261 return NULL;
263 if (dump_file && profile_info)
264 fprintf(dump_file, "Merged %u profiles with maximal count %u.\n",
265 profile_info->runs, (unsigned) profile_info->sum_max);
267 return counts;
271 static bool
272 is_edge_inconsistent (VEC(edge,gc) *edges)
274 edge e;
275 edge_iterator ei;
276 FOR_EACH_EDGE (e, ei, edges)
278 if (!EDGE_INFO (e)->ignore)
280 if (e->count < 0
281 && (!(e->flags & EDGE_FAKE)
282 || !block_ends_with_call_p (e->src)))
284 if (dump_file)
286 fprintf (dump_file,
287 "Edge %i->%i is inconsistent, count"HOST_WIDEST_INT_PRINT_DEC,
288 e->src->index, e->dest->index, e->count);
289 dump_bb (e->src, dump_file, 0);
290 dump_bb (e->dest, dump_file, 0);
292 return true;
296 return false;
299 static void
300 correct_negative_edge_counts (void)
302 basic_block bb;
303 edge e;
304 edge_iterator ei;
306 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
308 FOR_EACH_EDGE (e, ei, bb->succs)
310 if (e->count < 0)
311 e->count = 0;
316 /* Check consistency.
317 Return true if inconsistency is found. */
318 static bool
319 is_inconsistent (void)
321 basic_block bb;
322 bool inconsistent = false;
323 FOR_EACH_BB (bb)
325 inconsistent |= is_edge_inconsistent (bb->preds);
326 if (!dump_file && inconsistent)
327 return true;
328 inconsistent |= is_edge_inconsistent (bb->succs);
329 if (!dump_file && inconsistent)
330 return true;
331 if (bb->count < 0)
333 if (dump_file)
335 fprintf (dump_file, "BB %i count is negative "
336 HOST_WIDEST_INT_PRINT_DEC,
337 bb->index,
338 bb->count);
339 dump_bb (bb, dump_file, 0);
341 inconsistent = true;
343 if (bb->count != sum_edge_counts (bb->preds))
345 if (dump_file)
347 fprintf (dump_file, "BB %i count does not match sum of incoming edges "
348 HOST_WIDEST_INT_PRINT_DEC" should be " HOST_WIDEST_INT_PRINT_DEC,
349 bb->index,
350 bb->count,
351 sum_edge_counts (bb->preds));
352 dump_bb (bb, dump_file, 0);
354 inconsistent = true;
356 if (bb->count != sum_edge_counts (bb->succs) &&
357 ! (find_edge (bb, EXIT_BLOCK_PTR) != NULL && block_ends_with_call_p (bb)))
359 if (dump_file)
361 fprintf (dump_file, "BB %i count does not match sum of outgoing edges "
362 HOST_WIDEST_INT_PRINT_DEC" should be " HOST_WIDEST_INT_PRINT_DEC,
363 bb->index,
364 bb->count,
365 sum_edge_counts (bb->succs));
366 dump_bb (bb, dump_file, 0);
368 inconsistent = true;
370 if (!dump_file && inconsistent)
371 return true;
374 return inconsistent;
377 /* Set each basic block count to the sum of its outgoing edge counts */
378 static void
379 set_bb_counts (void)
381 basic_block bb;
382 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
384 bb->count = sum_edge_counts (bb->succs);
385 gcc_assert (bb->count >= 0);
389 /* Reads profile data and returns total number of edge counts read */
390 static int
391 read_profile_edge_counts (gcov_type *exec_counts)
393 basic_block bb;
394 int num_edges = 0;
395 int exec_counts_pos = 0;
396 /* For each edge not on the spanning tree, set its execution count from
397 the .da file. */
398 /* The first count in the .da file is the number of times that the function
399 was entered. This is the exec_count for block zero. */
401 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
403 edge e;
404 edge_iterator ei;
406 FOR_EACH_EDGE (e, ei, bb->succs)
407 if (!EDGE_INFO (e)->ignore && !EDGE_INFO (e)->on_tree)
409 num_edges++;
410 if (exec_counts)
412 e->count = exec_counts[exec_counts_pos++];
413 if (e->count > profile_info->sum_max)
415 error ("corrupted profile info: edge from %i to %i exceeds maximal count",
416 bb->index, e->dest->index);
419 else
420 e->count = 0;
422 EDGE_INFO (e)->count_valid = 1;
423 BB_INFO (bb)->succ_count--;
424 BB_INFO (e->dest)->pred_count--;
425 if (dump_file)
427 fprintf (dump_file, "\nRead edge from %i to %i, count:",
428 bb->index, e->dest->index);
429 fprintf (dump_file, HOST_WIDEST_INT_PRINT_DEC,
430 (HOST_WIDEST_INT) e->count);
435 return num_edges;
438 /* Compute the branch probabilities for the various branches.
439 Annotate them accordingly. */
441 static void
442 compute_branch_probabilities (void)
444 basic_block bb;
445 int i;
446 int num_edges = 0;
447 int changes;
448 int passes;
449 int hist_br_prob[20];
450 int num_branches;
451 gcov_type *exec_counts = get_exec_counts ();
452 int inconsistent = 0;
454 /* Very simple sanity checks so we catch bugs in our profiling code. */
455 if (!profile_info)
456 return;
457 if (profile_info->run_max * profile_info->runs < profile_info->sum_max)
459 error ("corrupted profile info: run_max * runs < sum_max");
460 exec_counts = NULL;
463 if (profile_info->sum_all < profile_info->sum_max)
465 error ("corrupted profile info: sum_all is smaller than sum_max");
466 exec_counts = NULL;
469 /* Attach extra info block to each bb. */
470 alloc_aux_for_blocks (sizeof (struct bb_info));
471 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
473 edge e;
474 edge_iterator ei;
476 FOR_EACH_EDGE (e, ei, bb->succs)
477 if (!EDGE_INFO (e)->ignore)
478 BB_INFO (bb)->succ_count++;
479 FOR_EACH_EDGE (e, ei, bb->preds)
480 if (!EDGE_INFO (e)->ignore)
481 BB_INFO (bb)->pred_count++;
484 /* Avoid predicting entry on exit nodes. */
485 BB_INFO (EXIT_BLOCK_PTR)->succ_count = 2;
486 BB_INFO (ENTRY_BLOCK_PTR)->pred_count = 2;
488 num_edges = read_profile_edge_counts (exec_counts);
490 if (dump_file)
491 fprintf (dump_file, "\n%d edge counts read\n", num_edges);
493 /* For every block in the file,
494 - if every exit/entrance edge has a known count, then set the block count
495 - if the block count is known, and every exit/entrance edge but one has
496 a known execution count, then set the count of the remaining edge
498 As edge counts are set, decrement the succ/pred count, but don't delete
499 the edge, that way we can easily tell when all edges are known, or only
500 one edge is unknown. */
502 /* The order that the basic blocks are iterated through is important.
503 Since the code that finds spanning trees starts with block 0, low numbered
504 edges are put on the spanning tree in preference to high numbered edges.
505 Hence, most instrumented edges are at the end. Graph solving works much
506 faster if we propagate numbers from the end to the start.
508 This takes an average of slightly more than 3 passes. */
510 changes = 1;
511 passes = 0;
512 while (changes)
514 passes++;
515 changes = 0;
516 FOR_BB_BETWEEN (bb, EXIT_BLOCK_PTR, NULL, prev_bb)
518 struct bb_info *bi = BB_INFO (bb);
519 if (! bi->count_valid)
521 if (bi->succ_count == 0)
523 edge e;
524 edge_iterator ei;
525 gcov_type total = 0;
527 FOR_EACH_EDGE (e, ei, bb->succs)
528 total += e->count;
529 bb->count = total;
530 bi->count_valid = 1;
531 changes = 1;
533 else if (bi->pred_count == 0)
535 edge e;
536 edge_iterator ei;
537 gcov_type total = 0;
539 FOR_EACH_EDGE (e, ei, bb->preds)
540 total += e->count;
541 bb->count = total;
542 bi->count_valid = 1;
543 changes = 1;
546 if (bi->count_valid)
548 if (bi->succ_count == 1)
550 edge e;
551 edge_iterator ei;
552 gcov_type total = 0;
554 /* One of the counts will be invalid, but it is zero,
555 so adding it in also doesn't hurt. */
556 FOR_EACH_EDGE (e, ei, bb->succs)
557 total += e->count;
559 /* Search for the invalid edge, and set its count. */
560 FOR_EACH_EDGE (e, ei, bb->succs)
561 if (! EDGE_INFO (e)->count_valid && ! EDGE_INFO (e)->ignore)
562 break;
564 /* Calculate count for remaining edge by conservation. */
565 total = bb->count - total;
567 gcc_assert (e);
568 EDGE_INFO (e)->count_valid = 1;
569 e->count = total;
570 bi->succ_count--;
572 BB_INFO (e->dest)->pred_count--;
573 changes = 1;
575 if (bi->pred_count == 1)
577 edge e;
578 edge_iterator ei;
579 gcov_type total = 0;
581 /* One of the counts will be invalid, but it is zero,
582 so adding it in also doesn't hurt. */
583 FOR_EACH_EDGE (e, ei, bb->preds)
584 total += e->count;
586 /* Search for the invalid edge, and set its count. */
587 FOR_EACH_EDGE (e, ei, bb->preds)
588 if (!EDGE_INFO (e)->count_valid && !EDGE_INFO (e)->ignore)
589 break;
591 /* Calculate count for remaining edge by conservation. */
592 total = bb->count - total + e->count;
594 gcc_assert (e);
595 EDGE_INFO (e)->count_valid = 1;
596 e->count = total;
597 bi->pred_count--;
599 BB_INFO (e->src)->succ_count--;
600 changes = 1;
605 if (dump_file)
606 dump_flow_info (dump_file, dump_flags);
608 total_num_passes += passes;
609 if (dump_file)
610 fprintf (dump_file, "Graph solving took %d passes.\n\n", passes);
612 /* If the graph has been correctly solved, every block will have a
613 succ and pred count of zero. */
614 FOR_EACH_BB (bb)
616 gcc_assert (!BB_INFO (bb)->succ_count && !BB_INFO (bb)->pred_count);
619 /* Check for inconsistent basic block counts */
620 inconsistent = is_inconsistent ();
622 if (inconsistent)
624 if (flag_profile_correction)
626 /* Inconsistency detected. Make it flow-consistent. */
627 static int informed = 0;
628 if (informed == 0)
630 informed = 1;
631 inform (input_location, "correcting inconsistent profile data");
633 correct_negative_edge_counts ();
634 /* Set bb counts to the sum of the outgoing edge counts */
635 set_bb_counts ();
636 if (dump_file)
637 fprintf (dump_file, "\nCalling mcf_smooth_cfg\n");
638 mcf_smooth_cfg ();
640 else
641 error ("corrupted profile info: profile data is not flow-consistent");
644 /* For every edge, calculate its branch probability and add a reg_note
645 to the branch insn to indicate this. */
647 for (i = 0; i < 20; i++)
648 hist_br_prob[i] = 0;
649 num_branches = 0;
651 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
653 edge e;
654 edge_iterator ei;
656 if (bb->count < 0)
658 error ("corrupted profile info: number of iterations for basic block %d thought to be %i",
659 bb->index, (int)bb->count);
660 bb->count = 0;
662 FOR_EACH_EDGE (e, ei, bb->succs)
664 /* Function may return twice in the cased the called function is
665 setjmp or calls fork, but we can't represent this by extra
666 edge from the entry, since extra edge from the exit is
667 already present. We get negative frequency from the entry
668 point. */
669 if ((e->count < 0
670 && e->dest == EXIT_BLOCK_PTR)
671 || (e->count > bb->count
672 && e->dest != EXIT_BLOCK_PTR))
674 if (block_ends_with_call_p (bb))
675 e->count = e->count < 0 ? 0 : bb->count;
677 if (e->count < 0 || e->count > bb->count)
679 error ("corrupted profile info: number of executions for edge %d-%d thought to be %i",
680 e->src->index, e->dest->index,
681 (int)e->count);
682 e->count = bb->count / 2;
685 if (bb->count)
687 FOR_EACH_EDGE (e, ei, bb->succs)
688 e->probability = (e->count * REG_BR_PROB_BASE + bb->count / 2) / bb->count;
689 if (bb->index >= NUM_FIXED_BLOCKS
690 && block_ends_with_condjump_p (bb)
691 && EDGE_COUNT (bb->succs) >= 2)
693 int prob;
694 edge e;
695 int index;
697 /* Find the branch edge. It is possible that we do have fake
698 edges here. */
699 FOR_EACH_EDGE (e, ei, bb->succs)
700 if (!(e->flags & (EDGE_FAKE | EDGE_FALLTHRU)))
701 break;
703 prob = e->probability;
704 index = prob * 20 / REG_BR_PROB_BASE;
706 if (index == 20)
707 index = 19;
708 hist_br_prob[index]++;
710 num_branches++;
713 /* As a last resort, distribute the probabilities evenly.
714 Use simple heuristics that if there are normal edges,
715 give all abnormals frequency of 0, otherwise distribute the
716 frequency over abnormals (this is the case of noreturn
717 calls). */
718 else if (profile_status == PROFILE_ABSENT)
720 int total = 0;
722 FOR_EACH_EDGE (e, ei, bb->succs)
723 if (!(e->flags & (EDGE_COMPLEX | EDGE_FAKE)))
724 total ++;
725 if (total)
727 FOR_EACH_EDGE (e, ei, bb->succs)
728 if (!(e->flags & (EDGE_COMPLEX | EDGE_FAKE)))
729 e->probability = REG_BR_PROB_BASE / total;
730 else
731 e->probability = 0;
733 else
735 total += EDGE_COUNT (bb->succs);
736 FOR_EACH_EDGE (e, ei, bb->succs)
737 e->probability = REG_BR_PROB_BASE / total;
739 if (bb->index >= NUM_FIXED_BLOCKS
740 && block_ends_with_condjump_p (bb)
741 && EDGE_COUNT (bb->succs) >= 2)
742 num_branches++;
745 counts_to_freqs ();
746 profile_status = PROFILE_READ;
748 if (dump_file)
750 fprintf (dump_file, "%d branches\n", num_branches);
751 if (num_branches)
752 for (i = 0; i < 10; i++)
753 fprintf (dump_file, "%d%% branches in range %d-%d%%\n",
754 (hist_br_prob[i] + hist_br_prob[19-i]) * 100 / num_branches,
755 5 * i, 5 * i + 5);
757 total_num_branches += num_branches;
758 for (i = 0; i < 20; i++)
759 total_hist_br_prob[i] += hist_br_prob[i];
761 fputc ('\n', dump_file);
762 fputc ('\n', dump_file);
765 free_aux_for_blocks ();
768 /* Load value histograms values whose description is stored in VALUES array
769 from .gcda file. */
771 static void
772 compute_value_histograms (histogram_values values)
774 unsigned i, j, t, any;
775 unsigned n_histogram_counters[GCOV_N_VALUE_COUNTERS];
776 gcov_type *histogram_counts[GCOV_N_VALUE_COUNTERS];
777 gcov_type *act_count[GCOV_N_VALUE_COUNTERS];
778 gcov_type *aact_count;
780 for (t = 0; t < GCOV_N_VALUE_COUNTERS; t++)
781 n_histogram_counters[t] = 0;
783 for (i = 0; i < VEC_length (histogram_value, values); i++)
785 histogram_value hist = VEC_index (histogram_value, values, i);
786 n_histogram_counters[(int) hist->type] += hist->n_counters;
789 any = 0;
790 for (t = 0; t < GCOV_N_VALUE_COUNTERS; t++)
792 if (!n_histogram_counters[t])
794 histogram_counts[t] = NULL;
795 continue;
798 histogram_counts[t] =
799 get_coverage_counts (COUNTER_FOR_HIST_TYPE (t),
800 n_histogram_counters[t], NULL);
801 if (histogram_counts[t])
802 any = 1;
803 act_count[t] = histogram_counts[t];
805 if (!any)
806 return;
808 for (i = 0; i < VEC_length (histogram_value, values); i++)
810 histogram_value hist = VEC_index (histogram_value, values, i);
811 gimple stmt = hist->hvalue.stmt;
813 t = (int) hist->type;
815 aact_count = act_count[t];
816 act_count[t] += hist->n_counters;
818 gimple_add_histogram_value (cfun, stmt, hist);
819 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters);
820 for (j = 0; j < hist->n_counters; j++)
821 hist->hvalue.counters[j] = aact_count[j];
824 for (t = 0; t < GCOV_N_VALUE_COUNTERS; t++)
825 if (histogram_counts[t])
826 free (histogram_counts[t]);
829 /* The entry basic block will be moved around so that it has index=1,
830 there is nothing at index 0 and the exit is at n_basic_block. */
831 #define BB_TO_GCOV_INDEX(bb) ((bb)->index - 1)
832 /* When passed NULL as file_name, initialize.
833 When passed something else, output the necessary commands to change
834 line to LINE and offset to FILE_NAME. */
835 static void
836 output_location (char const *file_name, int line,
837 gcov_position_t *offset, basic_block bb)
839 static char const *prev_file_name;
840 static int prev_line;
841 bool name_differs, line_differs;
843 if (!file_name)
845 prev_file_name = NULL;
846 prev_line = -1;
847 return;
850 name_differs = !prev_file_name || strcmp (file_name, prev_file_name);
851 line_differs = prev_line != line;
853 if (name_differs || line_differs)
855 if (!*offset)
857 *offset = gcov_write_tag (GCOV_TAG_LINES);
858 gcov_write_unsigned (BB_TO_GCOV_INDEX (bb));
859 name_differs = line_differs=true;
862 /* If this is a new source file, then output the
863 file's name to the .bb file. */
864 if (name_differs)
866 prev_file_name = file_name;
867 gcov_write_unsigned (0);
868 gcov_write_string (prev_file_name);
870 if (line_differs)
872 gcov_write_unsigned (line);
873 prev_line = line;
878 /* Instrument and/or analyze program behavior based on program flow graph.
879 In either case, this function builds a flow graph for the function being
880 compiled. The flow graph is stored in BB_GRAPH.
882 When FLAG_PROFILE_ARCS is nonzero, this function instruments the edges in
883 the flow graph that are needed to reconstruct the dynamic behavior of the
884 flow graph.
886 When FLAG_BRANCH_PROBABILITIES is nonzero, this function reads auxiliary
887 information from a data file containing edge count information from previous
888 executions of the function being compiled. In this case, the flow graph is
889 annotated with actual execution counts, which are later propagated into the
890 rtl for optimization purposes.
892 Main entry point of this file. */
894 void
895 branch_prob (void)
897 basic_block bb;
898 unsigned i;
899 unsigned num_edges, ignored_edges;
900 unsigned num_instrumented;
901 struct edge_list *el;
902 histogram_values values = NULL;
904 total_num_times_called++;
906 flow_call_edges_add (NULL);
907 add_noreturn_fake_exit_edges ();
909 /* We can't handle cyclic regions constructed using abnormal edges.
910 To avoid these we replace every source of abnormal edge by a fake
911 edge from entry node and every destination by fake edge to exit.
912 This keeps graph acyclic and our calculation exact for all normal
913 edges except for exit and entrance ones.
915 We also add fake exit edges for each call and asm statement in the
916 basic, since it may not return. */
918 FOR_EACH_BB (bb)
920 int need_exit_edge = 0, need_entry_edge = 0;
921 int have_exit_edge = 0, have_entry_edge = 0;
922 edge e;
923 edge_iterator ei;
925 /* Functions returning multiple times are not handled by extra edges.
926 Instead we simply allow negative counts on edges from exit to the
927 block past call and corresponding probabilities. We can't go
928 with the extra edges because that would result in flowgraph that
929 needs to have fake edges outside the spanning tree. */
931 FOR_EACH_EDGE (e, ei, bb->succs)
933 gimple_stmt_iterator gsi;
934 gimple last = NULL;
936 /* It may happen that there are compiler generated statements
937 without a locus at all. Go through the basic block from the
938 last to the first statement looking for a locus. */
939 for (gsi = gsi_last_nondebug_bb (bb);
940 !gsi_end_p (gsi);
941 gsi_prev_nondebug (&gsi))
943 last = gsi_stmt (gsi);
944 if (gimple_has_location (last))
945 break;
948 /* Edge with goto locus might get wrong coverage info unless
949 it is the only edge out of BB.
950 Don't do that when the locuses match, so
951 if (blah) goto something;
952 is not computed twice. */
953 if (last
954 && gimple_has_location (last)
955 && e->goto_locus != UNKNOWN_LOCATION
956 && !single_succ_p (bb)
957 && (LOCATION_FILE (e->goto_locus)
958 != LOCATION_FILE (gimple_location (last))
959 || (LOCATION_LINE (e->goto_locus)
960 != LOCATION_LINE (gimple_location (last)))))
962 basic_block new_bb = split_edge (e);
963 edge ne = single_succ_edge (new_bb);
964 ne->goto_locus = e->goto_locus;
965 ne->goto_block = e->goto_block;
967 if ((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL))
968 && e->dest != EXIT_BLOCK_PTR)
969 need_exit_edge = 1;
970 if (e->dest == EXIT_BLOCK_PTR)
971 have_exit_edge = 1;
973 FOR_EACH_EDGE (e, ei, bb->preds)
975 if ((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL))
976 && e->src != ENTRY_BLOCK_PTR)
977 need_entry_edge = 1;
978 if (e->src == ENTRY_BLOCK_PTR)
979 have_entry_edge = 1;
982 if (need_exit_edge && !have_exit_edge)
984 if (dump_file)
985 fprintf (dump_file, "Adding fake exit edge to bb %i\n",
986 bb->index);
987 make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
989 if (need_entry_edge && !have_entry_edge)
991 if (dump_file)
992 fprintf (dump_file, "Adding fake entry edge to bb %i\n",
993 bb->index);
994 make_edge (ENTRY_BLOCK_PTR, bb, EDGE_FAKE);
998 el = create_edge_list ();
999 num_edges = NUM_EDGES (el);
1000 alloc_aux_for_edges (sizeof (struct edge_info));
1002 /* The basic blocks are expected to be numbered sequentially. */
1003 compact_blocks ();
1005 ignored_edges = 0;
1006 for (i = 0 ; i < num_edges ; i++)
1008 edge e = INDEX_EDGE (el, i);
1009 e->count = 0;
1011 /* Mark edges we've replaced by fake edges above as ignored. */
1012 if ((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL))
1013 && e->src != ENTRY_BLOCK_PTR && e->dest != EXIT_BLOCK_PTR)
1015 EDGE_INFO (e)->ignore = 1;
1016 ignored_edges++;
1020 /* Create spanning tree from basic block graph, mark each edge that is
1021 on the spanning tree. We insert as many abnormal and critical edges
1022 as possible to minimize number of edge splits necessary. */
1024 find_spanning_tree (el);
1026 /* Fake edges that are not on the tree will not be instrumented, so
1027 mark them ignored. */
1028 for (num_instrumented = i = 0; i < num_edges; i++)
1030 edge e = INDEX_EDGE (el, i);
1031 struct edge_info *inf = EDGE_INFO (e);
1033 if (inf->ignore || inf->on_tree)
1034 /*NOP*/;
1035 else if (e->flags & EDGE_FAKE)
1037 inf->ignore = 1;
1038 ignored_edges++;
1040 else
1041 num_instrumented++;
1044 total_num_blocks += n_basic_blocks;
1045 if (dump_file)
1046 fprintf (dump_file, "%d basic blocks\n", n_basic_blocks);
1048 total_num_edges += num_edges;
1049 if (dump_file)
1050 fprintf (dump_file, "%d edges\n", num_edges);
1052 total_num_edges_ignored += ignored_edges;
1053 if (dump_file)
1054 fprintf (dump_file, "%d ignored edges\n", ignored_edges);
1056 /* Write the data from which gcov can reconstruct the basic block
1057 graph. */
1059 /* Basic block flags */
1060 if (coverage_begin_output ())
1062 gcov_position_t offset;
1064 offset = gcov_write_tag (GCOV_TAG_BLOCKS);
1065 for (i = 0; i != (unsigned) (n_basic_blocks); i++)
1066 gcov_write_unsigned (0);
1067 gcov_write_length (offset);
1070 /* Keep all basic block indexes nonnegative in the gcov output.
1071 Index 0 is used for entry block, last index is for exit block.
1073 ENTRY_BLOCK_PTR->index = 1;
1074 EXIT_BLOCK_PTR->index = last_basic_block;
1076 /* Arcs */
1077 if (coverage_begin_output ())
1079 gcov_position_t offset;
1081 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, next_bb)
1083 edge e;
1084 edge_iterator ei;
1086 offset = gcov_write_tag (GCOV_TAG_ARCS);
1087 gcov_write_unsigned (BB_TO_GCOV_INDEX (bb));
1089 FOR_EACH_EDGE (e, ei, bb->succs)
1091 struct edge_info *i = EDGE_INFO (e);
1092 if (!i->ignore)
1094 unsigned flag_bits = 0;
1096 if (i->on_tree)
1097 flag_bits |= GCOV_ARC_ON_TREE;
1098 if (e->flags & EDGE_FAKE)
1099 flag_bits |= GCOV_ARC_FAKE;
1100 if (e->flags & EDGE_FALLTHRU)
1101 flag_bits |= GCOV_ARC_FALLTHROUGH;
1102 /* On trees we don't have fallthru flags, but we can
1103 recompute them from CFG shape. */
1104 if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)
1105 && e->src->next_bb == e->dest)
1106 flag_bits |= GCOV_ARC_FALLTHROUGH;
1108 gcov_write_unsigned (BB_TO_GCOV_INDEX (e->dest));
1109 gcov_write_unsigned (flag_bits);
1113 gcov_write_length (offset);
1117 /* Line numbers. */
1118 if (coverage_begin_output ())
1120 gcov_position_t offset;
1122 /* Initialize the output. */
1123 output_location (NULL, 0, NULL, NULL);
1125 FOR_EACH_BB (bb)
1127 gimple_stmt_iterator gsi;
1129 offset = 0;
1131 if (bb == ENTRY_BLOCK_PTR->next_bb)
1133 expanded_location curr_location =
1134 expand_location (DECL_SOURCE_LOCATION (current_function_decl));
1135 output_location (curr_location.file, curr_location.line,
1136 &offset, bb);
1139 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1141 gimple stmt = gsi_stmt (gsi);
1142 if (gimple_has_location (stmt))
1143 output_location (gimple_filename (stmt), gimple_lineno (stmt),
1144 &offset, bb);
1147 /* Notice GOTO expressions we eliminated while constructing the
1148 CFG. */
1149 if (single_succ_p (bb)
1150 && single_succ_edge (bb)->goto_locus != UNKNOWN_LOCATION)
1152 location_t curr_location = single_succ_edge (bb)->goto_locus;
1153 /* ??? The FILE/LINE API is inconsistent for these cases. */
1154 output_location (LOCATION_FILE (curr_location),
1155 LOCATION_LINE (curr_location), &offset, bb);
1158 if (offset)
1160 /* A file of NULL indicates the end of run. */
1161 gcov_write_unsigned (0);
1162 gcov_write_string (NULL);
1163 gcov_write_length (offset);
1168 ENTRY_BLOCK_PTR->index = ENTRY_BLOCK;
1169 EXIT_BLOCK_PTR->index = EXIT_BLOCK;
1170 #undef BB_TO_GCOV_INDEX
1172 if (flag_profile_values)
1173 find_values_to_profile (&values);
1175 if (flag_branch_probabilities)
1177 compute_branch_probabilities ();
1178 if (flag_profile_values)
1179 compute_value_histograms (values);
1182 remove_fake_edges ();
1184 /* For each edge not on the spanning tree, add counting code. */
1185 if (profile_arc_flag
1186 && coverage_counter_alloc (GCOV_COUNTER_ARCS, num_instrumented))
1188 unsigned n_instrumented;
1190 profile_hooks->init_edge_profiler ();
1192 n_instrumented = instrument_edges (el);
1194 gcc_assert (n_instrumented == num_instrumented);
1196 if (flag_profile_values)
1197 instrument_values (values);
1199 /* Commit changes done by instrumentation. */
1200 gsi_commit_edge_inserts ();
1203 free_aux_for_edges ();
1205 VEC_free (histogram_value, heap, values);
1206 free_edge_list (el);
1207 coverage_end_function ();
1210 /* Union find algorithm implementation for the basic blocks using
1211 aux fields. */
1213 static basic_block
1214 find_group (basic_block bb)
1216 basic_block group = bb, bb1;
1218 while ((basic_block) group->aux != group)
1219 group = (basic_block) group->aux;
1221 /* Compress path. */
1222 while ((basic_block) bb->aux != group)
1224 bb1 = (basic_block) bb->aux;
1225 bb->aux = (void *) group;
1226 bb = bb1;
1228 return group;
1231 static void
1232 union_groups (basic_block bb1, basic_block bb2)
1234 basic_block bb1g = find_group (bb1);
1235 basic_block bb2g = find_group (bb2);
1237 /* ??? I don't have a place for the rank field. OK. Lets go w/o it,
1238 this code is unlikely going to be performance problem anyway. */
1239 gcc_assert (bb1g != bb2g);
1241 bb1g->aux = bb2g;
1244 /* This function searches all of the edges in the program flow graph, and puts
1245 as many bad edges as possible onto the spanning tree. Bad edges include
1246 abnormals edges, which can't be instrumented at the moment. Since it is
1247 possible for fake edges to form a cycle, we will have to develop some
1248 better way in the future. Also put critical edges to the tree, since they
1249 are more expensive to instrument. */
1251 static void
1252 find_spanning_tree (struct edge_list *el)
1254 int i;
1255 int num_edges = NUM_EDGES (el);
1256 basic_block bb;
1258 /* We use aux field for standard union-find algorithm. */
1259 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
1260 bb->aux = bb;
1262 /* Add fake edge exit to entry we can't instrument. */
1263 union_groups (EXIT_BLOCK_PTR, ENTRY_BLOCK_PTR);
1265 /* First add all abnormal edges to the tree unless they form a cycle. Also
1266 add all edges to EXIT_BLOCK_PTR to avoid inserting profiling code behind
1267 setting return value from function. */
1268 for (i = 0; i < num_edges; i++)
1270 edge e = INDEX_EDGE (el, i);
1271 if (((e->flags & (EDGE_ABNORMAL | EDGE_ABNORMAL_CALL | EDGE_FAKE))
1272 || e->dest == EXIT_BLOCK_PTR)
1273 && !EDGE_INFO (e)->ignore
1274 && (find_group (e->src) != find_group (e->dest)))
1276 if (dump_file)
1277 fprintf (dump_file, "Abnormal edge %d to %d put to tree\n",
1278 e->src->index, e->dest->index);
1279 EDGE_INFO (e)->on_tree = 1;
1280 union_groups (e->src, e->dest);
1284 /* Now insert all critical edges to the tree unless they form a cycle. */
1285 for (i = 0; i < num_edges; i++)
1287 edge e = INDEX_EDGE (el, i);
1288 if (EDGE_CRITICAL_P (e) && !EDGE_INFO (e)->ignore
1289 && find_group (e->src) != find_group (e->dest))
1291 if (dump_file)
1292 fprintf (dump_file, "Critical edge %d to %d put to tree\n",
1293 e->src->index, e->dest->index);
1294 EDGE_INFO (e)->on_tree = 1;
1295 union_groups (e->src, e->dest);
1299 /* And now the rest. */
1300 for (i = 0; i < num_edges; i++)
1302 edge e = INDEX_EDGE (el, i);
1303 if (!EDGE_INFO (e)->ignore
1304 && find_group (e->src) != find_group (e->dest))
1306 if (dump_file)
1307 fprintf (dump_file, "Normal edge %d to %d put to tree\n",
1308 e->src->index, e->dest->index);
1309 EDGE_INFO (e)->on_tree = 1;
1310 union_groups (e->src, e->dest);
1314 FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
1315 bb->aux = NULL;
1318 /* Perform file-level initialization for branch-prob processing. */
1320 void
1321 init_branch_prob (void)
1323 int i;
1325 total_num_blocks = 0;
1326 total_num_edges = 0;
1327 total_num_edges_ignored = 0;
1328 total_num_edges_instrumented = 0;
1329 total_num_blocks_created = 0;
1330 total_num_passes = 0;
1331 total_num_times_called = 0;
1332 total_num_branches = 0;
1333 for (i = 0; i < 20; i++)
1334 total_hist_br_prob[i] = 0;
1337 /* Performs file-level cleanup after branch-prob processing
1338 is completed. */
1340 void
1341 end_branch_prob (void)
1343 if (dump_file)
1345 fprintf (dump_file, "\n");
1346 fprintf (dump_file, "Total number of blocks: %d\n",
1347 total_num_blocks);
1348 fprintf (dump_file, "Total number of edges: %d\n", total_num_edges);
1349 fprintf (dump_file, "Total number of ignored edges: %d\n",
1350 total_num_edges_ignored);
1351 fprintf (dump_file, "Total number of instrumented edges: %d\n",
1352 total_num_edges_instrumented);
1353 fprintf (dump_file, "Total number of blocks created: %d\n",
1354 total_num_blocks_created);
1355 fprintf (dump_file, "Total number of graph solution passes: %d\n",
1356 total_num_passes);
1357 if (total_num_times_called != 0)
1358 fprintf (dump_file, "Average number of graph solution passes: %d\n",
1359 (total_num_passes + (total_num_times_called >> 1))
1360 / total_num_times_called);
1361 fprintf (dump_file, "Total number of branches: %d\n",
1362 total_num_branches);
1363 if (total_num_branches)
1365 int i;
1367 for (i = 0; i < 10; i++)
1368 fprintf (dump_file, "%d%% branches in range %d-%d%%\n",
1369 (total_hist_br_prob[i] + total_hist_br_prob[19-i]) * 100
1370 / total_num_branches, 5*i, 5*i+5);
1375 /* Set up hooks to enable tree-based profiling. */
1377 void
1378 tree_register_profile_hooks (void)
1380 gcc_assert (current_ir_type () == IR_GIMPLE);
1381 profile_hooks = &tree_profile_hooks;