Searched refs:CSInc (Results 1 – 1 of 1) sorted by relevance
15065 SDValue CSInc = Cmp->getOperand(0); in IsCMPZCSINC() local15070 while (CSInc.getOpcode() == ISD::AND && in IsCMPZCSINC()15071 isa<ConstantSDNode>(CSInc.getOperand(1)) && in IsCMPZCSINC()15072 CSInc.getConstantOperandVal(1) == 1 && CSInc->hasOneUse()) in IsCMPZCSINC()15073 CSInc = CSInc.getOperand(0); in IsCMPZCSINC()15075 if (CSInc.getOpcode() == ARMISD::CSINC && in IsCMPZCSINC()15076 isNullConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()15077 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()15078 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()15079 return CSInc.getOperand(3); in IsCMPZCSINC()[all …]