Searched refs:ShiftCnst (Results 1 - 2 of 2) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1749 SDValue ShiftCnst = DAG.getConstant(ShiftAmount, DL, IntVT);
1750 SignBit = DAG.getNode(ISD::SRL, DL, IntVT, SignBit, ShiftCnst);
1752 SDValue ShiftCnst = DAG.getConstant(-ShiftAmount, DL, IntVT);
1753 SignBit = DAG.getNode(ISD::SHL, DL, IntVT, SignBit, ShiftCnst);
1759 SDValue ShiftCnst = DAG.getConstant(ShiftAmount, DL, MagVT);
1760 SignBit = DAG.getNode(ISD::SRL, DL, MagVT, SignBit, ShiftCnst);
1762 SDValue ShiftCnst = DAG.getConstant(-ShiftAmount, DL, MagVT);
1763 SignBit = DAG.getNode(ISD::SHL, DL, MagVT, SignBit, ShiftCnst);
/freebsd-11.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp4857 ConstantSDNode *ShiftCnst = dyn_cast<ConstantSDNode>(RHS); local
4858 if (!ShiftCnst) {
4863 uint64_t ShiftAmt = ShiftCnst->getZExtValue();

Completed in 67 milliseconds