[llvm] [RISCV] Add GetVTypeMinimalPredicates for the operation supported by zvfhmin. NFC. (PR #143847)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 13 04:25:29 PDT 2025
================
@@ -783,6 +783,15 @@ class GetVTypePredicates<VTypeInfo vti> {
true : [HasVInstructions]);
}
+class GetVTypeMinimalPredicates<VTypeInfo vti> {
+ list<Predicate> Predicates = !cond(!eq(vti.Scalar, f16) : [HasVInstructionsF16Minimal],
+ !eq(vti.Scalar, bf16) : [HasVInstructionsBF16Minimal],
+ !eq(vti.Scalar, f32) : [HasVInstructionsAnyF],
+ !eq(vti.Scalar, f64) : [HasVInstructionsF64],
+ !eq(vti.SEW, 64) : [HasVInstructionsI64],
+ true : [HasVInstructions]);
+}
+
----------------
lukel97 wrote:
I think this is somewhat related to https://github.com/llvm/llvm-project/issues/143975
https://github.com/llvm/llvm-project/pull/143847
More information about the llvm-commits
mailing list