Home
last modified time | relevance | path

Searched refs:MIOffset (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVLoadStoreOptimizer.cpp255 int64_t MIOffset = MI.getOperand(2).getImm(); in findMatchingInsn() local
258 if ((Offset != MIOffset + OffsetStride) && in findMatchingInsn()
259 (Offset + OffsetStride != MIOffset)) { in findMatchingInsn()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp2020 int MIOffset = AArch64InstrInfo::getLdStOffsetOp(MI).getImm(); in findMatchingInsn() local
2030 if (MIOffset % MemSize) { in findMatchingInsn()
2036 MIOffset /= MemSize; in findMatchingInsn()
2038 MIOffset *= MemSize; in findMatchingInsn()
2050 bool IsOutOfBounds = MIOffset != TII->getMemScale(MI); in findMatchingInsn()
2069 if ((Offset != MIOffset + OffsetStride) && in findMatchingInsn()
2070 (Offset + OffsetStride != MIOffset)) { in findMatchingInsn()
2078 int MinOffset = Offset < MIOffset ? Offset : MIOffset; in findMatchingInsn()