diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-06-20 10:51:54 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-06-27 11:18:17 +0100 |
commit | f84734b87461fbf3ab349399f7936de832e477ed (patch) | |
tree | 8e01b2d6aa8fbee65dfa25fcdb45a27ef285f9db /target/arm/meson.build | |
parent | dc993a01a75295c505ef1ff8764c68f31089fcc7 (diff) |
target/arm: Implement SMSTART, SMSTOP
These two instructions are aliases of MSR (immediate).
Use the two helpers to properly implement svcr_write.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220620175235.60881-11-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/meson.build')
-rw-r--r-- | target/arm/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/meson.build b/target/arm/meson.build index ac571fc45d..43dc600547 100644 --- a/target/arm/meson.build +++ b/target/arm/meson.build @@ -47,6 +47,7 @@ arm_ss.add(when: 'TARGET_AARCH64', if_true: files( 'mte_helper.c', 'pauth_helper.c', 'sve_helper.c', + 'sme_helper.c', 'translate-a64.c', 'translate-sve.c', )) |