[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
Read and write a LC_NOTE "addrable bits" for addressing maskThis patch adds code to process save-core for Mach-O files whichembeds an "addrable bits" LC_NOTE when the process is using acode addre
Read and write a LC_NOTE "addrable bits" for addressing maskThis patch adds code to process save-core for Mach-O files whichembeds an "addrable bits" LC_NOTE when the process is using acode address mask (e.g. AArch64 v8.3 with ptrauth aka arm64e).Add code to ObjectFileMachO to read that LC_NOTE from corefiles,and ProcessMachCore to set the process masks based on it when readinga corefile back in.Also have "process status --verbose" print the current address masksthat lldb is using internally to strip ptrauth bits off of addresses.Differential Revision: https://reviews.llvm.org/D106348rdar://68630113