Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Op1C

515   if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
516 const APInt &Op1CV = Op1C->getValue();
550 // If Op1C some other power of two, convert:
551 uint32_t BitWidth = Op1C->getType()->getBitWidth();
905 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
908 if ((Pred == ICmpInst::ICMP_SLT && Op1C->isZero()) ||
909 (Pred == ICmpInst::ICMP_SGT && Op1C->isAllOnesValue())) {
926 ICI->isEquality() && (Op1C->isZero() || Op1C->getValue().isPowerOf2())){
927 unsigned BitWidth = Op1C->getType()->getBitWidth();
936 if (!Op1C->isZero() && Op1C->getValue() != KnownZeroMask) {
943 if (!Op1C->isZero() == (Pred == ICmpInst::ICMP_NE)) {