[Lldb-commits] [lldb] [lldb] Upstream and adopt ReadUnsignedIntegersFromMemory in AppleObjCRuntimeV2 (PR #190564)

Felipe de Azevedo Piovezan via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 7 09:54:06 PDT 2026


================
@@ -69,6 +70,30 @@
 using namespace lldb;
 using namespace lldb_private;
 
+namespace {
+struct RuntimeGlobalSymbolSpec {
+  ConstString name;
+
+  /// Whether to only return the address or also the value.
+  bool read_value = true;
+
+  /// A byte size of 0 means use the process pointer size.
+  uint8_t byte_size = 0;
+
+  uint64_t default_value = LLDB_INVALID_ADDRESS;
----------------
felipepiovezan wrote:

this is not changed anywhere?

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


More information about the lldb-commits mailing list