|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
lib/Target/AMDGPU/R600ISelLowering.cpp 953 SDValue MinMax = combineFMinMaxLegacy(DL, VT, LHS, RHS, True, False, CC, DCI);
993 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
1034 True = DAG.getNode(ISD::BITCAST, DL, CompareVT, True);
1035 False = DAG.getNode(ISD::BITCAST, DL, CompareVT, False);
1050 SDValue SelectNode = DAG.getNode(ISD::SELECT_CC, DL, CompareVT,
1054 return DAG.getNode(ISD::BITCAST, DL, VT, SelectNode);
1062 HWTrue = DAG.getConstantFP(1.0f, DL, CompareVT);
1063 HWFalse = DAG.getConstantFP(0.0f, DL, CompareVT);
1065 HWTrue = DAG.getConstant(-1, DL, CompareVT);
1066 HWFalse = DAG.getConstant(0, DL, CompareVT);
1074 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, LHS, RHS, HWTrue, HWFalse, CC);
1076 return DAG.getNode(ISD::SELECT_CC, DL, VT,