gecko-dev/tools/footprint/codemap.pl
dp%netscape.com 75302894d5 first version
2002-02-21 22:24:18 +00:00

20 lines
318 B
Perl

while (<>) {
chomp;
if (/^mozilla.exe/) {
$start = 1;
}
if ($start) {
chomp;
@fields = split(/ */);
$bytes = $fields[2];
$bytes =~ s/,//g;
$codesize += $bytes;
}
}
printf "%8.2f K codesize\n", toK($codesize);
sub toK()
{
return $_[0] / 1024;
}