]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
RISC-V: Add missing modes to the iterators
authorJuzhe-Zhong <juzhe.zhong@rivai.ai>
Thu, 10 Aug 2023 08:55:18 +0000 (16:55 +0800)
committerPan Li <pan2.li@intel.com>
Thu, 10 Aug 2023 12:21:34 +0000 (20:21 +0800)
gcc/ChangeLog:

* config/riscv/vector-iterators.md: Add missing modes.

gcc/config/riscv/vector-iterators.md

index 14829989e09e822b82796318b4af846cf97d641a..30808ceb241b2d03dbe14d64ed2cf5663aa9100d 100644 (file)
   (RVVM8DF "TARGET_VECTOR_ELEN_FP_64") (RVVM4DF "TARGET_VECTOR_ELEN_FP_64")
   (RVVM2DF "TARGET_VECTOR_ELEN_FP_64") (RVVM1DF "TARGET_VECTOR_ELEN_FP_64")
 
+  (V1HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16")
   (V2HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16")
   (V4HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16")
   (V8HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16")
   (V512HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16 && TARGET_MIN_VLEN >= 1024")
   (V1024HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16 && TARGET_MIN_VLEN >= 2048")
   (V2048HF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_16 && TARGET_MIN_VLEN >= 4096")
+  (V1SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32")
   (V2SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32")
   (V4SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32")
   (V8SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32")
   (V256SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32 && TARGET_MIN_VLEN >= 1024")
   (V512SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32 && TARGET_MIN_VLEN >= 2048")
   (V1024SF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_32 && TARGET_MIN_VLEN >= 4096")
+  (V1DF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_64")
   (V2DF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_64")
   (V4DF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_64")
   (V8DF "TARGET_VECTOR_VLS && TARGET_VECTOR_ELEN_FP_64 && TARGET_MIN_VLEN >= 64")