[Lldb-commits] [PATCH] D122411: [lldb][AArch64] Fix corefile memory reads when there are non-address bits

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 25 04:38:11 PDT 2022


labath added a comment.

Can we make the core file smaller? Since it's essentially static data, do you really need all the mmap, debug info and everything? Could you just take an address that is known to be in the core file (smallest you can make), and then do a `memory read 0xwhatever` ?



================
Comment at: lldb/test/API/linux/aarch64/non_address_bit_memory_access/TestAArch64LinuxNonAddressBitMemoryAccess.py:182
+        if not self.isAArch64PAuth():
+            self.skipTest('Target must support pointer authentication.')
+
----------------
even for a core file?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D122411/new/

https://reviews.llvm.org/D122411



More information about the lldb-commits mailing list