1
0
Fork 0
alistair23-linux/scripts/profile2linkerlist.pl

20 lines
375 B
Perl
Raw Normal View History

2006-03-25 08:30:49 -07:00
#!/usr/bin/perl
#
# Takes a (sorted) output of readprofile and turns it into a list suitable for
# linker scripts
#
# usage:
# readprofile | sort -rn | perl profile2linkerlist.pl > functionlist
#
use strict;
2006-03-25 08:30:49 -07:00
while (<>) {
my $line = $_;
$_ =~ /\W*[0-9]+\W*([a-zA-Z\_0-9]+)\W*[0-9]+/;
print "*(.text.$1)\n"
unless ($line =~ /unknown/) || ($line =~ /total/);
2006-03-25 08:30:49 -07:00
}