Skip to content
Snippets Groups Projects
Commit bbe751e2 authored by Nicholas Nethercote's avatar Nicholas Nethercote
Browse files

Bug 812070 (part 2) - Speed up fix-linux-stack.pl by adding a cache for...

Bug 812070 (part 2) - Speed up fix-linux-stack.pl by adding a cache for previously queried addresses.

--HG--
extra : rebase_source : 286ff300d8ef36ff136d0a55bcef2dcf43845b04
parent bf9f66f1
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,10 @@ my $global_debug_dir = '/usr/lib/debug';
# - {pipe_read}, {pipe_write}: these constitute a bidirectional pipe to an
# addr2line process that gives symbol information for a file.
#
# - {cache}: this table holds the results of lookups that we've done
# previously for (pre-adjustment) addresses, which lets us avoid redundant
# calls to addr2line.
#
# - {address_adjustment}: addr2line wants offsets relative to the base address
# for shared libraries, but it wants addresses including the base address
# offset for executables. This holds the appropriate address adjustment to
......@@ -228,18 +232,22 @@ while (<>) {
if (-f $file) {
my $file_info = get_file_info($file);
$address += $file_info->{address_adjustment};
my $out = $file_info->{pipe_write};
my $in = $file_info->{pipe_read};
printf {$out} "0x%X\n", $address;
chomp(my $symbol = <$in>);
chomp(my $fileandline = <$in>);
if (!$symbol || $symbol eq '??') { $symbol = $badsymbol; }
if (!$fileandline || $fileandline eq '??:0') {
$fileandline = $file;
my $result = $file_info->{cache}->{$address};
if (not defined $result) {
my $address2 = $address + $file_info->{address_adjustment};
my $out = $file_info->{pipe_write};
my $in = $file_info->{pipe_read};
printf {$out} "0x%X\n", $address2;
chomp(my $symbol = <$in>);
chomp(my $fileandline = <$in>);
if (!$symbol || $symbol eq '??') { $symbol = $badsymbol; }
if (!$fileandline || $fileandline eq '??:0') {
$fileandline = $file;
}
$result = "$symbol ($fileandline)";
$file_info->{cache}->{$address} = $result;
}
print "$before$symbol ($fileandline)$after\n";
print "$before$result$after\n";
} else {
print STDERR "Warning: File \"$file\" does not exist.\n";
print $line;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment