[Lldb-commits] [lldb] [lldb][AArch64] Move register info reconfigure into architecture plugin (PR #70950)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 2 04:09:34 PDT 2023


================
@@ -109,6 +110,24 @@ class Architecture : public PluginInterface {
   virtual const MemoryTagManager *GetMemoryTagManager() const {
     return nullptr;
   }
+
+  // This returns true if a write to the named register should cause lldb to
+  // reconfigure its register information. For example on AArch64 writing to vg
+  // to change the vector length means lldb has to change the size of registers.
+  virtual bool RegisterWriteCausesReconfigure(const char *name) const {
----------------
DavidSpickett wrote:

Done.

https://github.com/llvm/llvm-project/pull/70950


More information about the lldb-commits mailing list