Skip to content
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

Fix unwinder loading on 6.8 kernels #2667

Merged
merged 5 commits into from
Apr 30, 2024
Merged

Commits on Apr 26, 2024

  1. Fix unwinder loading on 6.8 kernels

    See comments, and mailing list thread linked therein, for
    details. Before this change, recent kernels (6.8 and later) cannot
    verify the native unwinder, because improvements in the precision of
    register bounds tracking cause an explosion in state space resulting
    in exceeding the limit of 1 million instructions processed per load.
    
    This commit works around that issue, as the comment in the code explains.
    umanwizard committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    a5ce7e9 View commit details
    Browse the repository at this point in the history
  2. Do it with inline bytecode instead

    This lets us inline the function without letting clang/llvm
    optimize out the double xor.
    umanwizard committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    855624b View commit details
    Browse the repository at this point in the history
  3. simplify

    umanwizard committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    ee6d2e4 View commit details
    Browse the repository at this point in the history
  4. remove stray comment

    umanwizard committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    54823ba View commit details
    Browse the repository at this point in the history
  5. fix comment

    umanwizard authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    8cb3179 View commit details
    Browse the repository at this point in the history