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

[LLDB] On AArch64, reconfigure register context first #70742

Commits on Oct 30, 2023

  1. On AArch64, reconfigure register context first

    On an SVE/SME the register context configuration may change after
    the inferior process has executed.  This was handled via
    https://reviews.llvm.org/D159504 but it is reconfiguring and clearing
    the register context after we've parsed any expedited reigster
    values from the stop reply packet.  That results in lldb having
    to read each register value one at a time while at that stop
    location, which will be a performance problem on non-local
    debug setups.
    
    The configuration & clearing needs to happen first.  Also, update
    the names of the local variables for a little clarity.
    jasonmolenda committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    b186d6c View commit details
    Browse the repository at this point in the history