Lines Matching refs:CCVal
3911 ISD::CondCode CCVal = CC->get(); in lowerSELECT() local
3921 CCVal == ISD::SETLT) { in lowerSELECT()
3930 translateSetCCForBranch(DL, LHS, RHS, CCVal, DAG); in lowerSELECT()
3932 SDValue TargetCC = DAG.getCondCode(CCVal); in lowerSELECT()
3957 ISD::CondCode CCVal = cast<CondCodeSDNode>(CondV.getOperand(2))->get(); in lowerBRCOND() local
3959 translateSetCCForBranch(DL, LHS, RHS, CCVal, DAG); in lowerBRCOND()
3961 SDValue TargetCC = DAG.getCondCode(CCVal); in lowerBRCOND()
8753 ISD::CondCode CCVal = cast<CondCodeSDNode>(CC)->get(); in combine_CC() local
8754 if (!ISD::isIntEqualitySetCC(CCVal)) in combine_CC()
8763 bool Invert = CCVal == ISD::SETEQ; in combine_CC()
8764 CCVal = cast<CondCodeSDNode>(LHS.getOperand(2))->get(); in combine_CC()
8766 CCVal = ISD::getSetCCInverse(CCVal, LHS.getValueType()); in combine_CC()
8770 translateSetCCForBranch(DL, LHS, RHS, CCVal, DAG); in combine_CC()
8772 CC = DAG.getCondCode(CCVal); in combine_CC()
8792 CCVal = CCVal == ISD::SETEQ ? ISD::SETGE : ISD::SETLT; in combine_CC()
8793 CC = DAG.getCondCode(CCVal); in combine_CC()
8810 CCVal = ISD::getSetCCInverse(CCVal, LHS.getValueType()); in combine_CC()
8811 CC = DAG.getCondCode(CCVal); in combine_CC()