[llvm] RISCV: Implement isLoadFromStackSlot/isStoreToStackSlot for rvv (PR #120524)
Pengcheng Wang via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 01:50:58 PST 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;
----------------
wangpc-pp wrote:
Or we can use the `getRealMinVLen()` to calculate the memory size.
https://github.com/llvm/llvm-project/pull/120524
More information about the llvm-commits
mailing list