[llvm] RISCV: Implement isLoadFromStackSlot/isStoreToStackSlot for rvv (PR #120524)
Pengcheng Wang via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 01:48:48 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:
The only usage is to compare LoadSize and StoreSize, so it may not matter?
```
if (FirstSS != SecondSS || LoadReg != StoreReg || FirstSS == -1 ||
LoadSize != StoreSize || !MFI->isSpillSlotObjectIndex(FirstSS))
continue;
```
https://github.com/llvm/llvm-project/pull/120524
More information about the llvm-commits
mailing list