Searched refs:LHSWidth (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp429 unsigned LHSWidth = cast<FixedVectorType>(SVI->getOperand(0)->getType()) local
434 if (SrcIdx < (int)LHSWidth)
437 SrcIdx -= LHSWidth;
1987 unsigned LHSWidth = cast<VectorType>(LHS->getType())->getNumElements();
1999 X->getType()->isVectorTy() && VWidth == LHSWidth) {
2030 Elts.push_back(Mask[i] % LHSWidth);
2242 else if (LHSOp0Width == LHSWidth) {
2247 if (RHSShuffle && RHSOp0Width == LHSWidth) {
2266 unsigned newLHSWidth = (newLHS != LHS) ? LHSOp0Width : LHSWidth;
2277 } else if (Mask[i] < (int)LHSWidth) {
[all...]
H A DInstCombineCasts.cpp1636 unsigned LHSWidth = LHSMinType->getFPMantissaWidth(); local
1638 unsigned SrcWidth = std::max(LHSWidth, RHSWidth);
1672 // LHSWidth + RHSWidth significant bits; if OpWidth is sufficient
1676 if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) {
1703 if (LHSWidth == SrcWidth) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DVectorUtils.cpp295 unsigned LHSWidth = local
300 if (InEl < (int)LHSWidth)
302 return findScalarElement(SVI->getOperand(1), InEl - LHSWidth);

Completed in 156 milliseconds