Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:ShiftCnst

1470       SDValue ShiftCnst = DAG.getConstant(ShiftAmount, DL, IntVT);
1471 SignBit = DAG.getNode(ISD::SRL, DL, IntVT, SignBit, ShiftCnst);
1473 SDValue ShiftCnst = DAG.getConstant(-ShiftAmount, DL, IntVT);
1474 SignBit = DAG.getNode(ISD::SHL, DL, IntVT, SignBit, ShiftCnst);
1480 SDValue ShiftCnst = DAG.getConstant(ShiftAmount, DL, MagVT);
1481 SignBit = DAG.getNode(ISD::SRL, DL, MagVT, SignBit, ShiftCnst);
1483 SDValue ShiftCnst = DAG.getConstant(-ShiftAmount, DL, MagVT);
1484 SignBit = DAG.getNode(ISD::SHL, DL, MagVT, SignBit, ShiftCnst);