blob: e82d6e85d398a18ac4a5d8c5ea6a1aea2f20164c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/perl
#
# Convert the memory profiles of memprof to calltree format,
# loadable with KCachegrind
#
# (C) 2004, Josef Weidendorfer
print "events: Allocated\n";
while(<>) {
if (/^(\S.*)$/) {
$next = 0;
print "\nfn=$1\n";
next;
}
if (/^ children:/) {
$next = 1; #children
next;
}
if (/^ inherited:/) {
$next = 2; #inherited
next;
}
if (/^ total:/) {
# ignore, is calculated
next;
}
if (/^ self:\s*(\d+)/) {
if ($1 ne "0") {
print "0 $1\n";
}
next;
}
if (/^\s+(\S.*?):\s*(\d+)$/) {
if ($next < 2) { next; }
print "cfn=$1\ncalls=0 0\n0 $2\n";
}
}
|