[llvm] RISCV: Implement isLoadFromStackSlot/isStoreToStackSlot for rvv (PR #120524)

Philip Reames via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 09:00:33 PDT 2025


================
@@ -118,6 +118,15 @@ Register RISCVInstrInfo::isLoadFromStackSlot(const MachineInstr &MI,
   case RISCV::FLD:
     MemBytes = 8;
     break;
+  case RISCV::VL1RE8_V:
+  case RISCV::VL2RE8_V:
+  case RISCV::VL4RE8_V:
+  case RISCV::VL8RE8_V:
+    if (!MI.getOperand(1).isFI())
+      return Register();
+    FrameIndex = MI.getOperand(1).getIndex();
+    MemBytes = ~0u;
----------------
preames wrote:

Split off in: https://github.com/llvm/llvm-project/pull/132244

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


More information about the llvm-commits mailing list