[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 ...
[lldb] Make TestAArch64AdrpAdd depend on the AArch64 targetLLDB is using LLVM's target-specific disassembler which is only available whenthe respective LLVM target has been enabled in the build co
[lldb] Make TestAArch64AdrpAdd depend on the AArch64 targetLLDB is using LLVM's target-specific disassembler which is only available whenthe respective LLVM target has been enabled in the build config.This patch just skips the test if there is no arm64 target (and itsdisassembler) available in the current build config.Reviewed By: jasonmolendaDifferential Revision: https://reviews.llvm.org/D108145
Symbolicate aarch64 adrp+add pc-relative addr in disassOn aarch64 a two instruction sequence is used to calculate apc-relative address, add some state to the DisassemblerLLVMCsymbolicator so it c
Symbolicate aarch64 adrp+add pc-relative addr in disassOn aarch64 a two instruction sequence is used to calculate apc-relative address, add some state to the DisassemblerLLVMCsymbolicator so it can track the necessary data across thetwo instructions and compute the address being calculated.Differential Revision: https://reviews.llvm.org/D107213rdar://49119253