https://github.com/torvalds/linux
Raw File
Tip revision: 20f4d6c3a2a23c5d7d9cc7f42fbb943ca7a03d1f authored by Linus Torvalds on 23 February 2009, 04:19:40 UTC
Linux 2.6.29-rc6
Tip revision: 20f4d6c
profile2linkerlist.pl
#!/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
#

while (<>) {
  my $line = $_;

  $_ =~ /\W*[0-9]+\W*([a-zA-Z\_0-9]+)\W*[0-9]+/;

  if ( ($line =~ /unknown/) || ($line =~ /total/)) {

  } else {
    print "*(.text.$1)\n";
  }
}
back to top