Lines Matching defs:CIdx
2048 auto *CIdx = dyn_cast<ConstantInt>(I->getOperand(2));
2053 if (CIdx && CIdx->getValue().ult(NumElts)) {
2054 DemandedVecElts.clearBit(CIdx->getZExtValue());
2055 NeedsElt = DemandedElts[CIdx->getZExtValue()];
2078 auto *CIdx = dyn_cast<ConstantInt>(Idx);
2086 if (CIdx && CIdx->getValue().ult(NumElts))
2087 DemandedVecElts = APInt::getOneBitSet(NumElts, CIdx->getZExtValue());
3171 auto *CIdx = dyn_cast<ConstantInt>(I->getOperand(2));
3177 if (CIdx && CIdx->getValue().ult(NumElts)) {
3178 DemandedVecElts.clearBit(CIdx->getZExtValue());
3179 SkipElt = !DemandedElts[CIdx->getZExtValue()];
3192 auto *CIdx = dyn_cast<ConstantInt>(Idx);
3196 if (CIdx && CIdx->getValue().ult(NumElts))
3197 DemandedVecElts = APInt::getOneBitSet(NumElts, CIdx->getZExtValue());
5944 auto *CIdx = dyn_cast<ConstantInt>(Idx);
5949 if (CIdx && CIdx->getValue().ult(NumElts))
5950 DemandedVecElts = APInt::getOneBitSet(NumElts, CIdx->getZExtValue());
5963 auto *CIdx = dyn_cast<ConstantInt>(Op->getOperand(2));
5968 if (CIdx && CIdx->getValue().ult(NumElts)) {
5969 DemandedVecElts.clearBit(CIdx->getZExtValue());
5970 NeedsElt = DemandedElts[CIdx->getZExtValue()];