-
Notifications
You must be signed in to change notification settings - Fork 9
Arm fixups #476
New issue
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
base: main
Are you sure you want to change the base?
Arm fixups #476
Conversation
…_gettime - snapshot/map the vDSO so DWFL can surface proper kernel helper symbols - add workspace remapping hooks to resolve virtiofs-hosted binaries This helps with the MacOS dev workflow
- Extract vdso file info to a separate RAII class - Fix compilation warnings
| DsoOrigin::kProcMaps}; | ||
| } | ||
|
|
||
| void DsoHdr::init_workspace_remap() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry for this complexity, though this allows me to work with docker, it should be a no-op for folks
Benchmark results for collatzParameters
SummaryFound 0 performance improvements and 0 performance regressions! Performance is the same for 1 metrics, 0 unstable metrics. See unchanged results
|
Benchmark results for BadBoggleSolver_runParameters
SummaryFound 0 performance improvements and 0 performance regressions! Performance is the same for 1 metrics, 0 unstable metrics. See unchanged results
|
| addr &= top_byte_mask; | ||
|
|
||
| constexpr unsigned canonical_bits = 48; | ||
| if (canonical_bits < k_top_byte_shift) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the logic of this function:
this condition is always true, therefore the previous masking operation is unnecessary
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approval without review: no time to review
|
I'll work on splitting the PR |
What does this PR do?
Motivation
Working from MacOS aarch64, I was not able to get proper frames.
With these changes, I no longer have failures on Simple Malloc tests.
Additional Notes
This will require a branch in
ddprof-buildto cache elfutils:https://github.com/DataDog/ddprof-build/pull/152
How to test the change?
Describe here in detail how the change can be validated. This is a great section to call out specific tests you've added or improved, or to acknowledge code sections which are particularly difficult to test.