Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:SCC

4080   SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
4082 if (SCC.getNode()) AddToWorkList(SCC.getNode());
4084 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
4092 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
4094 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
4095 SCC.getOperand(2));
4396 SDValue SCC =
4400 if (SCC.getNode()) return SCC;
4689 SDValue SCC =
4693 if (SCC.getNode()) return SCC;
4869 SDValue SCC =
4873 if (SCC.getNode())
4874 return SCC;
8063 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
8069 if (SCC.getNode()) {
8072 if (SCC.getOpcode() == ISD::SELECT_CC) {
8075 SCC.getOperand(0), SCC.getOperand(1),
8076 SCC.getOperand(4));
8078 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8079 SCC.getOperand(2), SCC.getOperand(3), SETCC);
8082 return SCC;
8210 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
8212 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8213 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
8378 SDValue Temp, SCC;
8381 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
8383 if (N2.getValueType().bitsLT(SCC.getValueType()))
8384 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
8387 N2.getValueType(), SCC);
8389 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
8391 N2.getValueType(), SCC);
8394 AddToWorkList(SCC.getNode());