[llvm] [RISCV][VLOPT] Add support for Vector Fixed-Point Arithmetic Instructions (PR #126483)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 03:08:14 PST 2025


================
@@ -1173,8 +1201,16 @@ bool RISCVVLOptimizer::isCandidate(const MachineInstr &MI) const {
   const MCInstrDesc &Desc = MI.getDesc();
   if (!RISCVII::hasVLOp(Desc.TSFlags) || !RISCVII::hasSEWOp(Desc.TSFlags))
     return false;
-  if (MI.getNumDefs() != 1)
+
+  if (MI.getNumExplicitDefs() != 1)
+    return false;
+
+  // Some instructions have implicit defs e.g. $vxsat. If they might be read
----------------
lukel97 wrote:

We model fcsr with `MCID::MayRaiseFPException` and check for it with `MI.mayRaiseFPException()`, so that's already covered :)

https://github.com/llvm/llvm-project/pull/126483


More information about the llvm-commits mailing list