Lines Matching refs:DemandedLHS
159 APInt &DemandedLHS, APInt &DemandedRHS) { in getShuffleDemandedElts() argument
168 DemandedLHS = DemandedRHS = APInt::getNullValue(NumElts); in getShuffleDemandedElts()
173 DemandedLHS.setBit(0); in getShuffleDemandedElts()
187 DemandedLHS.setBit(M % NumElts); in getShuffleDemandedElts()
1704 APInt DemandedLHS, DemandedRHS; in computeKnownBitsFromOperator() local
1705 if (!getShuffleDemandedElts(Shuf, DemandedElts, DemandedLHS, DemandedRHS)) { in computeKnownBitsFromOperator()
1711 if (!!DemandedLHS) { in computeKnownBitsFromOperator()
1713 computeKnownBits(LHS, DemandedLHS, Known, Depth + 1, Q); in computeKnownBitsFromOperator()
3149 APInt DemandedLHS, DemandedRHS; in ComputeNumSignBitsImpl() local
3152 if (!getShuffleDemandedElts(Shuf, DemandedElts, DemandedLHS, DemandedRHS)) in ComputeNumSignBitsImpl()
3155 if (!!DemandedLHS) { in ComputeNumSignBitsImpl()
3157 Tmp = ComputeNumSignBits(LHS, DemandedLHS, Depth + 1, Q); in ComputeNumSignBitsImpl()