We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
backtrace-rs
10
The overhead of dwarf resolving symbol is larger than that of frame pointer. The root cause is that the backtrace of DWARF is deeper than that of frame pointer. So DWARF need to resolve more shared libraries when resolving symbols. But the capacity of lib cache in backtrace-rs is only 4, so cache miss will occurs frequently in DWARF scenarios. I created a PR to make MAPPINGS_CACHE_SIZE configurable , but it has not been discussed and merged. I think we can fork backtrace-rs and modify MAPPINGS_CACHE_SIZE to 10.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The overhead of dwarf resolving symbol is larger than that of frame pointer.
The root cause is that the backtrace of DWARF is deeper than that of frame pointer. So DWARF need to resolve more shared libraries when resolving symbols. But the capacity of lib cache in backtrace-rs is only 4, so cache miss will occurs frequently in DWARF scenarios.
I created a PR to make MAPPINGS_CACHE_SIZE configurable , but it has not been discussed and merged. I think we can fork backtrace-rs and modify MAPPINGS_CACHE_SIZE to
10
.The text was updated successfully, but these errors were encountered: