Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:CTPOP

63   case ISD::CTPOP:       Res = PromoteIntRes_CTPOP(N); break;
355 return DAG.getNode(ISD::CTPOP, SDLoc(N), Op.getValueType(), Op);
1138 case ISD::CTPOP: ExpandIntRes_CTPOP(N, Lo, Hi); break;
1795 // ctpop(HiLo) -> ctpop(Hi)+ctpop(Lo)
1798 Lo = DAG.getNode(ISD::ADD, dl, NVT, DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
1799 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));