Lines Matching refs:CSInc
14975 SDValue CSInc = Cmp->getOperand(0); in IsCMPZCSINC() local
14980 while (CSInc.getOpcode() == ISD::AND && in IsCMPZCSINC()
14981 isa<ConstantSDNode>(CSInc.getOperand(1)) && in IsCMPZCSINC()
14982 CSInc.getConstantOperandVal(1) == 1 && CSInc->hasOneUse()) in IsCMPZCSINC()
14983 CSInc = CSInc.getOperand(0); in IsCMPZCSINC()
14985 if (CSInc.getOpcode() == ARMISD::CSINC && in IsCMPZCSINC()
14986 isNullConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
14987 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
14988 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
14989 return CSInc.getOperand(3); in IsCMPZCSINC()
14991 if (CSInc.getOpcode() == ARMISD::CMOV && isOneConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
14992 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
14993 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
14994 return CSInc.getOperand(4); in IsCMPZCSINC()
14996 if (CSInc.getOpcode() == ARMISD::CMOV && isOneConstant(CSInc.getOperand(1)) && in IsCMPZCSINC()
14997 isNullConstant(CSInc.getOperand(0)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
14999 (ARMCC::CondCodes)CSInc.getConstantOperandVal(2)); in IsCMPZCSINC()
15000 return CSInc.getOperand(4); in IsCMPZCSINC()