Searched refs:LowOffset (Results 1 - 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp109 int LowOffset = std::min(OffsetA, OffsetB); local
111 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
112 if (LowOffset + LowWidth <= HighOffset)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp606 int LowOffset = std::min(OffsetA, OffsetB); local
608 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
609 if (LowOffset + LowWidth <= HighOffset)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp241 // offset amount depends on the two integer, 'LowOffset' and 'HighOffset'.
242 // Where the 'LowOffset' refers to the first vector and the highOffset refers to
255 SmallVectorImpl<uint32_t> &Out, int LowOffset,
261 Out.push_back(Mask[i] + LowOffset);
254 genShuffleBland(MVT VT, ArrayRef<uint32_t> Mask, SmallVectorImpl<uint32_t> &Out, int LowOffset, int HighOffset) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp376 int32_t LowOffset = HighOffset - 4; local
381 LowOffset);
386 DAG.getConstant(LowOffset, DL, MVT::i32));
390 SDValue LowShift = DAG.getConstant((Offset - LowOffset) * 8, DL, MVT::i32);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1806 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
1808 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
1809 if (LowOffset + LowWidth <= HighOffset)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp4305 int LowOffset = std::min(OffsetA, OffsetB);
4307 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
4308 if (LowOffset + LowWidth <= HighOffset)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp954 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; local
956 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
957 if (LowOffset + LowWidth <= HighOffset)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp2522 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB; local
2524 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
2525 return LowOffset + LowWidth <= HighOffset;

Completed in 241 milliseconds