diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-06-14 16:09:20 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-06-16 14:33:52 +0100 |
commit | 6390eed45cab462320ceb4cbfc2cbd1c1552ed00 (patch) | |
tree | b47b4b8b373cb717425d392ac63627f7ce5dcf63 /target/arm/meson.build | |
parent | a454ea1e6d40bbd4632e4e66de90e802ae47a68e (diff) | |
download | qemu-6390eed45cab462320ceb4cbfc2cbd1c1552ed00.zip qemu-6390eed45cab462320ceb4cbfc2cbd1c1552ed00.tar.gz qemu-6390eed45cab462320ceb4cbfc2cbd1c1552ed00.tar.bz2 |
target/arm: Add framework for MVE decode
Add the framework for decoding MVE insns, with the necessary new
files and the meson.build rules, but no actual content yet.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210614151007.4545-11-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 5bfaf43..2b50be3 100644 --- a/target/arm/meson.build +++ b/target/arm/meson.build @@ -6,6 +6,7 @@ gen = [ decodetree.process('vfp.decode', extra_args: '--decode=disas_vfp'), decodetree.process('vfp-uncond.decode', extra_args: '--decode=disas_vfp_uncond'), decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'), + decodetree.process('mve.decode', extra_args: '--decode=disas_mve'), decodetree.process('a32.decode', extra_args: '--static-decode=disas_a32'), decodetree.process('a32-uncond.decode', extra_args: '--static-decode=disas_a32_uncond'), decodetree.process('t32.decode', extra_args: '--static-decode=disas_t32'), @@ -27,6 +28,7 @@ arm_ss.add(files( 'tlb_helper.c', 'translate.c', 'translate-m-nocp.c', + 'translate-mve.c', 'translate-neon.c', 'translate-vfp.c', 'vec_helper.c', |