Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:ResNo

36 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) {
41 if (CustomLowerNode(N, N->getValueType(ResNo), true))
47 dbgs() << "PromoteIntegerResult #" << ResNo << ": ";
51 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break;
115 case ISD::SSUBO: Res = PromoteIntRes_SADDSUBO(N, ResNo); break;
117 case ISD::USUBO: Res = PromoteIntRes_UADDSUBO(N, ResNo); break;
119 case ISD::UMULO: Res = PromoteIntRes_XMULO(N, ResNo); break;
143 SetPromotedInteger(SDValue(N, ResNo), Res);
147 unsigned ResNo) {
148 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
444 SDValue DAGTypeLegalizer::PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo) {
445 if (ResNo == 1)
607 SDValue DAGTypeLegalizer::PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo) {
608 if (ResNo == 1)
635 SDValue DAGTypeLegalizer::PromoteIntRes_XMULO(SDNode *N, unsigned ResNo) {
637 if (ResNo == 1)
1068 void DAGTypeLegalizer::ExpandIntegerResult(SDNode *N, unsigned ResNo) {
1074 if (CustomLowerNode(N, N->getValueType(ResNo), true))
1080 dbgs() << "ExpandIntegerResult #" << ResNo << ": ";
1085 case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break;
1162 SetExpandedInteger(SDValue(N, ResNo), Lo, Hi);
1608 void DAGTypeLegalizer::ExpandIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo,
1610 SDValue Res = DisintegrateMERGE_VALUES(N, ResNo);