source: memlog2dot @ 747d2b1

Revision 747d2b1, 6.9 KB checked in by Hal Finkel <hfinkel@…>, 9 years ago (diff)

get newer binutils; we do have them at ALCF

  • 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
168printf DOT ("digraph \"memlog %s (maxrss = %s after %s s)\" {\n",
169            format_bytes($total_size), format_bytes($max_rss), $max_rss_time);
170print DOT ("size=\"8,11\";\n");
171print DOT ("node [width=0.375,height=0.25];\n");
172
173my %cached_names;
174sub get_name($) {
175  my $node = $_[0];
176  my $pc = $node->{'pc'};
177
178  if (exists $cached_names{$pc}) {
179    return $cached_names{$pc};
180  }
181
182  my $ret = '';
183
184  # Prefer the relative offset (that is what we want for shared libraries), but
185  # if is not available, use the full offset (which is what we want for the
186  # base executable).
187  my $exe_off = $node->{'relpc'};
188  if (!$exe_off) {
189    $exe_off = $pc;
190  }
191
192  my $file_name = $node->{'file_name'};
193  my ($func, $loc) = `addr2line -e $file_name -f 0x$exe_off`;
194  chomp($func);
195  chomp($loc);
196
197  if ($func !~ /^\?/) {
198    # In general, this function name might look something like:
199    #   00000329.plt_call.wcsnrtombs@@GLIBC_2.3+0
200    $func =~ s/@.*//; # Remove trailing symbol version strings
201    $func =~ s/.*\.//;
202    $func = `c++filt '$func'`;
203    chomp($func);
204
205    $ret .= $func . '\n';
206
207    if ($loc !~ /^\?/) {
208      $ret .= $loc . '\n';
209    }
210  } elsif ($node->{'proc_name'} ne '?') {
211    my $proc_name = $node->{'proc_name'};
212    $proc_name = `c++filt '$proc_name'`;
213    chomp($proc_name);
214
215    $ret .= $proc_name . '\n';
216  }
217
218  $ret .= $node->{'file_name'};
219  if ($print_raw_proc_name and $node->{'proc_name'} ne '?') {
220    $ret .= '\n' . $node->{'proc_name'} . '+0x' . $node->{'off'};
221  }
222
223  $cached_names{$pc} = $ret;
224  return $ret;
225}
226
227my $skip_frac = 0.01;
228my %skipped;
229
230foreach my $pc (keys %all_nodes) {
231  my $node = $all_nodes{$pc};
232  my $name = get_name($node);
233
234  my $local_size = $node->{'size'};
235  if ($local_size * 1.0 / $total_size < $skip_frac) {
236    $skipped{$pc} = 1;
237    next;
238  }
239
240  my $fs = 8.0;
241  if ($local_size > 0) {
242    $fs = 50.0 * (abs($local_size * 1.0 / $total_size))**0.125;
243  }
244
245  printf DOT ("N%s [label=\"%s\\n%s\", shape=box, fontsize=%.1f%s];\n",
246    $pc, $name, format_bytes($local_size), $fs);
247}
248
249foreach my $pc (keys %all_nodes) {
250  my $node = $all_nodes{$pc};
251
252  my $local_size = $node->{'size'};
253  if ($skipped{$pc}) {
254    next;
255  }
256
257  foreach my $cpc (keys %{$node->{'child_sizes'}}) {
258    if ($skipped{$cpc}) {
259      next;
260    }
261
262    my $child_size = $node->{'child_sizes'}->{$cpc};
263    my $frac = $child_size * 1.0 / $local_size;
264
265    my $weight = 100.0 * sqrt($frac);
266    my $style = sprintf("setlinewidth(%f)", 8.0 * sqrt($frac));
267
268    my $fs = 40.0 * $frac**0.125;
269
270    printf DOT ("N%s -> N%s [label=\"%s\", weight=%d, style=\"%s\", fontsize=%.1f];\n",
271      $pc, $cpc, format_bytes($child_size), $weight, $style, $fs);
272  }
273}
274
275print DOT ("}\n");
276
277close(DOT);
278
279system("dot -Tps2 < '$dot_fn' > '$ps_fn'");
280system("ps2pdf '$ps_fn' '$pdf_fn'");
281
282exit 0;
283
Note: See TracBrowser for help on using the repository browser.