Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Op1C

513   if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
514 const APInt &Op1CV = Op1C->getValue();
548 // If Op1C some other power of two, convert:
549 uint32_t BitWidth = Op1C->getType()->getBitWidth();
901 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
904 if ((Pred == ICmpInst::ICMP_SLT && Op1C->isNullValue()) ||
905 (Pred == ICmpInst::ICMP_SGT && Op1C->isAllOnesValue())) {
919 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
924 ICI->isEquality() && (Op1C->isZero() || Op1C->getValue().isPowerOf2())){
925 unsigned BitWidth = Op1C->getType()->getBitWidth();
934 if (!Op1C->isZero() && Op1C->getValue() != KnownZeroMask) {
941 if (!Op1C->isZero() == (Pred == ICmpInst::ICMP_NE)) {