Lines Matching refs:Op1C
513 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) { in transformZExtICmp() local
514 const APInt &Op1CV = Op1C->getValue(); in transformZExtICmp()
549 uint32_t BitWidth = Op1C->getType()->getBitWidth(); in transformZExtICmp()
901 if (Constant *Op1C = dyn_cast<Constant>(Op1)) { in transformSExtICmp() local
904 if ((Pred == ICmpInst::ICMP_SLT && Op1C->isNullValue()) || in transformSExtICmp()
905 (Pred == ICmpInst::ICMP_SGT && Op1C->isAllOnesValue())) { in transformSExtICmp()
919 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) { in transformSExtICmp() local
924 ICI->isEquality() && (Op1C->isZero() || Op1C->getValue().isPowerOf2())){ in transformSExtICmp()
925 unsigned BitWidth = Op1C->getType()->getBitWidth(); in transformSExtICmp()
934 if (!Op1C->isZero() && Op1C->getValue() != KnownZeroMask) { in transformSExtICmp()
941 if (!Op1C->isZero() == (Pred == ICmpInst::ICMP_NE)) { in transformSExtICmp()