Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5365 static SDValue extractShiftForRotate(SelectionDAG &DAG, SDValue OppShift, in extractShiftForRotate() argument
5368 assert(OppShift && ExtractFrom && "Empty SDValue"); in extractShiftForRotate()
5370 (OppShift.getOpcode() == ISD::SHL || OppShift.getOpcode() == ISD::SRL) && in extractShiftForRotate()
5391 if ((OppShift.getOpcode() != ISD::SRL || !SelectOpcode(ISD::SHL, ISD::MUL)) && in extractShiftForRotate()
5392 (OppShift.getOpcode() != ISD::SHL || !SelectOpcode(ISD::SRL, ISD::UDIV))) in extractShiftForRotate()
5397 SDValue OppShiftLHS = OppShift.getOperand(0); in extractShiftForRotate()
5405 ConstantSDNode *OppShiftCst = isConstOrConstSplat(OppShift.getOperand(1)); in extractShiftForRotate()
5452 EVT ShiftVT = OppShift.getOperand(1).getValueType(); in extractShiftForRotate()