/* We reach here if the vector length for the thread is different from its
value at process start. Lookup gdbarch via info (potentially creating a
- new one), stashing the vector length inside id. Use -1 for when SVE
- unavailable, to distinguish from an unset value of 0. */
+ new one) by using a target description that corresponds to the new vq value
+ and the current architecture features. */
+
+ const struct target_desc *tdesc = gdbarch_target_desc (inf->gdbarch);
+ aarch64_features features = aarch64_features_from_target_desc (tdesc);
+ features.vq = vq;
+
struct gdbarch_info info;
info.bfd_arch_info = bfd_lookup_arch (bfd_arch_aarch64, bfd_mach_aarch64);
- info.id = (int *) (vq == 0 ? -1 : vq);
+ info.target_desc = aarch64_read_description (features);
return gdbarch_find_by_info (info);
}
return sve_vq_from_vl (vl);
}
+/* Get the AArch64 features present in the given target description. */
+
+aarch64_features
+aarch64_features_from_target_desc (const struct target_desc *tdesc)
+{
+ aarch64_features features;
+
+ if (tdesc == nullptr)
+ return features;
+
+ features.vq = aarch64_get_tdesc_vq (tdesc);
+ features.pauth
+ = (tdesc_find_feature (tdesc, "org.gnu.gdb.aarch64.pauth") != nullptr);
+ features.mte
+ = (tdesc_find_feature (tdesc, "org.gnu.gdb.aarch64.mte") != nullptr);
+ features.tls
+ = (tdesc_find_feature (tdesc, "org.gnu.gdb.aarch64.tls") != nullptr);
+
+ return features;
+}
+
/* Implement the "cannot_store_register" gdbarch method. */
static int
int i, num_regs = 0, num_pseudo_regs = 0;
int first_pauth_regnum = -1, ra_sign_state_offset = -1;
int first_mte_regnum = -1, tls_regnum = -1;
-
- /* Use the vector length passed via the target info. Here -1 is used for no
- SVE, and 0 is unset. If unset then use the vector length from the existing
- tdesc. */
- uint64_t vq = 0;
- if (info.id == (int *) -1)
- vq = 0;
- else if (info.id != 0)
- vq = (uint64_t) info.id;
- else
- vq = aarch64_get_tdesc_vq (info.target_desc);
+ uint64_t vq = aarch64_get_tdesc_vq (info.target_desc);
if (vq > AARCH64_MAX_SVE_VQ)
internal_error (__FILE__, __LINE__, _("VQ out of bounds: %s (max %d)"),
/* Ensure we always have a target descriptor, and that it is for the given VQ
value. */
const struct target_desc *tdesc = info.target_desc;
- if (!tdesc_has_registers (tdesc) || vq != aarch64_get_tdesc_vq (tdesc))
- {
- aarch64_features features;
- features.vq = vq;
- tdesc = aarch64_read_description (features);
- }
+ if (!tdesc_has_registers (tdesc))
+ tdesc = aarch64_read_description ({});
gdb_assert (tdesc);
feature_core = tdesc_find_feature (tdesc,"org.gnu.gdb.aarch64.core");
bfd *abfd = nullptr;
- union
- {
- /* Architecture-specific target description data. Numerous targets
- need only this, so give them an easy way to hold it. */
- struct tdesc_arch_data *tdesc_data;
-
- /* SPU file system ID. This is a single integer, so using the
- generic form would only complicate code. Other targets may
- reuse this member if suitable. */
- int *id;
- };
+ /* Architecture-specific target description data. */
+ struct tdesc_arch_data *tdesc_data;
enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;