[lldb] [llvm] [LLDB][Process] Add LSX and LASX register definitions and operations on the LoongArch64 (PR #120664)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 27 01:18:32 PST 2024
================
@@ -48,6 +48,10 @@ bool RegisterContextCorePOSIX_loongarch64::ReadGPR() { return true; }
bool RegisterContextCorePOSIX_loongarch64::ReadFPR() { return true; }
+bool RegisterContextCorePOSIX_loongarch64::ReadLSX() { return true; }
+
+bool RegisterContextCorePOSIX_loongarch64::ReadLASX() { return true; }
----------------
wangleiat wrote:
I have verified that it works(surprised too). I have removed the ELF-core-related modifications, and support for adding LSX/LASX registers in ELF-core will be included in a subsequent patch. The modifications are too extensive; it's not just about adding two functions.
https://github.com/llvm/llvm-project/pull/120664
More information about the llvm-commits
mailing list