[Lldb-commits] [lldb] [lldb] Add a MemoryRegionInfo cache at a process stop (PR #202509)

Felipe de Azevedo Piovezan via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 9 00:49:00 PDT 2026


================
@@ -787,6 +787,22 @@ JSON and uses JSON arrays where applicable. The JSON output looks like:
           {"address":140734799804592,"bytes":"c8f8bf5fff7f0000c9a59e8cff7f0000"},
           {"address":140734799804616,"bytes":"00000000000000000100000000000000"}
         ]
+        [
----------------
felipepiovezan wrote:

I've just read your note further down about the desire for this being an array, so I think what you need is: 

```
        "memory":[
          {"address":140734799804592,"bytes":"c8f8bf5fff7f0000c9a59e8cff7f0000"},
          {"address":140734799804616,"bytes":"00000000000000000100000000000000"}
        ],
        "memory-region-infos": [
             {
                  .... info ....
             },
             {
                  .... info ....
             },
         ]
```

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


More information about the lldb-commits mailing list