[Lldb-commits] [PATCH] D154926: [lldb][AArch64] Add support for SME's SVE streaming mode registers

David Spickett via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 21 08:17:00 PDT 2023


DavidSpickett marked an inline comment as done.
DavidSpickett added inline comments.


================
Comment at: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.cpp:81
       opt_regsets.Set(RegisterInfoPOSIX_arm64::eRegsetMaskSVE);
 
+      // We may also have the Scalable Matrix Extension (SME) which adds a
----------------
omjavaid wrote:
> Should we test for SSVE first that way we wont have to check for SVE once SSVE is found?
Good idea, but according to the architecture supplement:
```
If SME is implemented, this does not imply that FEAT_SVE and FEAT_SVE2 are implemented by the PE when it is not in Streaming SVE mode.
```
I don't know how realistic such a core is but at a glance Linux doesn't say it wouldn't support it. I'll leave this as it is on that basis.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D154926



More information about the lldb-commits mailing list