Commit 35b87b1b80 for qemu.org
commit 35b87b1b803f79712c9ab68be16998f48301e90a
Author: Alex Bennée <alex.bennee@linaro.org>
Date: Wed Apr 22 13:52:24 2026 +0100
target/arm: migrate BTI trap syndromes to registerfields
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 20260422125250.1303100-8-alex.bennee@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
diff --git a/target/arm/syndrome.h b/target/arm/syndrome.h
index fd8639d4f0..52a6745cb2 100644
--- a/target/arm/syndrome.h
+++ b/target/arm/syndrome.h
@@ -426,9 +426,18 @@ static inline uint32_t syn_pactrap(void)
return res;
}
+/*
+ * ISS encoding for an exception from a Branch Target Identification
+ * instruction.
+ */
+FIELD(BTI_ISS, BTYPE, 0, 2)
+
static inline uint32_t syn_btitrap(int btype)
{
- return (EC_BTITRAP << ARM_EL_EC_SHIFT) | ARM_EL_IL | btype;
+ uint32_t res = syn_set_ec(0, EC_BTITRAP);
+ res = FIELD_DP32(res, SYNDROME, IL, 1);
+ res = FIELD_DP32(res, BTI_ISS, BTYPE, btype);
+ return res;
}
static inline uint32_t syn_bxjtrap(int cv, int cond, int rm)