blob: 889c8f919d415d7d0bf2b06381ba0fc892ff21cc [file] [log] [blame]
njn920050d2005-12-21 19:45:29 +00001#! @PERL@
njnc9539842002-10-02 13:26:35 +00002
njn4f9c9342002-04-29 16:03:24 +00003##--------------------------------------------------------------------##
njn920050d2005-12-21 19:45:29 +00004##--- Cachegrind's annotator. cg_annotate.in ---##
njn4f9c9342002-04-29 16:03:24 +00005##--------------------------------------------------------------------##
6
nethercote137bc552003-11-14 17:47:54 +00007# This file is part of Cachegrind, a Valgrind tool for cache
njnc9539842002-10-02 13:26:35 +00008# profiling programs.
njn4f9c9342002-04-29 16:03:24 +00009#
njn53612422005-03-12 16:22:54 +000010# Copyright (C) 2002-2005 Nicholas Nethercote
njn2bc10122005-05-08 02:10:27 +000011# njn@valgrind.org
njn4f9c9342002-04-29 16:03:24 +000012#
13# This program is free software; you can redistribute it and/or
14# modify it under the terms of the GNU General Public License as
15# published by the Free Software Foundation; either version 2 of the
16# License, or (at your option) any later version.
17#
18# This program is distributed in the hope that it will be useful, but
19# WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21# General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with this program; if not, write to the Free Software
25# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26# 02111-1307, USA.
27#
njn25e49d8e72002-09-23 09:36:25 +000028# The GNU General Public License is contained in the file COPYING.
njn4f9c9342002-04-29 16:03:24 +000029
30#----------------------------------------------------------------------------
njn920050d2005-12-21 19:45:29 +000031# The file format is simple, basically printing the cost centre for every
32# source line, grouped by files and functions:
33#
34# file ::= desc_line* cmd_line events_line data_line+ summary_line
35# desc_line ::= "desc:" ws? non_nl_string
36# cmd_line ::= "cmd:" ws? cmd
37# events_line ::= "events:" ws? (event ws)+
38# data_line ::= file_line | fn_line | count_line
39# file_line ::= ("fl=" | "fi=" | "fe=") filename
40# fn_line ::= "fn=" fn_name
41# count_line ::= line_num ws? (count ws)+
42# summary_line ::= "summary:" ws? (count ws)+
43# count ::= num | "."
44#
45# where
46# 'non_nl_string' is any string not containing a newline.
47# 'cmd' is a string holding the command line of the profiled program.
48# 'filename' and 'fn_name' are strings.
49# 'num' and 'line_num' are decimal integers.
50# 'ws' is whitespace.
51#
52# The contents of the "desc:" lines are printed out at the top
53# of the summary. This is a generic way of providing simulation
54# specific information, eg. for giving the cache configuration for
55# cache simulation.
56#
57# Counts can be "." to represent "N/A", eg. the number of write misses for an
58# instruction that doesn't write to memory.
59#
60# The number of counts in each 'line' and the 'summary_line' should not exceed
61# the number of events in the 'event_line'. If the number in each 'line' is
62# less, cg_annotate treats those missing as though they were a "." entry.
63#
64# A 'file_line' changes the current file name. A 'fn_line' changes the
65# current function name. A 'count_line' contains counts that pertain to the
66# current filename/fn_name. A 'file_line' and a 'fn_line' must appear
67# before any 'count_line's to give the context of the first 'count_line'.
68#
69# Each 'file_line' should be immediately followed by a 'fn_line'. "fi="
70# 'file_lines' are used to switch filenames for inlined functions; "fe="
71# 'file_lines' are similar, but are put at the end of a basic block in which
72# the file name hasn't been switched back to the original file name. (fi
73# and fe lines behave the same, they are only distinguished to help
74# debugging.) [Nb: "fi=" and "fe=" have not been produced by Cachegrind for
75# some time, they are no longer necessary.]
76
77#----------------------------------------------------------------------------
njn4f9c9342002-04-29 16:03:24 +000078# Performance improvements record, using cachegrind.out for cacheprof, doing no
79# source annotation (irrelevant ones removed):
80# user time
81# 1. turned off warnings in add_hash_a_to_b() 3.81 --> 3.48s
82# [now add_array_a_to_b()]
83# 6. make line_to_CC() return a ref instead of a hash 3.01 --> 2.77s
84#
85#10. changed file format to avoid file/fn name repetition 2.40s
86# (not sure why higher; maybe due to new '.' entries?)
87#11. changed file format to drop unnecessary end-line "."s 2.36s
88# (shrunk file by about 37%)
89#12. switched from hash CCs to array CCs 1.61s
90#13. only adding b[i] to a[i] if b[i] defined (was doing it if
91# either a[i] or b[i] was defined, but if b[i] was undefined
92# it just added 0) 1.48s
93#14. Stopped converting "." entries to undef and then back 1.16s
94#15. Using foreach $i (x..y) instead of for ($i = 0...) in
95# add_array_a_to_b() 1.11s
96#
97# Auto-annotating primes:
98#16. Finding count lengths by int((length-1)/3), not by
99# commifying (halves the number of commify calls) 1.68s --> 1.47s
100
njn920050d2005-12-21 19:45:29 +0000101use warnings;
njn4f9c9342002-04-29 16:03:24 +0000102use strict;
103
104#----------------------------------------------------------------------------
105# Overview: the running example in the comments is for:
106# - events = A,B,C,D
107# - --show=C,A,D
108# - --sort=D,C
109#----------------------------------------------------------------------------
110
111#----------------------------------------------------------------------------
112# Global variables, main data structures
113#----------------------------------------------------------------------------
114# CCs are arrays, the counts corresponding to @events, with 'undef'
115# representing '.'. This makes things fast (faster than using hashes for CCs)
116# but we have to use @sort_order and @show_order below to handle the --sort and
117# --show options, which is a bit tricky.
118#----------------------------------------------------------------------------
119
120# Total counts for summary (an array reference).
121my $summary_CC;
122
123# Totals for each function, for overall summary.
124# hash(filename:fn_name => CC array)
125my %fn_totals;
126
127# Individual CCs, organised by filename and line_num for easy annotation.
128# hash(filename => hash(line_num => CC array))
129my %all_ind_CCs;
130
131# Files chosen for annotation on the command line.
132# key = basename (trimmed of any directory), value = full filename
133my %user_ann_files;
134
135# Generic description string.
136my $desc = "";
137
138# Command line of profiled program.
139my $cmd;
140
141# Events in input file, eg. (A,B,C,D)
142my @events;
143
144# Events to show, from command line, eg. (C,A,D)
145my @show_events;
146
147# Map from @show_events indices to @events indices, eg. (2,0,3). Gives the
148# order in which we must traverse @events in order to show the @show_events,
149# eg. (@events[$show_order[1]], @events[$show_order[2]]...) = @show_events.
150# (Might help to think of it like a hash (0 => 2, 1 => 0, 2 => 3).)
151my @show_order;
152
153# Print out the function totals sorted by these events, eg. (D,C).
154my @sort_events;
155
156# Map from @sort_events indices to @events indices, eg. (3,2). Same idea as
njnbff88762002-05-13 20:27:54 +0000157# for @show_order.
njn4f9c9342002-04-29 16:03:24 +0000158my @sort_order;
159
njnbff88762002-05-13 20:27:54 +0000160# Thresholds, one for each sort event (or default to 1 if no sort events
161# specified). We print out functions and do auto-annotations until we've
162# handled this proportion of all the events thresholded.
163my @thresholds;
164
165my $default_threshold = 99;
njn4f9c9342002-04-29 16:03:24 +0000166
njn9b3366a2002-06-10 15:31:16 +0000167my $single_threshold = $default_threshold;
168
njn4f9c9342002-04-29 16:03:24 +0000169# If on, automatically annotates all files that are involved in getting over
njnbff88762002-05-13 20:27:54 +0000170# all the threshold counts.
njn4f9c9342002-04-29 16:03:24 +0000171my $auto_annotate = 0;
172
173# Number of lines to show around each annotated line.
174my $context = 8;
175
176# Directories in which to look for annotation files.
177my @include_dirs = ("");
178
179# Input file name
njn25e49d8e72002-09-23 09:36:25 +0000180my $input_file = undef;
njn4f9c9342002-04-29 16:03:24 +0000181
182# Version number
183my $version = "@VERSION@";
184
185# Usage message.
186my $usage = <<END
njn4eef8d32002-11-14 16:18:55 +0000187usage: cg_annotate [options] --<pid> [source-files]
njn4f9c9342002-04-29 16:03:24 +0000188
189 options for the user, with defaults in [ ], are:
190 -h --help show this message
191 -v --version show version
192 --show=A,B,C only show figures for events A,B,C [all]
193 --sort=A,B,C sort columns by events A,B,C [event column order]
194 --threshold=<0--100> percentage of counts (of primary sort event) we
njnbff88762002-05-13 20:27:54 +0000195 are interested in [$default_threshold%]
njn4f9c9342002-04-29 16:03:24 +0000196 --auto=yes|no annotate all source files containing functions
197 that helped reach the event count threshold [no]
198 --context=N print N lines of context before and after
199 annotated lines [8]
sewardj45f4e7c2005-09-27 19:20:21 +0000200 -I<d> --include=<d> add <d> to list of directories to search for
njn4f9c9342002-04-29 16:03:24 +0000201 source files
202
njn53612422005-03-12 16:22:54 +0000203 Cachegrind is Copyright (C) 2002-2005 Nicholas Nethercote.
njn0e1b5142003-04-15 14:58:06 +0000204 Both are licensed under the GNU General Public License, version 2.
njnbd774032005-08-04 19:26:54 +0000205 Bug reports, feedback, admiration, abuse, etc, to: njn\@valgrind.org.
njn0e1b5142003-04-15 14:58:06 +0000206
njn4f9c9342002-04-29 16:03:24 +0000207END
208;
209
210# Used in various places of output.
211my $fancy = '-' x 80 . "\n";
212
213#-----------------------------------------------------------------------------
214# Argument and option handling
215#-----------------------------------------------------------------------------
216sub process_cmd_line()
217{
218 for my $arg (@ARGV) {
219
220 # Option handling
221 if ($arg =~ /^-/) {
222
223 # --version
224 if ($arg =~ /^-v$|^--version$/) {
njn4eef8d32002-11-14 16:18:55 +0000225 die("cg_annotate-$version\n");
njn4f9c9342002-04-29 16:03:24 +0000226
227 # --show=A,B,C
228 } elsif ($arg =~ /^--show=(.*)$/) {
229 @show_events = split(/,/, $1);
230
231 # --sort=A,B,C
njn920050d2005-12-21 19:45:29 +0000232 # Nb: You can specify thresholds individually, eg.
233 # --sort=A:99,B:95,C:90. These will override any --threshold
234 # argument.
njn4f9c9342002-04-29 16:03:24 +0000235 } elsif ($arg =~ /^--sort=(.*)$/) {
236 @sort_events = split(/,/, $1);
njn920050d2005-12-21 19:45:29 +0000237 my $th_specified = 0;
njnbff88762002-05-13 20:27:54 +0000238 foreach my $i (0 .. scalar @sort_events - 1) {
njn920050d2005-12-21 19:45:29 +0000239 if ($sort_events[$i] =~ /.*:([\d\.]+)%?$/) {
njnbff88762002-05-13 20:27:54 +0000240 my $th = $1;
241 ($th >= 0 && $th <= 100) or die($usage);
242 $sort_events[$i] =~ s/:.*//;
243 $thresholds[$i] = $th;
njn920050d2005-12-21 19:45:29 +0000244 $th_specified = 1;
njnbff88762002-05-13 20:27:54 +0000245 } else {
246 $thresholds[$i] = 0;
247 }
248 }
njn920050d2005-12-21 19:45:29 +0000249 if (not $th_specified) {
250 @thresholds = ();
251 }
njn4f9c9342002-04-29 16:03:24 +0000252
253 # --threshold=X (tolerates a trailing '%')
254 } elsif ($arg =~ /^--threshold=([\d\.]+)%?$/) {
njn9b3366a2002-06-10 15:31:16 +0000255 $single_threshold = $1;
njnbff88762002-05-13 20:27:54 +0000256 ($1 >= 0 && $1 <= 100) or die($usage);
njn4f9c9342002-04-29 16:03:24 +0000257
258 # --auto=yes|no
sewardj45f4e7c2005-09-27 19:20:21 +0000259 } elsif ($arg =~ /^--auto=yes$/) {
260 $auto_annotate = 1;
261 } elsif ($arg =~ /^--auto=no$/) {
262 $auto_annotate = 0;
njn4f9c9342002-04-29 16:03:24 +0000263
264 # --context=N
265 } elsif ($arg =~ /^--context=([\d\.]+)$/) {
266 $context = $1;
267 if ($context < 0) {
268 die($usage);
269 }
270
sewardj45f4e7c2005-09-27 19:20:21 +0000271 # We don't handle "-I name" -- there can be no space.
272 } elsif ($arg =~ /^-I$/) {
273 die("Sorry, no space is allowed after a -I flag\n");
274
275 # --include=A,B,C. Allow -I=name for backwards compatibility.
276 } elsif ($arg =~ /^(-I=|-I|--include=)(.*)$/) {
njn4f9c9342002-04-29 16:03:24 +0000277 my $inc = $2;
278 $inc =~ s|/$||; # trim trailing '/'
279 push(@include_dirs, "$inc/");
280
njn25e49d8e72002-09-23 09:36:25 +0000281 } elsif ($arg =~ /^--(\d+)$/) {
282 my $pid = $1;
283 if (not defined $input_file) {
284 $input_file = "cachegrind.out.$pid";
285 } else {
286 die("One cachegrind.out.<pid> file at a time, please\n");
287 }
288
njn4f9c9342002-04-29 16:03:24 +0000289 } else { # -h and --help fall under this case
290 die($usage);
291 }
292
293 # Argument handling -- annotation file checking and selection.
njn25e49d8e72002-09-23 09:36:25 +0000294 # Stick filenames into a hash for quick 'n easy lookup throughout.
njn4f9c9342002-04-29 16:03:24 +0000295 } else {
296 my $readable = 0;
297 foreach my $include_dir (@include_dirs) {
298 if (-r $include_dir . $arg) {
299 $readable = 1;
300 }
301 }
302 $readable or die("File $arg not found in any of: @include_dirs\n");
303 $user_ann_files{$arg} = 1;
njn25e49d8e72002-09-23 09:36:25 +0000304 }
305 }
306
307 # Must have chosen an input file
308 if (not defined $input_file) {
309 die($usage);
njn4f9c9342002-04-29 16:03:24 +0000310 }
311}
312
313#-----------------------------------------------------------------------------
314# Reading of input file
315#-----------------------------------------------------------------------------
316sub max ($$)
317{
318 my ($x, $y) = @_;
319 return ($x > $y ? $x : $y);
320}
321
322# Add the two arrays; any '.' entries are ignored. Two tricky things:
323# 1. If $a2->[$i] is undefined, it defaults to 0 which is what we want; we turn
324# off warnings to allow this. This makes things about 10% faster than
325# checking for definedness ourselves.
njnbff88762002-05-13 20:27:54 +0000326# 2. We don't add an undefined count or a ".", even though it's value is 0,
327# because we don't want to make an $a2->[$i] that is undef become 0
328# unnecessarily.
njn4f9c9342002-04-29 16:03:24 +0000329sub add_array_a_to_b ($$)
330{
331 my ($a1, $a2) = @_;
332
333 my $n = max(scalar @$a1, scalar @$a2);
334 $^W = 0;
335 foreach my $i (0 .. $n-1) {
njnbff88762002-05-13 20:27:54 +0000336 $a2->[$i] += $a1->[$i] if (defined $a1->[$i] && "." ne $a1->[$i]);
njn4f9c9342002-04-29 16:03:24 +0000337 }
338 $^W = 1;
339}
340
341# Add each event count to the CC array. '.' counts become undef, as do
342# missing entries (implicitly).
343sub line_to_CC ($)
344{
345 my @CC = (split /\s+/, $_[0]);
346 (@CC <= @events) or die("Line $.: too many event counts\n");
347 return \@CC;
348}
349
350sub read_input_file()
351{
352 open(INPUTFILE, "< $input_file") || die "File $input_file not opened\n";
353
354 # Read "desc:" lines.
355 my $line;
njnc68dfbb2003-04-29 11:16:46 +0000356 while ($line = <INPUTFILE>) {
njn4f9c9342002-04-29 16:03:24 +0000357 if ($line =~ s/desc:\s+//) {
358 $desc .= $line;
359 } else {
360 last;
361 }
362 }
363
364 # Read "cmd:" line (Nb: will already be in $line from "desc:" loop above).
365 ($line =~ s/cmd:\s+//) or die("Line $.: missing command line\n");
366 $cmd = $line;
367 chomp($cmd); # Remove newline
368
369 # Read "events:" line. We make a temporary hash in which the Nth event's
370 # value is N, which is useful for handling --show/--sort options below.
371 $line = <INPUTFILE>;
njnc68dfbb2003-04-29 11:16:46 +0000372 (defined $line && $line =~ s/events:\s+//)
373 or die("Line $.: missing events line\n");
njn4f9c9342002-04-29 16:03:24 +0000374 @events = split(/\s+/, $line);
375 my %events;
376 my $n = 0;
377 foreach my $event (@events) {
378 $events{$event} = $n;
379 $n++
380 }
381
382 # If no --show arg give, default to showing all events in the file.
383 # If --show option is used, check all specified events appeared in the
384 # "events:" line. Then initialise @show_order.
385 if (@show_events) {
386 foreach my $show_event (@show_events) {
387 (defined $events{$show_event}) or
388 die("--show event `$show_event' did not appear in input\n");
389 }
390 } else {
391 @show_events = @events;
392 }
393 foreach my $show_event (@show_events) {
394 push(@show_order, $events{$show_event});
395 }
396
397 # Do as for --show, but if no --sort arg given, default to sorting by
398 # column order (ie. first column event is primary sort key, 2nd column is
399 # 2ndary key, etc).
400 if (@sort_events) {
401 foreach my $sort_event (@sort_events) {
402 (defined $events{$sort_event}) or
403 die("--sort event `$sort_event' did not appear in input\n");
404 }
405 } else {
406 @sort_events = @events;
407 }
408 foreach my $sort_event (@sort_events) {
409 push(@sort_order, $events{$sort_event});
410 }
411
njn9b3366a2002-06-10 15:31:16 +0000412 # If multiple threshold args weren't given via --sort, stick in the single
413 # threshold (either from --threshold if used, or the default otherwise) for
414 # the primary sort event, and 0% for the rest.
njnbff88762002-05-13 20:27:54 +0000415 if (not @thresholds) {
416 foreach my $e (@sort_order) {
417 push(@thresholds, 0);
418 }
njn9b3366a2002-06-10 15:31:16 +0000419 $thresholds[0] = $single_threshold;
njnbff88762002-05-13 20:27:54 +0000420 }
421
njn4f9c9342002-04-29 16:03:24 +0000422 my $curr_file;
423 my $curr_fn;
424 my $curr_name;
425
426 my $curr_fn_CC = [];
427 my $curr_file_ind_CCs = {}; # hash(line_num => CC)
428
429 # Read body of input file.
430 while (<INPUTFILE>) {
431 s/#.*$//; # remove comments
432 if (s/^(\d+)\s+//) {
433 my $line_num = $1;
434 my $CC = line_to_CC($_);
435 add_array_a_to_b($CC, $curr_fn_CC);
436
437 # If curr_file is selected, add CC to curr_file list. We look for
438 # full filename matches; or, if auto-annotating, we have to
439 # remember everything -- we won't know until the end what's needed.
440 if ($auto_annotate || defined $user_ann_files{$curr_file}) {
441 my $tmp = $curr_file_ind_CCs->{$line_num};
442 $tmp = [] unless defined $tmp;
443 add_array_a_to_b($CC, $tmp);
444 $curr_file_ind_CCs->{$line_num} = $tmp;
445 }
446
447 } elsif (s/^fn=(.*)$//) {
448 # Commit result from previous function
449 $fn_totals{$curr_name} = $curr_fn_CC if (defined $curr_name);
450
451 # Setup new one
452 $curr_fn = $1;
453 $curr_name = "$curr_file:$curr_fn";
454 $curr_fn_CC = $fn_totals{$curr_name};
455 $curr_fn_CC = [] unless (defined $curr_fn_CC);
456
457 } elsif (s/^fl=(.*)$//) {
458 $all_ind_CCs{$curr_file} = $curr_file_ind_CCs
459 if (defined $curr_file);
460
461 $curr_file = $1;
462 $curr_file_ind_CCs = $all_ind_CCs{$curr_file};
463 $curr_file_ind_CCs = {} unless (defined $curr_file_ind_CCs);
464
njn4f9c9342002-04-29 16:03:24 +0000465 } elsif (s/^\s*$//) {
466 # blank, do nothing
467
468 } elsif (s/^summary:\s+//) {
469 # Finish up handling final filename/fn_name counts
470 $fn_totals{"$curr_file:$curr_fn"} = $curr_fn_CC
471 if (defined $curr_file && defined $curr_fn);
472 $all_ind_CCs{$curr_file} =
473 $curr_file_ind_CCs if (defined $curr_file);
474
475 $summary_CC = line_to_CC($_);
476 (scalar(@$summary_CC) == @events)
477 or die("Line $.: summary event and total event mismatch\n");
478
479 } else {
480 warn("WARNING: line $. malformed, ignoring\n");
481 }
482 }
483
484 # Check if summary line was present
485 if (not defined $summary_CC) {
njnc68dfbb2003-04-29 11:16:46 +0000486 die("missing final summary line, aborting\n");
njn4f9c9342002-04-29 16:03:24 +0000487 }
488
489 close(INPUTFILE);
490}
491
492#-----------------------------------------------------------------------------
493# Print options used
494#-----------------------------------------------------------------------------
495sub print_options ()
496{
497 print($fancy);
498 print($desc);
499 print("Command: $cmd\n");
njn78cce3f2005-12-22 06:14:42 +0000500 print("Data file: $input_file\n");
njn4f9c9342002-04-29 16:03:24 +0000501 print("Events recorded: @events\n");
502 print("Events shown: @show_events\n");
503 print("Event sort order: @sort_events\n");
njnbff88762002-05-13 20:27:54 +0000504 print("Thresholds: @thresholds\n");
njn4f9c9342002-04-29 16:03:24 +0000505
506 my @include_dirs2 = @include_dirs; # copy @include_dirs
507 shift(@include_dirs2); # remove "" entry, which is always the first
508 unshift(@include_dirs2, "") if (0 == @include_dirs2);
509 my $include_dir = shift(@include_dirs2);
510 print("Include dirs: $include_dir\n");
511 foreach my $include_dir (@include_dirs2) {
512 print(" $include_dir\n");
513 }
514
515 my @user_ann_files = keys %user_ann_files;
516 unshift(@user_ann_files, "") if (0 == @user_ann_files);
517 my $user_ann_file = shift(@user_ann_files);
518 print("User annotated: $user_ann_file\n");
519 foreach $user_ann_file (@user_ann_files) {
520 print(" $user_ann_file\n");
521 }
522
523 my $is_on = ($auto_annotate ? "on" : "off");
524 print("Auto-annotation: $is_on\n");
525 print("\n");
526}
527
528#-----------------------------------------------------------------------------
529# Print summary and sorted function totals
530#-----------------------------------------------------------------------------
531sub mycmp ($$)
532{
533 my ($c, $d) = @_;
534
535 # Iterate through sort events (eg. 3,2); return result if two are different
536 foreach my $i (@sort_order) {
537 my ($x, $y);
538 $x = $c->[$i];
539 $y = $d->[$i];
540 $x = -1 unless defined $x;
541 $y = -1 unless defined $y;
542
543 my $cmp = $y <=> $x; # reverse sort
544 if (0 != $cmp) {
545 return $cmp;
546 }
547 }
548 # Exhausted events, equal
549 return 0;
550}
551
552sub commify ($) {
553 my ($val) = @_;
554 1 while ($val =~ s/^(\d+)(\d{3})/$1,$2/);
555 return $val;
556}
557
558# Because the counts can get very big, and we don't want to waste screen space
559# and make lines too long, we compute exactly how wide each column needs to be
560# by finding the widest entry for each one.
561sub compute_CC_col_widths (@)
562{
563 my @CCs = @_;
564 my $CC_col_widths = [];
565
566 # Initialise with minimum widths (from event names)
567 foreach my $event (@events) {
568 push(@$CC_col_widths, length($event));
569 }
570
571 # Find maximum width count for each column. @CC_col_width positions
572 # correspond to @CC positions.
573 foreach my $CC (@CCs) {
574 foreach my $i (0 .. scalar(@$CC)-1) {
575 if (defined $CC->[$i]) {
576 # Find length, accounting for commas that will be added
577 my $length = length $CC->[$i];
578 my $clength = $length + int(($length - 1) / 3);
579 $CC_col_widths->[$i] = max($CC_col_widths->[$i], $clength);
580 }
581 }
582 }
583 return $CC_col_widths;
584}
585
586# Print the CC with each column's size dictated by $CC_col_widths.
587sub print_CC ($$)
588{
589 my ($CC, $CC_col_widths) = @_;
590
591 foreach my $i (@show_order) {
592 my $count = (defined $CC->[$i] ? commify($CC->[$i]) : ".");
593 my $space = ' ' x ($CC_col_widths->[$i] - length($count));
594 print("$space$count ");
595 }
596}
597
598sub print_events ($)
599{
600 my ($CC_col_widths) = @_;
601
602 foreach my $i (@show_order) {
603 my $event = $events[$i];
604 my $event_width = length($event);
605 my $col_width = $CC_col_widths->[$i];
606 my $space = ' ' x ($col_width - $event_width);
njn602392b2002-04-30 11:34:54 +0000607 print("$space$event ");
njn4f9c9342002-04-29 16:03:24 +0000608 }
609}
610
611# Prints summary and function totals (with separate column widths, so that
612# function names aren't pushed over unnecessarily by huge summary figures).
613# Also returns a hash containing all the files that are involved in getting the
njnbff88762002-05-13 20:27:54 +0000614# events count above the thresholds (ie. all the interesting ones).
njn4f9c9342002-04-29 16:03:24 +0000615sub print_summary_and_fn_totals ()
616{
617 my @fn_fullnames = keys %fn_totals;
618
619 # Work out the size of each column for printing (summary and functions
620 # separately).
621 my $summary_CC_col_widths = compute_CC_col_widths($summary_CC);
622 my $fn_CC_col_widths = compute_CC_col_widths(values %fn_totals);
623
624 # Header and counts for summary
625 print($fancy);
626 print_events($summary_CC_col_widths);
627 print("\n");
628 print($fancy);
629 print_CC($summary_CC, $summary_CC_col_widths);
630 print(" PROGRAM TOTALS\n");
631 print("\n");
632
633 # Header for functions
634 print($fancy);
635 print_events($fn_CC_col_widths);
636 print(" file:function\n");
637 print($fancy);
638
639 # Sort function names into order dictated by --sort option.
640 @fn_fullnames = sort {
641 mycmp($fn_totals{$a}, $fn_totals{$b})
642 } @fn_fullnames;
643
njnbff88762002-05-13 20:27:54 +0000644
645 # Assertion
646 (scalar @sort_order == scalar @thresholds) or
647 die("sort_order length != thresholds length:\n",
648 " @sort_order\n @thresholds\n");
649
njn4f9c9342002-04-29 16:03:24 +0000650 my $threshold_files = {};
njnbff88762002-05-13 20:27:54 +0000651 # @curr_totals has the same shape as @sort_order and @thresholds
652 my @curr_totals = ();
653 foreach my $e (@thresholds) {
654 push(@curr_totals, 0);
655 }
njn4f9c9342002-04-29 16:03:24 +0000656
657 # Print functions, stopping when the threshold has been reached.
658 foreach my $fn_name (@fn_fullnames) {
659
njnbff88762002-05-13 20:27:54 +0000660 # Stop when we've reached all the thresholds
661 my $reached_all_thresholds = 1;
njnb94e77a2002-05-15 14:30:55 +0000662 foreach my $i (0 .. scalar @thresholds - 1) {
njnbff88762002-05-13 20:27:54 +0000663 my $prop = $curr_totals[$i] * 100 / $summary_CC->[$sort_order[$i]];
njn01f192e2003-07-04 15:59:49 +0000664 $reached_all_thresholds &&= ($prop >= $thresholds[$i]);
njnbff88762002-05-13 20:27:54 +0000665 }
666 last if $reached_all_thresholds;
njn4f9c9342002-04-29 16:03:24 +0000667
668 # Print function results
669 my $fn_CC = $fn_totals{$fn_name};
670 print_CC($fn_CC, $fn_CC_col_widths);
671 print(" $fn_name\n");
672
njnbff88762002-05-13 20:27:54 +0000673 # Update the threshold counts
njn4f9c9342002-04-29 16:03:24 +0000674 my $filename = $fn_name;
daywalkerd722c202002-05-01 21:52:05 +0000675 $filename =~ s/:.+$//; # remove function name
njn4f9c9342002-04-29 16:03:24 +0000676 $threshold_files->{$filename} = 1;
njnbff88762002-05-13 20:27:54 +0000677 foreach my $i (0 .. scalar @sort_order - 1) {
678 $curr_totals[$i] += $fn_CC->[$sort_order[$i]]
679 if (defined $fn_CC->[$sort_order[$i]]);
680 }
njn4f9c9342002-04-29 16:03:24 +0000681 }
682 print("\n");
683
684 return $threshold_files;
685}
686
687#-----------------------------------------------------------------------------
688# Annotate selected files
689#-----------------------------------------------------------------------------
690
691# Issue a warning that the source file is more recent than the input file.
692sub warning_on_src_more_recent_than_inputfile ($)
693{
694 my $src_file = $_[0];
695
696 my $warning = <<END
697@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
698@@ WARNING @@ WARNING @@ WARNING @@ WARNING @@ WARNING @@ WARNING @@ WARNING @@
699@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
700@ Source file '$src_file' is more recent than input file '$input_file'.
701@ Annotations may not be correct.
702@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
703
704END
705;
706 print($warning);
707}
708
709# If there is information about lines not in the file, issue a warning
710# explaining possible causes.
711sub warning_on_nonexistent_lines ($$$)
712{
713 my ($src_more_recent_than_inputfile, $src_file, $excess_line_nums) = @_;
714 my $cause_and_solution;
715
716 if ($src_more_recent_than_inputfile) {
717 $cause_and_solution = <<END
718@@ cause: '$src_file' has changed since information was gathered.
719@@ If so, a warning will have already been issued about this.
720@@ solution: Recompile program and rerun under "valgrind --cachesim=yes" to
721@@ gather new information.
722END
723 # We suppress warnings about .h files
724 } elsif ($src_file =~ /\.h$/) {
725 $cause_and_solution = <<END
726@@ cause: bug in the Valgrind's debug info reader that screws up with .h
727@@ files sometimes
728@@ solution: none, sorry
729END
730 } else {
731 $cause_and_solution = <<END
732@@ cause: not sure, sorry
733END
734 }
735
736 my $warning = <<END
737@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
738@@ WARNING @@ WARNING @@ WARNING @@ WARNING @@ WARNING @@ WARNING @@ WARNING @@
739@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
740@@
741@@ Information recorded about lines past the end of '$src_file'.
742@@
743@@ Probable cause and solution:
744$cause_and_solution@@
745@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
746END
747;
748 print($warning);
749}
750
751sub annotate_ann_files($)
752{
753 my ($threshold_files) = @_;
754
755 my %all_ann_files;
756 my @unfound_auto_annotate_files;
757 my $printed_totals_CC = [];
758
759 # If auto-annotating, add interesting files (but not "???")
760 if ($auto_annotate) {
761 delete $threshold_files->{"???"};
762 %all_ann_files = (%user_ann_files, %$threshold_files)
763 } else {
764 %all_ann_files = %user_ann_files;
765 }
766
767 # Track if we did any annotations.
768 my $did_annotations = 0;
769
770 LOOP:
771 foreach my $src_file (keys %all_ann_files) {
772
773 my $opened_file = "";
774 my $full_file_name = "";
775 foreach my $include_dir (@include_dirs) {
776 my $try_name = $include_dir . $src_file;
777 if (open(INPUTFILE, "< $try_name")) {
778 $opened_file = $try_name;
779 $full_file_name = ($include_dir eq ""
780 ? $src_file
781 : "$include_dir + $src_file");
782 last;
783 }
784 }
785
786 if (not $opened_file) {
787 # Failed to open the file. If chosen on the command line, die.
788 # If arose from auto-annotation, print a little message.
789 if (defined $user_ann_files{$src_file}) {
790 die("File $src_file not opened in any of: @include_dirs\n");
791
792 } else {
793 push(@unfound_auto_annotate_files, $src_file);
794 }
795
796 } else {
797 # File header (distinguish between user- and auto-selected files).
798 print("$fancy");
799 my $ann_type =
800 (defined $user_ann_files{$src_file} ? "User" : "Auto");
801 print("-- $ann_type-annotated source: $full_file_name\n");
802 print("$fancy");
803
804 # Get file's CCs
805 my $src_file_CCs = $all_ind_CCs{$src_file};
806 if (!defined $src_file_CCs) {
807 print(" No information has been collected for $src_file\n\n");
808 next LOOP;
809 }
810
811 $did_annotations = 1;
812
813 # Numeric, not lexicographic sort!
814 my @line_nums = sort {$a <=> $b} keys %$src_file_CCs;
815
816 # If $src_file more recent than cachegrind.out, issue warning
817 my $src_more_recent_than_inputfile = 0;
818 if ((stat $opened_file)[9] > (stat $input_file)[9]) {
819 $src_more_recent_than_inputfile = 1;
820 warning_on_src_more_recent_than_inputfile($src_file);
821 }
822
823 # Work out the size of each column for printing
824 my $CC_col_widths = compute_CC_col_widths(values %$src_file_CCs);
825
826 # Events header
827 print_events($CC_col_widths);
828 print("\n\n");
829
830 # Shift out 0 if it's in the line numbers (from unknown entries,
831 # likely due to bugs in Valgrind's stabs debug info reader)
832 shift(@line_nums) if (0 == $line_nums[0]);
833
834 # Finds interesting line ranges -- all lines with a CC, and all
835 # lines within $context lines of a line with a CC.
836 my $n = @line_nums;
837 my @pairs;
838 for (my $i = 0; $i < $n; $i++) {
839 push(@pairs, $line_nums[$i] - $context); # lower marker
840 while ($i < $n-1 &&
841 $line_nums[$i] + 2*$context >= $line_nums[$i+1]) {
842 $i++;
843 }
844 push(@pairs, $line_nums[$i] + $context); # upper marker
845 }
846
847 # Annotate chosen lines, tracking total counts of lines printed
848 $pairs[0] = 1 if ($pairs[0] < 1);
849 while (@pairs) {
850 my $low = shift @pairs;
851 my $high = shift @pairs;
852 while ($. < $low-1) {
853 my $tmp = <INPUTFILE>;
854 last unless (defined $tmp); # hack to detect EOF
855 }
856 my $src_line;
857 # Print line number, unless start of file
858 print("-- line $low " . '-' x 40 . "\n") if ($low != 1);
859 while (($. < $high) && ($src_line = <INPUTFILE>)) {
860 if (defined $line_nums[0] && $. == $line_nums[0]) {
861 print_CC($src_file_CCs->{$.}, $CC_col_widths);
862 add_array_a_to_b($src_file_CCs->{$.},
863 $printed_totals_CC);
864 shift(@line_nums);
865
866 } else {
867 print_CC( [], $CC_col_widths);
868 }
869
870 print(" $src_line");
871 }
872 # Print line number, unless EOF
873 if ($src_line) {
874 print("-- line $high " . '-' x 40 . "\n");
875 } else {
876 last;
877 }
878 }
879
880 # If there was info on lines past the end of the file...
881 if (@line_nums) {
882 foreach my $line_num (@line_nums) {
883 print_CC($src_file_CCs->{$line_num}, $CC_col_widths);
884 print(" <bogus line $line_num>\n");
885 }
886 print("\n");
887 warning_on_nonexistent_lines($src_more_recent_than_inputfile,
888 $src_file, \@line_nums);
889 }
890 print("\n");
891
892 # Print summary of counts attributed to file but not to any
893 # particular line (due to incomplete debug info).
894 if ($src_file_CCs->{0}) {
895 print_CC($src_file_CCs->{0}, $CC_col_widths);
896 print(" <counts for unidentified lines in $src_file>\n\n");
897 }
898
899 close(INPUTFILE);
900 }
901 }
902
903 # Print list of unfound auto-annotate selected files.
904 if (@unfound_auto_annotate_files) {
905 print("$fancy");
906 print("The following files chosen for auto-annotation could not be found:\n");
907 print($fancy);
908 foreach my $f (@unfound_auto_annotate_files) {
909 print(" $f\n");
910 }
911 print("\n");
912 }
913
914 # If we did any annotating, print what proportion of events were covered by
915 # annotated lines above.
916 if ($did_annotations) {
917 my $percent_printed_CC;
918 foreach (my $i = 0; $i < @$summary_CC; $i++) {
919 $percent_printed_CC->[$i] =
920 sprintf("%.0f",
921 $printed_totals_CC->[$i] / $summary_CC->[$i] * 100);
922 }
923 my $pp_CC_col_widths = compute_CC_col_widths($percent_printed_CC);
924 print($fancy);
925 print_events($pp_CC_col_widths);
926 print("\n");
927 print($fancy);
928 print_CC($percent_printed_CC, $pp_CC_col_widths);
929 print(" percentage of events annotated\n\n");
930 }
931}
932
933#----------------------------------------------------------------------------
934# "main()"
935#----------------------------------------------------------------------------
936process_cmd_line();
937read_input_file();
938print_options();
939my $threshold_files = print_summary_and_fn_totals();
940annotate_ann_files($threshold_files);
941
njn7cf0bd32002-06-08 13:36:03 +0000942##--------------------------------------------------------------------##
njn4eef8d32002-11-14 16:18:55 +0000943##--- end cg_annotate.in ---##
njn7cf0bd32002-06-08 13:36:03 +0000944##--------------------------------------------------------------------##
945
946