Home | History | Annotate | Download | only in radeon

Lines Matching refs:SELECT_CC

45   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
46 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
251 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
342 ISD::SELECT_CC,
403 // We need all the operands of SELECT_CC to have the same value type, so if
406 // SELECT_CC node.
420 assert(!"Unhandled operand type parings in SELECT_CC");
431 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
466 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
472 // this SELECT_CC, so we must lower it.
486 // Lower this unsupported SELECT_CC into a combination of two supported
487 // SELECT_CC operations.
488 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, HWTrue, HWFalse, CC);
508 ISD::SELECT_CC,