[AArch64] Make gdbserver register set selection dynamic
[deliverable/binutils-gdb.git] / gdb / arch / aarch64.h
index 0eb702c5b5eff3ed960871b7d1751840e187a34b..95edb664b5517e2f34c255733e797e4d8f1db35f 100644 (file)
 
 #include "gdbsupport/tdesc.h"
 
+/* Holds information on what architectural features are available.  This is
+   used to select register sets.  */
+struct aarch64_features
+{
+  bool sve = false;
+  bool pauth = false;
+  bool mte = false;
+};
+
 /* Create the aarch64 target description.  A non zero VQ value indicates both
    the presence of SVE and the Vector Quotient - the number of 128bit chunks in
    an SVE Z register.  HAS_PAUTH_P indicates the presence of the PAUTH
This page took 0.023962 seconds and 4 git commands to generate.