Save all modification
[mozilla-1.9/m8.git] / tools / footprint / codemap.pl
blob81b5fd524476a414c0c0bb7a42edfff87468de21
1 while (<>) {
2 chomp;
3 if (/^mozilla.exe/) {
4 $start = 1;
6 if ($start) {
7 chomp;
8 @fields = split(/ */);
9 $bytes = $fields[2];
10 $bytes =~ s/,//g;
11 $codesize += $bytes;
14 printf "%8.2f K codesize\n", toK($codesize);
16 sub toK()
18 return $_[0] / 1024;