-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
symbolizer: Handle addresses with many symbols
Symbolization was completely broken if inline functions were present because the code assumed that every program counter maps to exactly one symbol, but that's not true. We didn't see this often because some applications we ran had no inlined functions, but it was very apparent with Ruby and Fortran code, especially with O2 and O3, as the compiler will start inlining at these levels more. We didn't see this often because some applications we ran had no inlined functions, but it was very apparent with Ruby and Fortran code. Test Plan ========= See PR.
- Loading branch information
1 parent
05bd9fe
commit ea8cfe3
Showing
2 changed files
with
52 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters