Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp3443 ConstantSDNode *ShiftCnst = dyn_cast<ConstantSDNode>(RHS); in tryBFE() local
3444 if (!ShiftCnst) { in tryBFE()
3449 uint64_t ShiftAmt = ShiftCnst->getZExtValue(); in tryBFE()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp1639 SDValue ShiftCnst = DAG.getConstant(ShiftAmount, DL, ShiftVT); in ExpandFCOPYSIGN() local
1640 SignBit = DAG.getNode(ISD::SRL, DL, ShiftVT, SignBit, ShiftCnst); in ExpandFCOPYSIGN()
1642 SDValue ShiftCnst = DAG.getConstant(-ShiftAmount, DL, ShiftVT); in ExpandFCOPYSIGN() local
1643 SignBit = DAG.getNode(ISD::SHL, DL, ShiftVT, SignBit, ShiftCnst); in ExpandFCOPYSIGN()