[Lldb-commits] [lldb] [lldb] Support integer registers with more than 64 bits. (PR #166363)
Matej Košík via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 7 03:55:18 PST 2025
================
@@ -46,7 +46,8 @@ class RegisterValue {
eTypeUInt16,
eTypeUInt32,
eTypeUInt64,
- eTypeUInt128,
+ eTypeUIntN, /// < This value is used when the (integer) register is larger
+ /// than 64-bits.
----------------
sedymrak wrote:
> > [lldb] Support arbitrary precision integer registers
>
> If so, the title should have " > 64-bit" appended to it. Or a note in the PR description that although you can start with N bits you'll always end up with N rounded up to a multiple of 64-bits due to how they're stored.
I have updated the title of this PR (and the first comment below it) to better describe what is being achieved.
Previous version of these tests, unfortunatelly, was misleading (could easily be misinterpreted).
https://github.com/llvm/llvm-project/pull/166363
More information about the lldb-commits
mailing list