diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-07-08 20:44:57 +0530 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-07-11 13:19:35 +0100 |
commit | e67cd1cac26181873496e5fb2464dbeb038e0fcd (patch) | |
tree | d82707500e9b4bc94a743c9f42106f77535462cf /target/arm/meson.build | |
parent | 7a867dd57a480998361f5cc61ce83f342a020b0e (diff) | |
download | qemu-e67cd1cac26181873496e5fb2464dbeb038e0fcd.zip qemu-e67cd1cac26181873496e5fb2464dbeb038e0fcd.tar.gz qemu-e67cd1cac26181873496e5fb2464dbeb038e0fcd.tar.bz2 |
target/arm: Add infrastructure for disas_sme
This includes the build rules for the decoder, and the
new file for translation, but excludes any instructions.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220708151540.18136-3-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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/arm/meson.build b/target/arm/meson.build index 43dc600..6dd7e93 100644 --- a/target/arm/meson.build +++ b/target/arm/meson.build @@ -1,5 +1,6 @@ gen = [ decodetree.process('sve.decode', extra_args: '--decode=disas_sve'), + decodetree.process('sme.decode', extra_args: '--decode=disas_sme'), decodetree.process('neon-shared.decode', extra_args: '--decode=disas_neon_shared'), decodetree.process('neon-dp.decode', extra_args: '--decode=disas_neon_dp'), decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'), @@ -50,6 +51,7 @@ arm_ss.add(when: 'TARGET_AARCH64', if_true: files( 'sme_helper.c', 'translate-a64.c', 'translate-sve.c', + 'translate-sme.c', )) arm_softmmu_ss = ss.source_set() |