Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:CTPOP

61   case ISD::CTPOP:       Res = PromoteIntRes_CTPOP(N); break;
325 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), Op.getValueType(), Op);
1109 case ISD::CTPOP: ExpandIntRes_CTPOP(N, Lo, Hi); break;
1732 // ctpop(HiLo) -> ctpop(Hi)+ctpop(Lo)
1735 Lo = DAG.getNode(ISD::ADD, dl, NVT, DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
1736 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));