1 /* basic_blocks.c - Basic-block level related code: reading/writing
2 of basic-block info to/from gmon.out; computing and formatting of
3 basic-block related statistics.
5 Copyright 2000, 2001 Free Software Foundation, Inc.
7 This file is part of GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 #include "basic_blocks.h"
30 #include "libiberty.h"
37 /* Default option values: */
38 bool bb_annotate_all_lines
= FALSE
;
39 unsigned long bb_min_calls
= 1;
40 int bb_table_length
= 10;
42 /* Variables used to compute annotated source listing stats: */
43 static long num_executable_lines
;
44 static long num_lines_executed
;
47 /* Helper for sorting. Compares two symbols and returns result
48 such that sorting will be increasing according to filename, line
49 number, and address (in that order). */
52 DEFUN (cmp_bb
, (lp
, rp
), const void *lp AND
const void *rp
)
55 const Sym
*left
= *(const Sym
**) lp
;
56 const Sym
*right
= *(const Sym
**) rp
;
58 if (left
->file
&& right
->file
)
60 r
= strcmp (left
->file
->name
, right
->file
->name
);
65 if (left
->line_num
!= right
->line_num
)
66 return left
->line_num
- right
->line_num
;
69 if (left
->addr
< right
->addr
)
71 else if (left
->addr
> right
->addr
)
78 /* Helper for sorting. Order basic blocks in decreasing number of
79 calls, ties are broken in increasing order of line numbers. */
81 DEFUN (cmp_ncalls
, (lp
, rp
), const void *lp AND
const void *rp
)
83 const Sym
*left
= *(const Sym
**) lp
;
84 const Sym
*right
= *(const Sym
**) rp
;
91 if (left
->ncalls
< right
->ncalls
)
93 else if (left
->ncalls
> right
->ncalls
)
96 return left
->line_num
- right
->line_num
;
99 /* Skip over variable length string. */
101 DEFUN (fskip_string
, (fp
), FILE * fp
)
105 while ((ch
= fgetc (fp
)) != EOF
)
112 /* Read a basic-block record from file IFP. FILENAME is the name
113 of file IFP and is provided for formatting error-messages only. */
116 DEFUN (bb_read_rec
, (ifp
, filename
), FILE * ifp AND
const char *filename
)
119 bfd_vma addr
, ncalls
;
122 if (gmon_io_read_32 (ifp
, &nblocks
))
124 fprintf (stderr
, _("%s: %s: unexpected end of file\n"),
129 nblocks
= bfd_get_32 (core_bfd
, (bfd_byte
*) & nblocks
);
130 if (gmon_file_version
== 0)
133 for (b
= 0; b
< nblocks
; ++b
)
135 if (gmon_file_version
== 0)
139 /* Version 0 had lots of extra stuff that we don't
140 care about anymore. */
141 if ((fread (&ncalls
, sizeof (ncalls
), 1, ifp
) != 1)
142 || (fread (&addr
, sizeof (addr
), 1, ifp
) != 1)
143 || (fskip_string (ifp
), FALSE
)
144 || (fskip_string (ifp
), FALSE
)
145 || (fread (&line_num
, sizeof (line_num
), 1, ifp
) != 1))
151 else if (gmon_io_read_vma (ifp
, &addr
)
152 || gmon_io_read_vma (ifp
, &ncalls
))
158 /* Basic-block execution counts are meaningful only if we're
159 profiling at the line-by-line level: */
160 if (line_granularity
)
162 sym
= sym_lookup (&symtab
, addr
);
169 printf ("[bb_read_rec] 0x%lx->0x%lx (%s:%d) cnt=%lu\n",
170 (unsigned long) addr
, (unsigned long) sym
->addr
,
171 sym
->name
, sym
->line_num
, (unsigned long) ncalls
));
173 for (i
= 0; i
< NBBS
; i
++)
175 if (! sym
->bb_addr
[i
] || sym
->bb_addr
[i
] == addr
)
177 sym
->bb_addr
[i
] = addr
;
178 sym
->bb_calls
[i
] += ncalls
;
186 static bool user_warned
= FALSE
;
192 _("%s: warning: ignoring basic-block exec counts (use -l or --line)\n"),
200 /* Write all basic-blocks with non-zero counts to file OFP. FILENAME
201 is the name of OFP and is provided for producing error-messages
204 DEFUN (bb_write_blocks
, (ofp
, filename
), FILE * ofp AND
const char *filename
)
210 /* Count how many non-zero blocks with have: */
211 for (sym
= symtab
.base
; sym
< symtab
.limit
; ++sym
)
213 for (i
= 0; i
< NBBS
&& sym
->bb_addr
[i
]; i
++)
219 if (gmon_io_write_8 (ofp
, GMON_TAG_BB_COUNT
)
220 || gmon_io_write_32 (ofp
, nblocks
))
227 for (sym
= symtab
.base
; sym
< symtab
.limit
; ++sym
)
229 for (i
= 0; i
< NBBS
&& sym
->bb_addr
[i
]; i
++)
231 if (gmon_io_write_vma (ofp
, sym
->bb_addr
[i
])
232 || gmon_io_write_vma (ofp
, sym
->bb_calls
[i
]))
241 /* Output basic-block statistics in a format that is easily parseable.
242 Current the format is:
244 <filename>:<line-number>: (<function-name>:<bb-addr): <ncalls> */
247 DEFUN_VOID (print_exec_counts
)
249 Sym
**sorted_bbs
, *sym
;
253 first_output
= FALSE
;
257 /* Sort basic-blocks according to function name and line number: */
258 sorted_bbs
= (Sym
**) xmalloc (symtab
.len
* sizeof (sorted_bbs
[0]));
261 for (sym
= symtab
.base
; sym
< symtab
.limit
; ++sym
)
263 /* Accept symbol if it's in the INCL_EXEC table
264 or there is no INCL_EXEC table
265 and it does not appear in the EXCL_EXEC table. */
266 if (sym_lookup (&syms
[INCL_EXEC
], sym
->addr
)
267 || (syms
[INCL_EXEC
].len
== 0
268 && !sym_lookup (&syms
[EXCL_EXEC
], sym
->addr
)))
270 sorted_bbs
[len
++] = sym
;
274 qsort (sorted_bbs
, len
, sizeof (sorted_bbs
[0]), cmp_bb
);
276 /* Output basic-blocks: */
278 for (i
= 0; i
< len
; ++i
)
280 if (sym
->ncalls
> 0 || ! ignore_zeros
)
282 /* FIXME: This only works if bfd_vma is unsigned long. */
283 printf (_("%s:%d: (%s:0x%lx) %lu executions\n"),
284 sym
->file
? sym
->file
->name
: _("<unknown>"), sym
->line_num
,
285 sym
->name
, (unsigned long) sym
->addr
, sym
->ncalls
);
288 for (j
= 0; j
< NBBS
&& sym
->bb_addr
[j
]; j
++)
290 if (sym
->bb_calls
[j
] > 0 || ! ignore_zeros
)
292 /* FIXME: This only works if bfd_vma is unsigned long. */
293 printf (_("%s:%d: (%s:0x%lx) %lu executions\n"),
294 sym
->file
? sym
->file
->name
: _("<unknown>"), sym
->line_num
,
295 sym
->name
, (unsigned long) sym
->bb_addr
[j
],
303 /* Helper for bb_annotated_source: format annotation containing
304 number of line executions. Depends on being called on each
305 line of a file in sequential order.
307 Global variable bb_annotate_all_lines enables execution count
308 compression (counts are supressed if identical to the last one)
309 and prints counts on all executed lines. Otherwise, print
310 all basic-block execution counts exactly once on the line
311 that starts the basic-block. */
314 DEFUN (annotate_with_count
, (buf
, width
, line_num
, arg
),
315 char *buf AND
int width AND
int line_num AND
void *arg
)
317 Source_File
*sf
= arg
;
320 static unsigned long last_count
;
321 unsigned long last_print
= (unsigned long) -1;
325 if (line_num
<= sf
->num_lines
)
326 b
= sf
->line
[line_num
- 1];
330 for (i
= 0; i
< width
; i
++)
336 char tmpbuf
[NBBS
* 30];
338 unsigned long ncalls
;
342 ++num_executable_lines
;
350 /* If this is a function entry point, label the line no matter what.
351 Otherwise, we're in the middle of a function, so check to see
352 if the first basic-block address is larger than the starting
353 address of the line. If so, then this line begins with a
354 a portion of the previous basic-block, so print that prior
355 execution count (if bb_annotate_all_lines is set). */
358 sprintf (p
, "%lu", b
->ncalls
);
360 last_count
= b
->ncalls
;
361 last_print
= last_count
;
365 else if (bb_annotate_all_lines
366 && b
->bb_addr
[0] && b
->bb_addr
[0] > b
->addr
)
368 sprintf (p
, "%lu", last_count
);
370 last_print
= last_count
;
375 /* Loop through all of this line's basic-blocks. For each one,
376 update last_count, then compress sequential identical counts
377 (if bb_annotate_all_lines) and print the execution count. */
379 for (i
= 0; i
< NBBS
&& b
->bb_addr
[i
]; i
++)
381 last_count
= b
->bb_calls
[i
];
387 ncalls
+= last_count
;
389 if (bb_annotate_all_lines
&& last_count
== last_print
)
394 sprintf (p
, "%lu", last_count
);
397 last_print
= last_count
;
400 /* We're done. If nothing has been printed on this line,
401 print the last execution count (bb_annotate_all_lines),
402 which could be from either a previous line (if there were
403 no BBs on this line), or from this line (if all our BB
404 counts were compressed out because they were identical). */
406 if (bb_annotate_all_lines
&& p
== tmpbuf
)
408 sprintf (p
, "%lu", last_count
);
418 for (c
= 0; c
< width
; c
++)
424 ++num_lines_executed
;
426 if (ncalls
< bb_min_calls
)
428 strcpy (tmpbuf
, "#####");
438 strncpy (buf
, tmpbuf
, width
);
445 strcpy (buf
+ width
- len
, tmpbuf
);
446 for (c
= 0; c
< width
- len
; ++c
)
452 /* Annotate the files named in SOURCE_FILES with basic-block statistics
453 (execution counts). After each source files, a few statistics
454 regarding that source file are printed. */
457 DEFUN_VOID (print_annotated_source
)
459 Sym
*sym
, *line_stats
, *new_line
;
464 /* Find maximum line number for each source file that user is
466 for (sym
= symtab
.base
; sym
< symtab
.limit
; ++sym
)
468 /* Accept symbol if it's file is known, its line number is
469 bigger than anything we have seen for that file so far and
470 if it's in the INCL_ANNO table or there is no INCL_ANNO
471 table and it does not appear in the EXCL_ANNO table. */
472 if (sym
->file
&& sym
->line_num
> sym
->file
->num_lines
473 && (sym_lookup (&syms
[INCL_ANNO
], sym
->addr
)
474 || (syms
[INCL_ANNO
].len
== 0
475 && !sym_lookup (&syms
[EXCL_ANNO
], sym
->addr
))))
477 sym
->file
->num_lines
= sym
->line_num
;
481 /* Allocate line descriptors: */
482 for (sf
= first_src_file
; sf
; sf
= sf
->next
)
484 if (sf
->num_lines
> 0)
486 sf
->line
= (void *) xmalloc (sf
->num_lines
* sizeof (sf
->line
[0]));
487 memset (sf
->line
, 0, sf
->num_lines
* sizeof (sf
->line
[0]));
491 /* Count executions per line: */
492 for (sym
= symtab
.base
; sym
< symtab
.limit
; ++sym
)
494 if (sym
->file
&& sym
->file
->num_lines
495 && (sym_lookup (&syms
[INCL_ANNO
], sym
->addr
)
496 || (syms
[INCL_ANNO
].len
== 0
497 && !sym_lookup (&syms
[EXCL_ANNO
], sym
->addr
))))
499 sym
->file
->ncalls
+= sym
->ncalls
;
500 line_stats
= sym
->file
->line
[sym
->line_num
- 1];
504 /* Common case has at most one basic-block per source line: */
505 sym
->file
->line
[sym
->line_num
- 1] = sym
;
507 else if (!line_stats
->addr
)
509 /* sym is the 3rd .. nth basic block for this line: */
510 line_stats
->ncalls
+= sym
->ncalls
;
514 /* sym is the second basic block for this line. */
515 new_line
= (Sym
*) xmalloc (sizeof (*new_line
));
516 *new_line
= *line_stats
;
518 new_line
->ncalls
+= sym
->ncalls
;
519 sym
->file
->line
[sym
->line_num
- 1] = new_line
;
524 /* Plod over source files, annotating them: */
525 for (sf
= first_src_file
; sf
; sf
= sf
->next
)
527 if (!sf
->num_lines
|| (ignore_zeros
&& sf
->ncalls
== 0))
530 num_executable_lines
= num_lines_executed
= 0;
532 ofp
= annotate_source (sf
, 16, annotate_with_count
, sf
);
536 if (bb_table_length
> 0)
538 fprintf (ofp
, _("\n\nTop %d Lines:\n\n Line Count\n\n"),
541 /* Abuse line arrays---it's not needed anymore: */
542 qsort (sf
->line
, sf
->num_lines
, sizeof (sf
->line
[0]), cmp_ncalls
);
543 table_len
= bb_table_length
;
545 if (table_len
> sf
->num_lines
)
546 table_len
= sf
->num_lines
;
548 for (i
= 0; i
< table_len
; ++i
)
552 if (!sym
|| sym
->ncalls
== 0)
555 fprintf (ofp
, "%9d %10lu\n", sym
->line_num
, sym
->ncalls
);
562 fprintf (ofp
, _("\nExecution Summary:\n\n"));
563 fprintf (ofp
, _("%9ld Executable lines in this file\n"),
564 num_executable_lines
);
565 fprintf (ofp
, _("%9ld Lines executed\n"), num_lines_executed
);
566 fprintf (ofp
, _("%9.2f Percent of the file executed\n"),
568 ? 100.0 * num_lines_executed
/ (double) num_executable_lines
570 fprintf (ofp
, _("\n%9lu Total number of line executions\n"),
572 fprintf (ofp
, _("%9.2f Average executions per line\n"),
574 ? (double) sf
->ncalls
/ (double) num_executable_lines
This page took 0.044564 seconds and 4 git commands to generate.