Lines Matching refs:CSInc
14988 SDValue CSInc = Cmp->getOperand(0); in IsCMPZCSINC() local
14993 while (CSInc.getOpcode() == ISD::AND && in IsCMPZCSINC()
14994 isa<ConstantSDNode>(CSInc.getOperand(1)) && in IsCMPZCSINC()
14995 CSInc.getConstantOperandVal(1) == 1 && CSInc->hasOneUse()) in IsCMPZCSINC()
14996 CSInc = CSInc.getOperand(0); in IsCMPZCSINC()
14998 if (CSInc.getOpcode() == ARMISD::CSINC && in IsCMPZCSINC()
14999 isNullConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
15000 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
15001 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
15002 return CSInc.getOperand(3); in IsCMPZCSINC()
15004 if (CSInc.getOpcode() == ARMISD::CMOV && isOneConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
15005 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
15006 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
15007 return CSInc.getOperand(4); in IsCMPZCSINC()
15009 if (CSInc.getOpcode() == ARMISD::CMOV && isOneConstant(CSInc.getOperand(1)) && in IsCMPZCSINC()
15010 isNullConstant(CSInc.getOperand(0)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
15012 (ARMCC::CondCodes)CSInc.getConstantOperandVal(2)); in IsCMPZCSINC()
15013 return CSInc.getOperand(4); in IsCMPZCSINC()