mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
38 lines
873 B
Perl
Executable File
38 lines
873 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
(@ARGV == 1)
|
|
or die "ERROR: no map file specified.\n";
|
|
open(my $file, $ARGV[0])
|
|
or die "ERROR: could not open file '$ARGV[0]'.\n";
|
|
|
|
my $src = 0;
|
|
my $asm = 0;
|
|
while (my $line = <$file>)
|
|
{
|
|
if ($line =~ /^ \.(\w+)\s+0x[0-9a-f]+\s+(0x[0-9a-f]+) (\w+)\/.+\.o/)
|
|
{
|
|
my $section = $1;
|
|
my $size = hex($2);
|
|
my $dir = $3;
|
|
|
|
if ($section =~ /text/)
|
|
{
|
|
if ($dir eq 'src')
|
|
{
|
|
$src += $size;
|
|
}
|
|
elsif ($dir eq 'asm')
|
|
{
|
|
$asm += $size;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
my $total = $src + $asm;
|
|
my $srcPct = sprintf("%.4f", 100 * $src / $total);
|
|
my $asmPct = sprintf("%.4f", 100 * $asm / $total);
|
|
print "$total total bytes of code\n";
|
|
print "$src bytes of code in src ($srcPct%)\n";
|
|
print "$asm bytes of code in asm ($asmPct%)\n";
|