From: Weiwei Li Date: Wed, 15 Feb 2023 02:05:29 +0000 (+0800) Subject: target/riscv: Add cfg properties for Zv* extensions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a7336161f025c114fc57595801a492d8222540ec;p=qemu.git target/riscv: Add cfg properties for Zv* extensions Add properties for Zve64d,Zvfh,Zvfhmin extensions. Signed-off-by: Weiwei Li Signed-off-by: Junqiang Wang Reviewed-by: Daniel Henrique Barboza Message-ID: <20230215020539.4788-5-liweiwei@iscas.ac.cn> Signed-off-by: Palmer Dabbelt --- diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h index 31537fc05f..7f5264e165 100644 --- a/target/riscv/cpu.h +++ b/target/riscv/cpu.h @@ -462,7 +462,10 @@ struct RISCVCPUConfig { bool ext_zhinxmin; bool ext_zve32f; bool ext_zve64f; + bool ext_zve64d; bool ext_zmmul; + bool ext_zvfh; + bool ext_zvfhmin; bool ext_smaia; bool ext_ssaia; bool ext_sscofpmf;