diff options
author | Peter Maydell | 2020-10-19 17:12:57 +0200 |
---|---|---|
committer | Peter Maydell | 2020-10-20 17:12:01 +0200 |
commit | 05903f036edba8e3ed940cc215b8e27fb49265b9 (patch) | |
tree | 19ae8733b5ae79dbb3505b9ee5a45466c513bda6 /target/arm/translate.c | |
parent | target/arm: Don't allow BLX imm for M-profile (diff) | |
download | qemu-05903f036edba8e3ed940cc215b8e27fb49265b9.tar.gz qemu-05903f036edba8e3ed940cc215b8e27fb49265b9.tar.xz qemu-05903f036edba8e3ed940cc215b8e27fb49265b9.zip |
target/arm: Implement v8.1M branch-future insns (as NOPs)
v8.1M implements a new 'branch future' feature, which is a
set of instructions that request the CPU to perform a branch
"in the future", when it reaches a particular execution address.
In hardware, the expected implementation is that the information
about the branch location and destination is cached and then
acted upon when execution reaches the specified address.
However the architecture permits an implementation to discard
this cached information at any point, and so guest code must
always include a normal branch insn at the branch point as
a fallback. In particular, an implementation is specifically
permitted to treat all BF insns as NOPs (which is equivalent
to discarding the cached information immediately).
For QEMU, implementing this caching of branch information
would be complicated and would not improve the speed of
execution at all, so we make the IMPDEF choice to implement
all BF insns as NOPs.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20201019151301.2046-7-peter.maydell@linaro.org
Diffstat (limited to 'target/arm/translate.c')
-rw-r--r-- | target/arm/translate.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/arm/translate.c b/target/arm/translate.c index dc3a4031db..a5ebe56880 100644 --- a/target/arm/translate.c +++ b/target/arm/translate.c @@ -7971,6 +7971,26 @@ static bool trans_BLX_suffix(DisasContext *s, arg_BLX_suffix *a) return true; } +static bool trans_BF(DisasContext *s, arg_BF *a) +{ + /* + * M-profile branch future insns. The architecture permits an + * implementation to implement these as NOPs (equivalent to + * discarding the LO_BRANCH_INFO cache immediately), and we + * take that IMPDEF option because for QEMU a "real" implementation + * would be complicated and wouldn't execute any faster. + */ + if (!dc_isar_feature(aa32_lob, s)) { + return false; + } + if (a->boff == 0) { + /* SEE "Related encodings" (loop insns) */ + return false; + } + /* Handle as NOP */ + return true; +} + static bool op_tbranch(DisasContext *s, arg_tbranch *a, bool half) { TCGv_i32 addr, tmp; |