Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Rot

2858   if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
2859 return SDValue(Rot, 0);
2890 // a rot[lr].
2939 SDValue Rot;
2941 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
2943 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
2958 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
2961 return Rot.getNode();