On an AArch64 system using pointer authentication, where lldb needs to disregard signing in the top bits, lldb needs to know how many bits are used for addressing (and therefore are significant). This is normally a fixed value, and can be communicated in the qHostInfo packet's addressing_bits kv pair.
On a firmware debug session with early startup code that is setting up the page tables, the value will change during the lifetime of the process. To support this correctly, the remote stub (a JTAG type debugger) can specify the current number of addressing bits in every stop packet, or include it in the stop packet when the value has changed. It's a bit of a specialized environment where this is needed -- for all user process debugging, the value will not change during the lifetime of the process.
This patch has lldb read the value from the stop packet and set the Process addressing masks if it is present.