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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6027 ConstantSDNode *OppShiftCst = isConstOrConstSplat(OppShift.getOperand(1)); local
6030 if (OppShift.getOpcode() == ISD::SRL && OppShiftCst &&
6034 OppShiftCst->getAPIntValue() == ShiftedVT.getScalarSizeInBits() - 1)
6073 if (!OppShiftCst || !OppShiftCst->getAPIntValue() ||
6080 if (OppShiftCst->getAPIntValue().ugt(VTWidth))
6082 APInt NeededShiftAmt = VTWidth - OppShiftCst->getAPIntValue();

Completed in 127 milliseconds