[llvm] [RISCV] Use vsetvli instead of vlenb in Prologue/Epilogue (PR #113756)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 09:44:58 PDT 2025
================
@@ -415,6 +419,39 @@ bool RISCVExpandPseudo::expandRV32ZdinxLoad(MachineBasicBlock &MBB,
return true;
}
+bool RISCVExpandPseudo::expandPseudoReadMulVLENB(
+ MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI) {
+ DebugLoc DL = MBBI->getDebugLoc();
+ Register Dst = MBBI->getOperand(0).getReg();
+ unsigned Mul = MBBI->getOperand(1).getImm();
+ RISCVVType::VLMUL VLMUL = RISCVVType::VLMUL::LMUL_1;
----------------
topperc wrote:
RISCVVType::encodeLMUL(Mul, /*Fractional=*/false)
https://github.com/llvm/llvm-project/pull/113756
More information about the llvm-commits
mailing list