Home | History | Annotate | Download | only in ARM

Lines Matching defs:CTLZ

759     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
761 // These just redirect to CTTZ and CTLZ on ARM.
4364 // Compute with: cttz(x) = (width - 1) - ctlz(lsb), if x != 0
4369 SDValue CTLZ = DAG.getNode(ISD::CTLZ, dl, VT, LSB);
4370 return DAG.getNode(ISD::SUB, dl, VT, WidthMinus1, CTLZ);
4423 return DAG.getNode(ISD::CTLZ, dl, VT, rbit);