Lines Matching refs:CSInc
14747 SDValue CSInc = Cmp->getOperand(0); in IsCMPZCSINC() local
14752 while (CSInc.getOpcode() == ISD::AND && in IsCMPZCSINC()
14753 isa<ConstantSDNode>(CSInc.getOperand(1)) && in IsCMPZCSINC()
14754 CSInc.getConstantOperandVal(1) == 1 && CSInc->hasOneUse()) in IsCMPZCSINC()
14755 CSInc = CSInc.getOperand(0); in IsCMPZCSINC()
14757 if (CSInc.getOpcode() == ARMISD::CSINC && in IsCMPZCSINC()
14758 isNullConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
14759 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
14760 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
14761 return CSInc.getOperand(3); in IsCMPZCSINC()
14763 if (CSInc.getOpcode() == ARMISD::CMOV && isOneConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
14764 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
14765 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
14766 return CSInc.getOperand(4); in IsCMPZCSINC()
14768 if (CSInc.getOpcode() == ARMISD::CMOV && isOneConstant(CSInc.getOperand(1)) && in IsCMPZCSINC()
14769 isNullConstant(CSInc.getOperand(0)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
14771 (ARMCC::CondCodes)CSInc.getConstantOperandVal(2)); in IsCMPZCSINC()
14772 return CSInc.getOperand(4); in IsCMPZCSINC()