source: memlog2dot @ 1bd82e0

Revision 1bd82e0, 7.5 KB checked in by Hal Finkel <hfinkel@…>, 9 years ago (diff)

adjust for c++, use caching of dladdr, fixup for short names when making dot

  • Property mode set to 100755
Line 
1#! /usr/bin/env perl
2use strict;
3use File::Basename;
4
5my $memlog_fn = $ARGV[0];
6my $out_dir = $ARGV[1] || '.';
7
8my $print_raw_proc_name = 0;
9
10if (! -f $memlog_fn) {
11  print "Usage: $0 <memlog file> [<output directory>]\n";
12  exit 1;
13}
14
15# The version of addr2line and friends that you use can make a big difference,
16# especially on BE ppc64, where older versions of addr2line did not account
17# correctly for the function descriptor setup. At ALCF, on the BG/Q, we have
18# newer versions not in the default search path (from bgclang).
19my $alcf_bu_dir = '/soft/compilers/bgclang/current/binutils/bin';
20if (-d $alcf_bu_dir) {
21  $ENV{'PATH'} = $alcf_bu_dir . ':' . $ENV{'PATH'};
22}
23
24open(MEMLOG, $memlog_fn) || die "Can't open $memlog_fn: $!";
25
26# The first step is to determine the high-water mark.
27my $max_rss = 0;
28foreach my $line (<MEMLOG>) {
29  chomp($line);
30  my @parts = split(/\t/, $line);
31
32  my $op = shift(@parts);
33  my $state = shift(@parts);
34
35  my ($time, $then_max_rss, $tid) = split(/\s+/, $state);
36  if ($max_rss < $then_max_rss) {
37    $max_rss = $then_max_rss;
38  }
39}
40
41seek(MEMLOG, 0, 0);
42
43# Scan the log for malloc/free pairings. We're interested only in active
44# allocations at the time when the rss reaches the final maxrss.
45my $max_rss_time = 0;
46my %malloc_lines;
47foreach my $line (<MEMLOG>) {
48  chomp($line);
49  my @parts = split(/\t/, $line);
50
51  my $op = shift(@parts);
52  my $state = shift(@parts);
53
54  if ($op =~ /^M:/) {
55    my ($size, $ptr) = ($op =~ /^M: (\d+) 0x(\w+)/);
56    $malloc_lines{$ptr} = $line;
57  } elsif ($op =~ /^F:/) {
58    my ($ptr) = ($op =~ /^F: 0x(\w+)/);
59    delete $malloc_lines{$ptr};
60  } else {
61    next;
62  }
63
64  # If we've reached the max rss, we've seen all we need to see.
65  my ($time, $then_max_rss, $tid) = split(/\s+/, $state);
66  $max_rss_time = $time;
67  if ($then_max_rss == $max_rss) {
68    last;
69  }
70}
71
72close(MEMLOG);
73
74# Convert maxrss, currently in KB, to bytes.
75$max_rss *= 1024;
76
77my $total_size = 0;
78my %roots;
79my %all_nodes;
80foreach my $line (values %malloc_lines) {
81  my @parts = split(/\t/, $line);
82
83  my $op = shift(@parts);
84  my $state = shift(@parts);
85
86  # Only dealing with allocations here...
87  if ($op !~ /^M:/) {
88    next;
89  }
90
91  my ($size, $ptr) = ($op =~ /^M: (\d+) 0x(\w+)/);
92  my ($time, $then_max_rss, $tid) = split(/\s+/, $state);
93
94  $total_size += $size;
95
96  sub level_parts($) {
97    my $level = @_[0];
98    my ($file_name, $proc_name, $off, $pc, $relpc) =
99      ($level =~ /^(.*) \((.*)\+0x(\w+)\) \[0x(\w+) \(0x(\w+)\)\]/);
100
101    return ($file_name, $proc_name, $off, $pc, $relpc);
102  }
103
104  # Put the top of the stack first.
105  @parts = reverse(@parts);
106
107  my $parent = \%roots;
108  for (my $i = 0; $i < scalar(@parts); ++$i) {
109    my $level = $parts[$i];
110    my ($file_name, $proc_name, $off, $pc, $relpc) = level_parts($level);
111
112    # Skip this level if we don't even know from what file it came.
113    if ($file_name eq '?') {
114      next;
115    }
116
117    # print STDERR "parsed: $file_name, $proc_name, $off, $pc, $relpc\n";
118
119    if (!exists $all_nodes{$pc}) {
120      $all_nodes{$pc}->{'file_name'} = $file_name;
121      $all_nodes{$pc}->{'proc_name'} = $proc_name;
122      $all_nodes{$pc}->{'off'} = $off;
123      $all_nodes{$pc}->{'pc'} = $pc;
124      $all_nodes{$pc}->{'relpc'} = $relpc;
125    }
126
127    if (!exists $parent->{$pc}) {
128      $parent->{$pc} = $all_nodes{$pc};
129    }
130
131    $parent->{$pc}->{'size'} += $size;
132
133    my ($next_file_name, $next_proc_name, $next_off, $next_pc, $next_relpc);
134    if ($i < scalar(@parts)-1) {
135     my $next_level = $parts[$i+1];
136     ($next_file_name, $next_proc_name, $next_off, $next_pc, $next_relpc) =
137       level_parts($next_level);
138      $parent->{$pc}->{'child_sizes'}->{$next_pc} += $size;
139    }
140
141    if (!exists $parent->{'children'}) {
142      $parent->{'children'} = {};
143    }
144
145    $parent = $parent->{'children'};
146  }
147}
148
149my $dot_fn = "$out_dir/" . basename($memlog_fn) . ".dot";
150my $ps_fn = "$out_dir/" . basename($memlog_fn) . ".ps";
151my $pdf_fn = "$out_dir/" . basename($memlog_fn) . ".pdf";
152
153open(DOT, ">$dot_fn") || die "Can't open $dot_fn: $!";
154
155sub format_bytes($) {
156  my @sizes = qw( B KB MB GB TB PB );
157  my $size = $_[0];
158
159  my $i = 0;
160  while ($size > 1024) {
161    $size /= 1024;
162    ++$i;
163  }
164
165  return sprintf("%.3f $sizes[$i]", $size);
166}
167
168print DOT ("digraph \"memlog\" {\n");
169print DOT ("size=\"8,11\";\n");
170print DOT ("node [width=0.375,height=0.25];\n");
171
172printf DOT ("Legend [shape=box, fontsize=100, shape=oval," .
173            "label=\"Total: %s active at maxrss = %s after %s s\"];\n",
174            format_bytes($total_size), format_bytes($max_rss), $max_rss_time);
175
176my %cached_names;
177sub get_name($) {
178  my $node = $_[0];
179  my $pc = $node->{'pc'};
180
181  if (exists $cached_names{$pc}) {
182    return $cached_names{$pc};
183  }
184
185  my $ret = '';
186
187  # Prefer the relative offset (that is what we want for shared libraries), but
188  # if is not available, use the full offset (which is what we want for the
189  # base executable).
190  my $exe_off = $node->{'relpc'};
191  if (!$exe_off) {
192    $exe_off = $pc;
193  }
194
195  my $file_name = $node->{'file_name'};
196  my ($func, $loc) = `addr2line -e $file_name -f 0x$exe_off`;
197  chomp($func);
198  chomp($loc);
199
200  if ($func !~ /^\?/) {
201    # In general, this function name might look something like:
202    #   00000329.plt_call.wcsnrtombs@@GLIBC_2.3+0
203    $func =~ s/@.*//; # Remove trailing symbol version strings
204    $func =~ s/.*\.//;
205    $func = `c++filt '$func'`;
206    chomp($func);
207
208    # It sometimes happens that addr2line is a bit too smart: when debugging
209    # information is available, it might print a local alias for the
210    # function instead of the full name (for example, printing 'List'
211    # instead of 'Foo::List<int>::List(int, int const&)').
212    if ($node->{'proc_name'} ne '?') {
213      my $proc_name = $node->{'proc_name'};
214      $proc_name = `c++filt '$proc_name'`;
215      chomp($proc_name);
216
217      if (length($proc_name) > length($func)) {
218        $func = $proc_name;
219      }
220    }
221
222    $ret .= $func . '\n';
223
224    if ($loc !~ /^\?/) {
225      $ret .= $loc . '\n';
226    }
227  } elsif ($node->{'proc_name'} ne '?') {
228    my $proc_name = $node->{'proc_name'};
229    $proc_name = `c++filt '$proc_name'`;
230    chomp($proc_name);
231
232    $ret .= $proc_name . '\n';
233  }
234
235  $ret .= $node->{'file_name'};
236  if ($print_raw_proc_name and $node->{'proc_name'} ne '?') {
237    $ret .= '\n' . $node->{'proc_name'} . '+0x' . $node->{'off'};
238  }
239
240  $cached_names{$pc} = $ret;
241  return $ret;
242}
243
244my $skip_frac = 0.01;
245my %skipped;
246
247foreach my $pc (keys %all_nodes) {
248  my $node = $all_nodes{$pc};
249  my $name = get_name($node);
250
251  my $local_size = $node->{'size'};
252  if ($local_size * 1.0 / $total_size < $skip_frac) {
253    $skipped{$pc} = 1;
254    next;
255  }
256
257  my $fs = 8.0;
258  if ($local_size > 0) {
259    $fs = 50.0 * (abs($local_size * 1.0 / $total_size))**0.125;
260  }
261
262  printf DOT ("N%s [label=\"%s\\n%s\", shape=box, fontsize=%.1f%s];\n",
263    $pc, $name, format_bytes($local_size), $fs);
264}
265
266foreach my $pc (keys %all_nodes) {
267  my $node = $all_nodes{$pc};
268
269  my $local_size = $node->{'size'};
270  if ($skipped{$pc}) {
271    next;
272  }
273
274  foreach my $cpc (keys %{$node->{'child_sizes'}}) {
275    if ($skipped{$cpc}) {
276      next;
277    }
278
279    my $child_size = $node->{'child_sizes'}->{$cpc};
280    my $frac = $child_size * 1.0 / $local_size;
281
282    my $weight = 100.0 * sqrt($frac);
283    my $style = sprintf("setlinewidth(%f)", 8.0 * sqrt($frac));
284
285    my $fs = 40.0 * $frac**0.125;
286
287    printf DOT ("N%s -> N%s [label=\"%s\", weight=%d, style=\"%s\", fontsize=%.1f];\n",
288      $pc, $cpc, format_bytes($child_size), $weight, $style, $fs);
289  }
290}
291
292print DOT ("}\n");
293
294close(DOT);
295
296system("dot -Tps2 < '$dot_fn' > '$ps_fn'");
297system("ps2pdf '$ps_fn' '$pdf_fn'");
298
299exit 0;
300
Note: See TracBrowser for help on using the repository browser.