[Lldb-commits] [lldb] generalize LLDB codebase so that it is able to print integer register of non-standard sizes (PR #166363)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 4 08:29:41 PST 2025


Matej =?utf-8?q?Košík?= <matej.kosik at codasip.com>,
Matej =?utf-8?q?Košík?= <matej.kosik at codasip.com>,
Matej =?utf-8?q?Košík?= <matej.kosik at codasip.com>,
Matej =?utf-8?q?Košík?= <matej.kosik at codasip.com>,
Matej =?utf-8?q?Košík?= <matej.kosik at codasip.com>,
Matej =?utf-8?q?Košík?= <matej.kosik at codasip.com>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/166363 at github.com>


================
@@ -46,7 +46,7 @@ class RegisterValue {
     eTypeUInt16,
     eTypeUInt32,
     eTypeUInt64,
-    eTypeUInt128,
+    eTypeUIntBig, // an integer that has more than 64 bits
----------------
JDevlieghere wrote:

"Big" sounds kind of vague. Maybe `eTypeUIntAP` for "arbitrary precision" (and match LLVM) would be more descriptive?

https://github.com/llvm/llvm-project/pull/166363


More information about the lldb-commits mailing list